@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

        :root {
            --charcoal: #292524;
            --cream: #FAF5F0;
            --camel: #C4A77D;
            --camel-light: #d4bf9a;
            --camel-dark: #a8894f;
            --white: #ffffff;
            --gray-50: #fafaf9;
            --gray-100: #f5f5f4;
            --gray-200: #e7e5e4;
            --gray-300: #d6d3d1;
            --gray-400: #a8a29e;
            --gray-500: #78716c;
            --gray-600: #57534e;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--charcoal);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Libre Baskerville', serif;
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 245, 240, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(196, 167, 125, 0.15);
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(250, 245, 240, 0.97);
            box-shadow: 0 2px 40px rgba(41, 37, 36, 0.08);
        }

        .navbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--charcoal);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--camel);
            border-radius: 0;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            width: 28px;
            height: 28px;
            background: var(--camel);
        }

        .logo-text {
            font-family: 'Libre Baskerville', serif;
            font-size: 22px;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .logo-sub {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--camel);
            display: block;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--camel);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--camel-dark);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.sale-link {
            color: #b44a3f;
            font-weight: 600;
        }

        .btn-showroom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--charcoal);
            color: var(--cream);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-showroom:hover {
            background: var(--camel-dark);
            color: var(--white);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s ease;
        }

        /* ==================== HERO ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, #f0ebe4 50%, #e8dfd5 100%);
            padding-top: 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--charcoal) 1px, transparent 1px),
                linear-gradient(90deg, var(--charcoal) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-left {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(196, 167, 125, 0.12);
            border: 1px solid rgba(196, 167, 125, 0.25);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--camel-dark);
            margin-bottom: 32px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--camel);
            border-radius: 50%;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--charcoal);
        }

        .hero h1 em {
            font-style: italic;
            color: var(--camel-dark);
        }

        .hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray-500);
            max-width: 480px;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--charcoal);
            color: var(--cream);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--camel-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(196, 167, 125, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: transparent;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1.5px solid var(--charcoal);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--cream);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid var(--gray-200);
        }

        .hero-stat-number {
            font-family: 'Libre Baskerville', serif;
            font-size: 32px;
            color: var(--camel-dark);
            line-height: 1;
            margin-bottom: 6px;
        }

        .hero-stat-label {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray-400);
            font-weight: 500;
        }

        .hero-right {
            position: relative;
            height: 600px;
        }

        .hero-image-main {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #d4c5b0, #bfb09a);
            position: relative;
            overflow: hidden;
        }

        .hero-image-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23C4A77D" width="800" height="600"/><rect fill="%23B89B6C" x="100" y="200" width="250" height="180" rx="4"/><rect fill="%23a8894f" x="120" y="220" width="210" height="140" rx="2"/><rect fill="%23D4BF9A" x="400" y="150" width="300" height="250" rx="6"/><rect fill="%23B89B6C" x="430" y="180" width="240" height="180" rx="4"/><rect fill="%23c9a86a" x="50" y="400" width="700" height="30" rx="2"/><ellipse fill="%23B89B6C" cx="200" cy="450" rx="60" ry="80"/><ellipse fill="%23a8894f" cx="200" cy="480" rx="50" ry="40"/></svg>');
            background-size: cover;
            background-position: center;
        }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            padding: 20px 24px;
            box-shadow: 0 20px 60px rgba(41, 37, 36, 0.1);
            z-index: 3;
        }

        .hero-float-card.card-1 {
            bottom: 60px;
            left: -40px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .hero-float-card .float-icon {
            width: 48px;
            height: 48px;
            background: rgba(196, 167, 125, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--camel-dark);
        }

        .hero-float-card .float-text {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .hero-float-card .float-sub {
            font-size: 11px;
            color: var(--gray-400);
            margin-top: 2px;
        }

        .hero-float-card.card-2 {
            top: 40px;
            right: -30px;
            text-align: center;
        }

        .hero-float-card.card-2 .price-tag {
            font-family: 'Libre Baskerville', serif;
            font-size: 24px;
            color: var(--camel-dark);
        }

        .hero-float-card.card-2 .price-label {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-400);
        }

        /* ==================== SECTION COMMON ==================== */
        .section {
            padding: 120px 48px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--camel-dark);
            margin-bottom: 20px;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--camel);
        }

        .section-title {
            font-size: 42px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--gray-500);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ==================== COLLECTIONS ==================== */
        .collections-bg {
            background: var(--white);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .collection-card {
            position: relative;
            height: 420px;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .collection-card .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: transform 0.6s ease;
        }

        .collection-card:hover .card-bg {
            transform: scale(1.05);
        }

        .collection-card .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(41, 37, 36, 0.85) 0%, rgba(41, 37, 36, 0.1) 60%, transparent 100%);
            z-index: 1;
            transition: background 0.4s ease;
        }

        .collection-card:hover .card-overlay {
            background: linear-gradient(to top, rgba(41, 37, 36, 0.92) 0%, rgba(41, 37, 36, 0.25) 60%, rgba(41, 37, 36, 0.05) 100%);
        }

        .collection-card .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            z-index: 2;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .collection-card:hover .card-content {
            transform: translateY(0);
        }

        .collection-card .card-name {
            font-family: 'Libre Baskerville', serif;
            font-size: 22px;
            color: var(--white);
            margin-bottom: 6px;
        }

        .collection-card .card-count {
            font-size: 12px;
            color: var(--camel-light);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .collection-card .card-explore {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .collection-card:hover .card-explore {
            opacity: 1;
            transform: translateY(0);
        }

        .card-bg-1 { background: linear-gradient(135deg, #8B7355, #a08c6e, #7a6548); }
        .card-bg-2 { background: linear-gradient(135deg, #b5c4b1, #8fa98a, #6d8e66); }
        .card-bg-3 { background: linear-gradient(135deg, #7a7572, #8e8783, #5e5956); }
        .card-bg-4 { background: linear-gradient(135deg, #c4956a, #d4a87a, #b08050); }
        .card-bg-5 { background: linear-gradient(135deg, #6b6072, #857a8c, #504560); }
        .card-bg-6 { background: linear-gradient(135deg, #d4c5b0, #c4b5a0, #b4a590); }

        /* ==================== FEATURED PRODUCTS ==================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .product-card {
            background: var(--white);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(41, 37, 36, 0.1);
        }

        .product-image {
            position: relative;
            height: 320px;
            overflow: hidden;
            background: var(--gray-100);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            z-index: 2;
        }

        .badge-new {
            background: var(--charcoal);
            color: var(--cream);
        }

        .badge-sale {
            background: #b44a3f;
            color: var(--white);
        }

        .badge-bestseller {
            background: var(--camel);
            color: var(--white);
        }

        .product-wishlist {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            opacity: 0;
            transform: translateY(-8px);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .product-card:hover .product-wishlist {
            opacity: 1;
            transform: translateY(0);
        }

        .product-quick {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: rgba(41, 37, 36, 0.9);
            color: var(--white);
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            cursor: pointer;
            border: none;
            width: 100%;
        }

        .product-card:hover .product-quick {
            transform: translateY(0);
        }

        .product-colors {
            position: absolute;
            bottom: 16px;
            right: 16px;
            display: flex;
            gap: 6px;
            z-index: 2;
        }

        .color-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid var(--white);
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
        }

        .product-info {
            padding: 24px;
        }

        .product-category {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--camel-dark);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .product-name {
            font-family: 'Libre Baskerville', serif;
            font-size: 16px;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-current {
            font-size: 18px;
            font-weight: 600;
            color: var(--charcoal);
        }

        .price-original {
            font-size: 14px;
            color: var(--gray-400);
            text-decoration: line-through;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
        }

        .stars {
            color: var(--camel);
            font-size: 12px;
            letter-spacing: 2px;
        }

        .rating-count {
            font-size: 12px;
            color: var(--gray-400);
        }

        .product-img-1 { background: linear-gradient(135deg, #c9b99a, #b8a888, #d4c4a8); }
        .product-img-2 { background: linear-gradient(135deg, #8B7355, #a08c6e); }
        .product-img-3 { background: linear-gradient(135deg, #a8a09a, #c0b8b0); }
        .product-img-4 { background: linear-gradient(135deg, #6d5e52, #8a7a6e); }
        .product-img-5 { background: linear-gradient(135deg, #b5a898, #c4b7a8); }
        .product-img-6 { background: linear-gradient(135deg, #9a8e82, #b0a498); }
        .product-img-7 { background: linear-gradient(135deg, #7a6e62, #8e8276); }
        .product-img-8 { background: linear-gradient(135deg, #c4a888, #d4b898); }

        /* ==================== WHY CHOOSE US ==================== */
        .features-bg {
            background: var(--charcoal);
            padding: 120px 0;
        }

        .features-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .features-bg .section-tag {
            color: var(--camel);
        }

        .features-bg .section-tag::before,
        .features-bg .section-tag::after {
            background: var(--camel-dark);
        }

        .features-bg .section-title {
            color: var(--cream);
        }

        .features-bg .section-subtitle {
            color: var(--gray-400);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .feature-card {
            text-align: center;
            padding: 48px 32px;
            border: 1px solid rgba(196, 167, 125, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--camel);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            border-color: rgba(196, 167, 125, 0.35);
            background: rgba(196, 167, 125, 0.05);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(196, 167, 125, 0.1);
            border: 1px solid rgba(196, 167, 125, 0.2);
            font-size: 28px;
            color: var(--camel);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--camel);
            color: var(--white);
            border-color: var(--camel);
        }

        .feature-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 18px;
            color: var(--cream);
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.7;
        }

        /* ==================== BANNER ==================== */
        .banner-section {
            padding: 0 48px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .banner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            overflow: hidden;
        }

        .banner-image {
            position: relative;
            overflow: hidden;
        }

        .banner-image-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8B7355, #a08c6e, #7a6548);
            transition: transform 0.6s ease;
        }

        .banner:hover .banner-image-bg {
            transform: scale(1.03);
        }

        .banner-content {
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 72px;
        }

        .banner-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--camel);
            margin-bottom: 20px;
        }

        .banner-title {
            font-size: 38px;
            color: var(--cream);
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .banner-text {
            font-size: 15px;
            color: var(--gray-400);
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .banner .btn-primary {
            align-self: flex-start;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px;
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(41, 37, 36, 0.08);
        }

        .testimonial-quote {
            font-size: 48px;
            color: var(--camel);
            font-family: 'Libre Baskerville', serif;
            line-height: 1;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 28px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-200);
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Libre Baskerville', serif;
            font-size: 18px;
            color: var(--white);
        }

        .avatar-1 { background: var(--camel); }
        .avatar-2 { background: var(--charcoal); }
        .avatar-3 { background: #8B7355; }

        .author-name {
            font-weight: 600;
            font-size: 14px;
        }

        .author-role {
            font-size: 12px;
            color: var(--gray-400);
        }

        .testimonial-stars {
            margin-bottom: 20px;
            color: var(--camel);
            font-size: 14px;
            letter-spacing: 3px;
        }

        /* ==================== CTA ==================== */
        .cta-section {
            padding: 120px 48px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--charcoal) 0%, #3d3835 50%, #292524 100%);
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(196, 167, 125, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(196, 167, 125, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 42px;
            color: var(--cream);
            margin-bottom: 16px;
            font-weight: 400;
        }

        .cta-text {
            font-size: 17px;
            color: var(--gray-400);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .cta-newsletter {
            margin-top: 48px;
            display: flex;
            gap: 0;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-newsletter input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid rgba(196, 167, 125, 0.3);
            background: rgba(250, 245, 240, 0.05);
            color: var(--cream);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .cta-newsletter input::placeholder {
            color: var(--gray-500);
        }

        .cta-newsletter input:focus {
            border-color: var(--camel);
        }

        .cta-newsletter button {
            padding: 16px 28px;
            background: var(--camel);
            color: var(--white);
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cta-newsletter button:hover {
            background: var(--camel-dark);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--charcoal);
            color: var(--gray-400);
        }

        .footer-top {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 48px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .footer-brand .logo-text {
            color: var(--cream);
            font-size: 24px;
            margin-bottom: 4px;
        }

        .footer-brand .logo-sub {
            margin-bottom: 20px;
            display: block;
        }

        .footer-brand-desc {
            font-size: 14px;
            line-height: 1.8;
            color: var(--gray-400);
            margin-bottom: 24px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(196, 167, 125, 0.2);
            color: var(--camel);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: var(--camel);
            color: var(--white);
            border-color: var(--camel);
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cream);
            margin-bottom: 24px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: var(--gray-400);
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--camel);
        }

        .footer-bottom {
            border-top: 1px solid rgba(196, 167, 125, 0.1);
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
        }

        .footer-payments {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .footer-payments span {
            padding: 4px 12px;
            border: 1px solid rgba(196, 167, 125, 0.2);
            font-size: 11px;
            letter-spacing: 1px;
            color: var(--gray-400);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero h1 { font-size: 48px; }
            .hero-right { height: 400px; }
            .hero-float-card.card-1 { left: 16px; }
            .hero-float-card.card-2 { right: 16px; }

            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .banner-image { height: 300px; }

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

            .footer-top {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .footer-brand {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .navbar-inner { padding: 0 24px; }
            .nav-links { display: none; }
            .mobile-toggle { display: flex; }

            .hero { min-height: auto; padding: 120px 0 80px; }
            .hero-content { padding: 0 24px; }
            .hero h1 { font-size: 36px; }
            .hero-right { display: none; }
            .hero-stats { gap: 24px; flex-wrap: wrap; }

            .section { padding: 80px 24px; }
            .section-title { font-size: 32px; }

            .collections-grid { grid-template-columns: 1fr; height: auto; }
            .collection-card { height: 320px; }

            .products-grid { grid-template-columns: 1fr; }
            .product-image { height: 280px; }

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

            .banner { grid-template-columns: 1fr; }
            .banner-content { padding: 48px 24px; }

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

            .cta-box { padding: 48px 24px; }
            .cta-title { font-size: 28px; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-newsletter { flex-direction: column; }

            .footer-top {
                grid-template-columns: 1fr;
                padding: 48px 24px;
            }

            .footer-brand { grid-column: span 1; }
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 24px;
            }
        }

        /* ==================== ANIMATIONS ==================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }