 body {
            box-sizing: border-box;
        }
        
        :root {
            --ivory: #FAF9F6;
            --sand: #F4EBDD;
            --taupe: #B6A28E;
            --gold: #D4AF7F;
            --charcoal: #333333;
        }
        
        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-lato { font-family: 'Lato', sans-serif; }
        .font-montserrat { font-family: 'Montserrat', sans-serif; }
        
        .hero-bg {
            background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%);
        }
        
        .luxury-shadow {
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .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) }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) }
            50% { transform: translateY(-20px) }
        }
        
        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            animation: sparkle 2s linear infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0) }
            50% { opacity: 1; transform: scale(1) }
        }
        
        .modal {
            backdrop-filter: blur(10px);
            background: rgba(250, 249, 246, 0.9);
        }
        
        .product-card {
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.1);
        }
        
        .product-image {
            transition: transform 0.3s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .btn-luxury {
            background: linear-gradient(135deg, var(--taupe), var(--gold));
            transition: all 0.3s ease;
        }
        
        .btn-luxury:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(180, 162, 142, 0.4);
        }
        
        .section-hidden {
            display: none;
        }
        
        .glassmorphism {
            background: rgba(250, 249, 246, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .cart-icon {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 40;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 127, 0.4);
        }
        
        .cart-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 175, 127, 0.6);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        .add-to-cart-btn {
            background: var(--gold);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .add-to-cart-btn:hover {
            background: var(--taupe);
            transform: translateY(-2px);
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 12px;
        }
        
        .hero-image {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}