:root {
            --accent: #FB4141;
            --text-black: #000000;
            --cabin: 'Cabin', sans-serif;
        }

        body {
            font-family: var(--cabin);
            background-color: #85C79A;
            color: var(--text-black);
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Hero Animation & Parallax */
        .hero-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
        }

        .hero-bg-fixed {
            position: absolute;
            inset: 0;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            filter: brightness(0.9);
            z-index: 1;
        }

        .overlay-img {
            position: absolute;
            z-index: 5;
            transition: transform 0.1s ease-out;
            pointer-events: none;
            border-radius: 8px;
        }

        .img-tl {
            top: 0%;
            left: 0%;
            width: 60vh;
            height: 90vh;
        }

        .img-br {
            bottom: 0%;
            right: 0%;
            width: 60vh;
            
        }

        @keyframes slowFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(15px, -25px) rotate(2deg); }
        }

        /* Screen Box */
        .screen-box {
            position: relative;
            z-index: 10;
            width: 40%;
            max-width: 900px;
            height: 500px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.3);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(0,0,0,0.2);
        }

        .slide-container {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            text-align: center;
        }

        /* Floating Buy Now / Cart Button Logic */
        .floating-action {
            position: fixed;
            right: -200px; /* Initially hidden/inside */
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 24px;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            border-radius: 40px 0 0 40px;
            cursor: pointer;
        }

        .floating-action.revealed {
            right: 0;
        }

        /* Marquee */
        .marquee-container {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.8);
            padding: 15px 0;
            border-top: 1px solid #eee;
            z-index: 15;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-text {
            display: inline-block;
            animation: marquee 30s linear infinite;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 13px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Dot Navigation */
        .dot {
            width: 8px;
            height: 8px;
            border: 1px solid var(--accent);
            border-radius: 50%;
            margin: 0 6px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .dot.active {
            background: var(--accent);
            transform: scale(1.5);
        }

        /* Cart Sidebar */
        #cart-sidebar {
            position: fixed;
            right: -450px;
            top: 0;
            width: 450px;
            height: 100vh;
            background: white;
            z-index: 1001;
            box-shadow: -15px 0 50px rgba(0,0,0,0.15);
            transition: right 0.5s ease;
            display: flex;
            flex-direction: column;
            padding: 40px;
        }

        #cart-sidebar.open { right: 0; }

        .btn-accent {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
            transition: all 0.3s;
        }

        .btn-accent:hover {
            background-color: transparent;
            color: var(--accent);
        }

        .page-node { display: none; }
        .page-node.active { display: block; }
        
        .product-card img { transition: transform 0.8s ease; }
        .product-card:hover img { transform: scale(1.08); }
        
        #qv-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
    