  /* --- Color Palette --- */
        :root {
            --color-cream: #F9F9F7;
            --color-beige: #EBE9E4;
            --color-sand: #D8D4CC;
            --color-charcoal: #2A2A2A;
            --color-gold: #C5A059;
            --color-stone: #9CA3AF;
        }

        /* --- Typography --- */
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-cream);
            color: var(--color-charcoal);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .font-serif-display {
            font-family: 'Playfair Display', serif;
        }

        .font-serif-text {
            font-family: 'Cormorant Garamond', serif;
        }

        /* --- Custom UI Utilities --- */
        .glass-panel {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .btn-gold-outline {
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            transition: all 0.3s ease;
            background: transparent;
        }
        .btn-gold-outline:hover {
            background: var(--color-gold);
            color: white;
        }

        .btn-gold-fill {
            background: var(--color-gold);
            color: white;
            transition: all 0.3s ease;
        }
        .btn-gold-fill:hover {
            background: #b08d4b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
        }

        /* --- Animations --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hover Line Animation */
        .hover-line {
            position: relative;
        }
        .hover-line::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--color-charcoal);
            transition: width 0.3s ease;
        }
        .hover-line:hover::after {
            width: 100%;
        }

        /* Parallax Hero */
        .parallax-hero {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--color-cream); }
        ::-webkit-scrollbar-thumb { background: var(--color-sand); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }
        
        /* Modal Backdrop */
        .modal-backdrop {
            background-color: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
        }

        /* Cart Badge */
        .cart-badge {
            position: absolute;
            top: -2px;
            right: -6px;
            background-color: var(--color-gold);
            color: white;
            font-size: 0.6rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    