        body { background-color: #ffffff; color: #1a1a1a; scroll-behavior: smooth; overflow-x: hidden; }
        .glossy-red { color: #8B0000; text-shadow: 0 0 1px rgba(139, 0, 0, 0.1); }
        .wine-gradient { background: linear-gradient(135deg, #8B0000 0%, #4A0000 100%); }
        .cart-drawer { transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1); }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -4px; left: 0; background-color: #8B0000; transition: width 0.3s ease; }
        .nav-link:hover::after { width: 100%; }
        .custom-scroll::-webkit-scrollbar { width: 4px; }
        .custom-scroll::-webkit-scrollbar-thumb { background: #8B0000; border-radius: 10px; }
        @keyframes subtleFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .animate-reveal { animation: subtleFade 1s forwards; }
        .hero-zoom { animation: zoomBg 20s infinite alternate; }
        @keyframes zoomBg { from { transform: scale(1); } to { transform: scale(1.1); } }
        .scent-line { position: relative; }
        .scent-line::after { content: ''; position: absolute; left: 50%; bottom: -2rem; height: 80px; width: 1px; background: linear-gradient(to bottom, #8B0000, transparent); }
          @keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
  }

  .animate-marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
  }
