        :root { scroll-behavior: smooth; }
        body { 
            font-family: 'Edu SA Beginner', cursive; 
            background: #FFFFFF;
            overflow-x: hidden;
            color: #1a1a1a;
        }

        .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}
.modal-content {
    background: #fff;
    padding: 2rem;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
}
.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
.hidden { display: none; }


        /* Split Panel Architecture */
        .editorial-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            border-bottom: 2px solid #000;
        }
        @media (max-width: 768px) {
            .editorial-section { grid-template-columns: 1fr; }
        }

        .panel-left { padding: 140px 8% 100px 10%; position: relative; }
/* Remove this for non-slideshow panels */
.panel-right {
    /* position: absolute;  <- REMOVE THIS */
    /* top: 0; right: 0; width: 50%; height: 100%; <- REMOVE THIS */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 10% 100px 8%;
    overflow: hidden;
}
        /* Typography */
        .h-main { font-family: 'Comic Neue', cursive; font-weight: 700; line-height: 0.9; }
        .p-main { font-family: 'Edu SA Beginner', cursive; font-size: 1.25rem; line-height: 1.6; }

        /* Decorative Floating Shapes */
        .floating { position: absolute; pointer-events: none; z-index: 1; animation: float 6s ease-in-out infinite; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Interactive Cards */
        .editorial-card {
            background: white;
            border: 4px solid #000;
            padding: 30px;
            box-shadow: 10px 10px 0px #000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 5;
        }
        .editorial-card:hover { transform: scale(1.05) rotate(0deg) !important; box-shadow: 15px 15px 0px #FF004D; }
        
        .rotate-L { transform: rotate(-2deg); }
        .rotate-R { transform: rotate(2deg); }

        /* Buttons */
        .btn-cta {
            background: #FF004D;
            color: white;
            font-family: 'Comic Neue';
            font-weight: 700;
            padding: 1rem 2.5rem;
            border: 3px solid #000;
            box-shadow: 5px 5px 0px #000;
            transition: 0.2s;
            display: inline-block;
        }
        .btn-cta:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0px #FAEF5D; }

        /* Navigation */
        header {  background: rgba(255,255,255,0.9);}
        .nav-link { font-family: 'Comic Neue'; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; position: relative; }
        .nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 3px; background: #FAEF5D; transition: 0.3s; }
        .nav-link:hover::after, .active-page::after { width: 100%; }

        /* Animations */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        .parallax-right { transition: transform 0.1s linear; }

        /* Cart & Modals */
        #cart-sidebar { position: fixed; right: -450px; top: 0; width: 450px; height: 100vh; background: white; border-left: 6px solid #000; z-index: 10000; transition: 0.4s; padding: 40px; }
        #cart-sidebar.open { right: 0; }
        .overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); display: none; z-index: 9999; }
        .overlay.active { display: block; }

        .page-container { display: none; }

.slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

        .page-container.active { display: block; }
