        :root {
            --primary: #ed8d34;
            --accent: #FCF9EA;
            --text-dark: #3b794c;
        }

        body {
            font-family: 'Oswald', sans-serif;
            background-color: var(--accent);
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .dancing { font-family: 'Dancing Script', cursive; }
        
        /* Two-Row Header */
        .header-container {
            background: linear-gradient(to bottom, rgba(194, 83, 14, 0.6) 0%, rgba(0,0,0,0) 100%);
            transition: background 0.3s;
        }
        .header-scrolled { background: rgba(213, 106, 44, 0.95); backdrop-filter: blur(10px); }

        .nav-link { position: relative; transition: 0.3s; padding-bottom: 4px; }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 100%; }

        /* Hero Split & Carousel */
        .hero-diagonal { clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%); }
        
        /* Animations */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        .letter-anim span { display: inline-block; opacity: 0; transform: translateY(10px); animation: charFade 0.03s forwards; }
        @keyframes charFade { to { opacity: 1; transform: translateY(0); } }

        /* Cart Sidebar */
        #cart-sidebar {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #cart-sidebar.open { transform: translateX(0); }

        /* Product Cards */
        .product-card { overflow: hidden; transition: 0.4s; }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .image-zoom { transition: 0.8s; }
        .product-card:hover .image-zoom { transform: scale(1.1); }

        .hidden-page { display: none; }
        
        /* Masonry-style Grid */
        .masonry { columns: 1; gap: 1.5rem; }
        @media (min-width: 768px) { .masonry { columns: 2; } }
        @media (min-width: 1024px) { .masonry { columns: 3; } }
        .masonry-item { break-inside: avoid; margin-bottom: 1.5rem; }

        /* Horizontal Scroll */
        .horizontal-scroll { scrollbar-width: none; }
        .horizontal-scroll::-webkit-scrollbar { display: none; }
    