        :root {
            --marquee-bg: #ACBAC4;
            --primary-accent: #B80000;
            --bg-white: #FFFFFF;
            --text-black: #000000;
        }

        body {
            font-family: 'Space Mono', monospace;
            background-color: var(--bg-white);
            color: var(--text-black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Scrolling Marquee */
        .marquee-container {
            background-color: var(--marquee-bg);
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 100;
        }

        .marquee-inner {
            display: inline-block;
            animation: scroll 40s linear infinite;
        }

        @keyframes scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Large Editorial Typography */
        .editorial-title {
            font-size: clamp(4rem, 14vw, 20rem);
            line-height: 0.75;
            letter-spacing: -0.06em;
            color: var(--primary-accent);
        }

        /* Image Reveal Animation */
        .reveal-box {
            position: relative;
            overflow: hidden;
            background: #f4f4f4;
        }

        .reveal-img {
            transform: translateY(100%);
            transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-box.active .reveal-img {
            transform: translateY(0);
        }

        /* Floating Cards */
        .float-card {
            background: white;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
        }
        .float-card:hover {
            transform: translateY(-15px) rotate(1deg);
            box-shadow: 20px 30px 60px rgba(0,0,0,0.15);
        }

        /* Buttons */
        .btn-editorial {
            background: var(--primary-accent);
            color: white;
            padding: 18px 48px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: 0.4s;
        }
        .btn-editorial:hover {
            background: black;
            transform: skewX(-5deg);
        }

        .btn-outline {
            border: 1px solid var(--primary-accent);
            color: var(--primary-accent);
            padding: 10px 24px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .btn-outline:hover {
            background: var(--primary-accent);
            color: white;
        }

        /* Section Routing */
        .site-section { display: none; }
        .site-section.active { display: block; animation: sectionFade 0.8s ease; }

        @keyframes sectionFade {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Feedback Toast */
        #toast {
            position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
            background: black; color: white; padding: 12px 30px;
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.2em; z-index: 9999; opacity: 0; pointer-events: none;
            transition: 0.4s;
        }
        #toast.show { opacity: 1; bottom: 50px; }

        /* Cart Sidebar */
        #cart-panel {
            position: fixed; top: 0; right: -450px; width: 450px; height: 100%;
            background: white; z-index: 1000; box-shadow: -10px 0 60px rgba(0,0,0,0.2);
            transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 60px 40px; display: flex; flex-direction: column;
        }
        #cart-panel.open { right: 0; }

        /* Custom Modal */
        .modal {
            position: fixed; inset: 0; background: rgba(255,255,255,0.98);
            z-index: 2000; display: none; align-items: center; justify-content: center;
            overflow-y: auto; padding: 40px;
        }
        
        .circle-add {
            width: 48px; height: 48px; border-radius: 50%; border: 1px solid black;
            display: flex; items-center; justify-content: center; cursor: pointer;
            transition: 0.3s;
        }
        .circle-add:hover { background: var(--primary-accent); border-color: var(--primary-accent); color: white; }
    