        /* CSS RESET & CUSTOM PROPERTIES */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --sand: #ffce5d;
            --blue: #1B4EF5;
            --teal: #9eecf0;
            --ivory: #a96807;
            --white: #4e3939;
            --charcoal: #b2b0b0;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        body {
            font-family: "Open Sans", sans-serif;
            font-optical-sizing: auto;
            background-color: var(--white);
            color: var(--charcoal);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        /* SCROLLBAR & SELECTION */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--ivory); }
        ::-webkit-scrollbar-thumb { background: var(--teal); }
        ::selection { background: var(--sand); color: var(--charcoal); }

        /* GLOBAL TYPOGRAPHY */
        h1, h2, h3, h4, .editorial-heading {
            color: var(--teal);
            font-weight: 300;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        p, .body-text {
            font-weight: 400;
            line-height: 1.8;
            color: #333333;
            letter-spacing: -0.01em;
        }
        .uppercase-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--sand);
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* PREMIUM UTILITIES & GLOBAL STYLES */
        .page-wrapper { width: 100%; position: relative; }
        .page-view { display: none; width: 100%; min-height: 100vh; animation: fadeInView 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        .page-view.active { display: block; }
        
        @keyframes fadeInView {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* READING PROGRESS */
        #reading-progress {
            position: fixed; top: 0; left: 0; height: 3px; background: var(--blue);
            width: 0%; z-index: 2000; transition: width 0.1s linear;
        }

        /* ULTRA HEADER */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            background: transparent; border-bottom: 1px solid transparent;
            transition: var(--transition); padding: 2.5rem 4rem;
            height: 100px;
            display: flex; justify-content: space-between; align-items: center;
        }
        header.scrolled {
            padding: 1.2rem 4rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--blue);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .logo-container { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; cursor: pointer; }
        .logo-mark { width: 24px; height: 24px; background: var(--teal); border-radius: 50%; display: inline-block; }
        .logo-text { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--charcoal); }
        
        nav.nav-center { display: flex; gap: 3rem; }
        nav.nav-center a {
            text-decoration: none; color: var(--charcoal); font-size: 0.9rem; font-weight: 500;
            position: relative; padding: 0.5rem 0; letter-spacing: 0.02em; transition: var(--transition);
        }
        nav.nav-center a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
            background: var(--blue); transition: var(--transition);
        }
        nav.nav-center a:hover { color: var(--blue); letter-spacing: 0.08em; }
        nav.nav-center a:hover::after { width: 100%; }

        .header-right { display: flex; gap: 2rem; align-items: center; }
        .header-icon-btn {
            background: none; border: none; font-size: 0.85rem; text-transform: uppercase;
            letter-spacing: 0.1em; font-weight: 600; color: var(--charcoal); cursor: pointer;
            position: relative; transition: var(--transition);
        }
        .header-icon-btn:hover { color: var(--blue); }

        /* HAMBURGER & MOBILE MENU */
        .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; z-index: 1100; }
        .hamburger span { width: 28px; height: 2px; background: var(--charcoal); transition: var(--transition); }
        .mobile-menu {
            position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--ivory);
            z-index: 1050; display: flex; flex-direction: column; justify-content: center; padding: 4rem;
            gap: 2rem; transition: var(--transition); overflow-y: auto;
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a { font-size: 2rem; text-decoration: none; color: var(--teal); font-weight: 300; transition: var(--transition); }
        .mobile-menu a:hover { padding-left: 20px; color: var(--blue); }

        /* EDITORIAL COMPONENTS */
        .editorial-section { padding: 8rem 4rem; width: 100%; position: relative; overflow: hidden; }
        .bg-ivory { background-color: var(--ivory); }
        .bg-white { background-color: var(--white); }
        .bg-charcoal { background-color: var(--charcoal); color: var(--white); }
        .bg-charcoal h2 { color: var(--sand); }
        .bg-charcoal p { color: #cccccc; }

        .editorial-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .editorial-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
        
        /* CINEMATIC HERO STRUCTURE */
        .hero-section {
            width: 100%; height: 100vh; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: space-between; padding: 0 4rem;
            background-size: cover; background-position: center; transition: background-image 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,238,214,0.85) 30%, rgba(255,255,255,0.2)); z-index: 1; }
        .hero-left-index { position: relative; z-index: 2; border-left: 1px solid var(--sand); padding-left: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
        .hero-title-wrap { position: relative; z-index: 2; max-width: 50%; }
        .hero-title { font-size: 5.5rem; line-height: 0.95; font-weight: 300; color: var(--teal); text-transform: uppercase; }
        .hero-right-card {
            position: relative; z-index: 2; background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px); border: 1px solid var(--sand); padding: 3rem; max-width: 400px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05); transform: translateY(0); transition: var(--transition);
        }
        .hero-right-card:hover { transform: translateY(-10px); }
        .film-strip {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; background: rgba(26,26,26,0.9);
            z-index: 5; display: flex; border-top: 1px solid var(--sand);
        }
        .film-item {
            flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 2rem;
            border-right: 1px solid rgba(229,203,144,0.3); cursor: pointer; transition: var(--transition); color: rgba(255,255,255,0.6);
        }
        .film-item.active, .film-item:hover { background: var(--teal); color: var(--white); }

        /* EDITORIAL PLATES & LAYOUTS */
        .irregular-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; position: relative; }
        .plate { position: relative; transition: var(--transition); }
        .plate img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: var(--transition); }
        .plate:hover img { filter: grayscale(0%); transform: scale(1.02); }
        .plate-caption { position: absolute; background: var(--white); padding: 1.5rem; border: 1px solid var(--sand); box-shadow: 0 15px 30px rgba(0,0,0,0.02); }

        .editorial-band {
            width: 100%; height: 500px; position: relative; overflow: hidden; margin-bottom: 4rem;
            display: flex; align-items: center; justify-content: flex-start; padding: 4rem; background-size: cover; background-position: center;
        }
        .band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 100%); z-index: 1; }
        .band-content { position: relative; z-index: 2; max-width: 600px; color: var(--white); }
        .band-huge-text { position: absolute; right: -5%; bottom: -10%; font-size: 14rem; font-weight: 800; color: rgba(255,255,255,0.04); text-transform: uppercase; pointer-events: none; }

        /* BUTTONS */
        .premium-btn {
            display: inline-flex; align-items: center; gap: 1.5rem; background: transparent; border: 1px solid var(--charcoal);
            padding: 1rem 2.5rem; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
            color: var(--charcoal); cursor: pointer; position: relative; overflow: hidden; transition: var(--transition); text-decoration: none;
        }
        .premium-btn::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: var(--blue); transition: var(--transition); z-index: -1;
        }
        .premium-btn:hover { color: var(--white); border-color: var(--blue); }
        .premium-btn:hover::before { left: 0; }
        
        .premium-btn-alt { border-color: var(--white); color: var(--white); }
        .premium-btn-alt:hover { color: var(--charcoal); }
        .premium-btn-alt::before { background: var(--sand); }

        /* PRODUCT PANELS */
        .product-panel { background: var(--white); border: 1px solid rgba(229,203,144,0.4); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; transition: var(--transition); position: relative; }
        .product-panel:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(33,94,97,0.06); border-color: var(--blue); }
        .product-img-wrap { width: 100%; height: 420px; background: #fafafa; overflow: hidden; position: relative; }
        .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .product-panel:hover .product-img-wrap img { transform: scale(1.05); }
        .product-price { font-size: 1.25rem; font-weight: 300; color: var(--blue); margin-top: auto; }

        /* FOOTER */
        footer { background: #844f4f; color: var(--white); padding: 8rem 4rem 4rem 4rem; border-top: 1px solid var(--sand); }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 4rem; margin-bottom: 6rem; }
        .footer-brand h3 { color: var(--sand); font-size: 2rem; margin-bottom: 1.5rem; }
        .footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 2rem; font-weight: 600; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
        .footer-col ul li a { color: #ffffff; text-decoration: none; font-size: 0.9rem; transition: var(--transition); cursor: pointer; }
        .footer-col ul li a:hover { color: var(--sand); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 3rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #ffffff; }

        /* BACK TO TOP */
        .back-to-top {
            position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; background: var(--white);
            border: 1px solid var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .back-to-top.visible { opacity: 1; visibility: visible; }
        .back-to-top:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-5px); }

        /* MODAL SYSTEM (WISHLIST / CART / NOTIFICATION) */
        .premium-modal {
            position: fixed; inset: 0; background: rgba(26,26,26,0.6); backdrop-filter: blur(10px);
            z-index: 3000; display: none; align-items: center; justify-content: center; padding: 2rem;
        }
        .premium-modal.active { display: flex; }
        .modal-body {
            background: var(--ivory); border: 1px solid var(--sand); padding: 4rem; max-width: 600px; width: 100%;
            position: relative; animation: modalPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes modalPop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .modal-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--teal); }

        /* LEGAL INTERFACE STYLES */
        .legal-container { display: flex; gap: 4rem; margin-top: 4rem; position: relative; }
        .legal-sidebar { width: 300px; position: sticky; top: 140px; height: fit-content; border-right: 1px solid var(--sand); padding-right: 2rem; }
        .legal-sidebar-link { display: block; padding: 1rem 0; font-size: 0.9rem; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.03); transition: var(--transition); cursor: pointer; }
        .legal-sidebar-link:hover, .legal-sidebar-link.active { color: var(--blue); font-weight: 600; padding-left: 10px; }
        .legal-content { flex: 1; display: flex; flex-direction: column; gap: 4rem; }
        .legal-article { border-bottom: 1px solid rgb(255, 255, 255); padding-bottom: 4rem; }
        .legal-article h3 { font-size: 1.75rem; margin-bottom: 1.5rem;color:  #ffffff; }
        .legal-article p{color:  #ffffff}

        /* FAQ ACCORDION STYLES */
        .faq-chapter { margin-bottom: 4rem; }
        .faq-chapter-title { font-size: 2.2rem; border-bottom: 2px solid var(--sand); padding-bottom: 1rem; margin-bottom: 2rem; text-transform: uppercase; color: var(--teal); }
        .faq-item { border-bottom: 1px solid rgba(229,203,144,0.5); padding: 1.5rem 0; cursor: pointer; }
        .faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; font-weight: 500; color: var(--charcoal); transition: var(--transition); }
        .faq-item:hover .faq-question { color: var(--blue); }
        .faq-answer { max-height: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; padding-top: 0; font-size: 0.95rem; color: #ffffff; }
        .faq-item.active .faq-answer { max-height: 300px; opacity: 1; padding-top: 1rem; }
        .faq-icon::before { content: '+'; font-size: 1.2rem; font-weight: 300; transition: var(--transition); display: inline-block; }
        .faq-item.active .faq-icon::before { content: '—'; transform: rotate(180deg); }
        .faq-answer p{
            color:  #ffffff
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 1200px) {
            header, header.scrolled { padding: 1.5rem 2rem; }
            .editorial-section { padding: 6rem 2rem; }
            .hero-section { padding: 0 2rem; }
            .hero-title { font-size: 4rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
            .legal-container { flex-direction: column; }
            .legal-sidebar { width: 100%; position: relative; top: 0; border-right: none; border-bottom: 1px solid var(--sand); padding-bottom: 2rem; }
        }
        @media (max-width: 768px) {
            nav.nav-center, .header-right .header-icon-btn { display: none; }
            .hamburger { display: flex; }
            .editorial-grid-2, .editorial-grid-3 { grid-template-columns: 1fr; gap: 3rem; }
            .hero-section { flex-direction: column; justify-content: center; gap: 3rem; text-align: center; }
            .hero-title-wrap { max-width: 100%; }
            .hero-title { font-size: 3rem; }
            .hero-left-index { display: none; }
            .film-strip { display: none; }
            .footer-grid { grid-template-columns: 1fr; }
        }
