        :root { scroll-behavior: smooth; }
        body { font-family: 'Red Hat Display', sans-serif; background: #FFFFFF; overflow-x: hidden; }
        
        .cookie-regular { font-family: "Cookie", cursive; font-weight: 400; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #03A791; border-radius: 10px; }

        /* Hero Zoom Animation */
        @keyframes heroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.15); }
        }
        .hero-bg-anim {
            animation: heroZoom 25s infinite alternate ease-in-out;
        }

        /* Sticky Socials */
        .social-sidebar {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Hamburger Menu Overlay */
        #menu-overlay {
            position: fixed;
            inset: 0;
            background: #FBA518;
            z-index: 5000;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        #menu-overlay.active { display: flex; opacity: 1; }

        /* Slideshow Card */
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .slideshow-track {
            display: flex;
            width: 400%;
            height: 100%;
            animation: slideAuto 16s infinite;
        }
        @keyframes slideAuto {
            0%, 20% { transform: translateX(0%); }
            25%, 45% { transform: translateX(-25%); }
            50%, 70% { transform: translateX(-50%); }
            75%, 95% { transform: translateX(-75%); }
            100% { transform: translateX(0%); }
        }

        /* Parallax Section */
        .parallax-wrap {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pages logic */
        .page-node { display: none; }
        .page-node.active { display: block; }

        /* Cart Drawer */
        #cart-drawer {
            position: fixed;
            right: -100%;
            top: 0;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 6000;
            transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        #cart-drawer.open { right: 0; }
