* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c2c2c;
    --secondary: #f5f5f5;
    --accent: #b8860b;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.hero {
    min-height: 600px;
    background: linear-gradient(135deg, #fef9f0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #fef3e0;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-feature {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    background-color: #9a7109;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.stats-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.stat-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 1.5rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.essence-box {
    background: linear-gradient(135deg, #fef9f0 0%, #f5f5f5 100%);
    padding: 3rem;
    border: 1px solid var(--border);
}

.essence-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
}

.essence-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.essence-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.essence-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.essence-item h5 {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.essence-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.manufacturing-section {
    padding: 6rem 0;
    background-color: var(--secondary);
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.manufacturing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.manufacturing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.manufacturing-icon {
    width: 60px;
    height: 60px;
    background-color: #fef3e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.manufacturing-icon svg {
    color: var(--accent);
}

.manufacturing-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.manufacturing-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.commitments-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.commitment-card {
    text-align: center;
    padding: 2rem;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background-color: #fef3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.commitment-icon svg {
    color: var(--accent);
}

.commitment-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.categories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fef9f0 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background-color: var(--white);
    border: 2px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--accent);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.category-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.category-card:hover .category-link {
    text-decoration: underline;
}

.catalogue-section {
    padding: 4rem 0 6rem;
    min-height: calc(100vh - 140px);
}

.page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 3rem;
    padding: 0 1rem;
}

.category-filter {
    padding: 0.75rem 2rem;
    background-color: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.category-filter.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.category-filter.active:hover {
    background-color: #9a7109;
    border-color: #9a7109;
    transform: translateY(-2px);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.furniture-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.furniture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.furniture-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--secondary);
}

.furniture-info {
    padding: 1.5rem;
}

.furniture-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.furniture-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.furniture-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: #fef3e0;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
}

.loading {
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.empty-state {
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        gap: 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }

    .nav-menu {
        margin-top: 1rem;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .essence-box {
        padding: 2rem;
    }

    .essence-item {
        flex-direction: column;
        text-align: center;
    }

    .essence-number {
        margin: 0 auto;
    }
}
