        body { font-family: 'Lato', sans-serif; background-color: #FFF8F2; color: #333333; overflow-x: hidden; }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        .font-deco { font-family: 'Cinzel Decorative', serif; }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #FFF8F2; }
        ::-webkit-scrollbar-thumb { background: #E29578; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #A3B18A; }

        /* Utilities */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
        
        .nav-link { position: relative; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0; background-color: #E29578; transition: width 0.3s; }
        .nav-link:hover::after { width: 100%; }

        .btn-primary {
            background-color: #E29578;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(226, 149, 120, 0.3);
        }
        .btn-primary:hover {
            background-color: #A3B18A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(163, 177, 138, 0.4);
        }

        .hero-pattern {
            background-image: radial-gradient(#E29578 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.1;
        }

        .masonry-grid { column-count: 1; column-gap: 1.5rem; }
        @media (min-width: 640px) { .masonry-grid { column-count: 2; } }
        @media (min-width: 1024px) { .masonry-grid { column-count: 3; } }
        .masonry-item { break-inside: avoid; margin-bottom: 1.5rem; }
        
        /* Cart Drawer Animation */
        .drawer-open { transform: translateX(0); }
        .drawer-closed { transform: translateX(100%); }

        

        
    
        .marquee {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
            }

            @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Half-width because we duplicated content */
            }

            /* Optional hover pause */
            .marquee:hover {
            animation-play-state: paused;
            }

            .bold-text-marquee {
                display: inline-flex;
                animation: marquee-text 10s linear infinite;
                }

                @keyframes marquee-text {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); } /* half-width for seamless loop */
                }

                /* Optional: pause on hover */
                .bold-text-marquee:hover {
                animation-play-state: paused;
                }
                .marquee-text {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Optional: pause on hover */
.marquee-text:hover {
    animation-play-state: paused;
}



