:root {
            --ivory: #faf7f2;
            --charcoal: #2c2c2c;
            --gold: #b79b5b;
            --gold-light: #e5d9cc;
            --graphite: #4a4a4a;
            --cream: #f8f5f0;
            --bone: #e8e3db;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
            color: var(--charcoal);
            background-color: #ffffff;
            line-height: 1.7;
            letter-spacing: 0.01em;
        }
        
        .title-font {
            font-family: 'Playfair Display', serif;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        
        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #000;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

         /* Mobile menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }
        
        .mobile-menu.active {
            display: block;
        }

        h1, h2, h3, h4, .serif-font {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }
        
        .premium-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        @media (max-width: 768px) {
            .premium-container {
                padding: 0 1.5rem;
            }
        }

        .premium-header {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        /* Elegant typography for hero */
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--charcoal);
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            font-weight: 300;
            color: var(--graphite);
            letter-spacing: 0.02em;
        }
        
                .btn-primary {
            background-color: var(--charcoal);
            color: white;
            padding: 0.875rem 2.5rem;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            border: 1px solid var(--charcoal);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--charcoal);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--charcoal);
            padding: 0.875rem 2.5rem;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            border: 1px solid var(--charcoal);
        }
        
        .btn-secondary:hover {
            background-color: var(--charcoal);
            color: white;
        }

        /* Product card - minimalistic */
        .premium-product-card {
            background: white;
            border: none;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .premium-product-card:hover {
            transform: translateY(-4px);
        }
        
        .premium-product-card .image-container {
            overflow: hidden;
            background-color: var(--cream);
        }
        
        .premium-product-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .premium-product-card:hover img {
            transform: scale(1.03);
        }
        
        .premium-product-card .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }
        
        .premium-product-card .product-price {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--gold);
        }
        
        .premium-product-card .product-category {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--graphite);
            opacity: 0.7;
        }
        
        .premium-product-card .product-stock {
            font-size: 0.75rem;
            color: var(--graphite);
            opacity: 0.6;
        }
        
        /* Gold accent divider */
        .gold-divider {
            width: 60px;
            height: 2px;
            background-color: var(--gold);
            margin: 2rem 0 1.5rem;
        }
        
        .gold-divider-center {
            width: 80px;
            height: 2px;
            background-color: var(--gold);
            margin: 2rem auto;
        }
        
        /* Section headers */
        .section-header {
            font-size: 2rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }
        
        .section-subheader {
            color: var(--graphite);
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        
        /* Hero section - minimal */
        .hero-section {
            background-color: var(--ivory);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }
        
        /* Loading skeleton for premium feel */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* ── CAROUSEL SYSTEM ───────────────────────────── */
        .carousel-wrapper {
            position: relative;
        }

        .carousel-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0.5rem 0.25rem;
        }

        .carousel-scroll::-webkit-scrollbar {
            display: none;
        }

        .carousel-item {
            flex: 0 0 auto;
            width: 260px;
            sm:width: 280px;
            md:width: 300px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .carousel-arrow:hover {
            background: var(--charcoal);
            color: white;
            border-color: var(--charcoal);
        }

        .carousel-arrow-left {
            left: -22px;
        }

        .carousel-arrow-right {
            right: -22px;
        }

        /* ── PREMIUM OVERLAY CARD ──────────────────────── */
        .overlay-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: var(--cream);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .overlay-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        .overlay-card-image {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .overlay-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .overlay-card:hover .overlay-card-image img {
            transform: scale(1.05);
        }

        /* Gradient overlay at bottom */
        .overlay-card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.65) 0%,
                rgba(0,0,0,0.2) 40%,
                transparent 70%
            );
            pointer-events: none;
        }

        /* Featured badge */
        .overlay-card-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: #fef3c7;
            color: #b45309;
            border: 1px solid #fde68a;
            z-index: 2;
            line-height: 1;
        }

        /* Text overlay at bottom */
        .overlay-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            z-index: 2;
        }

        .overlay-card-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 500;
            color: white;
            line-height: 1.3;
            margin-bottom: 4px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .overlay-card-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gold);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        /* ── CATEGORY CIRCLE CARD ────────────────────────── */
        .category-card {
            flex: 0 0 auto;
            width: 100px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

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

        .category-card-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 10px;
            background: var(--cream);
            border: 2px solid var(--bone);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .category-card:hover .category-card-image {
            border-color: var(--gold);
            box-shadow: 0 4px 16px rgba(183,155,91,0.2);
        }

        .category-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-card-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--charcoal);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ── MULTI-ROW SCROLL ──────────────────────────── */
        .multi-row-wrapper {
            position: relative;
        }

        .multi-row-scroll {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0.5rem 0.25rem;
        }

        .multi-row-scroll::-webkit-scrollbar {
            display: none;
        }

        .multi-row {
            display: flex;
            gap: 0.5rem;
        }

        .multi-row .overlay-card {
            width: 220px;
            sm:width: 240px;
            md:width: 260px;
        }

        .multi-row .overlay-card-image {
            aspect-ratio: 1/1;
        }

        /* ── RESPONSIVE TWEAKS ─────────────────────────── */
        @media (max-width: 640px) {
            .carousel-item {
                width: 200px;
            }
            
            .overlay-card-info {
                padding: 10px;
            }
            
            .overlay-card-name {
                font-size: 0.85rem;
            }
            
            .overlay-card-price {
                font-size: 0.95rem;
            }
            
            .category-card {
                width: 80px;
            }
            
            .category-card-image {
                width: 68px;
                height: 68px;
            }

            .category-card-name {
                font-size: 0.7rem;
            }
            
            .multi-row .overlay-card {
                width: 160px;
            }

            .multi-row-scroll {
                gap: 0.5rem;
                padding: 0.25rem 0;
            }

            .multi-row {
                gap: 0rem;
            }

            .section-header {
                font-size: 1.5rem;
            }

            .premium-container {
                padding: 0 1rem;
            }

            /* Tighter section spacing on mobile */
            .py-16 {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }

            .mb-8 {
                margin-bottom: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            .carousel-item {
                width: 300px;
            }
            
            .multi-row .overlay-card {
                width: 280px;
            }
        }

        /* Footer styling */
        .premium-footer {
            background-color: var(--charcoal);
            color: rgba(255,255,255,0.8);
            font-weight: 300;
        }
        
        .footer-gold {
            color: var(--gold);
        }
        
        /* Subtle animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }