/* ---------------------------------------------------------------------------
   Website design system and page chrome.

   Ported from the legacy homepage v2 mockup (guestQuest_ci
   app/Views/website/homepage_v2.php), which held its whole stylesheet inline in
   one 12,830-line view. Split here into the part every website page needs —
   tokens, typography, buttons, header, footer, section shell, request tray —
   and home.css, which holds the homepage sections themselves.

   Selectors keep the mockup's .gqv2 scope even though nothing competes with
   them here. Two reasons: it keeps this file diffable against the mockup it
   came from, and Swiper's own rules are overridden by several sections — one
   class of specificity would be lost if the prefix were stripped. .gqv2 is the
   <body> class, set in app/Views/website/layout.php.
   --------------------------------------------------------------------------- */

/* ==================== SCOPED DESIGN SYSTEM (.gqv2) ====================
   Editorial skin: Navy #123B63 + Discovery Blue #2474A6 + Playfair/Caveat,
   with TERRACOTTA #D96C47 as the warm accent (replaces the earlier gold). */
.gqv2 {
    --gq-navy: #123B63;
    --gq-navy-dark: #0d2c4b;
    --gq-blue: #2474A6;
    --gq-blue-dark: #1c5d86;
    /* terracotta accent (kept on the old --gq-gold hooks) */
    --gq-gold: #D96C47;
    --gq-gold-dark: #B85434;
    --gq-orange: #D96C47;
    --gq-orange-dark: #B85434;
    --gq-white: #ffffff;
    /* accents (sparingly) */
    --gq-green: #5F8F72;
    --gq-green-dark: #4e7a5f;
    --gq-sky: #DCECF4;
    --gq-sand: #F5F0E6;
    --gq-charcoal: #33383D;

    --gq-line: #e3e9ef;
    --gq-mist: #64748b;
    /* Both were referenced but never defined, so the search-tab track had no
       background and the resting tab labels had no colour. */
    --gq-cloud: #F2F5F8;
    --gq-slate: #55637A;
    /* Location/mode blue. The dead --gq-teal used to sit here. */
    --gq-blue-tint: #eef4f9;
    --gq-radius: 14px;
    --gq-shadow: 0 18px 50px -20px rgba(18, 59, 99, .35);
    --gq-shadow-sm: 0 8px 24px -12px rgba(18, 59, 99, .25);

    --gq-font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --gq-head-font: 'Poppins', system-ui, Segoe UI, sans-serif;
    --gq-script-font: 'Vujahday Script', cursive;

    font-family: var(--gq-font);
    color: var(--gq-charcoal);
    background: var(--gq-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.gqv2 *,
.gqv2 *::before,
.gqv2 *::after {
    box-sizing: border-box;
}

.gqv2 img {
    max-width: 100%;
    display: block;
}

.gqv2 a {
    text-decoration: none;
    color: inherit;
}

.gqv2 .gqv2-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.gqv2 h1,
.gqv2 h2,
.gqv2 .gqv2-h2 {
    font-family: var(--gq-head-font);
    color: var(--gq-navy);
}

.gqv2 .gqv2-script {
    font-family: var(--gq-script-font);
    color: var(--gq-blue);
    font-weight: 700;
    letter-spacing: .5px;
}

.gqv2 .gqv2-h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 10px 0 12px;
}

.gqv2 .gqv2-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gq-mist);
    max-width: 620px;
}

/* ---- buttons ---- */
.gqv2 .gqv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--gq-font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    line-height: 1;
}

.gqv2 .gqv2-btn i {
    font-size: 13px;
}

.gqv2 .gqv2-btn-navy {
    background: var(--gq-navy);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(18, 59, 99, .55);
}

.gqv2 .gqv2-btn-navy:hover {
    background: var(--gq-navy-dark);
    transform: translateY(-2px);
    color: #fff;
}

.gqv2 .gqv2-btn-outline {
    background: rgba(255, 255, 255, .85);
    color: var(--gq-navy);
    border: 1.5px solid var(--gq-navy);
}

.gqv2 .gqv2-btn-outline:hover {
    background: #fff;
    transform: translateY(-2px);
    color: var(--gq-navy);
}

.gqv2 .gqv2-btn-green {
    background: var(--gq-green);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(95, 143, 114, .6);
}

.gqv2 .gqv2-btn-green:hover {
    background: var(--gq-green-dark);
    transform: translateY(-2px);
    color: #fff;
}

.gqv2 .gqv2-btn-gold {
    background: var(--gq-gold);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(217, 108, 71, .6);
}

.gqv2 .gqv2-btn-gold:hover {
    background: var(--gq-gold-dark);
    transform: translateY(-2px);
    color: #fff;
}


/* ==================== SECTION SHELL ==================== */
.gqv2 .gqv2-section {
    padding: 78px 0;
}

/* The hero sits tight against the header with the search bar right below it,
   rather than carrying a full section's padding.

   In the mockup this was keyed off `#gqv2-hero-slot + section` — the drawer
   moved whichever hero you picked to just after that slot div. There is one
   hero now and no slot, so it is a class on the section itself. */
.gqv2 .gqv2-section.gqv2-hero-section {
    padding: 18px 0 22px;
    background: transparent;
}

.gqv2 .gqv2-section.sky {
    background: var(--gq-sky);
}

.gqv2 .gqv2-section.sand {
    background: var(--gq-sand);
}

/* From the mockup's RESPONSIVE block — the rest of that block is per-section
   and lives in home.css. */
@media (max-width: 620px) {
    .gqv2 .gqv2-section {
        padding: 54px 0;
    }
}

/* ---- section header ----
   Script title on the left, an optional link on the right, a supporting line
   under the title. Lived in home.css until the story page needed the same
   header; it is page chrome rather than one section's layout, so it sits here
   with the section shell it belongs to. */
.gqv2 .gqv2-feat-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gqv2 .gqv2-feat-head .gqv2-script {
    font-size: 40px;
    line-height: 1;
}

/* The sub used to sit inline after the script, so a 40px cursive title and a 15px
   grey line shared one baseline and read as one run-on sentence. It now drops to
   its own line, with the measure capped so it stays a supporting line rather than
   stretching the full section width. Matches .gqv2-nhead-center, which already
   stacked its sub. */
.gqv2 .gqv2-feat-head .gqv2-feat-sub {
    display: block;
    margin: 9px 0 0;
    max-width: 54ch;
    color: var(--gq-mist);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.gqv2 .gqv2-textlink {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gq-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gqv2 .gqv2-textlink:hover {
    color: var(--gq-navy);
}


/* ==================== V2 HEADER ==================== */
.gqv2 .gqv2-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--gq-line);
    box-shadow: 0 4px 20px -12px rgba(18, 59, 99, .18);
}

.gqv2 .gqv2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    height: 76px;
}

.gqv2 .gqv2-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

/* brush-script wordmark (clean SVG, no "Traveler"), tinted via mask */
.gqv2 .gqv2-logo-svg {
    display: block;
    width: 136px;
    aspect-ratio: 235.44 / 97.2;
    background-color: var(--gq-navy);
    -webkit-mask: url('../images/gq-logo.svg') no-repeat center / contain;
    mask: url('../images/gq-logo.svg') no-repeat center / contain;
}

.gqv2 .gqv2-logo-tagline {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gq-gold-dark);
    white-space: nowrap;
    margin-top: -4px;
}

.gqv2 .gqv2-header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.gqv2 .gqv2-header-nav a {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gq-navy);
    padding: 6px 0;
    position: relative;
}

.gqv2 .gqv2-header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gq-gold);
    transition: right .22s ease;
}

.gqv2 .gqv2-header-nav a:hover {
    color: var(--gq-blue);
}

.gqv2 .gqv2-header-nav a:hover::after {
    right: 0;
}

.gqv2 .gqv2-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.gqv2 .gqv2-header-fav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gq-line);
    color: var(--gq-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: border-color .2s ease, color .2s ease;
}

.gqv2 .gqv2-header-fav:hover {
    border-color: var(--gq-gold);
    color: var(--gq-gold-dark);
}

.gqv2 .gqv2-header-actions .gqv2-btn {
    padding: 13px 22px;
    font-size: 12.5px;
}

/* hamburger + mobile nav */
.gqv2 .gqv2-burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1.5px solid var(--gq-line);
    background: #fff;
    color: var(--gq-navy);
    font-size: 17px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gqv2 .gqv2-mobile-nav {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--gq-line);
    box-shadow: 0 16px 30px -18px rgba(18, 59, 99, .3);
}

.gqv2 .gqv2-mobile-nav.open {
    display: block;
}

.gqv2 .gqv2-mobile-nav a {
    display: block;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gq-navy);
    border-top: 1px solid var(--gq-line);
}

.gqv2 .gqv2-mobile-nav a:hover {
    background: var(--gq-sky);
}

@media (max-width: 1000px) {
    .gqv2 .gqv2-header-nav {
        display: none;
    }

    .gqv2 .gqv2-burger {
        display: flex;
    }

    .gqv2 .gqv2-header-fav {
        display: none;
    }
}

/* ==================== V2 FOOTER ==================== */
.gqv2 .gqv2-footer {
    background: var(--gq-navy);
    color: rgba(255, 255, 255, .72);
}

.gqv2 .gqv2-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px;
}

.gqv2 .gqv2-footer .gqv2-logo {
    align-items: flex-start;
}

.gqv2 .gqv2-footer .gqv2-logo-svg {
    width: 165px;
    background-color: #fff;
}

.gqv2 .gqv2-footer .gqv2-logo-tagline {
    color: var(--gq-gold);
}

.gqv2 .gqv2-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 18px 0 22px;
    max-width: 300px;
}

.gqv2 .gqv2-footer-social {
    display: flex;
    gap: 10px;
}

.gqv2 .gqv2-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gqv2 .gqv2-footer-social a:hover {
    background: var(--gq-gold);
    border-color: var(--gq-gold);
    color: var(--gq-navy);
}

.gqv2 .gqv2-footer-col h4 {
    font-family: var(--gq-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gq-gold);
    margin: 6px 0 18px;
}

.gqv2 .gqv2-footer-col a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    padding: 6px 0;
    transition: color .18s ease, transform .18s ease;
}

.gqv2 .gqv2-footer-col a:hover {
    color: var(--gq-gold);
    transform: translateX(4px);
}

.gqv2 .gqv2-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}

.gqv2 .gqv2-footer-bottom .gqv2-script {
    color: var(--gq-gold);
    font-size: 18px;
}

@media (max-width: 900px) {
    .gqv2 .gqv2-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        padding: 48px 0 36px;
    }
}

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

    .gqv2 .gqv2-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}


/* ================= Request-info toggle (all sections) ================= */
.gqv2 .gqv2-reqbtn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(10, 32, 56, .10);
    box-shadow: 0 3px 10px rgba(10, 32, 56, .22);
    color: var(--gq-navy, #0a2038);
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), background .2s ease, box-shadow .2s ease, color .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.gqv2 .gqv2-reqbtn:hover {
    transform: scale(1.09);
    background: #fff;
    box-shadow: 0 5px 16px rgba(10, 32, 56, .28);
}

.gqv2 .gqv2-reqbtn:active { transform: scale(.94); }

.gqv2 .gqv2-reqbtn i {
    font-size: 15px;
    line-height: 1;
    transition: transform .25s ease, opacity .18s ease;
}

.gqv2 .gqv2-reqbtn .gqv2-reqbtn-on { position: absolute; opacity: 0; transform: scale(.4) rotate(-40deg); }
.gqv2 .gqv2-reqbtn .gqv2-reqbtn-add { opacity: 1; transform: none; }

/* selected */
.gqv2 .gqv2-reqbtn.is-on {
    background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 16px rgba(255, 118, 0, .5);
}

.gqv2 .gqv2-reqbtn.is-on .gqv2-reqbtn-add { opacity: 0; transform: scale(.4) rotate(40deg); }
.gqv2 .gqv2-reqbtn.is-on .gqv2-reqbtn-on  { opacity: 1; transform: none; }

/* pop when toggled on */
@keyframes gqv2-reqpop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.28); }
    100% { transform: scale(1); }
}
.gqv2 .gqv2-reqbtn.just-added { animation: gqv2-reqpop .38s ease; }

/* hover tooltip */
.gqv2 .gqv2-reqbtn-tip {
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    transform: translateY(-50%) translateX(6px);
    white-space: nowrap;
    background: var(--gq-navy, #0a2038);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 5px 9px;
    border-radius: 7px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}
.gqv2 .gqv2-reqbtn:hover .gqv2-reqbtn-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.gqv2 .gqv2-reqbtn.is-on .gqv2-reqbtn-tip { content: none; }

/* Horizontal rail cards put the body flush to the right edge, so a top-right
   toggle lands on top of the title. Move it onto the photo (left column). */
.gqv2 .gqv2-nb-item .gqv2-reqbtn {
    left: 10px;
    right: auto;
    top: 10px;
    width: 32px;
    height: 32px;
}
.gqv2 .gqv2-nb-item .gqv2-reqbtn i { font-size: 13px; }
.gqv2 .gqv2-nb-item .gqv2-reqbtn-tip { display: none; }

/* compact toggle for the small sponsored sub-items (lane rows, hero minis) */
.gqv2 .gqv2-spb-item .gqv2-reqbtn,
.gqv2 .gqv2-spc-mini .gqv2-reqbtn,
.gqv2 .gqv2-spd-card .gqv2-reqbtn {
    width: 28px; height: 28px; top: 6px; right: 6px;
}
.gqv2 .gqv2-spb-item .gqv2-reqbtn i,
.gqv2 .gqv2-spc-mini .gqv2-reqbtn i,
.gqv2 .gqv2-spd-card .gqv2-reqbtn i { font-size: 12px; }
.gqv2 .gqv2-spb-item .gqv2-reqbtn-tip,
.gqv2 .gqv2-spc-mini .gqv2-reqbtn-tip,
.gqv2 .gqv2-spd-card .gqv2-reqbtn-tip { display: none; }

/* Lane rows are a flex row (84px thumb + text beside it), so top-right lands on
   the title — sit it on the thumb instead. 18px = the row's 12px padding + 6px. */
.gqv2 .gqv2-spb-item .gqv2-reqbtn {
    left: 18px;
    right: auto;
    top: 18px;
}

/* The vibe pill also lives at top-right of a sponsored photo, so it sat under the
   toggle. Category badge keeps top-left, toggle keeps top-right, vibe moves to
   bottom-left — three corners, no stacking. */
.gqv2 .gqv2-sp-img .gqv2-vibe-tag {
    top: auto;
    right: auto;
    bottom: 8px;
    left: 8px;
}

/* Accordion panels are narrow when collapsed, so a long state name ("West
   Virginia") reached across into the toggle. Drop the tag below it. */
.gqv2 .gqv2-nacc-panel .gqv2-near-tag { top: 58px; }

@media (max-width: 620px) {
    .gqv2 .gqv2-reqbtn { width: 34px; height: 34px; top: 9px; right: 9px; }
    .gqv2 .gqv2-reqbtn i { font-size: 13px; }
    .gqv2 .gqv2-reqbtn-tip { display: none; }
}

/* ================= Request-info tray (v2) ================= */
.gqv2-tray {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(170%);
    width: min(1000px, calc(100% - 28px));
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}
.gqv2-tray.is-open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.gqv2-tray-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 14px 12px 16px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(12, 32, 56, .97), rgba(18, 44, 74, .97));
    box-shadow: 0 18px 50px rgba(6, 20, 38, .45);
    border: 1px solid rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
}

.gqv2-tray-lead { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.gqv2-tray-badge {
    position: relative;
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8a00, #ff6a00);
    font-size: 17px; color: #fff;
    box-shadow: 0 4px 14px rgba(255, 118, 0, .45);
}
.gqv2-tray-dot {
    position: absolute; top: -7px; right: -7px;
    min-width: 20px; height: 20px; padding: 0 5px;
    border-radius: 999px; background: #fff; color: #ff6a00;
    font-size: 12px; font-weight: 800; line-height: 20px; text-align: center;
    border: 2px solid #12233f;
}
.gqv2-tray-meta { display: flex; flex-direction: column; line-height: 1.25; }
.gqv2-tray-meta b { font-size: 15px; font-weight: 800; }
.gqv2-tray-meta span { font-size: 11.5px; color: rgba(255, 255, 255, .62); }

.gqv2-tray-chips {
    display: flex; align-items: center; gap: 8px;
    flex: 1; min-width: 0; overflow-x: auto; padding: 2px;
    scrollbar-width: none;
}
.gqv2-tray-chips::-webkit-scrollbar { display: none; }

.gqv2-tray-chip {
    display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
    max-width: 190px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px; padding: 4px 6px 4px 4px;
    animation: gqv2-chip-in .3s ease;
}
.gqv2-tray-chip img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.gqv2-tray-chip .t { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
.gqv2-tray-chip .x {
    border: 0; background: transparent; color: rgba(255, 255, 255, .55);
    cursor: pointer; font-size: 12px; padding: 2px 4px; border-radius: 50%; line-height: 1;
    transition: color .15s, background .15s;
}
.gqv2-tray-chip .x:hover { color: #fff; background: rgba(255, 255, 255, .14); }
@keyframes gqv2-chip-in { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: none; } }

.gqv2-tray-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.gqv2-tray-clear {
    border: 0; background: transparent; color: rgba(255, 255, 255, .6);
    font-size: 12.5px; font-weight: 700; cursor: pointer; padding: 8px 10px; border-radius: 10px;
    transition: color .15s, background .15s;
}
.gqv2-tray-clear:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.gqv2-tray-cta {
    border: 0; cursor: pointer;
    background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 100%);
    color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .2px;
    padding: 11px 20px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 118, 0, .45);
    transition: transform .18s ease, box-shadow .18s ease;
}
.gqv2-tray-cta:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(255, 118, 0, .55); }
.gqv2-tray-cta .n { font-weight: 900; }

@media (max-width: 760px) {
    .gqv2-tray { bottom: 12px; width: calc(100% - 18px); }
    .gqv2-tray-inner { gap: 10px; padding: 10px 12px; border-radius: 16px; }
    .gqv2-tray-chips { display: none; }
    .gqv2-tray-meta span { display: none; }
    .gqv2-tray-actions { margin-left: auto; }
    .gqv2-tray-cta { padding: 10px 15px; font-size: 13px; }
    .gqv2-tray-clear { padding: 8px; }
}

/* the v2 page ships its own tray — retire the legacy grey bar here only */
.dish { display: none !important; }

/* gold drive-time line for light (white card) contexts */
.gqv2 .gqv2-ndrive-lt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #b98c28;
    margin-bottom: 5px;
}


/* ==================== "SEE SOMETHING YOU LIKE" BAND ==================== */
.gqv2 .gqv2-band {
    background: var(--gq-sky);
}

.gqv2 .gqv2-band .gqv2-wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-top: 52px;
    padding-bottom: 52px;
    flex-wrap: wrap;
}

.gqv2 .gqv2-band-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: var(--gq-navy);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gq-shadow-sm);
    flex-shrink: 0;
}

.gqv2 .gqv2-band-copy {
    flex: 1;
    min-width: 260px;
}

.gqv2 .gqv2-band-copy h2 {
    font-family: var(--gq-font);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--gq-navy);
}

.gqv2 .gqv2-band-copy p {
    margin: 0;
    color: var(--gq-mist);
    font-size: 15px;
    font-weight: 600;
}

/* ---- reveal animation ---- */
.gqv2 .gqv2-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.gqv2 .gqv2-reveal.is-in {
    opacity: 1;
    transform: none;
}

