 body {
            box-sizing: border-box;
        }
        
        :root {
            --ivory: #FAF9F6;
            --sand: #E6DCCB;
            --taupe: #B6A28E;
            --sage: #D8E0D0;
            --charcoal: #444444;
            --gold: #C9A24F;
        }
        
        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-inter { font-family: 'Inter', sans-serif; }
        
        .glassmorphism {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .hero-bg {
            background: linear-gradient(135deg, rgba(250, 249, 246, 0.9), rgba(230, 220, 203, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23E6DCCB" width="1200" height="800"/><circle fill="%23D8E0D0" opacity="0.3" cx="200" cy="200" r="150"/><circle fill="%23B6A28E" opacity="0.2" cx="800" cy="400" r="200"/><rect fill="%23FAF9F6" opacity="0.4" x="300" y="100" width="600" height="400" rx="20"/></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .animate-fade-up {
            animation: fadeUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .animate-fade-in {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        .typewriter {
            overflow: hidden;
            border-right: 2px solid var(--gold);
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--gold); }
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(201, 162, 79, 0.4);
            transform: scale(1.05);
        }
        
        .parallax {
            transform: translateZ(0);
            transition: transform 0.1s ease-out;
        }
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        
        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cart-count {
            background: var(--gold);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -8px;
            right: -8px;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--sage);
            color: var(--charcoal);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            z-index: 1001;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }
        
        .notification.show {
            transform: translateX(0);
        }
    