/* =====================================================================
   site-chrome.css — SINGLE SOURCE for header / nav / mega-menu /
   mobile-menu / footer chrome. Extracted verbatim from index.html
   canonical sections so special pages (e.g. compare.html) stop drifting.
   ===================================================================== */

        /* =====================
           HEADER / NAVIGATION
           ===================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s var(--transition-smooth);
            background: transparent;
        }
        .header--scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
        }
        .header__container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: var(--header-height);
        }
        .header__logo img {
            height: 40px;
            transition: filter 0.3s ease;
        }
        .header--scrolled .header__logo img {
            filter: none;
        }
        .header:not(.header--scrolled) .header__logo img {
            filter: brightness(0) invert(1);
        }

        /* Desktop Navigation */
        .nav-desktop { display: flex; align-items: center; gap: 0; }
        .nav-desktop__list { display: flex; align-items: center; gap: 0; }
        .nav-desktop__item { position: relative; }
        .nav-desktop__item::after {
            content: ''; position: absolute; top: 100%; left: -20px; right: -20px;
            height: 28px; background: transparent;
        }
        .nav-desktop__link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 28px 20px;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--orient-white);
            transition: color 0.3s ease;
        }
        .header--scrolled .nav-desktop__link {
            color: var(--orient-gray-800);
        }
        .nav-desktop__link:hover {
            color: var(--orient-blue-light);
        }
        .header--scrolled .nav-desktop__link:hover {
            color: var(--orient-blue);
        }
        .nav-desktop__link svg {
            width: 10px;
            height: 10px;
            transition: transform 0.3s ease;
        }
        .nav-desktop__item:hover .nav-desktop__link svg {
            transform: rotate(180deg);
        }

        /* Mega Menu Dropdown - Enhanced Full-Width */
        .mega-menu {
            position: fixed;
            top: var(--header-height);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: calc(100vw - 80px);
            max-width: 1400px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: var(--orient-white);
            border-radius: 0 0 16px 16px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            border-top: 3px solid var(--orient-blue);
            transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth), visibility 0s 0.4s;
            z-index: 999;
        }
        .nav-desktop__item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
            transition-delay: 0s;
        }
        .mega-menu__grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.2fr 0.8fr;
            gap: 0;
            padding: 32px 40px;
        }
        .mega-menu__col {
            padding-right: 32px;
        }
        .mega-menu__col:last-child { padding-right: 0; }
        .mega-menu__col + .mega-menu__col { border-left: 1px solid var(--orient-gray-100); padding-left: 32px; }
        .mega-menu__section-title {
            font-family: var(--font-heading);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orient-blue);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--orient-gold);
        }
        .mega-menu__item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 14px;
            border-radius: 10px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            margin-bottom: 4px;
            opacity: 0;
            animation: megaFadeIn 0.4s ease forwards;
        }
        .mega-menu__item:nth-child(2) { animation-delay: 0.05s; }
        .mega-menu__item:nth-child(3) { animation-delay: 0.1s; }
        .mega-menu__item:nth-child(4) { animation-delay: 0.15s; }
        .mega-menu__item:hover {
            background: var(--orient-gray-100);
            border-left-color: var(--orient-blue);
            transform: translateX(6px);
        }
        @keyframes megaFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mega-menu__item-icon {
            font-size: 20px;
            line-height: 1;
            flex-shrink: 0;
            width: 28px;
            text-align: center;
        }
        .mega-menu__item-text { flex: 1; }
        .mega-menu__link {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--orient-gray-800);
            transition: color 0.2s ease;
            margin-bottom: 2px;
        }
        .mega-menu__item:hover .mega-menu__link { color: var(--orient-blue); }
        .mega-menu__link-sub {
            font-size: 12px;
            color: var(--orient-gray-400);
            font-weight: 400;
            line-height: 1.4;
        }
        /* Featured product in mega menu */
        .mega-menu__featured {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--orient-navy) 0%, var(--orient-blue) 100%);
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .mega-menu__featured-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--orient-gold);
            color: var(--orient-navy);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mega-menu__featured-img {
            max-height: 140px;
            width: auto;
            object-fit: contain;
            margin: 0 auto 16px;
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
        }
        .mega-menu__featured h4 {
            color: white;
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .mega-menu__featured p {
            color: rgba(255,255,255,0.7);
            font-size: 12px;
            margin-bottom: 12px;
        }
        .mega-menu__featured-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--orient-gold);
            color: var(--orient-navy);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: fit-content;
        }
        .mega-menu__featured-btn:hover {
            background: white;
            transform: translateY(-2px);
        }
        /* Quick links in mega menu */
        .mega-menu__quick-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 4px;
            font-size: 14px;
            font-weight: 500;
            color: var(--orient-gray-800);
        }
        .mega-menu__quick-link:hover {
            background: var(--orient-blue);
            color: white;
            transform: translateX(4px);
        }
        .mega-menu__quick-icon { font-size: 16px; }
        /* Mega menu bottom promo bar */
        .mega-menu__promo {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 40px;
            background: var(--orient-navy);
            border-radius: 0 0 16px 16px;
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }
        .mega-menu__promo strong { color: var(--orient-gold); }
        .mega-menu__promo-btn {
            background: var(--orient-gold);
            color: var(--orient-navy);
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .mega-menu__promo-btn:hover { background: white; }

        /* Noir theme mega menu */
        html.theme-noir .mega-menu {
            background: #111118;
            border-top-color: var(--orient-blue-light);
        }
        html.theme-noir .mega-menu__col + .mega-menu__col { border-left-color: rgba(255,255,255,0.06); }
        html.theme-noir .mega-menu__item:hover { background: rgba(255,255,255,0.04); }
        html.theme-noir .mega-menu__promo { background: #050709; }

        /* Simple dropdown for non-mega items */
        .dropdown {
            position: absolute;
            top: calc(100% + 20px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: var(--orient-white);
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            padding: 12px 0;
            min-width: 220px;
            transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth), visibility 0s 0.4s;
        }
        .nav-desktop__item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
            transition-delay: 0s;
        }
        .dropdown__link {
            display: block;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--orient-gray-800);
            transition: all 0.2s ease;
        }
        .dropdown__link:hover {
            background: var(--orient-gray-100);
            color: var(--orient-blue);
        }

        /* Header Actions */
        .header__actions { display: flex; align-items: center; gap: 16px; }
        .header__search-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        .header__search-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .header--scrolled .header__search-btn:hover {
            background: var(--orient-gray-100);
        }
        .header__search-btn svg {
            width: 20px;
            height: 20px;
            color: var(--orient-white);
            transition: color 0.3s ease;
        }
        .header--scrolled .header__search-btn svg {
            color: var(--orient-gray-800);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            width: 32px;
            height: 24px;
            flex-direction: column;
            justify-content: space-between;
        }
        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--orient-white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        .header--scrolled .hamburger span {
            background: var(--orient-gray-800);
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

        /* =====================
           FOOTER
           ===================== */
        .footer {
            background: var(--orient-navy);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 40px 40px;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 60px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer__brand-tagline {
            font-size: 15px;
            line-height: 1.7;
            margin: 20px 0;
            max-width: 280px;
        }
        .footer__socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .footer__social {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }
        .footer__social:hover {
            border-color: var(--orient-blue-light);
            color: var(--orient-blue-light);
            background: rgba(3, 78, 162, 0.1);
        }
        .footer__social svg { width: 18px; height: 18px; }
        .footer__col-title {
            font-family: var(--font-heading);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orient-white);
            margin-bottom: 24px;
        }
        .footer__link {
            display: block;
            padding: 6px 0;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        .footer__link:hover {
            color: var(--orient-white);
            transform: translateX(4px);
        }
        .footer__bottom {
            max-width: 1280px;
            margin: 60px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .footer__legal {
            display: flex;
            gap: 24px;
        }
        .footer__legal a:hover { color: var(--orient-white); }
        .footer__logo {
            height: 32px;
            filter: brightness(0) invert(1);
        }

        /* =====================
           MOBILE MENU
           ===================== */
        .mobile-menu {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: var(--orient-white);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.5s var(--transition-smooth);
            padding: 0;
            overflow-y: auto;
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu__close {
            display: flex; align-items: center; justify-content: space-between;
            padding: 24px 32px; border-bottom: 1px solid var(--orient-gray-200);
        }
        .mobile-menu__close-logo { height: 28px; }
        .mobile-menu__close-btn {
            width: 40px; height: 40px; border-radius: 50%; border: none;
            background: var(--orient-gray-100); color: var(--orient-gray-600);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.2s ease;
        }
        .mobile-menu__close-btn:hover { background: var(--orient-blue); color: white; }
        .mobile-menu__close-btn svg { width: 18px; height: 18px; }
        .mobile-menu__nav { padding: 20px 32px 40px; }
        .mobile-menu__link {
            display: block;
            padding: 16px 0;
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--orient-gray-800);
            border-bottom: 1px solid var(--orient-gray-200);
        }
        .mobile-menu__accordion {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 16px 0;
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--orient-gray-800);
            border-bottom: 1px solid var(--orient-gray-200);
            background: transparent; border-left: none; border-right: none; border-top: none;
            cursor: pointer; text-align: left;
        }
        .mobile-menu__accordion svg { transition: transform 0.3s ease; }
        .mobile-menu__accordion.open svg { transform: rotate(180deg); }
        .mobile-menu__panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--orient-gray-100);
            border-radius: 12px; margin-bottom: 4px;
        }
        .mobile-menu__panel.open { max-height: 1400px; padding: 8px 0; }
        .mobile-menu__sublink {
            display: block;
            padding: 12px 20px;
            font-size: 16px;
            color: var(--orient-gray-600);
            transition: color 0.2s ease;
        }
        .mobile-menu__sublink:hover { color: var(--orient-blue); }
        .mobile-menu__sublink-meta {
            display: block;
            margin-top: 2px;
            font-size: 12px;
            font-weight: 500;
            color: var(--orient-gray-400, #9CA3AF);
            letter-spacing: 0.2px;
        }
        .mobile-menu__sublink--accent {
            color: var(--orient-blue);
            font-weight: 600;
            border-top: 1px solid rgba(0,0,0,0.06);
            margin-top: 6px;
        }
        html.theme-noir .mobile-menu__sublink--accent,
        html.theme-aurora .mobile-menu__sublink--accent { border-top-color: rgba(255,255,255,0.08); }

        /* =====================
           RESPONSIVE
           ===================== */
        @media (max-width: 1024px) {
            .nav-desktop { display: none; }
            .hamburger { display: flex; }
            .hero__content { padding: 0 40px; }
            .hero__arrows { right: 40px; bottom: 40px; }
            .hero__dots { left: 40px; bottom: 40px; }
            .categories__grid { grid-template-columns: repeat(2, 1fr); }
            .quality__stats { gap: 30px 50px; }
            .news__grid { grid-template-columns: repeat(2, 1fr); }
            .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }
        @media (max-width: 768px) {
            :root { --header-height: 64px; }
            .header__container { padding: 0 20px; }
            /* Mobile: drop the overlay text to the lower part of the portrait
               banner (not vertically centred) so it doesn't sit over the product.
               96px bottom padding keeps it clear of the dots/arrows row. */
            .hero__content { padding: 0 20px 96px; justify-content: flex-end; }
            /* Hero slider: phones load a dedicated 9:16 portrait banner via the
               <picture> mobile <source>. Match the hero box to 9:16 so the whole
               portrait image fits with no crop. Desktop (100vh, 16:9) untouched. */
            .hero { height: auto; aspect-ratio: 9 / 16; min-height: 0; max-height: 100vh; }
            .hero__bg, .hero__bg picture, .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
            .hero__title { font-size: clamp(20px, 6vw, 30px); margin-bottom: 6px; }
            .hero__description { font-size: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
            .hero__arrows { right: 20px; bottom: 24px; }
            .hero__dots { left: 20px; bottom: 24px; }
            .hero__arrow { width: 44px; height: 44px; }
            .hero__counter { display: none; }
            .section { padding: 60px 20px; }
            .categories__grid { grid-template-columns: 1fr; }
            .featured__card { flex: 0 0 260px; }
            .quality__stats { gap: 28px 40px; }
            .news__grid { grid-template-columns: 1fr; }
            .footer__grid { grid-template-columns: 1fr; gap: 32px; }
            .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
            .partners__track { gap: 30px; }
        }

        /* ============================================
           MENU LAYOUTS
           ============================================ */
        /* Menu 2: Centered (logo center, nav below) */
        .header.menu-centered .header__container {
            flex-direction: column; height: auto; padding-top: 16px; padding-bottom: 0;
        }
        .header.menu-centered .header__logo { margin-bottom: 12px; }
        .header.menu-centered .nav-desktop {
            width: 100%; border-top: 1px solid rgba(255,255,255,0.15);
        }
        .header.menu-centered.header--scrolled .nav-desktop { border-top-color: var(--orient-gray-200); }
        .header.menu-centered .nav-desktop__list { justify-content: center; width: 100%; }
        .header.menu-centered .nav-desktop__link { padding: 16px 24px; letter-spacing: 3px; font-size: 11px; }
        .header.menu-centered .header__actions { position: absolute; right: 40px; top: 16px; }
        .header.menu-centered .mega-menu {
            top: auto; width: calc(100vw - 40px);
        }
        .header.menu-centered .nav-desktop__item:hover .mega-menu { transform: translateX(-50%) translateY(0); }

        /* Menu 3: Minimal (hamburger only, full-screen overlay) */
        .header.menu-minimal .nav-desktop { display: none !important; }
        .header.menu-minimal .hamburger { display: flex !important; }
        .fullscreen-menu {
            position: fixed; inset: 0; background: var(--orient-navy);
            z-index: 998; display: flex; flex-direction: column;
            justify-content: center; align-items: center;
            opacity: 0; visibility: hidden;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .fullscreen-menu.open { opacity: 1; visibility: visible; }
        .fullscreen-menu__link {
            display: block; font-family: var(--font-heading);
            font-size: clamp(28px, 5vw, 48px); font-weight: var(--heading-weight);
            color: rgba(255,255,255,0.6); padding: 10px 0;
            letter-spacing: 2px; transition: all 0.4s ease;
            transform: translateY(20px); opacity: 0;
        }
        .fullscreen-menu.open .fullscreen-menu__link { transform: translateY(0); opacity: 1; }
        .fullscreen-menu__link:nth-child(1) { transition-delay: 0.1s; }
        .fullscreen-menu__link:nth-child(2) { transition-delay: 0.15s; }
        .fullscreen-menu__link:nth-child(3) { transition-delay: 0.2s; }
        .fullscreen-menu__link:nth-child(4) { transition-delay: 0.25s; }
        .fullscreen-menu__link:hover { color: white; transform: translateX(10px) !important; }
        .fullscreen-menu__helpline {
            margin-top: 40px; font-family: var(--font-heading);
            font-size: 14px; font-weight: 600; color: var(--orient-gold);
            letter-spacing: 2px; opacity: 0; transition: opacity 0.4s 0.35s ease;
        }
        .fullscreen-menu.open .fullscreen-menu__helpline { opacity: 1; }

        /* ============================================
           MENU SUB-STYLE OPTIONS
           ============================================ */
        /* --- Classic: Bordered --- */
        .header.menu-classic.menustyle-bordered .nav-desktop__link {
            border-bottom: 2px solid transparent; padding-bottom: 6px;
        }
        .header.menu-classic.menustyle-bordered .nav-desktop__link:hover { border-bottom-color: currentColor; }
        .header.menu-classic.menustyle-bordered.header--scrolled .nav-desktop__link:hover { border-bottom-color: var(--orient-blue); }

        /* --- Classic: Pill --- */
        .header.menu-classic.menustyle-pill .nav-desktop__link {
            margin: 0 4px; border-radius: 50px; padding: 10px 20px;
        }
        .header.menu-classic.menustyle-pill .nav-desktop__link:hover { background: rgba(255,255,255,0.15); }
        .header.menu-classic.menustyle-pill.header--scrolled .nav-desktop__link:hover { background: rgba(3,78,162,0.08); }

        /* --- Classic: Underline --- */
        .header.menu-classic.menustyle-underline .nav-desktop__link { position: relative; }
        .header.menu-classic.menustyle-underline .nav-desktop__link::after {
            content: ''; position: absolute; bottom: 18px; left: 20px; right: 20px;
            height: 2px; background: currentColor; transform: scaleX(0);
            transform-origin: right; transition: transform 0.4s var(--transition-smooth);
        }
        .header.menu-classic.menustyle-underline .nav-desktop__link:hover::after { transform: scaleX(1); transform-origin: left; }
        .header.menu-classic.menustyle-underline.header--scrolled .nav-desktop__link::after { background: var(--orient-blue); }

        /* --- Centered: Stacked --- */
        .header.menu-centered.menustyle-stacked .header__container { gap: 8px; padding-top: 20px; }
        .header.menu-centered.menustyle-stacked .header__logo img { height: 48px; }
        .header.menu-centered.menustyle-stacked .nav-desktop__link { padding: 18px 28px; font-size: 12px; letter-spacing: 4px; }

        /* --- Centered: Ribbon --- */
        .header.menu-centered.menustyle-ribbon .nav-desktop {
            background: var(--orient-blue); width: calc(100% + 80px); margin: 0 -40px;
            border-top: none; padding: 0 40px;
        }
        .header.menu-centered.menustyle-ribbon .nav-desktop__link { color: white !important; padding: 14px 24px; font-size: 11px; }
        .header.menu-centered.menustyle-ribbon .nav-desktop__link:hover { background: rgba(255,255,255,0.15); }
        .header.menu-centered.menustyle-ribbon.header--scrolled .nav-desktop { background: var(--orient-blue); }

        /* --- Centered: Floating --- */
        .header.menu-centered.menustyle-floating .nav-desktop { border-top: none; gap: 8px; padding: 8px 0; }
        .header.menu-centered.menustyle-floating .nav-desktop__list { gap: 8px; }
        .header.menu-centered.menustyle-floating .nav-desktop__link {
            background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 10px;
            backdrop-filter: blur(8px); transition: all 0.3s ease;
        }
        .header.menu-centered.menustyle-floating .nav-desktop__link:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
        .header.menu-centered.menustyle-floating.header--scrolled .nav-desktop__link {
            background: var(--orient-gray-100); color: var(--orient-gray-800);
        }
        .header.menu-centered.menustyle-floating.header--scrolled .nav-desktop__link:hover {
            background: var(--orient-blue); color: white;
        }

        /* --- Minimal: Slide (from right) --- */
        .fullscreen-menu.menustyle-slide {
            opacity: 1 !important; visibility: hidden;
            transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.5s;
        }
        .fullscreen-menu.menustyle-slide.open { visibility: visible; transform: translateX(0); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1), visibility 0s; }
        .fullscreen-menu.menustyle-slide .fullscreen-menu__link { opacity: 1; transform: translateX(40px); }
        .fullscreen-menu.menustyle-slide.open .fullscreen-menu__link { transform: translateX(0); }

        /* --- Minimal: Curtain (from top) --- */
        .fullscreen-menu.menustyle-curtain {
            opacity: 1 !important; visibility: hidden;
            clip-path: inset(0 0 100% 0); transition: clip-path 0.6s cubic-bezier(0.19,1,0.22,1), visibility 0s 0.6s;
        }
        .fullscreen-menu.menustyle-curtain.open { visibility: visible; clip-path: inset(0 0 0 0); transition: clip-path 0.6s cubic-bezier(0.19,1,0.22,1), visibility 0s; }
        .fullscreen-menu.menustyle-curtain .fullscreen-menu__link { opacity: 1; transform: translateY(-30px); }
        .fullscreen-menu.menustyle-curtain.open .fullscreen-menu__link { transform: translateY(0); }

        /* --- Minimal: Circular (radial layout) --- */
        .fullscreen-menu.menustyle-circular { opacity: 0; visibility: hidden; transition: all 0.5s ease; }
        .fullscreen-menu.menustyle-circular.open { opacity: 1; visibility: visible; }
        .fullscreen-menu.menustyle-circular.open .fullscreen-menu__link {
            opacity: 1; transform: none;
        }
        .fullscreen-menu.menustyle-circular .fullscreen-menu__link {
            text-align: center; font-size: clamp(20px, 3.5vw, 36px);
            padding: 16px 40px; border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px; margin: 6px 0;
        }
        .fullscreen-menu.menustyle-circular .fullscreen-menu__link:hover {
            background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3);
            transform: scale(1.05) !important;
        }

        /* ============================================
           FOOTER LAYOUTS
           ============================================ */
        /* Footer 2: Magazine (light, 60/40 split, newsletter) */
        .footer.footer-magazine { background: var(--orient-off-white); color: var(--orient-gray-800); }
        .footer.footer-magazine .footer__grid { grid-template-columns: 3fr 2fr; }
        .footer.footer-magazine .footer__logo { filter: none; height: 40px; }
        .footer.footer-magazine .footer__brand-tagline {
            font-family: var(--font-heading); font-size: clamp(22px, 2.5vw, 32px);
            font-weight: var(--heading-weight); letter-spacing: var(--heading-spacing);
            line-height: 1.25; color: var(--orient-gray-800); max-width: 400px;
        }
        .footer.footer-magazine .footer__socials { gap: 16px; margin-top: 24px; }
        .footer.footer-magazine .footer__social {
            border-color: var(--orient-gray-200); color: var(--orient-gray-600); width: 48px; height: 48px;
        }
        .footer.footer-magazine .footer__social:hover {
            border-color: var(--orient-blue); color: var(--orient-blue); background: rgba(3,78,162,0.05);
        }
        .footer.footer-magazine .footer__grid > div:nth-child(n+2):not(.footer__links-area) { display: none; }
        .footer__links-area { display: none; }
        .footer.footer-magazine .footer__links-area {
            display: flex !important; flex-direction: column; gap: 28px;
            border-left: 2px solid var(--orient-gray-200); padding-left: 32px;
        }
        .footer.footer-magazine .footer__col-title { color: var(--orient-blue); }
        .footer.footer-magazine .footer__link { color: var(--orient-gray-600); }
        .footer.footer-magazine .footer__link:hover { color: var(--orient-blue); }
        .footer.footer-magazine .footer__bottom { border-top-color: var(--orient-gray-200); color: var(--orient-gray-400); }
        .footer.footer-magazine .footer__bottom a { color: var(--orient-gray-400); }
        .footer__newsletter { display: none; margin-top: 24px; gap: 8px; }
        .footer.footer-magazine .footer__newsletter { display: flex; }
        .footer__newsletter input {
            flex: 1; padding: 12px 20px; border: 1px solid var(--orient-gray-200);
            border-radius: 50px; font-family: var(--font-body); font-size: 14px;
            background: var(--orient-white); color: var(--orient-gray-800); outline: none;
        }
        .footer__newsletter input:focus { border-color: var(--orient-blue); }
        .footer__newsletter button {
            padding: 12px 24px; background: var(--orient-blue); color: white;
            border-radius: 50px; font-family: var(--font-heading); font-size: 12px;
            font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none;
        }

        /* Footer 3: Minimal (centered single column) */
        .footer.footer-minimal { text-align: center; padding: 60px 40px 30px; }
        .footer.footer-minimal .footer__grid {
            display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 600px;
        }
        .footer.footer-minimal .footer__grid > div:nth-child(n+2):not(.footer__inline-links) { display: none; }
        .footer.footer-minimal .footer__brand-tagline { max-width: 400px; text-align: center; }
        .footer.footer-minimal .footer__socials { justify-content: center; }
        .footer__inline-links { display: none; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
        .footer.footer-minimal .footer__inline-links { display: flex; }
        .footer__inline-links a {
            font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s ease; position: relative;
        }
        .footer__inline-links a::after {
            content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
            background: var(--orient-blue-light); transform: scaleX(0); transition: transform 0.3s ease;
        }
        .footer__inline-links a:hover { color: rgba(255,255,255,0.9); }
        .footer__inline-links a:hover::after { transform: scaleX(1); }
        .footer.footer-minimal .footer__bottom { border-top: none; padding-top: 16px; }
        .footer.footer-minimal .footer__legal { display: none; }

        /* Layout transitions */
        .header, .footer { transition: opacity 0.15s ease, background 0.5s ease; }

        /* ============================================
           AC SERIES SUB-LINKS (mega-menu + mobile)
           ============================================ */
        .mega-menu__series-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px 16px;
            padding: 4px 0 12px 44px;
            margin-top: -6px;
            margin-bottom: 6px;
        }
        .mega-menu__series-link {
            font-family: 'Inter', sans-serif;
            font-size: 12.5px;
            color: var(--orient-gray-500, #6B7280);
            text-decoration: none;
            padding: 4px 0;
            line-height: 1.3;
            transition: color 0.18s ease, transform 0.18s ease;
            white-space: nowrap;
        }
        .mega-menu__series-link:hover {
            color: var(--orient-blue, #034EA2);
            transform: translateX(2px);
        }
        html.theme-noir .mega-menu__series-link,
        html.theme-aurora .mega-menu__series-link { color: rgba(255,255,255,0.55); }
        html.theme-noir .mega-menu__series-link:hover,
        html.theme-aurora .mega-menu__series-link:hover { color: #fff; }

        .mobile-menu__sub-series {
            display: flex;
            flex-direction: column;
            padding-left: 16px;
            border-left: 2px solid rgba(0,0,0,0.06);
            margin: 2px 0 6px 12px;
        }
        .mobile-menu__sub-series a {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            color: var(--orient-gray-500, #6B7280);
            text-decoration: none;
            padding: 8px 0;
        }
        .mobile-menu__sub-series a:hover { color: var(--orient-blue, #034EA2); }
        html.theme-noir .mobile-menu__sub-series,
        html.theme-aurora .mobile-menu__sub-series { border-left-color: rgba(255,255,255,0.08); }
        html.theme-noir .mobile-menu__sub-series a,
        html.theme-aurora .mobile-menu__sub-series a { color: rgba(255,255,255,0.55); }

        /* ============================================
           MEGAMENU V2 BALANCED LAYOUT
           ============================================ */
        .mega-menu__grid[data-megamenu-v="2"] {
            grid-template-columns: 1fr 1fr 1.05fr 1fr;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__col {
            padding-right: 24px;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__col + .mega-menu__col {
            padding-left: 24px;
        }
        .mega-menu__section-link {
            display: inline-block;
            text-decoration: none;
            transition: color 0.18s ease;
        }
        .mega-menu__section-link:hover { color: var(--orient-blue, #034EA2); }
        .mega-menu__col-meta {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: var(--orient-gray-400, #9CA3AF);
            letter-spacing: 0.4px;
            text-transform: uppercase;
            margin: -8px 0 12px;
        }
        /* Single-column variant of the series list, used in V2 layout */
        .mega-menu__series-list--single {
            display: flex;
            flex-direction: column;
            grid-template-columns: none;
            padding: 0;
            margin: 0;
            gap: 0;
        }
        .mega-menu__series-list--single .mega-menu__series-link {
            font-size: 13.5px;
            padding: 6px 0;
            color: var(--orient-gray-700, #374151);
            white-space: nowrap;
        }
        .mega-menu__series-list--single .mega-menu__series-link:hover {
            color: var(--orient-blue, #034EA2);
        }
        .mega-menu__col-divider {
            height: 1px;
            background: var(--orient-gray-100, #E5E7EB);
            margin: 20px 0 16px;
        }
        html.theme-noir .mega-menu__col-divider,
        html.theme-aurora .mega-menu__col-divider { background: rgba(255,255,255,0.06); }
        html.theme-noir .mega-menu__section-link:hover,
        html.theme-aurora .mega-menu__section-link:hover { color: #fff; }
        html.theme-noir .mega-menu__col-meta,
        html.theme-aurora .mega-menu__col-meta { color: rgba(255,255,255,0.5); }
        html.theme-noir .mega-menu__series-list--single .mega-menu__series-link,
        html.theme-aurora .mega-menu__series-list--single .mega-menu__series-link {
            color: rgba(255,255,255,0.7);
        }

        /* ============================================
           MEGAMENU V2 BALANCE TWEAKS
           Compact col 3 (More Categories + Explore) so col 4 (Featured,
           with height:100%) stops stretching to match a too-tall col 3.
           ============================================ */
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__item {
            padding: 8px 12px;
            margin-bottom: 0;
            align-items: center;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__item .mega-menu__link {
            margin-bottom: 0;
            font-size: 13.5px;
        }
        /* Hide the brand sub-text only inside the v2 grid - series lists
           in cols 1/2 already convey the brands. */
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__item .mega-menu__link-sub {
            display: none;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__item-icon {
            font-size: 16px;
            width: 22px;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__quick-link {
            padding: 8px 12px;
            font-size: 13.5px;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__quick-icon {
            font-size: 14px;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__col-divider {
            margin: 14px 0 10px;
        }
        /* Drop the dotted column border so the lighter col 3 doesn't look
           visually pinched against the heavier featured card. */
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__col + .mega-menu__col {
            border-left: 0;
            padding-left: 16px;
        }
        .mega-menu__grid[data-megamenu-v="2"] .mega-menu__col {
            padding-right: 16px;
        }

