/* Suso shared widget CSS — full inline <style> from index.html (no filtering — destination pages need many compound selectors) */

        :root {
            --primary: #006591;
            --primary-container: #0ea5e9;
            --on-background: #0b1c30;
            --surface: #f8f9ff;
            --surface-container-low: #eff4ff;
            --surface-container: #e5eeff;
            --surface-container-lowest: #ffffff;
            --surface-container-highest: #d3e4fe;
            --outline: #6e7881;
            --outline-variant: #bec8d2;
            --on-surface-variant: #3e4850;
            --tertiary: #855300;
            --tertiary-container: #d88a00;
            --sky: #0ea5e9;
            --amber: #d88a00;
            --brand-amber: #F59E0B;
            --brand-amber-dark: #D97706;
            --brand-amber-deep: #B45309;
            --white: #ffffff;
            --dark-navy: #0b1c30;
            --gray-100: #f0f4f8;
            --gray-200: #e0e7f1;
            --gray-300: #d0dce9;
            --gray-400: #a0aec0;
            --gray-500: #718096;
            --gray-700: #475569;
            --navy: #0b1c30;
            --navy-soft: #111D33;
            --navy-card: #162440;
            --cool-white: #f8f9ff;
            --sky-light: #38BDF8;
            --sky-dark: #0284C7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--surface);
            color: var(--on-background);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 700;
        }

        h3 {
            font-size: clamp(1.125rem, 3vw, 1.5rem);
            font-weight: 700;
        }

        h4 {
            font-size: 1.125rem;
            font-weight: 600;
        }

        em {
            font-style: italic;
            color: var(--primary-container);
        }

        strong {
            font-weight: 700;
        }

        p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--on-surface-variant);
        }

        /* Labels and overlines */
        .overline {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--outline);
            display: block;
            margin-bottom: 1rem;
        }

        .overline-amber {
            color: var(--amber);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.625rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .btn-lg {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }

        .btn-md {
            padding: 0.75rem 1.75rem;
            font-size: 0.95rem;
        }

        .btn-sm {
            padding: 0.5rem 1.25rem;
            font-size: 0.875rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
        }

        .btn-sky {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
        }

        .btn-sky:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
        }

        .btn-amber {
            background: linear-gradient(180deg, #FBBF24 0%, #F59E0B 55%, #E08E0B 100%);
            color: white;
            border-radius: 0.75rem;
            box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .btn-amber:hover {
            background: linear-gradient(180deg, #F5B947 0%, #E89508 55%, #C97F07 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }
        .btn-amber:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .btn-ghost {
            background: transparent;
            color: var(--on-background);
            border: 1px solid var(--outline-variant);
        }

        .btn-ghost:hover {
            background: var(--surface-container);
            border-color: var(--outline);
        }

        .btn-ghost-light {
            background: transparent;
            color: var(--on-background);
            border: 1px solid rgba(11, 28, 48, 0.2);
        }

        .btn-ghost-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(11, 28, 48, 0.4);
        }

        .btn-navy {
            background: var(--primary);
            color: white;
        }

        .btn-navy:hover {
            background: var(--primary);
            opacity: 0.9;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(11, 28, 48, 0.08);
        }

        .nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-weight: 700;
            color: var(--on-background);
            flex-shrink: 0;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
        }

        .logo-text {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .brand-blue {
            color: var(--primary-container);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--on-surface-variant);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--primary-container);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--outline);
        }

        .lang-switch a {
            text-decoration: none;
            color: var(--outline);
            transition: color 0.2s ease;
        }

        .lang-switch a.active {
            color: var(--primary-container);
            font-weight: 600;
        }

        .lang-sep {
            color: var(--outline-variant);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--on-background);
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu {
            display: none;
        }

        /* Development banner */
        #devBanner {
            position: relative;
            z-index: 201;
            background: var(--on-background);
            color: white;
            text-align: center;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        main {
            padding-top: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section - Elegant v2 */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            overflow: hidden;
            padding: 5rem 0 4rem;            /* horizontal gutter via .hero-inner */
        }
        /* Inner wrapper that mirrors .nav-inner — same max-width and gutter
           so the hero content shares the logo's left edge across viewports. */
        .hero-inner {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        @media (max-width: 640px) {
            .hero-inner { padding: 0 1rem; }
        }



        /* ============================================================
           Hero — Stacked Chips direction (per Claude Design brief)
           Each text element carries its own surface so readability is
           structural, not a per-image fight with the photo.
           ============================================================ */
        :root {
            --suso-chip-bg: rgba(8, 22, 40, 0.55);
            --suso-chip-border: rgba(255, 255, 255, 0.08);
            --suso-chip-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
            --suso-pill-bg: #0EA5E9;          /* Fluid Ledger: brand-blue */
            --suso-pill-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            --suso-amber: #F59E0B;             /* Fluid Ledger: CTA highlight */
            --suso-amber-deep: #C97D00;        /* hover/pressed */
        }

        .hero-bg-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: -2;
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        .hero-bg-slide.active {
            opacity: 1;
        }

        /* Bottom gradient — disabled for now (2026-05-07).
           Re-enable by uncommenting the .hero::after block below.
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(11, 28, 48, 0.65) 100%);
            pointer-events: none;
            z-index: -1;
        }
        */

        /* Content column: stacked, left-aligned. Gutter + max-width live on
           .hero-inner so all hero siblings share the same left edge as the
           top-nav logo. */
        .hero-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 1.75rem;
        }

        /* H1 chip — dark frosted glass (Fluid Ledger handoff) */
        .hero h1 {
            margin: 0 0 28px 0;
            line-height: 1.18;
            font-size: clamp(40px, 4.6vw, 64px);
            letter-spacing: -0.025em;
            color: #ffffff;
        }
        .hero h1 .hero-h1-chip {
            display: inline-block;
            white-space: pre-line;
            background: var(--suso-chip-bg);
            backdrop-filter: blur(18px) saturate(0.9);
            -webkit-backdrop-filter: blur(18px) saturate(0.9);
            padding: 22px 32px;
            border-radius: 16px;
            border: 1px solid var(--suso-chip-border);
            font-weight: 800;
            box-shadow: var(--suso-chip-shadow);
        }

        /* Subtitle pill — small uppercase brand-blue badge sitting ABOVE the H1 chip */
        .hero-sub {
            margin: 0 0 14px 0;
            line-height: 1.2;
            font-size: 12px;
            color: #ffffff;
        }
        .hero-sub .hero-sub-pill {
            display: inline-flex;
            align-items: center;
            background: var(--suso-pill-bg);
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-size: 12px;
            box-shadow: var(--suso-pill-shadow);
        }

        /* Metrics — single frosted bar, dividers between */
        .hero-metrics {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 28px;
            margin: 1.5rem 0 0 0;
            padding: 16px 24px;
            background: var(--suso-chip-bg);
            backdrop-filter: blur(18px) saturate(0.9);
            -webkit-backdrop-filter: blur(18px) saturate(0.9);
            border-radius: 18px;
            border: 1px solid var(--suso-chip-border);
            box-shadow: var(--suso-chip-shadow);
            list-style: none;
        }

        .hero-metric {
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-align: center;
        }
        .hero-metric + .hero-metric {
            padding-left: 28px;
            border-left: 1px solid rgba(255, 255, 255, 0.18);
        }
        .hero-metric .val {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: clamp(18px, 1.6vw, 22px);
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -0.015em;
            white-space: nowrap;
        }
        .hero-metric .lbl {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Search Widget — dark frosted glass shell to match the hero
           chip system. Internal field pills (.fg input, .date-trigger-wrap,
           .pax-trigger, .search-submit) keep their light surfaces and read
           as bright tiles inside the dark glass. */
        .search-widget {
            position: relative;
            z-index: 20;
            width: 100%;
            max-width: 920px;
            background: var(--suso-chip-bg, rgba(8, 22, 40, 0.55));
            backdrop-filter: blur(18px) saturate(0.9);
            -webkit-backdrop-filter: blur(18px) saturate(0.9);
            border: 1px solid var(--suso-chip-border, rgba(255, 255, 255, 0.08));
            border-radius: 18px;
            padding: 0.75rem;
            box-shadow: var(--suso-chip-shadow, 0 12px 36px rgba(0, 0, 0, 0.32));
            scroll-margin-top: 70px;
        }
        /* Raise search widget above nav (z=100) when a popover/dropdown is open */
        .search-widget.has-overlay { z-index: 300 !important; }
        .search-widget.has-overlay .pax-popover.open,
        .search-widget.has-overlay .ac-dropdown.open { z-index: 9999; }

        .cabin-select {
            padding: 0.5rem 0.5rem;
            border-radius: 0.5rem;
            border: 1px solid var(--outline-variant);
            background: var(--surface-container-lowest);
            color: var(--on-background);
            font-weight: 400;
            font-size: 0.9rem;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 100%;
        }

        .search-row {
            display: flex;
            gap: 0.4rem;
            align-items: flex-end;
        }

        .origin-dest {
            display: flex;
            gap: 0.4rem;
            align-items: flex-end;
            flex: 1.8;
            min-width: 0;
        }

        .origin-dest .fg {
            flex: 1;
            min-width: 0;
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            position: relative;
        }

        .fg label {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--outline);
        }

        .fg input,
        .fg select {
            padding: 0.5rem 0.6rem;
            border: 1px solid var(--outline-variant);
            border-radius: 0.5rem;
            background: var(--surface-container-lowest);
            color: var(--on-background);
            font-size: 0.9rem;
            font-family: "Plus Jakarta Sans", sans-serif;
            transition: all 0.2s ease;
        }

        .fg input::placeholder {
            color: var(--outline);
        }

        .fg input:focus,
        .fg select:focus {
            outline: none;
            border-color: transparent;
            background: var(--surface-container-lowest);
            box-shadow: 0 0 0 2px var(--primary);
            box-shadow: inset 0 -2px 0 var(--primary);
        }

        .date-trigger-wrap {
            display: flex;
            border: 1px solid var(--outline-variant);
            border-radius: 0.5rem;
            background: var(--surface-container-lowest);
            overflow: hidden;
            transition: border-color 0.2s ease;
        }
        .date-trigger-wrap:hover { border-color: var(--outline); }

        .date-trigger {
            padding: 0.5rem 0.6rem;
            border: none;
            background: transparent;
            color: var(--on-background);
            font-size: 0.9rem;
            font-weight: 400;
            font-family: "Plus Jakarta Sans", sans-serif;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .date-trigger-dep { flex: 1; min-width: 0; }
        .date-trigger-ret {
            flex: 1;
            min-width: 0;
            border-left: 1px solid var(--outline-variant);
            color: var(--outline);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.5rem 0.6rem;
            text-align: left;
        }
        .date-trigger-ret:hover { background: var(--surface-container-low); color: var(--primary-container); }
        .date-trigger-ret.has-return { color: var(--on-background); font-size: 0.9rem; font-weight: 400; }

        .pax-trigger {
            padding: 0.5rem 0.6rem;
            border: 1px solid var(--outline-variant);
            border-radius: 0.5rem;
            background: var(--surface-container-lowest);
            color: var(--on-background);
            font-size: 0.9rem;
            font-family: "Plus Jakarta Sans", sans-serif;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .date-trigger.placeholder {
            color: var(--outline);
        }
        .date-trigger.default-date {
            color: var(--on-background);
        }

        .pax-trigger:hover {
            border-color: var(--outline);
        }

        .swap-btn {
            width: 34px;
            height: 34px;
            border-radius: 0.5rem;
            border: 1px solid var(--outline-variant);
            background: var(--surface-container-lowest);
            color: var(--on-background);
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
            align-self: flex-end;
        }

        .swap-btn:hover {
            background: var(--surface-container);
            border-color: var(--primary-container);
            color: var(--primary-container);
        }

        .search-submit {
            align-self: flex-end;
            height: 34px;
            white-space: nowrap;
            font-size: 0.9rem;
            padding: 0 1.25rem;
            flex-shrink: 0;
            gap: 0.35rem;
        }
        /* Hero search submit (Ara) — solid Amber Gold per Fluid Ledger
           brand guide. The amber CTA is the brand's reserved high-conversion
           color. Other .btn-amber buttons on the site keep their amber
           gradient — this rule is scoped to .search-widget only. */
        .search-widget .search-submit.btn-amber {
            background: var(--suso-amber, #F59E0B);
            color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.30);
        }
        .search-widget .search-submit.btn-amber:hover {
            background: var(--suso-amber-deep, #C97D00);
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.30);
        }
        .search-widget .search-submit.btn-amber svg { stroke: #ffffff; }

        .fg .cabin-select {
            padding: 0.55rem 0.5rem;
            border-radius: 0.5rem;
            border: 1px solid var(--outline-variant);
            background: var(--surface-container-lowest);
            color: var(--on-background);
            font-weight: 400;
            font-size: 0.9rem;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 100%;
        }

        .ac-wrap {
            position: relative;
        }

        .ac-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-container-lowest);
            border: 1px solid var(--outline-variant);
            border-top: none;
            border-radius: 0 0 0.5rem 0.5rem;
            max-height: 200px;
            overflow-y: auto;
            z-index: 250;
            box-shadow: 0 10px 20px rgba(11, 28, 48, 0.1);
        }

        .ac-dropdown.active,
        .ac-dropdown.open {
            display: block;
        }

        .ac-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            border-bottom: 1px solid var(--surface-container);
            transition: background 0.2s ease;
            font-size: 0.9rem;
        }

        .ac-item:last-child {
            border-bottom: none;
        }

        .ac-item:hover {
            background: var(--surface-container);
        }

        .pax-popover {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--surface-container-lowest);
            border: 1px solid var(--outline-variant);
            border-radius: 0.75rem;
            padding: 1.5rem;
            width: 320px;
            z-index: 250;
            box-shadow: 0 10px 30px rgba(11, 28, 48, 0.12);
        }

        .pax-popover.active,
        .pax-popover.open {
            display: block;
        }

        .pax-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--surface-container);
        }

        .pax-row:last-child {
            border-bottom: none;
        }

        .pax-label {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .pax-label strong {
            font-size: 0.95rem;
            color: var(--on-background);
        }

        .pax-label span {
            font-size: 0.75rem;
            color: var(--outline);
        }

        .pax-counter {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border: 1px solid var(--outline-variant);
            border-radius: 0.375rem;
            padding: 0.25rem;
            background: var(--surface-container);
        }

        .pax-counter button {
            width: 28px;
            height: 28px;
            border: none;
            background: transparent;
            cursor: pointer;
            color: var(--outline);
            font-weight: 600;
            transition: all 0.2s ease;
            border-radius: 0.25rem;
        }

        .pax-counter button:hover {
            background: var(--surface-container-lowest);
            color: var(--primary);
        }

        .pax-count {
            min-width: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .pax-section-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--outline);
            margin-bottom: 0.5rem;
        }

        .pax-confirm-btn {
            display: none;
            width: 100%;
            padding: 0.85rem;
            margin-top: 1rem;
            border: none;
            border-radius: 0.75rem;
            background: var(--primary-container);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
        }

        .cabin-toggle {
            display: flex;
            gap: 0;
            background: var(--surface-container);
            border-radius: 0.5rem;
            padding: 0.2rem;
            margin-bottom: 0.5rem;
        }

        .cabin-toggle button {
            flex: 1;
            padding: 0.4rem 0.5rem;
            border: none;
            background: transparent;
            color: var(--on-surface-variant);
            font-weight: 500;
            font-size: 0.78rem;
            cursor: pointer;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .cabin-toggle button.active {
            background: white;
            color: var(--primary);
            font-weight: 600;
            box-shadow: 0 1px 3px rgba(11, 28, 48, 0.08);
        }

        /* Date Picker */
        .dp-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .dp-overlay.active,
        .dp-overlay.open {
            display: flex;
        }

        .dp-panel {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 1.5rem;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(11, 28, 48, 0.15);
        }

        .dp-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .dp-trip-toggle {
            display: inline-flex;
            gap: 0;
            background: var(--surface-container);
            border-radius: 0.5rem;
            padding: 0.25rem;
            margin-bottom: 0.75rem;
        }

        .dp-trip-toggle button {
            padding: 0.4rem 1rem;
            border: none;
            background: transparent;
            color: var(--on-surface-variant);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .dp-trip-toggle button.active {
            background: white;
            color: var(--primary);
            box-shadow: 0 2px 4px rgba(11, 28, 48, 0.08);
        }

        .dp-title {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--on-background);
        }

        .dp-months {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .dp-month-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .dp-month-title {
            font-weight: 600;
            color: var(--on-background);
        }

        .dp-nav {
            width: 32px;
            height: 32px;
            border: 1px solid var(--outline-variant);
            background: var(--surface-container);
            border-radius: 0.375rem;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--on-background);
            font-size: 1.1rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .dp-nav:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .dp-nav-fwd-mobile {
            display: none;
        }

        .dp-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            text-align: center;
        }

        .dp-day {
            font-size: 13px;
            padding: 8px 0;
            border-radius: 8px;
            cursor: pointer;
            color: var(--on-background);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 500;
            position: relative;
            text-align: center;
            transition: background 0.12s ease;
        }

        .dp-day:hover:not(.dp-disabled):not(.dp-empty):not(.dp-selected):not(.dp-range-start):not(.dp-range-end) {
            background: var(--surface-container-low);
        }

        .dp-day.dp-today {
            font-weight: 700;
            color: var(--primary);
        }

        .dp-day.dp-selected {
            background: var(--on-background);
            color: white;
            border-radius: 8px;
            font-weight: 700;
        }

        .dp-day.dp-range {
            background: rgba(14, 165, 233, 0.1);
            border-radius: 0;
        }

        .dp-day.dp-range-start {
            background: var(--on-background);
            color: white;
            border-radius: 8px 0 0 8px;
            font-weight: 700;
        }

        .dp-day.dp-range-end {
            background: var(--on-background);
            color: white;
            border-radius: 0 8px 8px 0;
            font-weight: 700;
        }

        .dp-day.dp-disabled {
            color: var(--gray-300, #d0dce9);
            cursor: not-allowed;
        }

        .dp-footer {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            padding-top: 1rem;
            border-top: 1px solid var(--surface-container);
        }

        .dp-clear,
        .dp-confirm {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .dp-clear {
            background: var(--surface-container);
            color: var(--on-background);
        }

        .dp-clear:hover {
            background: var(--surface-container-highest);
        }

        .dp-confirm {
            background: var(--primary);
            color: white;
        }

        .dp-confirm:hover:not(:disabled) {
            background: var(--primary-container);
        }

        .dp-confirm:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Flight Results */
        .results-section {
            background: var(--surface);
            padding: 3rem 0;
            display: none;
        }

        .results-section.active {
            display: block;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .results-count {
            font-size: 0.9rem;
            color: var(--outline);
            display: block;
            margin-top: 0.5rem;
        }

        .flight-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .flight-card {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.2s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(11, 28, 48, 0.04);
            scroll-margin-top: 70px;
        }

        .flight-card:hover {
            box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
            transform: translateY(-2px);
        }

        

        

        

        

        

        

        

        

        

        


        /* ── FLOW PAGES ─────────────────────────── */
        
        
        
        
        
        

        /* Progress Steps Bar */
        
        
        
        
        
        
        
        
        

        /* ── ENHANCED SEARCH RESULTS ─────────────── */
        
        
        
        
        .price-range-display {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-bottom: 8px;
        }
        .price-slider {
            width: 100%;
            accent-color: var(--sky);
        }
        
        
        .promo-card {
            background: linear-gradient(135deg, #006591 0%, #0EA5E9 100%);
            border-radius: 1rem;
            padding: 1.5rem;
            color: white;
        }
        .promo-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .promo-card p {
            font-size: 0.8rem;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .promo-card .btn {
            background: white;
            color: var(--primary);
            font-size: 0.8rem;
            padding: 8px 16px;
        }
        
        
        
        
        

        /* Enhanced flight cards for results page */
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* ── TERM SELECTION PAGE ─────────────────── */
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Term summary sidebar */
        
        
        
        
        
        
        
        
        
        
        
        

        /* Flight detail card at bottom of term page */
        
        
        
        
        
        
        
        
        
        

        /* ── PASSENGER DETAILS PAGE ──────────────── */
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Trip summary sidebar */
        
        
        
        
        
        
        
        
        
        
        
        

        /* ── APPROVAL PAGE ───────────────────────── */
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* ── CONFIRMATION PAGE ───────────────────── */
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Booking total sidebar */
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Success overlay */
        
        
        
        
        
        
        
        

        /* ── FLOW PAGE RESPONSIVE ────────────────── */
        
        

        /* Modals */
        .auth-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 150;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .auth-overlay.active {
            display: flex;
        }

        .modal,
        .auth-modal {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 2rem;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(11, 28, 48, 0.15);
        }

        .modal-header,
        .auth-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-header h3,
        .auth-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .modal-close {
            width: 36px;
            height: 36px;
            border: none;
            background: var(--surface-container);
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--on-background);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--surface-container-highest);
            color: var(--primary);
        }

        

        

        

        

        

        

        

        

        /* Auth Tabs */
        .auth-tabs {
            display: flex;
            gap: 0;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--surface-container);
        }

        .auth-tab {
            flex: 1;
            padding: 1rem;
            text-align: center;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            font-weight: 600;
            color: var(--outline);
            transition: all 0.2s ease;
        }

        .auth-tab.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .auth-body {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Problem Section */
        .dark-section.section {
            background: var(--on-background);
            color: white;
            padding: 5rem 0;
        }

        .dark-section h2,
        .dark-section .heading-lg,
        .dark-section .heading-lg strong {
            color: white;
        }

        .dark-section .heading-lg em {
            color: var(--primary-container);
        }

        .dark-section .overline {
            color: var(--amber);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .problem-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .p-idx {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.25);
            line-height: 1;
        }

        .problem-card h3 {
            color: white;
            margin: 0;
        }

        .problem-card p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-size: 0.95rem;
        }

        .p-tag {
            display: inline-block;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.9);
            padding: 0.4rem 0.8rem;
            border-radius: 0.375rem;
            width: fit-content;
        }

        /* Sections */
        .section {
            padding: 4rem 0;
            background: var(--surface);
        }

        .section-sm {
            padding: 3rem 0;
        }

        .how-top,
        .products-top,
        .vaadele-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .how-top > div:last-child,
        .vaadele-top > div:last-child {
            flex: 1;
            min-width: 300px;
        }

        .subtext {
            color: var(--on-surface-variant);
            line-height: 1.8;
            max-width: 450px;
        }

        /* Steps */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step-card {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(11, 28, 48, 0.04);
        }

        .step-card:hover {
            background: var(--surface-container-low);
            box-shadow: 0 20px 40px rgba(11, 28, 48, 0.08);
            transform: translateY(-2px);
        }

        .s-num {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .step-card h3 {
            margin-bottom: 0.75rem;
        }

        .step-card p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Products */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pcard {
            background: var(--surface-container-lowest);
            border-radius: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 40px rgba(11, 28, 48, 0.06);
        }

        .pcard.featured {
            grid-column: span 1;
        }

        @media (min-width: 768px) {
            .pcard.featured {
                grid-column: span 1;
            }
        }

        .pcard:hover {
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
            transform: translateY(-4px);
        }

        .pcard-img {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--surface-container);
        }

        .pcard-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .pcard:hover .pcard-img img {
            transform: scale(1.05);
        }

        .pcard-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: rgba(14, 165, 233, 0.95);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 0.375rem;
        }

        .pcard-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .pcard-body h3 {
            margin: 0;
        }

        .pcard-body p {
            margin: 0;
            flex: 1;
        }

        .pcard-terms {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: auto;
        }

        .pill {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.4rem 0.75rem;
            background: var(--surface-container);
            color: var(--on-surface-variant);
            border-radius: 0.375rem;
            text-transform: capitalize;
        }

        /* Vaadele */
        .vaadele-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
            position: relative;
        }

        .v-step {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--surface-container);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .v-step:hover {
            border-color: var(--primary-container);
            box-shadow: 0 10px 25px rgba(14, 165, 233, 0.08);
        }

        .v-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--surface-container);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .v-step h4 {
            margin: 0;
            color: var(--on-background);
        }

        .v-step p {
            margin: 0;
            font-size: 0.9rem;
        }

        .v-arrow {
            position: absolute;
            bottom: 2rem;
            right: -1.5rem;
            font-size: 1.5rem;
            color: var(--primary-container);
            display: none;
        }

        @media (min-width: 768px) {
            .vaadele-flow {
                grid-template-columns: repeat(3, 1fr);
            }

            .v-arrow {
                display: block;
            }

            .v-step:last-child .v-arrow {
                display: none;
            }
        }

        /* Calculator */
        .calc-section {
            background: var(--surface);
            padding: 4rem 0;
        }

        .calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 768px) {
            .calc-grid {
                grid-template-columns: 1fr;
            }
        }

        .calc-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .calc-form .fg label {
            font-weight: 600;
        }

        .calc-form input,
        .calc-form select {
            padding: 0.875rem;
            border: 1px solid var(--outline-variant);
            border-radius: 0.5rem;
            background: var(--surface-container-lowest);
            color: var(--on-background);
            font-size: 0.95rem;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .calc-form input:focus,
        .calc-form select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: inset 0 -2px 0 var(--primary);
        }

        .calc-result {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
            color: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
        }

        .cr-label {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.9;
        }

        .cr-amount {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0.5rem 0 0.75rem;
        }

        .cr-amount small {
            font-size: 0.7rem;
            font-weight: 600;
            opacity: 0.9;
        }

        .cr-detail {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .cr-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 1.5rem 0;
        }

        .cr-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }

        .cr-row .label {
            opacity: 0.9;
        }

        .cr-row .value {
            font-weight: 600;
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .faq-item {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(11, 28, 48, 0.04);
        }

        .faq-item:hover {
            background: var(--surface-container-low);
            box-shadow: 0 20px 40px rgba(11, 28, 48, 0.08);
        }

        .faq-item h4 {
            margin: 0 0 0.75rem 0;
            color: var(--on-background);
        }

        .faq-item p {
            margin: 0;
            color: var(--on-surface-variant);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .cta-inner {
            margin: 0 auto;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        /* Waitlist Form */
        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .waitlist-form input {
            padding: 0.875rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.95rem;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .waitlist-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .waitlist-form input:focus {
            outline: none;
            border-color: white;
            background: rgba(255, 255, 255, 0.15);
        }

        /* Footer */
        footer {
            background: var(--surface-container-low);
            color: var(--on-background);
            padding: 3rem 0 1rem;
            border-top: 1px solid var(--surface-container);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--surface-container);
        }

        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand .logo {
            color: var(--on-background);
        }

        .footer-brand p {
            color: var(--outline);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
        }

        .footer-col h5 {
            margin-bottom: 1rem;
            color: var(--on-background);
            font-size: 0.95rem;
        }

        .footer-col a {
            display: block;
            color: var(--outline);
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            transition: color 0.2s ease;
        }

        .footer-col a:hover {
            color: var(--primary-container);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            font-size: 0.85rem;
            color: var(--outline);
        }

        .footer-bottom a {
            color: var(--outline);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: var(--primary-container);
        }

        /* Flight Cards */
        .flight-card {
            background: var(--surface-container-lowest);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(11, 28, 48, 0.04);
        }
        .flight-card:hover {
            box-shadow: 0 8px 24px rgba(11, 28, 48, 0.08);
            transform: translateY(-2px);
        }
        .fc-main {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1.5rem;
            align-items: center;
            cursor: pointer;
        }
        .fc-legs { display: flex; align-items: center; gap: 0; flex: 1; min-width: 0; }
        .fc-legs.fc-legs--combo {
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto auto;
            column-gap: 0;
            row-gap: 0.5rem;
            align-items: center;
            width: 100%;
        }
        .fc-legs.fc-legs--combo > .fc-leg { display: contents; }
        .fc-legs.fc-legs--combo > .fc-leg:first-of-type > .fc-airline { grid-row: 1; grid-column: 1; }
        .fc-legs.fc-legs--combo > .fc-leg:first-of-type > .fc-route { grid-row: 1; grid-column: 2; }
        .fc-legs.fc-legs--combo > .fc-return-divider { grid-row: 2; grid-column: 2; margin: 0; width: 100%; }
        .fc-legs.fc-legs--combo > .fc-leg:last-of-type > .fc-airline { grid-row: 3; grid-column: 1; }
        .fc-legs.fc-legs--combo > .fc-leg:last-of-type > .fc-route { grid-row: 3; grid-column: 2; }
        .fc-leg { display: flex; align-items: center; gap: 0; flex: 1; min-width: 0; }
        .fc-airline { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; padding-right: 1.25rem; margin-right: 1.25rem; border-right: 1px solid var(--surface-container); }
        .fc-airline-logo { width: 40px; height: 40px; border-radius: 0.625rem; background: var(--surface-container-low); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--on-background); flex-shrink: 0; }
        img.fc-airline-logo { padding: 4px; object-fit: contain; }
        .fc-airline-name { font-size: 0.875rem; font-weight: 600; color: var(--on-background); white-space: nowrap; }
        .fc-airline-code { font-size: 0.75rem; color: var(--outline); }
        .fc-airline-code:empty { display: none; }
        .fc-baggage-note { font-size: 0.65rem; color: var(--outline); margin-top: 2px; line-height: 1.2; max-width: 160px; }
        .fc-route { display: flex; align-items: center; gap: 1rem; justify-content: center; flex: 1; padding: 0 0.5rem; max-width: 420px; margin: 0 auto; }
        .fc-point { text-align: center; flex-shrink: 0; }
        .fc-time { position: relative; display: inline-block; font-size: 1.25rem; font-weight: 700; color: var(--on-background); letter-spacing: -0.5px; }
        .fc-time-day { position: absolute; left: 100%; top: 0; margin-left: 0.2rem; padding: 0 0.25rem; font-size: 0.625rem; font-weight: 700; color: var(--outline); white-space: nowrap; }
        .fc-city { font-size: 0.75rem; color: var(--outline); }
        .fc-duration { text-align: center; position: relative; min-width: 100px; max-width: 200px; flex: 1; }
        .fc-duration-line { height: 1px; background: var(--outline-variant); position: relative; margin: 4px 0; }
        .fc-duration-line::before { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1.5px solid var(--outline); border-top: 1.5px solid var(--outline); transform: rotate(45deg); }
        .fc-duration-text { font-size: 0.688rem; color: var(--outline); font-weight: 500; }
        .fc-duration-stops { font-size: 0.625rem; color: var(--primary-container); font-weight: 600; }
        .fc-stops-warn { position: relative; display: inline-block; color: #b45309; margin: 0 0.15rem; font-size: 0.75rem; font-weight: 700; vertical-align: middle; cursor: help; }
        /* Tooltip z-index needs to clear the sticky header (z-index 100) and
           any sibling card whose hover-state transform creates a new stacking
           context. We also lift the hosting card above its peers so the
           tooltip — positioned absolutely inside it — isn't visually clipped
           by the next card's painted background. */
        .fc-stops-tip { position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: rgba(20,20,20,0.95); color: #fff; padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.7rem; font-weight: 500; line-height: 1.35; pointer-events: none; opacity: 0; transition: opacity 0.15s ease; z-index: 1001; white-space: nowrap; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
        .fc-stops-tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: rgba(20,20,20,0.95); }
        .fc-stops-warn:hover .fc-stops-tip { opacity: 1; }
        /* Promote the hosting card to its own stacking context with a higher
           z-index while the tooltip is open, so the tooltip paints over
           adjacent cards in the split view rather than behind them. */
        .flight-card:has(.fc-stops-warn:hover) { position: relative; z-index: 50; }
        .fc-price { text-align: right; padding-left: 1.5rem; border-left: 1px solid var(--surface-container); display: flex; flex-direction: column; align-items: flex-end; justify-content: center; min-width: 160px; }
        .fc-price-amount { font-size: 1.375rem; font-weight: 700; color: var(--on-background); letter-spacing: -0.5px; }
        .fc-price-installment { font-size: 0.75rem; color: var(--primary-container); font-weight: 600; margin-top: 0.125rem; }
        
        .fc-return-divider { display: flex; align-items: center; gap: 0.75rem; margin: 0.25rem 0; width: 100%; }
        .fc-return-divider::before, .fc-return-divider::after { content: ""; flex: 1; border-top: 1px dashed var(--outline-variant); }
        .fc-return-divider span { font-size: 0.688rem; color: var(--outline); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }

        /* Return-picker list shown when the user clicks a round trip outbound card */
        .fc-return-picker { background: linear-gradient(135deg, rgba(14, 165, 233, 0.04), rgba(14, 165, 233, 0.02)); border-radius: 0.75rem; padding: 0.75rem; }
        .fc-return-picker-title { font-size: 0.75rem; font-weight: 700; color: var(--primary-container); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
        .fc-return-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0.875rem; border: 1px solid rgba(14, 165, 233, 0.15); border-radius: 0.75rem; background: var(--surface-container-lowest); margin-bottom: 0.5rem; transition: all 0.2s ease; }
        .fc-return-row:hover { border-color: var(--primary-container); box-shadow: 0 2px 8px rgba(14, 165, 233, 0.08); }
        .fc-return-row-leg { flex: 1; min-width: 0; display: flex; align-items: center; gap: 1rem; }
        .fc-return-row-airline { display: flex; align-items: center; gap: 0.5rem; min-width: 140px; }
        .fc-return-row-airline-name { font-size: 0.813rem; font-weight: 600; color: var(--on-background); }
        .fc-return-row-route { display: flex; align-items: center; gap: 0.5rem; font-size: 0.813rem; color: var(--on-surface-variant); flex-wrap: wrap; }
        .fc-return-row-time { font-weight: 700; color: var(--on-background); }
        .fc-return-row-city { color: var(--outline); font-size: 0.75rem; }
        .fc-return-row-arrow { color: var(--outline); }
        .fc-return-row-dur { color: var(--outline); font-size: 0.75rem; margin-left: 0.5rem; }
        .fc-return-row-stops { color: var(--primary-container); font-size: 0.75rem; font-weight: 600; }
        .fc-return-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.375rem; min-width: 150px; }
        .fc-return-row-price { font-size: 1rem; font-weight: 700; color: var(--on-background); }
        .fc-return-row-pick { padding: 0.375rem 0.75rem; font-size: 0.75rem; }

        /* Divider between outbound and return leg inside the detail pane */
        
        
        

        /* Flight Detail Expansion */
        .fc-detail { display: none; padding: 1rem 0 1.5rem; border-top: 1px solid var(--surface-container); margin-top: 1rem; }
        .fc-detail.active { display: block; }
        .fc-detail-loading { text-align: center; padding: 1rem 0; color: var(--outline); font-size: 0.813rem; }
        .fc-detail-legs { display: flex; flex-direction: column; gap: 0.75rem; }
        .fc-detail-legs.fc-detail-legs--combo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
        
        .fc-detail-legs.fc-detail-legs--combo .fc-detail-leg-group { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
        .fc-detail-legs.fc-detail-legs--combo .fc-detail-leg-label { font-size: 0.688rem; font-weight: 700; color: var(--outline); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.125rem; text-align: center; }
        .fc-leg-detail { background: var(--surface-container-low); border-radius: 0.75rem; padding: 0.875rem 1rem; text-align: center; }
        .fc-leg-header { display: flex; align-items: center; justify-content: center; gap: 0.625rem; margin-bottom: 0.5rem; }
        .fc-leg-flight-num { font-size: 0.813rem; font-weight: 700; color: var(--on-background); }
        .fc-leg-aircraft { font-size: 0.75rem; color: var(--outline); }
        .fc-leg-route { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.813rem; }
        .fc-leg-route .fc-leg-airport { color: var(--on-surface-variant); }
        .fc-leg-route .fc-leg-time { font-weight: 600; color: var(--on-background); }
        
        
        .fc-leg-amenities { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.625rem; justify-content: center; }
        .fc-amenity-chip { display: inline-flex; align-items: center; padding: 0.188rem 0.5rem; background: var(--surface-container); border-radius: 9999px; font-size: 0.688rem; color: var(--on-surface-variant); }
        .fc-leg-co2 { margin-top: 0.5rem; font-size: 0.688rem; color: var(--outline); }
        .fc-leg-route-vertical { display: flex; flex-direction: column; gap: 0.375rem; margin-top: 0.125rem; align-items: center; }
        .fc-leg-route-line { display: flex; align-items: baseline; justify-content: center; gap: 0.625rem; font-size: 0.813rem; }
        .fc-leg-route-line .fc-leg-time { font-weight: 600; color: var(--on-background); min-width: 3rem; text-align: right; }
        .fc-leg-route-line .fc-leg-airport { color: var(--on-surface-variant); }
        .fc-detail-summary { display: flex; gap: 0.625rem; align-items: center; justify-content: center; margin-bottom: 0.75rem; flex-wrap: wrap; text-align: center; }
        .fc-detail-co2 { font-size: 0.75rem; font-weight: 600; color: var(--on-background); padding: 0.25rem 0.625rem; background: var(--surface-container); border-radius: 9999px; }
        .fc-detail-emission { font-size: 0.688rem; color: var(--outline); }
        .fc-layover-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; font-size: 0.75rem; color: var(--primary-container); font-weight: 500; flex-wrap: wrap; }
        .fc-layover-bar::before, .fc-layover-bar::after { content: ""; flex: 1; border-top: 1px dashed var(--outline-variant); min-width: 1rem; }
        .fc-layover-main { white-space: nowrap; }
        .fc-layover-flag { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.125rem 0.5rem; background: rgba(234, 179, 8, 0.14); color: #b45309; border-radius: 9999px; font-size: 0.688rem; font-weight: 600; }
        .fc-layover-flag::before { content: "⚠"; font-size: 0.75rem; }
        .fc-leg-day { display: inline-block; margin-left: 0.25rem; padding: 0 0.25rem; font-size: 0.625rem; font-weight: 700; color: var(--outline); vertical-align: top; }
        .fc-leg-warming { margin-top: 0.25rem; font-size: 0.688rem; color: var(--outline); font-style: italic; text-align: center; }

        /* Return hint tab -- flush bottom edge of flight-card */
        .flight-card:has(.fc-return-hint) { padding-bottom: 0; }
        .fc-return-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            margin: 0.75rem -1.5rem 0;
            padding: 0.55rem 1rem;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(14, 165, 233, 0.02));
            border-top: 1px solid rgba(14, 165, 233, 0.12);
            border-radius: 0 0 1rem 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary-container);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .fc-return-hint:hover {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.06));
        }
        .fc-return-hint svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
        .fc-detail.active ~ .fc-return-hint { display: none; }

        /* ===========================================================
           ALT2-UX: split column layout for round-trip results
           Left column = outbound cards, right column = return panel.
           The selected outbound expands its right panel to multiple
           return rows, pushing the next outbound row below.
           =========================================================== */
        :root {
            --return-accent: #6366f1;
            --return-accent-soft: rgba(99, 102, 241, 0.10);
            --return-accent-softer: rgba(99, 102, 241, 0.05);
        }
        .split-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .split-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 1rem;
            align-items: flex-start;
        }
        .split-left, .split-right { min-width: 0; }
        /* Outbound card (compact, fits half-width column) */
        .split-left .flight-card {
            padding: 1rem 1.125rem;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }
        .split-left .flight-card:hover {
            box-shadow: 0 8px 20px rgba(11, 28, 48, 0.08);
            transform: none;
        }
        .split-row.is-selected .split-left .flight-card {
            border-left: 4px solid var(--primary-container);
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.045), var(--surface-container-lowest) 60%);
            box-shadow: 0 10px 28px rgba(11, 28, 48, 0.10);
        }
        /* Booked pair — the outer .booked-row wrapper carries the amber styling,
           so the inner cards should stay clean (no per-card border/tint). */
        .split-row.is-booked.booked-row .flight-card {
            border: 1px solid var(--surface-container);
            background: var(--surface-container-lowest);
            box-shadow: none;
        }
        /* Hide the inline fc-detail + return-hint inside split cards.
           Booked-pair exception: its cards DO show an always-open detail
           pane underneath, so re-enable fc-detail.active only in that scope. */
        .split-left .fc-detail { display: none !important; }
        .booked-pair .split-left .fc-detail.active { display: block !important; }
        .split-left .fc-return-hint { display: none !important; }
        .split-left .flight-card:has(.fc-return-hint) { padding-bottom: 1rem; }
        /* Tighten the fc-main inside the narrow column */
        .split-left .fc-main { gap: 0.75rem; grid-template-columns: 1fr; }
        .split-left .fc-airline { padding-right: 0.75rem; margin-right: 0.75rem; }
        .split-left .fc-airline-name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; font-size: 0.8125rem; }
        .split-left .fc-route { max-width: none; padding: 0 0.25rem; gap: 0.5rem; }
        .split-left .fc-time { font-size: 1.0625rem; }
        .split-left .fc-duration { min-width: 70px; }
        /* No price/installment/Vadeli Al on the left cards — all that moves to
           the right panel (return picker or confirmation pane). */
        .split-left .fc-price { display: none !important; }
        /* "From X TRY" prefix inside the collapsed return placeholder.
           Tells the user the cheapest combo for this outbound up-front
           so they can scan prices without expanding each row. */
        .ret-placeholder .ret-placeholder-price {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 0.15rem;
        }
        .split-left .fc-baggage-note { display: none; }

        /* Section-header row: two titles side-by-side over the columns */
        .split-row.split-header {
            margin-bottom: 0;
            align-items: end;
        }
        .split-row.split-header .fc-section-header { padding: 0 0 0.25rem 0.25rem; }
        .split-row.split-header .split-right .fc-section-header { color: var(--gray-700); }
        .split-row.split-header .split-right .fc-section-subtitle {
            font-size: 0.72rem;
            font-weight: 400;
            color: var(--outline);
            padding: 0 0 0.5rem 0.25rem;
            margin-top: -0.1rem;
        }

        /* Right panel: placeholder (outbound not selected) */
        .ret-placeholder {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            height: 100%;
            min-height: 84px;
            padding: 1rem 1.25rem;
            background: var(--surface-container-lowest);
            border: 1px dashed var(--outline-variant);
            border-radius: 1rem;
            color: var(--outline);
            font-size: 0.8125rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .ret-placeholder:hover {
            border-color: var(--return-accent);
            color: var(--return-accent);
            background: var(--return-accent-softer);
        }
        .ret-placeholder svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

        /* Right panel: active (selected outbound's return list) */
        .ret-panel {
            background: linear-gradient(135deg, var(--return-accent-soft), var(--return-accent-softer));
            border: 1px solid var(--return-accent-soft);
            border-radius: 1rem;
            padding: 0.875rem;
        }
        
        
        
        .ret-panel .fc-return-row {
            padding: 0.625rem 0.75rem;
            margin-bottom: 0.375rem;
            background: var(--surface-container-lowest);
        }
        .ret-panel .fc-return-row:last-child { margin-bottom: 0; }
        .ret-panel .fc-return-row-airline { min-width: 100px; }
        .ret-panel .fc-return-row-right { min-width: 110px; gap: 0.25rem; }
        .ret-panel .fc-return-row-price { font-size: 0.9375rem; }
        .ret-panel .fc-return-row-stops { color: var(--return-accent); }
        .ret-panel .btn.btn-sky.fc-return-row-pick {
            background: var(--return-accent);
            border-color: var(--return-accent);
        }
        .ret-panel-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 2rem 1rem;
            color: var(--return-accent);
            font-size: 0.8125rem;
            font-weight: 500;
        }
        .ret-panel-loading .spinner {
            border-color: var(--return-accent-soft);
            border-top-color: var(--return-accent);
        }
        
        
        
        /* When showReturnPicker writes .fc-return-picker inside .ret-panel,
           flatten its sky-tinted wrapper so the indigo panel background shows through. */
        .ret-panel > .fc-return-picker {
            background: transparent;
            padding: 0;
            border-radius: 0;
        }
        .ret-panel .fc-return-picker-title {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--return-accent);
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-bottom: 0.625rem;
        }
        .ret-panel .fc-return-picker-more { padding-top: 0.75rem !important; }
        .ret-panel .fc-return-picker-more .btn {
            border-color: var(--return-accent) !important;
            color: var(--return-accent) !important;
        }
        .ret-panel .fc-return-picker-more .btn:hover {
            background: var(--return-accent-soft) !important;
        }
        /* Booked state — green wrapper spanning BOTH columns, with the
           outbound and return shown as side-by-side flight-cards (same
           markup/styling as the left column). */
        .split-row.booked-row {
            display: block;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.09), rgba(245, 158, 11, 0.02));
            border: 1px solid rgba(245, 158, 11, 0.28);
            border-left: 4px solid var(--brand-amber);
            border-radius: 1rem;
            padding: 0.875rem 1rem;
            box-shadow: 0 10px 28px rgba(245, 158, 11, 0.10);
        }
        .booked-inner {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .booked-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .booked-head-left {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .booked-change-wrap {
            display: inline-flex;
            align-items: center;
            font-size: 0.75rem;
            color: var(--outline);
            gap: 0;
        }
        .booked-change-wrap .booked-change {
            padding: 0 0.125rem;
        }
        .booked-head-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-left: auto;
        }
        .booked-total-inline {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            line-height: 1.1;
        }
        .booked-head .btn-amber {
            padding: 0.55rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        .booked-head-title {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: #6366f1;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .booked-head-title svg { width: 14px; height: 14px; fill: currentColor; }

        /* Inactive booked row — user previously booked this pair but has since
           interacted with another row. Grey the wrapper + button to signal it's
           no longer the active selection. Clicking it reactivates the row. */
        .split-row.booked-row.is-dim-booked {
            background: linear-gradient(135deg, rgba(148, 163, 184, 0.10), rgba(148, 163, 184, 0.02));
            border: 1px solid rgba(148, 163, 184, 0.28);
            box-shadow: none;
            opacity: 0.78;
            cursor: pointer;
            transition: opacity 0.2s ease, border-color 0.2s ease;
        }
        .split-row.booked-row.is-dim-booked:hover {
            opacity: 0.95;
            border-color: rgba(148, 163, 184, 0.45);
        }
        .split-row.booked-row.is-dim-booked .booked-head-title {
            display: none;
        }
        .split-row.booked-row.is-dim-booked .booked-cta {
            border-top-color: rgba(148, 163, 184, 0.22);
        }
        .split-row.booked-row.is-dim-booked .booked-change {
            color: #64748B;
        }
        .split-row.booked-row.is-dim-booked .btn-amber {
            background: linear-gradient(180deg, #CBD5E1 0%, #94A3B8 55%, #64748B 100%);
            box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        .split-row.booked-row.is-dim-booked .btn-amber:hover {
            background: linear-gradient(180deg, #CBD5E1 0%, #94A3B8 55%, #64748B 100%);
            transform: none;
            box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        .split-row.booked-row.is-dim-booked .fc-detail-toggle {
            background: linear-gradient(135deg, rgba(148, 163, 184, 0.08), rgba(148, 163, 184, 0.03)) !important;
            border-top-color: rgba(148, 163, 184, 0.18) !important;
            color: #64748B !important;
        }
        .split-row.booked-row.is-dim-booked .fc-detail-toggle:hover {
            background: linear-gradient(135deg, rgba(148, 163, 184, 0.14), rgba(148, 163, 184, 0.06)) !important;
        }
        .split-row.booked-row.is-dim-booked .fc-detail.active {
            background: var(--surface-container-lowest) !important;
            border-top-color: rgba(148, 163, 184, 0.15) !important;
        }
        /* On dim rows, neutralize child interactive elements so any click on
           the row surface reactivates the row. Once reactivated (amber),
           these buttons work normally again. */
        .split-row.booked-row.is-dim-booked .booked-change,
        .split-row.booked-row.is-dim-booked .btn-amber,
        .split-row.booked-row.is-dim-booked .fc-detail-toggle {
            pointer-events: none;
        }
        .booked-change {
            background: transparent;
            border: none;
            color: var(--return-accent);
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .booked-change:hover { background: var(--return-accent-soft); text-decoration: none; }
        .booked-pair {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 1rem;
            align-items: stretch;
        }
        .booked-pair .split-left .flight-card { cursor: default; }
        /* Flight-card that contains a detail toggle loses its bottom padding
           so the toggle tab sits flush with the card's bottom edge. */
        .booked-pair .split-left .flight-card:has(.fc-detail-toggle) {
            padding-bottom: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .booked-pair .split-left .flight-card .fc-main { order: 1; }
        .booked-pair .split-left .flight-card .fc-detail { order: 2; }
        .booked-pair .split-left .flight-card .fc-detail-toggle { order: 3; }
        /* Collapsible detail tab — sits flush to the card's bottom edge,
           styled to match the .fc-return-hint tab in the main index (soft
           tint + top border + rounded bottom corners). Amber-tinted here to
           echo the booked-row wrapper. */
        .booked-pair .split-left .flight-card .fc-detail-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            box-sizing: border-box;
            width: calc(100% + 2.25rem);
            margin: 0.75rem -1.125rem 0;
            padding: 0.55rem 1rem;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.10), rgba(14, 165, 233, 0.04));
            border: none;
            border-top: 1px solid rgba(14, 165, 233, 0.22);
            border-radius: 0 0 1rem 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .booked-pair .split-left .flight-card .fc-detail-toggle:hover {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0.08));
            color: var(--primary-container);
        }
        /* When the detail pane is open above the toggle, remove the toggle's
           top margin and border so the only separator is the detail pane's
           own border-top (sitting in the same visual position as the closed
           state's toggle border-top). */
        .booked-pair .split-left .flight-card .fc-detail-toggle.is-open {
            margin-top: 0;
            border-top: none;
        }
        .booked-pair .split-left .flight-card .fc-detail-toggle .fc-detail-chevron {
            width: 13px; height: 13px; transition: transform 0.2s;
            fill: currentColor; flex-shrink: 0;
        }
        .booked-pair .split-left .flight-card .fc-detail-toggle.is-open .fc-detail-chevron {
            transform: rotate(180deg);
        }
        /* Toggle stays at the card's bottom edge with rounded corners — the
           detail pane (when open) renders above it, not below. */
        .booked-pair .split-left .flight-card .fc-detail.active {
            margin: 0.75rem -1.125rem 0;
            padding: 0.875rem 1.125rem 1rem;
            border-top: 1px solid rgba(14, 165, 233, 0.22);
            background: var(--surface-container-lowest);
            border-radius: 0;
        }
        .booked-pair .split-left .flight-card .fc-detail .fc-detail-legs {
            gap: 0.5rem;
        }
        .booked-pair .split-left .flight-card .fc-leg-detail {
            padding: 0.625rem 0.75rem;
            background: transparent;
        }
        /* Amenity chips inside booked-pair detail: switch to soft amber so
           they match the card's amber theme. Dim-booked rows drop back to
           a neutral grey chip. */
        .booked-pair .split-left .flight-card .fc-amenity-chip {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.10), rgba(14, 165, 233, 0.04));
            color: var(--primary);
        }
        .split-row.booked-row.is-dim-booked .fc-amenity-chip {
            background: rgba(148, 163, 184, 0.15) !important;
            color: #64748B !important;
        }
        /* Inline loading animation for booked-card details */
        .fc-detail-inline-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.625rem;
            padding: 1rem 0.5rem;
        }
        .fc-detail-inline-loader .search-loader-track {
            width: 140px; height: 24px;
        }
        .fc-detail-inline-loader .search-loader-track svg {
            width: 18px; height: 18px;
        }
        .fc-detail-inline-loader .search-loader-text {
            font-size: 0.75rem;
            color: var(--outline);
            font-weight: 500;
        }
        .fc-detail-inline-loader .search-loader-dots span {
            width: 5px; height: 5px;
        }
        .booked-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(245, 158, 11, 0.22);
        }
        .booked-total-label { font-size: 0.6875rem; color: var(--outline); text-transform: uppercase; letter-spacing: 0.4px; }
        .booked-total-amount { font-size: 1.25rem; font-weight: 700; color: var(--on-background); }
        .booked-cta .btn { padding: 0.7rem 1.5rem; font-size: 0.9375rem; font-weight: 600; }

        @media (max-width: 900px) {
            .split-row { grid-template-columns: 1fr; gap: 0.5rem; }
            .ret-placeholder { min-height: 48px; padding: 0.75rem; font-size: 0.75rem; }
            .split-left .flight-card { padding: 1rem; }
            .booked-pair { grid-template-columns: 1fr; }
            .booked-cta { flex-direction: column; align-items: stretch; }
            .booked-cta .btn { width: 100%; }
            .booked-head { flex-wrap: wrap; gap: 0.5rem; }
            .booked-head-right { flex-wrap: wrap; gap: 0.5rem; width: 100%; justify-content: space-between; margin-left: 0; }
            .booked-total-inline { align-items: flex-start; }
            .booked-head .btn-amber { padding: 0.55rem 1rem; }
        }

        /* Mobile back button (Step 2 → Step 1). Hidden by default; only
           rendered as visible inside an .is-selected row on mobile. */
        .mobile-back-btn {
            display: none;
            align-items: center;
            gap: 0.375rem;
            background: transparent;
            border: none;
            color: var(--primary);
            font-size: 0.8125rem;
            font-weight: 600;
            padding: 0.5rem 0.25rem 0.625rem;
            cursor: pointer;
        }
        .mobile-back-btn:hover { color: var(--primary-container); }
        .mobile-back-btn svg { width: 14px; height: 14px; fill: currentColor; }

        /* Mobile stepper: at <=900px the two-column split collapses to a
           single column, so we drive a guided flow — Step 1 list the
           outbound options, Step 2 focus on the picked outbound + return
           picker, Step 3 is the booked-row. */
        @media (max-width: 900px) {
            /* Step 1 default: hide the "Return flights" column header and
               every inactive .split-right placeholder. */
            .split-row.split-header .split-right { display: none; }
            .split-row:not(.is-booked):not(.is-selected) .split-right { display: none; }

            /* Step 2: one row is selected. Hide every non-selected row in
               the same list, hide other result lists entirely, hide the
               split-headers, hide booked rows, and hide load-more. */
            #flightList:has(.split-row.is-selected) .split-row.split-header { display: none; }
            #flightList:has(.split-row.is-selected) .split-row.booked-row { display: none; }
            #flightList:has(.split-row.is-selected) .split-list:not(:has(.split-row.is-selected)) { display: none; }
            #flightList:has(.split-row.is-selected) .split-list:has(.split-row.is-selected) > .split-row:not(.is-selected) { display: none; }
            body:has(#flightList .split-row.is-selected) #loadMoreContainer { display: none; }

            /* Reveal the back button inside the selected row. */
            .split-row.is-selected .mobile-back-btn { display: inline-flex; }
        }

        /* Booking Summary (modal) */
        
        
        
        
        
        
        
        

        /* Term Options */
        
        
        
        
        
        
        

        /* Contract */
        
        .contract-check { display: flex; align-items: start; gap: 0.625rem; margin-bottom: 1.25rem; font-size: 0.813rem; color: var(--on-surface-variant); }
        .contract-check input { margin-top: 3px; accent-color: var(--primary-container); }

        /* Confirmation */
        
        
        
        
        

        /* Findeks precheck */
        .findeks-precheck { background: linear-gradient(135deg, rgba(14, 165, 233, 0.04), rgba(14, 165, 233, 0.08)); border-radius: 0.75rem; padding: 1.25rem; margin-top: 1rem; }
        .findeks-precheck h4 { font-size: 0.875rem; font-weight: 600; color: var(--on-background); margin-bottom: 0.5rem; }
        .findeks-precheck p { font-size: 0.75rem; color: var(--outline); line-height: 1.6; }

        /* Auth extras */
        .auth-user-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.875rem; background: rgba(14, 165, 233, 0.06); border-radius: 9999px; cursor: pointer; transition: all 0.2s; }
        .auth-user-badge:hover { background: rgba(14, 165, 233, 0.1); }
        .auth-user-badge .aub-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--primary-container); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
        .auth-user-badge .aub-name { font-size: 0.813rem; font-weight: 500; color: var(--on-background); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        
        .auth-footer { font-size: 0.75rem; color: var(--outline); text-align: center; margin-top: 1rem; line-height: 1.5; }
        .auth-footer a { color: var(--primary-container); cursor: pointer; text-decoration: none; font-weight: 500; }
        .auth-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0; font-size: 0.75rem; color: var(--outline); }
        .auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--surface-container); }

        /* Step 2 login bar */
        
        
        

        /* Search loader */
        .search-loader { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; padding: 3rem 1.25rem; }
        .search-loader-track { width: 220px; height: 36px; position: relative; overflow: hidden; }
        .search-loader-track svg { position: absolute; top: 6px; width: 24px; height: 24px; fill: var(--primary-container); animation: flyAcross 2.4s ease-in-out infinite; z-index: 1; }
        .search-loader-track::after { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--outline-variant) 20%, var(--outline-variant) 80%, transparent); transform: translateY(-50%); }
        @keyframes shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }
        .shake { animation: shake 0.4s ease; }
        @keyframes flyAcross { 0% { left: -28px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 220px; opacity: 0; } }
        .search-loader-text { font-size: 0.938rem; font-weight: 600; color: var(--on-background); }
        .search-loader-sub { font-size: 0.813rem; color: var(--outline); margin-top: -0.75rem; }
        .search-loader-dots { display: flex; gap: 0.375rem; }
        .search-loader-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-container); opacity: 0.3; animation: dotPulse 1.2s ease-in-out infinite; }
        .search-loader-dots span:nth-child(2) { animation-delay: 0.2s; }
        .search-loader-dots span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes dotPulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

        /* Spinner */
        .spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Swap btn - desktop styles in main CSS block above are authoritative */

        /* Origin-dest grid */
        /* origin-dest overrides handled in main block above */

        /* Responsive flight/modal fixes */
        @media (max-width: 768px) {
            .flight-card { padding: 1.25rem; }
            .fc-main { grid-template-columns: 1fr; gap: 1rem; }
            .fc-legs { flex-direction: column; }
            .fc-leg { flex-direction: column; gap: 0.75rem; }
            .fc-airline { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 0.75rem; border-bottom: 1px solid var(--surface-container); min-width: auto !important; }
            .fc-airline-name { max-width: none; }
            .fc-route { padding: 0; max-width: none; margin: 0; }
            .fc-return-divider { grid-column: 1; }
            /* Combo card: single column on mobile so route stacks under airline */
            .fc-legs.fc-legs--combo { grid-template-columns: 1fr; }
            .fc-legs.fc-legs--combo > .fc-leg:first-of-type > .fc-airline,
            .fc-legs.fc-legs--combo > .fc-leg:first-of-type > .fc-route,
            .fc-legs.fc-legs--combo > .fc-return-divider,
            .fc-legs.fc-legs--combo > .fc-leg:last-of-type > .fc-airline,
            .fc-legs.fc-legs--combo > .fc-leg:last-of-type > .fc-route { grid-column: 1; grid-row: auto; }
            .fc-legs.fc-legs--combo .fc-airline { justify-content: center; border-bottom: none; padding-bottom: 0.25rem; }
            .fc-detail-legs.fc-detail-legs--combo { grid-template-columns: 1fr; }
            .fc-price { text-align: center; border-left: none; padding-left: 0; border-top: 1px solid var(--surface-container); padding-top: 1rem; align-items: center; min-width: auto; }
            
            .search-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.4rem;
            }
            .search-row > .fg { min-width: 0 !important; }
            .origin-dest {
                grid-column: 1 / -1;
                flex-direction: column;
                position: relative;
                gap: 0;
            }
            .origin-dest .fg { width: 100%; }
            .swap-btn {
                position: absolute;
                right: 10px;
                left: auto;
                top: 50%;
                transform: translateY(-50%) rotate(90deg);
                width: 30px; height: 30px; font-size: 0.85rem;
                z-index: 2; border-radius: 50%;
                background: white;
                border: 1px solid var(--outline-variant);
                box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            }
            .search-submit {
                grid-column: 1 / -1;
                width: 100%; height: 40px !important;
                justify-content: center;
                font-size: 0.95rem !important;
                padding: 0 !important;
            }
            .search-row .fg input,
            .search-row .fg select,
            .search-row .date-trigger-wrap,
            .search-row .pax-trigger,
            .search-row .cabin-select {
                height: 40px;
                box-sizing: border-box;
            }
            .search-row .fg input,
            .search-row .pax-trigger {
                text-align: center;
            }
            /* Return picker rows stack on mobile */
            .fc-return-row { flex-direction: column; gap: 0.5rem; align-items: stretch; }
            .fc-return-row-leg { flex-direction: column; gap: 0.5rem; }
            .fc-return-row-right { flex-direction: row; align-items: center; justify-content: space-between; min-width: auto; }
            /* Pax popover mobile: drops down from below the sticky nav (top set by JS) */
            .pax-popover { position: fixed; top: 56px; bottom: auto; left: 0; right: 0; width: 100%; max-width: 100%; border-radius: 0 0 1rem 1rem; max-height: calc(100vh - 80px); overflow-y: auto; z-index: 200; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
            .pax-confirm-btn { display: block; }
            /* Swap button touch target */
            .swap-btn { width: 36px; height: 36px; }
        }

        /* Reveals */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        @keyframes reveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Destination Bento Grid */
        .dest-section {
            padding: 4rem 0;
            background: var(--surface);
        }

        .dest-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2.5rem;
        }

        .dest-header h2 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .dest-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 1fr 1fr;
            gap: 1.25rem;
            height: 700px;
        }

        .dest-card {
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            cursor: pointer;
        }

        .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .dest-card:hover img {
            transform: scale(1.1);
        }

        .dest-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11,28,48,0.8) 0%, transparent 60%);
        }

        .dest-card-content {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            color: white;
        }

        .dest-card-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }

        .dest-card-content h3 {
            color: white;
            margin-bottom: 0.25rem;
        }

        .dest-card-content p {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
        }

        .dest-lg { grid-column: span 2; grid-row: span 2; }
        .dest-wide { grid-column: span 2; }

        @media (max-width: 768px) {
            .dest-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                height: auto;
            }
            .dest-lg, .dest-wide { grid-column: span 1; grid-row: span 1; }
            .dest-card { min-height: 250px; }
            .dest-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 3rem 0 2rem;          /* gutter via .hero-inner */
            }

            .hero-content {
                max-width: 100%;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border-bottom: 1px solid var(--outline-variant);
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 0.75rem;
                max-height: 80vh;
                overflow-y: auto;
            }

            .mobile-menu.active,
            .mobile-menu.open {
                display: flex;
            }

            .mobile-menu a {
                padding: 0.75rem 0;
                text-decoration: none;
                color: var(--on-background);
                font-weight: 500;
                border-bottom: 1px solid var(--surface-container);
            }

            .mobile-menu a:last-of-type {
                border-bottom: none;
            }

            .calc-grid {
                grid-template-columns: 1fr;
            }

            .how-top,
            .products-top,
            .vaadele-top {
                flex-direction: column;
            }

            .products-top .btn {
                align-self: flex-start;
            }

            .dp-overlay {
                padding: 0;
                align-items: stretch;
            }
            .dp-panel {
                border-radius: 0;
                max-height: 100vh;
                max-width: 100%;
                display: flex;
                flex-direction: column;
            }
            .dp-months {
                grid-template-columns: 1fr;
                flex: 1;
                overflow-y: auto;
            }
            .dp-months > div:nth-child(2) {
                display: none;
            }
            .dp-nav-fwd-mobile {
                display: inline-flex !important;
            }
            .dp-header {
                position: sticky;
                top: 0;
                background: var(--surface-container-lowest);
                z-index: 2;
                padding-bottom: 0.75rem;
            }
            .dp-footer {
                position: sticky;
                bottom: 0;
                background: var(--surface-container-lowest);
                z-index: 2;
                padding-top: 0.75rem;
            }

            .steps,
            .product-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .vaadele-flow {
                grid-template-columns: 1fr;
            }

            .v-arrow {
                display: block !important;
                bottom: -2rem;
                right: 50%;
                transform: translateX(50%) rotate(90deg);
            }

            .v-step:last-child .v-arrow {
                display: none !important;
            }
        }

        @media (max-width: 640px) {
            .hero {
                margin-top: -56px;
                padding-top: calc(56px + 2rem);
            }

            .hero-metrics {
                flex-direction: row;
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .search-widget {
                padding: 0.5rem;
            }

            .nav-inner {
                padding: 0.75rem 1rem;
                gap: 1rem;
            }

            .logo-mark {
                width: 28px;
                height: 28px;
            }

            .nav-actions {
                gap: 0.5rem;
            }

            .nav-actions .btn {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }

            h1 {
                font-size: 1.75rem;
            }

            h2 {
                font-size: 1.25rem;
            }

            .search-widget {
                padding: 0.5rem;
            }

            .container {
                padding: 0 1rem;
            }

            .problem-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .pcard-img {
                height: 150px;
            }

            main {
                padding-top: 48px;
            }

            /* Flight cards at narrow widths */
            .flight-card { padding: 1rem; border-radius: 0.75rem; }
            .fc-time { font-size: 1.1rem; }
            .fc-duration { min-width: 80px; }

            /* Date triggers stay side by side on mobile */
            .date-trigger-wrap { flex-direction: row; }
            .date-trigger { flex: 1; font-size: 0.8rem; font-weight: 400; padding: 0.4rem; text-align: center; }
            .date-trigger-ret, .date-trigger-ret.has-return { font-size: 0.8rem; font-weight: 400; border-left: 1px solid var(--outline-variant); border-top: none; }

            /* Search row single column */
            .search-row { grid-template-columns: 1fr; }
            .search-row > .fg { grid-column: 1; }
        }
        /* heading-lg: editorial heading style adapted to v2 typography */
        .heading-lg {
            font-family: "Plus Jakarta Sans", system-ui, sans-serif;
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 600;
            letter-spacing: -1.5px;
            line-height: 1.1;
        }
        .heading-lg strong { font-weight: 800; }
        .heading-lg em { font-style: italic; font-weight: 600; }

        /* vaadele-section background */
        .vaadele-section { background: var(--surface-container-lowest, #ffffff); }

        /* ac-sub: airport autocomplete subtitle */
        .ac-item .ac-sub { font-size: 11px; color: var(--outline); margin-top: 2px; }

        /* dp-day-label: calendar column headers */
        .dp-day-label { font-size: 11px; font-weight: 600; color: var(--gray-400, #a0aec0); padding: 4px 0; text-transform: uppercase; text-align: center; }

        /* dp-empty: non-selectable date cells */
        .dp-day.dp-empty { cursor: default; background: transparent; }

        /* Phone country code group */
        .phone-group { display: flex; gap: 0; }
        .phone-group select {
            width: 105px; flex-shrink: 0; border-radius: 10px 0 0 10px;
            border-right: none; font-size: 13px; padding: 10px 6px 10px 10px;
            background: var(--cool-white); border: 1px solid var(--gray-200);
            color: var(--gray-700); cursor: pointer; appearance: none;
            -webkit-appearance: none; -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 6px center;
        }
        .phone-group input { border-radius: 0 10px 10px 0 !important; flex: 1; min-width: 0; }
        .phone-group-dark select {
            background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
            color: var(--white);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23ccc'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 6px center;
        }
        .phone-group-dark select option {
            background: var(--surface-container-lowest); color: var(--on-background);
        }
        .phone-group-dark input { border-radius: 0 10px 10px 0 !important; }
        @media (max-width: 380px) {
            .phone-group select { width: 92px; font-size: 12px; padding-left: 8px; }
        }

        /* Date picker trip type hint */
        .dp-trip-hint { font-size: 12px; color: var(--gray-500); text-align: center; padding: 4px 0 8px; font-style: italic; }

        /* Cookie consent banner. KVKK requires reject == accept prominence. */
        .suso-cookie-banner {
            position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9000;
            background: var(--navy); color: #fff; border-radius: 14px;
            padding: 18px 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.25);
            max-width: 920px; margin: 0 auto; display: none;
            font-size: 14px; line-height: 1.55;
        }
        .suso-cookie-banner.open { display: block; }
        .suso-cookie-banner h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
        .suso-cookie-banner p { margin: 0 0 14px; color: rgba(255,255,255,0.85); }
        .suso-cookie-banner a { color: #7dd3fc; text-decoration: underline; }
        .suso-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
        .suso-cookie-actions button {
            flex: 1 1 auto; min-width: 110px; padding: 10px 16px; border-radius: 9px;
            font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid transparent;
        }
        .suso-cookie-btn-accept { background: var(--sky); color: #fff; }
        .suso-cookie-btn-reject { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
        .suso-cookie-btn-manage { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
        .suso-cookie-btn-accept:hover { filter: brightness(1.1); }
        .suso-cookie-btn-reject:hover, .suso-cookie-btn-manage:hover { background: rgba(255,255,255,0.12); }
        .suso-cookie-prefs { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); }
        .suso-cookie-banner.prefs-open .suso-cookie-prefs { display: block; }
        .suso-cookie-pref-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
        .suso-cookie-pref-row .label { font-size: 13px; }
        .suso-cookie-pref-row .label strong { display: block; font-size: 13px; margin-bottom: 2px; }
        .suso-cookie-pref-row .label span { color: rgba(255,255,255,0.65); font-size: 12px; }
        .suso-cookie-toggle {
            position: relative; width: 38px; height: 22px; flex-shrink: 0;
            background: rgba(255,255,255,0.2); border-radius: 12px; cursor: pointer; transition: background 0.15s;
        }
        .suso-cookie-toggle::after {
            content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
            background: #fff; border-radius: 50%; transition: left 0.15s;
        }
        .suso-cookie-toggle.on { background: var(--sky); }
        .suso-cookie-toggle.on::after { left: 18px; }
        .suso-cookie-toggle.locked { background: rgba(255,255,255,0.3); cursor: not-allowed; opacity: 0.7; }
        @media (max-width: 540px) {
            .suso-cookie-banner { padding: 14px 16px; font-size: 13px; }
            .suso-cookie-actions button { padding: 9px 12px; font-size: 12px; }
        }