:root {
    /* St Pancras heritage — station navy, Gothic brick, warm gold */
    --navy: #0b1f4a;
    --navy-2: #143066;
    --red: #9b2335;
    --red-dark: #7e1c2a;
    --blue: #2a5fad;
    --blue-dark: #1f4c8c;
    --brick: var(--red);
    --brick-dark: var(--red-dark);
    --bg: #eef1f5;
    --card: #ffffff;
    --text: #142033;
    --text-2: #5a6578;
    --muted: #8791a3;
    --green: #12a150;
    --tp-green: #00b67a;
    --star-orange: #d4a017;
    --amber: #c4921a;
    --gold: #c9a227;
    --divider: #dde3ec;
    --border: #dde3ec;
    --teal: #0f766e;
    --shadow: 0 14px 34px rgba(11, 31, 74, 0.12);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    --hero-image: url('../images/hero-shop-front.jpg');
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 0;
    font-family: var(--font);
    /* Match shell so any iOS overscroll doesn’t show a grey void */
    background: #f7f8fb;
    color: var(--text);
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, p, label, li {
    overflow-wrap: break-word;
    word-break: normal;
}

h1, h2, h3 {
    font-family: var(--font);
    margin: 0;
    color: var(--navy);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p { margin: 0; color: var(--text-2); }

a, button { font: inherit; }

button { cursor: pointer; }

a { text-decoration: none; }

.muted { color: var(--muted); font-size: 12px; }

.app-shell {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 120px);
    min-height: 0;
    position: relative;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(11, 31, 74, 0.12);
    padding-bottom: 0;
}

/* ---------- Brand mark (logo image) ---------- */
.brand-mark,
.brand-mark-img {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    max-width: 34px;
    flex: none;
    object-fit: contain;
    object-position: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark.sm,
.brand-mark-img.sm {
    width: 30px;
    height: 30px;
    max-width: 30px;
}

.brand-mark.lg,
.brand-mark-img.lg {
    width: 48px;
    height: 48px;
    max-width: 48px;
}

.brand-mark.light,
.brand-mark-img.light {
    box-shadow: none;
}

/* Hide legacy CSS bag/bar if present */
.brand-bag,
.brand-bar {
    display: none;
}

/* Keep legacy roundel helpers harmless if referenced */
.roundel {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: none;
}
/* ---------- Secure top bar (replaces promo strip) ---------- */
.secure-topbar {
    background: linear-gradient(90deg, var(--navy) 0%, #122a5c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    min-height: 42px;
    box-shadow: inset 0 -3px 0 var(--brick);
    position: relative;
    z-index: 30;
}

.secure-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    overflow: hidden;
}

.secure-topbar-left > svg {
    flex: none;
    color: #fff;
}

.secure-topbar-marquee {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
}

.secure-topbar-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: promo-scroll 22s linear infinite;
}

.secure-topbar-track span {
    flex: none;
    padding-right: 4rem;
    line-height: 1.35;
    white-space: nowrap;
}

.secure-topbar:hover .secure-topbar-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .secure-topbar-track {
        animation: none;
        width: 100%;
        justify-content: flex-start;
    }

    .secure-topbar-track span {
        padding-right: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .secure-topbar-track span[aria-hidden="true"] { display: none; }

    .secure-topbar-marquee { mask-image: none; }
}

.secure-menu-btn {
    flex: none;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
}

.secure-menu-btn .menu {
    width: 18px;
    gap: 5px;
    padding: 0;
}

.secure-menu-btn .menu span {
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Keep old promo styles for admin/legacy pages that still include it */
.promo {
    background: var(--red);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 10px 40px 10px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    position: relative;
    letter-spacing: 0.01em;
    overflow: hidden;
    line-height: 1.35;
}

.promo svg { flex: none; }

.promo-marquee {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.promo-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: promo-scroll 22s linear infinite;
}

.promo-track span {
    flex: none;
    padding-right: 4rem;
    line-height: 1.35;
    white-space: nowrap;
}

.promo:hover .promo-track { animation-play-state: paused; }

@keyframes promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .promo-track {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .promo-track span {
        padding-right: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .promo-track span[aria-hidden="true"] { display: none; }

    .promo-marquee { mask-image: none; }
}

.promo .promo-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 4px;
    z-index: 1;
}

/* ---------- Header ---------- */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 29;
}

.header-desktop-nav {
    display: none;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: 12px;
    font-size: 13px;
    font-weight: 700;
}

.header-desktop-nav a {
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
}

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

.header-desktop-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(26, 111, 232, 0.22);
}

.header-desktop-book:hover {
    background: #155ccc;
    color: #fff !important;
}

.header .left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    min-width: 0;
    flex: 1;
    text-decoration: none;
    padding-left: 2px;
}

.brand-name {
    font-family: var(--font);
    font-size: clamp(12px, 3.5vw, 17px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    letter-spacing: -0.02em;
    flex: 0 1 auto;
    min-width: 0;
    overflow-wrap: normal;
    word-break: keep-all;
}

.brand-name-stack {
    display: flex;
    flex-direction: column;
    gap: 1px;
    white-space: normal;
    line-height: 1.12;
}

.brand-name-stack strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.brand-name-stack > span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.92;
    letter-spacing: -0.01em;
}

.header-help {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: none;
    text-decoration: none;
    color: var(--blue);
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.header-help svg {
    flex: none;
    color: var(--blue);
}

.header-help-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header-help-ask {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
}

.header-help-action {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--navy);
}

.header .menu-btn {
    flex: none;
}

.title-sm {
    font-size: clamp(13px, 3.7vw, 15px);
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.icon-btn, .close-btn, .menu-btn {
    border: 0;
    background: none;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--navy);
}

.menu {
    width: 26px;
    display: grid;
    gap: 6px;
    padding: 4px 0;
}

.menu span {
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: min(330px, 72vw);
    display: flex;
    align-items: flex-end;
    padding: 20px 16px 64px;
    overflow: hidden;
    background: #1a2744;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Real shop-front: show full facade (sign + door + A-board) */
.hero-shop-photo {
    object-fit: cover;
    object-position: center 40%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(16, 30, 58, 0.08) 0%, rgba(16, 30, 58, 0.34) 48%, rgba(16, 30, 58, 0.88) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    background: rgba(10, 30, 20, 0.55);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #4ade80;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.pill.closed { color: #cbd5e1; border-color: rgba(255, 255, 255, 0.35); }

.hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
    color: #fff;
    max-width: 100%;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-copy .addr {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #e7ecf5;
    font-size: clamp(12px, 3.4vw, 13.5px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    line-height: 1.45;
}

.hero-copy .addr svg { flex: none; margin-top: 1px; }
.hero-copy .addr span { min-width: 0; }

/* Light hero (legacy / other pages) */
.hero.hero-light {
    min-height: clamp(220px, 52vw, 320px);
    align-items: stretch;
    padding: 14px 16px 56px;
    background: #eef1f6;
    isolation: isolate;
}

.hero-kicker {
    margin: 0;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brick);
}

.hero.hero-light .hero-shop-photo {
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-light::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background:
        linear-gradient(90deg, #f3f5f9 0%, rgba(243, 245, 249, 0.94) 34%, rgba(243, 245, 249, 0.55) 58%, rgba(243, 245, 249, 0.12) 78%, transparent 100%),
        linear-gradient(200deg, rgba(155, 35, 53, 0.12) 0%, transparent 42%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.hero.hero-light::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 4px;
    inset: auto 0 0 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy) 0%, var(--brick) 55%, var(--gold) 100%);
    opacity: 1;
}

.hero.hero-light .hero-copy {
    position: relative;
    z-index: 2;
    gap: 10px;
    max-width: min(92%, 28rem);
}

.hero.hero-light .hero-copy h1 {
    margin: 0;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    text-shadow: none;
}

.hero.hero-light .hero-copy p {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #4a5872;
    max-width: 36ch;
}

/* Home hero: full shop photo (top banner + entrance) — responsive, no crop */
.hero.hero-shop-show {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    min-height: 0 !important;
    height: auto;
    aspect-ratio: auto;
    max-height: none;
    padding: 0 !important;
    background: #0a1630;
    isolation: isolate;
    overflow: hidden;
}

.hero.hero-shop-show picture {
    display: block;
    width: 100%;
    line-height: 0;
}

/* Natural aspect — never crop the blue top banner */
.hero.hero-shop-show .hero-media,
.hero.hero-shop-show .hero-shop-photo {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    max-height: none !important;
    object-fit: contain;
    object-position: center top;
    filter: none;
    opacity: 1;
    z-index: 0;
}

.hero.hero-shop-show::before {
    display: none;
    content: none;
}

.hero.hero-shop-show::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    width: auto;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy) 0%, var(--brick) 55%, var(--gold) 100%);
    opacity: 1;
}

.hero.hero-shop-show .hero-copy {
    position: relative;
    z-index: 2;
    gap: 2px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px 14px 12px;
    background: #0a1630;
}

.hero.hero-shop-show .hero-kicker {
    color: #f0c36a;
    text-shadow: none;
    font-size: 10px;
}

.hero.hero-shop-show .hero-copy h1 {
    margin: 0;
    font-size: clamp(16px, 4.6vw, 20px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: none;
    max-width: 22ch;
}

.hero.hero-shop-show .hero-copy > p:not(.hero-kicker) {
    display: none;
}

@media (min-width: 721px) {
    .hero.hero-shop-show .hero-copy {
        padding: 14px 22px 16px;
        gap: 6px;
    }

    .hero.hero-shop-show .hero-copy h1 {
        font-size: clamp(18px, 2.2vw, 24px);
        max-width: 28ch;
    }

    .hero.hero-shop-show .hero-copy > p:not(.hero-kicker) {
        display: block;
        margin: 0;
        font-size: clamp(14px, 1.6vw, 16px);
        font-weight: 500;
        line-height: 1.35;
        color: #e8eef8;
        max-width: 42ch;
    }
}

@media (min-width: 900px) {
    .hero.hero-shop-show .hero-copy {
        padding: 16px 28px 18px;
    }

    .hero.hero-shop-show .hero-copy h1 {
        font-size: clamp(20px, 2vw, 26px);
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 6px 18px rgba(11, 31, 74, 0.07);
    margin-top: 6px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
}

.hero-trust-item svg {
    width: 15px;
    height: 15px;
    color: var(--brick);
    flex: none;
}

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}

/* ---------- Booking widget ---------- */
.booking {
    margin: -46px 14px 0;
    padding: 16px 14px 14px;
    border-radius: var(--r-lg);
    position: relative;
    z-index: 4;
    box-shadow: var(--shadow);
    border: 0;
}

.booking-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
}

.rating .rating-word { font-weight: 700; color: var(--text); }

.tp-stars { display: inline-flex; gap: 2px; }

.tp-star {
    width: 17px;
    height: 17px;
    background: var(--tp-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    border-radius: 2px;
}

.rating .rating-meta { color: var(--text-2); font-weight: 600; }

.from-price { text-align: right; white-space: nowrap; }

.from-price .from { font-size: 12px; color: var(--text-2); margin-right: 4px; }

.from-price .amount {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
}

.from-price .per {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.booking-fields {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.8fr;
    gap: 8px;
    margin-bottom: 12px;
}

.fieldbox {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--navy);
    border-radius: 10px;
    padding: 9px 10px;
    background: #fff;
    min-width: 0;
    cursor: pointer;
}

.fieldbox svg { flex: none; color: var(--navy); }

.fieldbox .fb-inner { display: grid; gap: 1px; min-width: 0; flex: 1; }

.fieldbox .fb-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.fieldbox input,
.fieldbox select {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 12px;
    color: var(--text-2);
    width: 100%;
    min-width: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    outline: none;
}

.fieldbox input[type="date"] { appearance: none; -webkit-appearance: none; }

.fieldbox input[type="date"]::-webkit-calendar-picker-indicator {
    margin: 0;
    padding: 0;
    width: 14px;
    height: 14px;
    opacity: 0.55;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    transition: 0.15s ease;
}

.btn.primary {
    background: var(--brick);
    color: #fff;
    width: 100%;
    position: relative;
    padding-left: 16px;
    padding-right: 42px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    box-shadow: 0 10px 22px rgba(155, 35, 53, 0.28);
}

.btn.primary:hover { background: var(--brick-dark); }

.btn.primary .btn-arrow { position: absolute; right: 16px; }

.btn.secondary {
    background: #fff;
    border-color: var(--navy);
    color: var(--navy);
}

.btn.outline {
    background: #fff;
    border: 1.5px solid var(--red);
    color: var(--red);
    padding: 11px 14px;
    font-size: 13.5px;
}

.btn.green { background: #fff; border-color: var(--green); color: var(--green); }

.btn.whatsapp-fill { background: var(--green); color: #fff; }

.btn.navy-btn { background: var(--navy); color: #fff; width: 100%; }

.tiny { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }

/* ---------- Trust row ---------- */
.trust {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 22px 8px 28px;
    background: #fff;
    width: 100%;
}

.trust-item {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    font-size: clamp(9px, 2.6vw, 10.5px);
    font-weight: 600;
    color: var(--text-2);
    line-height: 1.3;
    min-width: 0;
    overflow-wrap: break-word;
    hyphens: auto;
}

.trust-item .ticon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 3px 10px rgba(20, 39, 74, 0.07);
    display: grid;
    place-items: center;
    color: var(--navy);
}

/* ---------- Sections ---------- */
.section { padding: 26px 16px 6px; }

.section > h2 {
    font-size: 24px;
    margin-bottom: 18px;
    text-align: center;
}

/* ---------- How it works ---------- */
.hiw {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: start;
    gap: 2px;
}

.hiw-step {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.hiw-badge {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
}

.hiw-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 7px solid var(--red);
    border-radius: 50%;
}

.hiw-badge::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    background: var(--navy);
}

.hiw-badge span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hiw-dots {
    margin-top: 26px;
    border-top: 3px dotted #c3c9d6;
}

/* ---------- Reviews carousel ---------- */
.carousel-wrap { position: relative; }

.carousel {
    padding: 20px 40px;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 24px rgba(20, 39, 74, 0.06);
    background: #fafbfc;
    border: 1px solid var(--border);
}

.car-slide { display: none; text-align: left; }

.car-slide.active { display: block; }

.car-stars { color: var(--star-orange); font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }

.car-text { font-size: 13.5px; line-height: 1.6; color: var(--text); }

.car-meta { margin-top: 12px; font-size: 12px; color: var(--muted); display: flex; gap: 12px; }

.car-meta .car-author { font-weight: 700; color: var(--text-2); }

.car-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: var(--star-orange);
    font-size: 26px;
    line-height: 1;
    padding: 6px;
    z-index: 2;
}

.car-arrow.prev { left: 4px; }
.car-arrow.next { right: 4px; }

.car-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d3d8e2;
    border: 0;
    padding: 0;
}

.car-dot.active { background: var(--navy); }

/* ---------- Find us + questions ---------- */
.two-col {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 12px;
    align-items: start;
}

@media (max-width: 760px) {
    .two-col { grid-template-columns: 1fr; gap: 16px; }
}

.findus {
    padding: 14px;
    border-radius: var(--r-lg);
    background: #fafbfc;
}

.findus h2, .questions h2 { font-size: 19px; text-align: center; margin-bottom: 12px; }

.map-art {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: block;
    padding: 0;
    background: #e8eef2;
}

.map-art svg { display: block; width: 100%; height: auto; }

.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 180px;
    background: #dce6ec;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.addr-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.45;
    margin-top: 10px;
}

.addr-row svg { flex: none; margin-top: 1px; color: var(--navy); }

.addr-row strong { color: var(--navy); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 8px; background: none; border: 0; }

.acc-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    border: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    text-align: left;
}

.acc-row .chev {
    color: var(--muted);
    transition: 0.18s ease;
    flex: none;
}

.acc-item.open .acc-row .chev { transform: rotate(180deg); }

.acc-answer {
    display: none;
    padding: 0 14px 13px;
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.6;
}

.acc-item.open .acc-answer { display: block; }

.contact-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

/* ---------- Find us card ---------- */
.findus-rows {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.findus-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.4;
}

.findus-row strong { color: var(--navy); }

.findus-ico {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(207, 34, 46, 0.08);
    color: var(--red);
}

.findus-directions {
    width: 100%;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- Help / contact banner ---------- */
.help-card {
    background: linear-gradient(135deg, var(--navy) 0%, #23375d 60%, #2c447a 100%);
    border-radius: var(--r-lg);
    padding: 24px 18px;
    display: grid;
    gap: 18px;
    color: #fff;
}

.help-copy .eyebrow.light {
    color: #ffd166;
}

.help-copy h2 {
    color: #fff;
    font-size: 22px;
    margin: 6px 0 6px;
}

.help-copy p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    margin: 0;
}

.help-actions {
    display: grid;
    gap: 10px;
}

.help-action {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.help-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.help-ico {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
}

.help-ico.whatsapp { background: #25d366; }

.help-text { display: grid; min-width: 0; }

.help-label {
    font-weight: 800;
    font-size: 14px;
}

.help-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
}

/* ---------- Contact / generic ---------- */
.contact-btns { display: grid; gap: 10px; padding: 18px 16px 26px; }

.link-teal {
    color: var(--teal);
    font-weight: 600;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, #0b1f4a 0%, #081836 100%);
    color: #fff;
    padding: 28px 20px 22px;
    margin-top: 30px;
    box-shadow: inset 0 3px 0 var(--brick);
}

.foot-brand { display: flex; align-items: center; gap: 14px; }

.foot-brand h3 {
    font-size: clamp(16px, 4.5vw, 21px);
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow-wrap: normal;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 16px 0 4px;
}

.footer-nav a {
    color: #d7e0f0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.footer-nav a:hover { color: #fff; text-decoration: underline; }

.footer p { color: #b9c4d8; font-size: 12px; margin: 2px 0; line-height: 1.5; }

.footline { height: 1px; background: rgba(255, 255, 255, 0.14); margin: 16px 0 12px; }

.footer .copy { font-size: 11.5px; color: #8fa0bd; }

/* Luggage-themed footer */
.footer.bag-foot {
    margin-top: 8px;
    padding: 0 0 calc(20px + env(safe-area-inset-bottom, 0px));
    background: #081836;
    color: #fff;
    overflow: hidden;
    box-shadow: inset 0 3px 0 var(--brick);
}
.bag-foot-banner {
    position: relative;
    padding: 22px 20px 20px;
    min-height: 0;
    background:
        linear-gradient(120deg, rgba(8, 24, 54, 0.94) 18%, rgba(11, 31, 74, 0.8) 55%, rgba(155, 35, 53, 0.35) 100%),
        var(--bag-foot-img) center 28% / cover no-repeat;
}
.bag-foot-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 111, 232, 0.55), transparent);
}
.bag-foot-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.bag-foot-icons {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    color: #9ec4ff;
}
.bag-ico {
    display: block;
    opacity: 0.92;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
    animation: bagFloat 4.5s ease-in-out infinite;
}
.bag-ico-sm { width: 34px; height: 40px; animation-delay: 0s; }
.bag-ico-md { width: 42px; height: 48px; animation-delay: 0.35s; color: #fff; }
.bag-ico-lg { width: 50px; height: 56px; animation-delay: 0.7s; }
@keyframes bagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
    .bag-ico { animation: none; }
}
.bag-foot-kicker {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ec4ff;
}
.bag-foot-headline {
    margin: 0 0 14px;
    font-size: clamp(22px, 5.5vw, 30px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
    max-width: 12em;
}
.bag-foot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(26, 111, 232, 0.35);
}
.bag-foot-cta:hover {
    background: #0f5fd0;
    color: #fff;
}
.bag-foot-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 20px 24px;
}
.bag-foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.bag-foot-name {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.bag-foot-addr {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-weight: 600;
}
.bag-foot-addr:hover { color: #9ec4ff; }
.bag-foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bag-foot-nav a {
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    border-radius: 8px;
}
.bag-foot-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.bag-foot-copy {
    margin: 14px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.4;
}

/* ---------- Forms (booking page, admin) ---------- */
.field { display: grid; gap: 6px; margin-top: 12px; }

.field label { font-size: 12px; color: var(--navy); font-weight: 600; }

.input,
.select,
textarea.input {
    width: 100%;
    padding: 12px;
    border: 1px solid #c8cedb;
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

textarea.input { min-height: 88px; resize: vertical; }

.input:focus, .select:focus, textarea.input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 34, 42, 0.10);
}

/* Normalize native control rendering (iOS Safari centres dates, restyles selects) */
.input,
.select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 46px;
    background-color: #fff;
    color: var(--navy);
}

.select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%232c3e5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}

input[type="date"].input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

input[type="date"].input::-webkit-date-and-time-value {
    text-align: left;
}

.error-text { color: var(--red); font-size: 12.5px; margin-top: 8px; }

.stepper {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 10px;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: var(--navy);
}

.btnc {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid var(--navy);
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 700;
    background: #fff;
}

.divider { height: 1px; background: var(--divider); margin: 12px 0; }

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.rule { height: 1px; background: var(--divider); margin: 10px 0 18px; }

.center-pad { padding: 34px 18px 28px; }

.progress { height: 4px; background: #f3d2d3; position: relative; }

.progress::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 56%;
    background: var(--red);
}

.mini-table { display: grid; gap: 8px; font-size: 13px; color: var(--text-2); }

.mini-table .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    font-weight: 700;
}

.mini-table .total span:last-child {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--red);
    font-size: 28px;
}

/* ---------- Confirmation ---------- */
.confirm { display: grid; place-items: center; text-align: center; gap: 14px; }

.confirm-hero {
    background: linear-gradient(150deg, var(--navy) 0%, #23375d 65%, #2c447a 100%);
    color: #fff;
    text-align: center;
    padding: 42px 20px 64px;
    position: relative;
}

.confirm-hero h1 {
    color: #fff;
    font-size: 30px;
    margin: 14px 0 6px;
}

.confirm-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
}

.confirm-check {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--green, #17b26a);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
    animation: confirmPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirmPop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.confirm-body {
    display: grid;
    gap: 16px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.ticket {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 30, 60, 0.12);
    padding: 18px;
    display: grid;
    gap: 14px;
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ticket-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.ticket-ref {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    color: var(--navy);
    font-weight: 700;
}

.ticket-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(23, 178, 106, 0.12);
    color: #0e8a52;
    font-weight: 800;
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 999px;
}

.ticket-tear {
    border-top: 2px dashed var(--border);
    margin: 0 -18px;
    position: relative;
}

.ticket-tear::before,
.ticket-tear::after {
    content: "";
    position: absolute;
    top: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
}

.ticket-tear::before { left: -8px; }
.ticket-tear::after { right: -8px; }

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.ticket-cell { display: grid; gap: 2px; }

.ticket-cell strong { color: var(--navy); font-size: 16px; }

.ticket-sub { font-size: 12.5px; color: var(--text-2); }

.ticket-arrow { color: var(--red); }

.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ticket-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: 999px;
}

.ticket-chip.promo {
    background: rgba(207, 34, 46, 0.07);
    border-color: rgba(207, 34, 46, 0.25);
    color: var(--red);
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--navy);
}

.ticket-amount {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 26px;
    color: var(--red);
}

.ticket-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-2);
    flex-wrap: wrap;
}

.ticket-email svg { color: var(--green, #17b26a); flex: none; }

.ticket-email strong { color: var(--navy); word-break: break-all; }
.ticket-demo-note {
    display: block;
    margin-top: 4px;
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
}

.next-steps {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 14px;
}

.next-steps h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 0;
}

.step-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-row > div { display: grid; gap: 2px; }

.step-row strong { color: var(--navy); font-size: 14px; }

.step-row span:not(.step-num) { font-size: 12.5px; color: var(--text-2); }

.step-num {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    border: 2px solid var(--red);
}

.confirm-actions { display: grid; gap: 10px; }

.confirm-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 760px) {
    .confirm-body { max-width: 560px; margin-left: auto; margin-right: auto; margin-top: -38px; }
    .confirm-hero { padding: 54px 20px 78px; }
    .confirm-hero h1 { font-size: 36px; }
    .confirm-actions { grid-template-columns: 1fr 1fr 1fr; }
}

.check {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 36px;
}

.underline-red { width: 90px; height: 3px; background: var(--red); border-radius: 999px; }

.summary { padding: 14px 16px; display: grid; gap: 12px; }

.summary .srow { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }

.leftx { color: var(--muted); }

.rightx { color: var(--navy); font-weight: 600; }

.next {
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
}


/* ---------- Page band ---------- */
.band {
    background: linear-gradient(135deg, var(--navy) 0%, #122a5c 70%, #1a2040 100%);
    padding: 30px 16px;
    text-align: center;
    box-shadow: inset 0 3px 0 var(--gold);
}

.band h1 { color: #fff; font-size: 28px; }

.band p { color: #c6d2e6; font-size: 13px; margin-top: 6px; }

/* ---------- About page ---------- */
.photo-placeholder {
    height: 190px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(20, 39, 74, 0.05), rgba(20, 39, 74, 0.35)),
        var(--hero-image) center/cover;
    display: grid;
    place-items: end center;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 12px;
}

.checkrows { display: grid; gap: 12px; }

.checkrow {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 14px;
    color: var(--text);
}

/* ---------- Contact page ---------- */
.contact-card { padding: 16px; display: grid; gap: 16px; }

.contact-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--text-2);
    font-size: 14px;
}

.contact-row svg { color: var(--navy); margin-top: 1px; }

.map-tall {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: block;
    background: #e8eef2;
    padding: 0;
}

.map-tall .map-embed {
    aspect-ratio: 4 / 5;
    min-height: 260px;
}

.map-tall svg { display: block; width: 100%; height: auto; }

/* ---------- Drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 42, 107, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 40;
    /* display:none when closed — prevents iOS phantom scroll after footer */
    display: none;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 88vw);
    max-width: 340px;
    height: auto;
    max-height: none;
    background: #fff;
    box-shadow: -22px 0 44px rgba(20, 39, 74, 0.18);
    transform: translate3d(100%, 0, 0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.36, 1);
    z-index: 41;
    display: none;
    flex-direction: column;
}

.drawer-open .drawer-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.drawer-open .drawer {
    display: flex;
    transform: translate3d(0, 0, 0);
}

.drawer-sp {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    border-left: 1px solid rgba(10, 42, 107, 0.08);
    box-shadow: -18px 0 40px rgba(10, 42, 107, 0.14);
}

.drawer-head {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(10, 42, 107, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex: none;
    background: #fff;
}

.drawer-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.drawer-brand-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}
.drawer-brand-copy strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.drawer-brand-copy span {
    font-size: 11.5px;
    font-weight: 600;
    color: #6b7388;
}

.drawer-brand .title-sm {
    font-family: var(--font);
    font-size: clamp(13px, 3.7vw, 16px);
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
}

.drawer-head .close-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: #eef4ff;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    flex: none;
    cursor: pointer;
    transition: background 0.15s ease;
}
.drawer-head .close-btn:hover {
    background: #dde9ff;
}

.drawer-trust {
    padding: 11px 18px;
    background: #eef4ff;
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: none;
}
.drawer-trust-stars {
    color: var(--blue);
    letter-spacing: 0.02em;
    font-size: 12px;
}
.drawer-trust strong { font-weight: 800; }

.drawer-body {
    padding: 16px 16px 8px;
    display: grid;
    gap: 12px;
    align-content: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
}

.drawer-book {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    margin: 0;
    box-shadow: 0 10px 22px rgba(26, 111, 232, 0.26);
}

.drawer-nav-list {
    display: grid;
    gap: 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(10, 42, 107, 0.08);
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
.drawer-link:hover {
    background: #f3f7fd;
    box-shadow: inset 0 0 0 1.5px rgba(26, 111, 232, 0.28);
}
.drawer-link:last-of-type { border-bottom: 0; }

.drawer-link .dl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef4ff;
    display: grid;
    place-items: center;
    color: var(--blue);
    flex: none;
}

.drawer-link .dl-text { display: grid; gap: 1px; flex: 1; min-width: 0; }

.drawer-link small { color: #6b7388; font-weight: 500; font-size: 11.5px; }

.drawer-link .dl-chev { color: #a8b2c4; flex: none; font-size: 18px; }

.drawer-footer {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(10, 42, 107, 0.08);
    display: grid;
    gap: 10px;
    background: #fff;
    flex: none;
}
.drawer-footer-note {
    margin: 0;
    font-size: 11.5px;
    font-weight: 600;
    color: #6b7388;
    text-align: center;
    line-height: 1.35;
}

.drawer-footer .btn {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
}

@media (max-height: 620px) {
    .drawer-link { padding: 9px 10px; }
    .drawer-body { padding: 12px 14px 6px; }
    .drawer-footer { padding-top: 10px; }
}

.drawer-footer .drawer-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.drawer-admin {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    background: none;
    border: 0;
    display: block;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
    z-index: 100;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    right: max(16px, calc(50% - 234px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 35;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 0;
    border-radius: 999px;
    background: #19ad55;
    color: #fff;
    box-shadow: 0 8px 24px rgba(13, 120, 58, .28);
    font-size: 12px;
    font-weight: 800;
    transition: transform .18s ease, background .18s ease, bottom .2s ease;
    /* Keep out of document flow height calculations on iOS */
    transform: translateZ(0);
}

.whatsapp-float:hover {
    transform: translateZ(0) translateY(-2px);
    background: #128c45;
}

.whatsapp-float svg { flex: none; }

/* Bottom dock: Directions + Book now (shows after scroll on home) */
.sp-bottom-dock {
    position: fixed;
    left: 50%;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    width: min(420px, calc(100% - 20px));
    padding: 8px;
    border-radius: 18px;
    background: rgba(7, 20, 40, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 14px 36px rgba(7, 20, 40, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp-bottom-dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.sp-bottom-dock a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}
.sp-bottom-dock-dir {
    border: 1.5px solid rgba(212, 175, 55, 0.85);
    color: #f0d98a;
    background: rgba(255, 255, 255, 0.04);
}
.sp-bottom-dock-book {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0d060 0%, #e0a820 55%, #d4920f 100%);
    color: #071428;
    box-shadow: 0 8px 18px rgba(212, 146, 15, 0.35);
}
.sp-bottom-dock.is-visible .sp-bottom-dock-book {
    animation: spBookGlow 2.6s ease-in-out infinite;
}
.sp-bottom-dock-book::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(-120%);
    pointer-events: none;
}
.sp-bottom-dock.is-visible .sp-bottom-dock-book::after {
    animation: spBookShine 3.2s ease-in-out 0.6s infinite;
}
.sp-bottom-dock-book:hover,
.sp-bottom-dock-book:focus-visible {
    filter: brightness(1.05);
    animation: none;
    transform: translateY(-1px);
}
.sp-bottom-dock-book:hover::after,
.sp-bottom-dock-book:focus-visible::after {
    animation: none;
    transform: translateX(120%);
    transition: transform 0.55s ease;
}
body.has-sp-bottom-dock .whatsapp-float {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 380px) {
    .sp-bottom-dock a { font-size: 11.5px; letter-spacing: 0.03em; gap: 5px; }
}

/* Floating Book now — left side on scroll (legacy; home uses bottom dock) */
.book-now-float {
    position: fixed;
    left: max(16px, calc(50% - 234px));
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 36;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--navy, #0b1f4a);
    color: #fff;
    box-shadow: 0 8px 24px rgba(11, 31, 74, 0.32);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    opacity: 0;
    pointer-events: none;
    transform: translateZ(0) translateX(-18px) scale(0.92);
    transition: opacity .28s ease, transform .28s cubic-bezier(0.22, 1, 0.36, 1), background .18s ease, box-shadow .18s ease;
}

.book-now-float.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateZ(0) translateX(0) scale(1);
    animation: bookNowFloatIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both,
               bookNowFloatPulse 2.4s ease-in-out 0.7s infinite;
}

.book-now-float:hover,
.book-now-float:focus-visible {
    background: #163a7a;
    animation: none;
    transform: translateZ(0) translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(11, 31, 74, 0.38);
}

.book-now-float svg {
    flex: none;
    animation: bookNowIconNudge 1.8s ease-in-out 0.9s infinite;
}

.book-now-float:hover svg,
.book-now-float:focus-visible svg {
    animation: none;
}

@keyframes bookNowFloatIn {
    0% {
        opacity: 0;
        transform: translateZ(0) translateX(-28px) scale(0.88);
    }
    70% {
        opacity: 1;
        transform: translateZ(0) translateX(4px) scale(1.04);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0) scale(1);
    }
}

@keyframes bookNowFloatPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(11, 31, 74, 0.32), 0 0 0 0 rgba(26, 111, 232, 0.35);
    }
    50% {
        box-shadow: 0 10px 28px rgba(11, 31, 74, 0.38), 0 0 0 10px rgba(26, 111, 232, 0);
    }
}

@keyframes bookNowIconNudge {
    0%, 100% { transform: translateX(0); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
}

@media (max-width: 767px) {
    .whatsapp-float { padding: 12px; }
    .whatsapp-float span { display: none; }
    .book-now-float {
        left: max(14px, env(safe-area-inset-left, 0px));
        padding: 12px 14px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    .trust {
        padding-right: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .book-now-float,
    .book-now-float.is-visible,
    .book-now-float svg {
        animation: none !important;
        transition: opacity .15s ease !important;
    }
    .book-now-float.is-visible {
        transform: none;
    }
}


@media (max-width: 400px) {
    .booking-fields { grid-template-columns: 1fr 1fr; }
    .booking-fields .fieldbox:last-child { grid-column: 1 / -1; }
    .trust { grid-template-columns: repeat(5, 1fr); }
    .hero-copy h1 { font-size: 29px; }
}

@media (min-width: 501px) {
    body { padding: 14px 0; }
    .app-shell { border-radius: 18px; }
}

/* ---------- Real shop gallery ---------- */
.store-intro {
    max-width: 620px;
    margin: 0 auto 18px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.store-intro h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.store-intro p {
    font-size: 13px;
    line-height: 1.6;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.photo-grid figure {
    position: relative;
    min-height: 132px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy);
}

.photo-grid-main { grid-column: 1 / -1; min-height: 220px !important; }

.photo-grid img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .25s ease;
}

.photo-grid figure:hover img { transform: scale(1.025); }

.photo-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 22px 10px 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(10, 20, 38, .82));
}

/* ---------- Full booking checkout ---------- */
.booking-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 12px 28px;
}

.booking-page-head {
    max-width: 650px;
    margin-bottom: 14px;
}

.booking-page-head h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 8px;
}

.booking-page-head p {
    font-size: 14px;
    line-height: 1.6;
}

.checkout-layout,
.checkout-main {
    display: grid;
    gap: 10px;
}

.checkout-card,
.checkout-summary {
    padding: 14px;
}

.checkout-card-title {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 9px;
}

.checkout-card-title > span {
    width: 30px;
    height: 30px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.checkout-card-title h2 {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    margin: 2px 0 3px;
}

.checkout-card-title p {
    font-size: 12px;
}

.form-grid {
    display: grid;
    gap: 0 12px;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bulk-hint {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--red);
    background: rgba(207, 34, 46, 0.08);
    border: 1px solid rgba(207, 34, 46, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
}

.bulk-hint.is-active {
    color: #1a7f37;
    background: rgba(26, 127, 55, 0.08);
    border-color: rgba(26, 127, 55, 0.25);
}

.promo-code-box { margin-top: 14px; display: grid; gap: 6px; }

.promo-code-box > label { font-size: 12px; color: var(--navy); font-weight: 600; }

.promo-code-row { display: flex; gap: 8px; align-items: stretch; }

.promo-code-row .input { flex: 1 1 auto; min-width: 0; }

.promo-code-row .btn {
    flex: none;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13.5px;
}

.promo-code-box small { color: var(--muted); font-size: 12px; }

.promo-code-box small.promo-success { color: #1a7f37; }

.promo-code-box small.promo-error, .promo-code-box .promo-error { color: var(--red); }

.pay-btn.is-loading { opacity: 0.85; cursor: progress; }

.pay-btn .pay-btn-loading { display: inline-flex; align-items: center; gap: 8px; }

.btn-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.duration-box {
    min-height: 43px;
    padding: 8px 12px;
    border: 1px solid #c8cedb;
    border-radius: 8px;
    display: grid;
    gap: 1px;
    color: var(--navy);
}

.duration-box small {
    color: var(--muted);
    font-size: 10px;
}

.addon {
    margin-top: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    background: #fafbfc;
    width: 100%;
    min-width: 0;
}

.addon input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: none;
    accent-color: var(--red);
}

.addon-copy {
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--navy);
    font-size: 13px;
}

.addon-copy strong,
.addon-copy small {
    overflow-wrap: anywhere;
}

.addon-copy small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.addon-price {
    flex: none;
    font-weight: 800;
    color: var(--red);
}

.form-error {
    padding: 12px 14px;
    border: 1px solid #f3b6b9;
    border-radius: 9px;
    background: #fff3f3;
    color: #9f1c22;
    font-size: 13px;
}

.checkout-summary {
    align-self: start;
}

.summary-photo {
    display: none;
    height: 100px;
    margin-bottom: 14px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(20, 39, 74, .05), rgba(20, 39, 74, .2)),
        url('../images/shop-front-wide.jpg') center/cover;
}

.summary-lines {
    display: grid;
    gap: 9px;
    padding-bottom: 13px;
}

.summary-lines > div,
.checkout-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.summary-lines span { color: var(--muted); }
.summary-lines strong { color: var(--navy); text-align: right; }

.checkout-total {
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--divider);
    font-size: 14px;
    font-weight: 700;
}

.checkout-total strong {
    color: var(--red);
    font: 700 28px/1 Georgia, "Times New Roman", Times, serif;
}

.pay-btn { margin-top: 2px; font-size: 13px; }

.stripe-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 11px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.payment-marks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.payment-marks span {
    padding: 4px 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-2);
    font-size: 9px;
    font-weight: 700;
}

.booking-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--divider);
    color: var(--text-2);
    font-size: 11px;
}

@media (max-width: 767px) {
    .form-grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 519px) {
    .booking-page-head p,
    .checkout-card-title p { display: none; }

    .booking-page-head h1 { font-size: 27px; }

    .booking-page .field { margin-top: 8px; }
    .booking-page .input,
    .booking-page .select { padding: 10px; min-height: 44px; }
    .booking-page .select { padding-right: 34px; }

    .compact-grid { align-items: end; }

    .checkout-summary .checkout-card-title { margin-bottom: 5px; }
    .payment-marks { margin-top: 8px; }
    .booking-assurances { margin-top: 10px; padding-top: 10px; }
}

/* ---------- Tablet and desktop ---------- */
@media (min-width: 768px) {
    body { padding: 18px; }

    .app-shell {
        max-width: 1180px;
        border-radius: 18px;
    }

    .header { padding: 13px 28px; }

    .app-shell.page-home .secure-topbar,
    .app-shell.page-home .header {
        position: sticky;
        top: 0;
    }

    .app-shell.page-home .secure-topbar {
        top: 0;
        z-index: 32;
    }

    .app-shell.page-home .header {
        top: 0;
        z-index: 31;
    }

    .header-desktop-nav {
        display: flex;
    }

    .header-help-copy {
        display: none;
    }

    .hero {
        min-height: 500px;
        padding: 44px 7% 115px;
    }

    .hero-media {
        object-position: center top;
    }

    .hero-copy h1 {
        max-width: 620px;
        font-size: clamp(42px, 6vw, 68px);
    }

    .hero-copy .addr { max-width: 500px; font-size: 15px; }

    .booking {
        max-width: 980px;
        margin: -80px auto 0;
        padding: 22px;
    }

    .booking-fields { gap: 12px; }
    .fieldbox { padding: 12px 14px; }

    .trust {
        max-width: 980px;
        margin: 0 auto;
        padding: 30px 20px 12px;
    }

    .section {
        max-width: 1040px;
        margin: 0 auto;
        padding: 44px 26px 6px;
    }

    .section > h2,
    .store-intro h2 { font-size: 32px; }

    .hiw { max-width: 760px; margin: 0 auto; }

    .carousel { padding: 26px 56px; }
    .car-text { font-size: 15px; }

    .photo-grid {
        grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .photo-grid-main {
        grid-column: auto;
        min-height: 280px !important;
    }

    .photo-grid figure { min-height: 280px; }

    .footer { padding: 32px max(28px, calc((100% - 1040px) / 2)); }
    .footer.bag-foot { padding: 0; }
    .bag-foot-banner { padding: 36px 28px 30px; }
    .bag-foot-banner-inner {
        grid-template-columns: auto 1fr;
        align-items: end;
        gap: 28px;
    }
    .bag-foot-icons { gap: 14px; }
    .bag-ico-sm { width: 40px; height: 46px; }
    .bag-ico-md { width: 52px; height: 58px; }
    .bag-ico-lg { width: 62px; height: 70px; }
    .bag-foot-main {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 8px 24px;
        padding: 24px 28px 28px;
        align-items: center;
    }
    .bag-foot-brand { margin: 0; }
    .bag-foot-nav {
        border: 0;
        padding: 0;
        justify-content: flex-end;
    }
    .bag-foot-copy {
        grid-column: 1 / -1;
        margin-top: 8px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .band { padding: 50px 20px; }
    .band h1 { font-size: 40px; }

    .booking-page { padding: 42px 26px 56px; }

    .checkout-layout {
        grid-template-columns: minmax(0, 1.65fr) minmax(290px, .8fr);
        align-items: start;
    }

    .checkout-summary {
        position: sticky;
        top: 18px;
    }

    .checkout-card,
    .checkout-summary { padding: 22px; }

    .summary-photo { display: block; }

    .drawer { right: max(0px, calc(50% - 590px)); left: auto; }

    .whatsapp-float { right: max(24px, calc(50% - 566px)); }
    .book-now-float { left: max(24px, calc(50% - 566px)); right: auto; }

    .admin-login-wrap { min-height: 650px; }
}

@media (min-width: 1000px) {
    .two-col { gap: 24px; }
    .findus, .questions { padding: 18px; }

    .help-card {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        padding: 32px;
    }

    .help-copy h2 { font-size: 26px; }

    .help-actions { grid-template-columns: repeat(3, 1fr); }

    .help-action {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 12px;
    }

    .help-text { justify-items: center; }

    .help-value { max-width: 100%; }
}


/* ---------- St Pancras home booking (distinct from Euston fieldboxes) ---------- */
.home-booking-sp {
    max-width: 100%;
    overflow: visible;
    margin: 14px 10px 22px;
    padding: 18px 14px 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11, 31, 74, 0.12);
    box-shadow:
        0 18px 40px rgba(11, 31, 74, 0.14),
        0 0 0 1px rgba(155, 35, 53, 0.06);
    position: relative;
    z-index: 5;
}
.home-booking-sp::before {
    content: "";
    display: block;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--navy), var(--brick) 60%, var(--gold));
}
.home-booking-sp *,
.home-booking-sp *::before,
.home-booking-sp *::after {
    box-sizing: border-box;
}

.sp-book-head {
    margin: 0 0 16px;
}
.sp-book-head h2 {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(18px, 4.8vw, 22px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.25;
}
.sp-book-trust {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 14px;
    box-shadow: none;
    background: #f7f8fb;
}

.sp-schedule {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 14px;
    padding: 4px 0 2px;
}

.sp-leg {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 12px;
    padding-bottom: 14px;
}
.sp-leg:last-child {
    padding-bottom: 0;
}
.sp-leg-rail {
    position: absolute;
    left: 7px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(155, 35, 53, 0.65), rgba(11, 31, 74, 0.14));
    border-radius: 2px;
}
.sp-leg:last-child .sp-leg-rail {
    display: none;
}
.sp-leg-dot {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    border-radius: 50%;
    border: 2px solid var(--brick);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(155, 35, 53, 0.12);
    z-index: 1;
}
.sp-leg-dot-end {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11, 31, 74, 0.1);
}
.sp-leg-body {
    min-width: 0;
}
.sp-leg-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
}
.sp-leg-fields {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 8px;
}

.sp-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 14px;
    background: #f3f6fb;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
.sp-field:hover {
    background: #eaf0f9;
}
.sp-field:focus-within {
    background: #e8f0fc;
    box-shadow: inset 0 0 0 1.5px rgba(26, 111, 232, 0.45);
}
.sp-field-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7388;
    line-height: 1.2;
}
.sp-field-value {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-field select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.sp-field .home-date-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    color: transparent;
    background: transparent;
}
.sp-field .home-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.sp-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 4px;
}
.home-booking-sp .sp-meta {
    grid-template-columns: 1fr;
}
.sp-duration-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f3f6fb;
    border: 1px solid rgba(20, 39, 74, 0.08);
}
.sp-duration-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff;
    color: var(--navy, #14274a);
    box-shadow: 0 1px 2px rgba(20, 39, 74, 0.08);
    flex-shrink: 0;
}
.sp-duration-bar .sp-duration-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #5b6b7c;
    opacity: 1;
    margin-right: auto;
}
.sp-duration-bar strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy, #14274a);
    line-height: 1.2;
    white-space: nowrap;
}
.home-booking-sp .bag-inline-field {
    min-width: 0;
}
.bag-inline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    height: 100%;
}
.bag-section-head {
    margin: 0 0 12px;
}
.bag-section-head h2 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    color: var(--navy, #14274a);
}
.bag-section-head p {
    margin: 0;
    font-size: 0.9rem;
    color: #5b6b7c;
}
.bag-photo-grid {
    gap: 12px;
    height: auto;
}
.bag-choice-photo {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: #fff;
}
.bag-choice-media {
    background: linear-gradient(180deg, #f5f7fb 0%, #e8eef6 100%);
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.bag-choice-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.bag-choice-photo .bag-choice-main {
    padding: 10px 12px 4px;
    width: 100%;
}
.bag-choice-photo .bag-choice-stepper {
    padding: 0 12px 12px;
    justify-content: flex-start;
}
.bag-choice-hint {
    display: block;
    font-style: normal;
    font-size: 0.75rem;
    color: #5b6b7c;
    margin-top: 2px;
    line-height: 1.3;
}
.booking-bags-card {
    display: grid;
    gap: 14px;
}
.booking-details-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    color: var(--navy, #14274a);
}
.booking-flex-addon {
    margin: 0;
}
.bag-choice {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 12px;
    background: #f3f6fb;
    box-shadow: inset 0 0 0 1.5px rgba(10, 42, 107, 0.1);
    transition: box-shadow 0.15s ease, background 0.15s ease;
}
.bag-choice.is-selected {
    background: linear-gradient(135deg, #faf0f2 0%, #f8f9fc 100%);
    box-shadow: inset 0 0 0 1.5px rgba(155, 35, 53, 0.5);
}
.bag-inline-field.is-invalid .bag-choice {
    box-shadow: inset 0 0 0 1.5px rgba(211, 34, 42, 0.45);
}
.bag-choice-main {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}
.bag-choice-tick {
    flex: none;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: #fff;
    color: transparent;
    box-shadow: inset 0 0 0 1.5px rgba(10, 42, 107, 0.22);
}
.bag-choice.is-selected .bag-choice-tick {
    background: var(--brick);
    color: #fff;
    box-shadow: none;
}
.bag-choice-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 6px;
    row-gap: 0;
    min-width: 0;
}
.bag-choice-copy strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}
.bag-choice-copy em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--brick);
    line-height: 1.2;
    white-space: nowrap;
}
.bag-choice-stepper {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: none;
}
.bag-choice-stepper strong {
    min-width: 1.1em;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
}
.bag-choice-stepper .btnc {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(10, 42, 107, 0.12);
}
.bag-choice-stepper .btnc:hover {
    background: var(--brick);
    color: #fff;
    box-shadow: none;
}

/* Mobile / narrow: duration below bags; label+price stack so +/- fits */
@media (max-width: 640px) {
    .sp-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .bag-inline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        height: auto;
    }
    .bag-choice {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 6px;
        row-gap: 0;
        padding: 10px 10px;
        min-height: 52px;
    }
    .bag-choice-photo {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: none;
        padding: 0;
        min-height: 0;
        overflow: hidden;
    }
    .bag-choice-photo .bag-choice-media {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        min-height: 110px;
    }
    .bag-choice-photo .bag-choice-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bag-choice-photo .bag-choice-main {
        display: flex;
        width: 100%;
        padding: 10px 10px 4px;
    }
    .bag-choice-photo .bag-choice-stepper {
        justify-self: stretch;
        width: 100%;
        padding: 0 10px 10px;
        justify-content: flex-start;
    }
    .bag-choice-main {
        gap: 8px;
        min-width: 0;
        width: 100%;
    }
    .bag-choice-tick {
        width: 16px;
        height: 16px;
        border-radius: 5px;
    }
    .bag-choice-tick svg {
        width: 10px;
        height: 10px;
    }
    .bag-choice-copy {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        column-gap: 0;
        row-gap: 2px;
        min-width: 0;
    }
    .bag-choice-copy strong {
        font-size: 13px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
    .bag-choice-copy em {
        font-size: 11px;
    }
    .bag-choice-stepper {
        justify-self: end;
        gap: 4px;
    }
    .bag-choice-stepper .btnc {
        width: 26px;
        height: 26px;
    }
    .bag-choice-stepper strong {
        min-width: 1.25em;
        font-size: 13px;
    }
    .sp-duration {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
        padding: 9px 12px;
        gap: 8px;
    }
    .sp-duration-label {
        font-size: 10px;
    }
    .sp-duration strong {
        font-size: 14px;
    }
    .sp-duration-bar {
        margin: 2px 0 12px;
        padding: 11px 12px;
        gap: 10px;
    }
    .sp-duration-ico {
        width: 34px;
        height: 34px;
    }
    .sp-duration-bar strong {
        font-size: 15px;
    }
    .bag-photo-grid {
        gap: 10px;
    }
    .bag-choice-photo .bag-choice-copy strong {
        font-size: 14px;
        white-space: normal;
    }
}

@media (max-width: 360px) {
    .bag-inline-grid {
        grid-template-columns: 1fr;
    }
}
.home-booking-sp .bag-picker-field {
    min-width: 0;
}
.home-booking-sp .bag-picker-trigger.home-fieldbox,
.home-booking-sp .bag-picker-trigger {
    display: flex;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 10px 14px;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef4ff 0%, #f5f8fc 100%);
    box-shadow: inset 0 0 0 1px rgba(26, 111, 232, 0.18);
    text-align: left;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.home-booking-sp .bag-picker-trigger:hover {
    box-shadow: inset 0 0 0 1.5px rgba(26, 111, 232, 0.4);
    transform: translateY(-1px);
}
.home-booking-sp .bag-picker-trigger > svg {
    flex: none;
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(26, 111, 232, 0.12);
}
.home-booking-sp .bag-picker-trigger .fb-inner {
    display: grid;
    gap: 1px;
    min-width: 0;
    flex: 1;
}
.home-booking-sp .bag-picker-trigger .fb-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #6b7388;
}
.home-booking-sp .bag-picker-trigger .fb-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}
.home-booking-sp .bag-picker-detail {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
}

.sp-duration {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 8px 10px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    text-align: center;
}
.sp-duration-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.72;
}
.sp-duration strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.home-booking-sp .home-addon {
    display: flex;
    align-items: center;
    margin: 12px 0 14px;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: #f3f6fb;
    gap: 10px;
    box-shadow: none;
}
.home-booking-sp .home-addon .addon-copy strong {
    display: block;
    color: var(--navy);
    font-size: 13.5px;
}
.home-booking-sp .home-addon .addon-copy small {
    color: var(--text-2);
}
.home-booking-sp .home-addon .addon-price {
    flex: none;
    font-weight: 800;
    color: var(--blue);
    font-size: 13px;
}
.home-booking-sp .bulk-hint,
.home-booking-sp .home-promo-offer {
    width: 100%;
    margin: 8px 0 0;
    padding: 11px 13px;
    border-radius: 12px;
    border: 0;
    background: #f0f5ff;
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.4;
}
.home-booking-sp .bulk-hint.is-active {
    background: #eaf8f0;
    color: #146c3b;
}
.home-booking-sp .home-promo-offer strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 3px;
}
.home-booking-sp .home-promo-offer p {
    margin: 0;
    font-size: 12.5px;
    color: var(--text-2);
}
.home-booking-sp .home-promo-code {
    font-weight: 800;
    color: var(--brick);
}
.home-booking-sp .btn.primary,
.home-booking-sp .home-booking-cta {
    width: 100%;
    min-height: 56px;
    margin-top: 6px;
    border-radius: 999px;
    font-size: clamp(15px, 3.8vw, 17px);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    box-shadow: 0 12px 28px rgba(155, 35, 53, 0.34);
}
.home-booking-sp .btn.primary:hover,
.home-booking-sp .home-booking-cta:hover {
    box-shadow: 0 14px 32px rgba(126, 28, 42, 0.4);
}

@media (max-width: 379px) {
    .home-booking-sp {
        margin-left: 10px;
        margin-right: 10px;
        padding: 16px 12px 14px;
    }
    .sp-leg-fields { gap: 6px; }
    .sp-field { padding: 9px 10px; }
    .sp-field-value,
    .sp-field select { font-size: 13.5px; }
    .sp-duration { min-width: 70px; padding: 8px 10px; }
}

@media (min-width: 768px) {
    .home-booking-sp {
        padding: 24px 22px 20px;
        border-radius: 22px;
    }
    .sp-book-head h2 { font-size: 24px; }
    .sp-leg-fields { gap: 10px; }
    .sp-field { padding: 12px 14px; }
}

/* Legacy home-booking hooks (maps / older markup) */
.home-booking-title {
    margin: 0 0 14px;
}
.home-booking-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}
.home-booking-title p {
    margin: 5px 0 0;
    color: var(--text-2);
    font-size: 13px;
}
.home-booking-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2px;
}
.home-booking-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 8px;
}
.home-booking-row-meta {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.booking-summary-static {
    margin-top: 4px;
}
.booking-summary-static a {
    color: var(--red);
    font-weight: 600;
}

/* ---------- Booking page v2 (compact details + payment) ---------- */
.booking-page-v2 {
    position: relative;
    padding-top: 4px;
    padding-bottom: 12px;
}
.booking-page-v2::before { display: none; }

.booking-summary-card,
.booking-details-card,
.booking-pay-card {
    border: 1px solid rgba(20, 39, 74, 0.08);
    box-shadow: 0 4px 12px rgba(20, 39, 74, 0.04);
}
.booking-summary-card,
.booking-details-card { padding: 10px 12px; }

.booking-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.booking-summary-top h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.booking-change-link {
    flex: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(211, 34, 42, 0.08);
}
.booking-plan-line {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 10px;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.35;
}
.booking-plan-line strong {
    color: var(--navy);
    font-size: 13px;
}
.booking-flex-tag {
    color: var(--teal);
    font-weight: 700;
}

.booking-details-grid .field { margin-top: 6px; }
.booking-details-grid .field:first-child { margin-top: 0; }
.booking-details-grid label { font-size: 12px; margin-bottom: 3px; }
.booking-details-grid .input { min-height: 40px; padding: 8px 10px; }
.booking-phone-field { grid-column: 1 / -1; }
.booking-note-field { grid-column: 1 / -1; }
.booking-note-field textarea.input {
    min-height: 84px;
    resize: vertical;
}

.booking-pay-card { padding: 10px 12px 12px; }
.booking-pay-card .summary-photo,
.booking-pay-card .booking-assurances { display: none; }
.booking-pay-card .summary-lines { margin: 0; gap: 4px; }
.booking-pay-card .summary-lines > div { padding: 1px 0; font-size: 12px; }
.booking-pay-card .promo-code-box { margin: 8px 0 0; }
.booking-pay-card .checkout-total {
    margin-top: 6px;
    padding: 8px 0;
    border-top: 1px dashed var(--border);
}
.booking-pay-card .checkout-total strong { font-size: 22px; }
.booking-pay-card .pay-btn {
    width: 100%;
    margin: 0 0 6px;
    min-height: 44px;
    box-shadow: 0 6px 14px rgba(211, 34, 42, 0.22);
}
.booking-pay-card .stripe-note {
    margin: 0;
    font-size: 11px;
    text-align: center;
    color: var(--muted);
}
.checkout-layout,
.checkout-main { gap: 8px; }

@media (max-width: 640px) {
    .booking-details-grid.form-grid.two { grid-template-columns: 1fr; }
    .booking-phone-field { grid-column: auto; }
    .booking-note-field { grid-column: auto; }
}

@media (min-width: 900px) {
    .booking-page-v2 .checkout-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
        align-items: start;
        gap: 10px;
    }
    .booking-pay-card { position: sticky; top: 8px; }
    .booking-details-grid .field:first-child,
    .booking-details-grid .field:nth-child(2) { margin-top: 0; }
}

/* ---------- Book-now page ? match home SP design ---------- */
.booking-page-sp {
    background:
        radial-gradient(120% 50% at 0% 0%, rgba(26, 111, 232, 0.07), transparent 50%),
        linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
    border-radius: 0;
    margin: 0 -2px;
    padding: 12px 12px 28px;
}
.booking-page-sp .booking-summary-card,
.booking-page-sp .booking-details-card,
.booking-page-sp .booking-pay-card {
    border: 1px solid rgba(10, 42, 107, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(10, 42, 107, 0.08);
}
.booking-page-sp .booking-summary-card,
.booking-page-sp .booking-details-card {
    padding: 18px 16px;
}
.booking-page-sp .booking-summary-top {
    align-items: flex-start;
    margin-bottom: 14px;
}
.booking-page-sp .booking-summary-top .sp-kicker {
    margin-bottom: 4px;
}
.booking-page-sp .booking-summary-top h1 {
    font-size: clamp(22px, 5vw, 26px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
}
.booking-page-sp .booking-change-link {
    color: var(--blue);
    background: #eef4ff;
    padding: 6px 12px;
    border-radius: 999px;
}
.booking-page-sp .sp-book-schedule {
    display: grid;
    gap: 0;
    margin: 0 0 12px;
}
.booking-page-sp .sp-book-schedule-title {
    margin: 0 0 16px;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1f4a;
}
.booking-page-sp .sp-book-leg {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 12px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(10, 42, 107, 0.1);
}
.booking-page-sp .sp-book-leg-drop {
    background: linear-gradient(180deg, rgba(14, 160, 140, 0.1), rgba(14, 160, 140, 0.03));
    border-color: rgba(14, 160, 140, 0.22);
}
.booking-page-sp .sp-book-leg-pickup {
    background: linear-gradient(180deg, rgba(232, 112, 48, 0.1), rgba(232, 112, 48, 0.03));
    border-color: rgba(232, 112, 48, 0.22);
}
.booking-page-sp .sp-book-leg:last-child { margin-bottom: 0; padding-bottom: 14px; }
.booking-page-sp .sp-book-leg:first-child::after {
    display: none;
}
.booking-page-sp .sp-book-dot {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 111, 232, 0.12);
    z-index: 1;
}
.booking-page-sp .sp-book-dot-end {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10, 42, 107, 0.1);
}
.booking-page-sp .sp-book-kicker {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0b1f4a;
    margin-bottom: 10px;
}
.booking-page-sp .sp-book-leg-drop .sp-book-kicker { color: #0a6e62; }
.booking-page-sp .sp-book-leg-pickup .sp-book-kicker { color: #b34a12; }
.booking-page-sp .sp-book-field-wrap {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.booking-page-sp .sp-book-field-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7388;
    padding-left: 2px;
}
.booking-page-sp .sp-book-leg strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}
.booking-page-sp .sp-book-leg-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.booking-page-sp .sp-book-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 8px;
    position: relative;
}
.booking-page-sp .sp-book-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 52px;
    padding: 13px 14px;
    margin: 0;
    border: 1px solid rgba(10, 42, 107, 0.12);
    border-radius: 14px;
    background: #fff;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 2px 8px rgba(10, 42, 107, 0.06);
}
.booking-page-sp .sp-book-field:hover,
.booking-page-sp .sp-book-field:focus-within,
.booking-page-sp .sp-book-time-btn.is-open {
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(26, 111, 232, 0.35);
}
.booking-page-sp .sp-book-field-v {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-page-sp .sp-book-chev {
    flex: none;
    color: #9aa3b5;
}
.booking-page-sp .sp-book-time-btn.is-open .sp-book-chev {
    transform: rotate(180deg);
}
.booking-page-sp .sp-book-date .home-date-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.booking-page-sp .sp-book-date .home-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.booking-page-sp .sp-book-time {
    position: static;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: default;
}
.booking-page-sp .sp-book-time-btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid rgba(10, 42, 107, 0.12);
    border-radius: 14px;
    background: #fff;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10, 42, 107, 0.06);
}
.booking-page-sp .sp-book-time .sp-time-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    min-width: 0;
    width: auto;
    z-index: 50;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(11, 31, 74, 0.14);
}
.booking-page-sp .sp-time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-height: 200px;
}
.booking-page-sp .sp-time-chip {
    padding: 9px 4px;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-page-sp .booking-plan-line {
    margin: 0;
    padding: 0;
    background: transparent;
}
.booking-page-sp .booking-plan-line strong#bagCountLine {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}
.booking-page-sp .booking-plan-line #durationLine {
    font-size: 14px;
    font-weight: 700;
    color: #5c6578;
}
.booking-page-sp .booking-plan-sep {
    margin: 0 0.2em;
    color: #8b93a7;
}
.booking-page-sp .booking-plan-line strong {
    font-size: 14px;
    color: var(--navy);
}
.booking-page-sp .booking-flex-tag {
    color: var(--blue);
}
.booking-page-sp .booking-details-grid label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7388;
    margin-bottom: 6px;
}
.booking-page-sp .booking-details-grid .input,
.booking-page-sp .promo-code-box .input {
    min-height: 48px;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: #f3f6fb;
    box-shadow: none;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
.booking-page-sp .booking-details-grid .input:hover,
.booking-page-sp .promo-code-box .input:hover {
    background: #eaf0f9;
}
.booking-page-sp .booking-details-grid .input:focus,
.booking-page-sp .promo-code-box .input:focus {
    outline: none;
    background: #e8f0fc;
    box-shadow: inset 0 0 0 1.5px rgba(26, 111, 232, 0.45);
}
.booking-page-sp .booking-note-field textarea.input {
    min-height: 96px;
}
.booking-page-sp .booking-details-grid .field { margin-top: 12px; }
.booking-page-sp .booking-pay-card {
    padding: 16px;
}
.booking-page-sp .summary-lines > div {
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(10, 42, 107, 0.06);
}
.booking-page-sp .summary-lines > div:last-child { border-bottom: 0; }
.booking-page-sp .summary-lines span { color: #6b7388; }
.booking-page-sp .summary-lines strong { color: var(--navy); }
.booking-page-sp .promo-code-box {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #f0f5ff;
    border: 0;
}
.booking-page-sp .promo-code-box label {
    color: var(--navy);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-page-sp .promo-code-row .btn.secondary {
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    border: 0;
    min-height: 44px;
}
.booking-page-sp .checkout-total {
    margin-top: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(10, 42, 107, 0.1);
    border-bottom: 0;
}
.booking-page-sp .checkout-total span {
    font-weight: 700;
    color: var(--navy);
}
.booking-page-sp .checkout-total strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
}
.booking-page-sp .pay-btn {
    min-height: 52px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(26, 111, 232, 0.28);
}
.booking-page-sp .pay-btn:hover {
    box-shadow: 0 12px 28px rgba(21, 92, 204, 0.34);
}
.booking-page-sp .stripe-note {
    font-size: 12px;
    color: #6b7388;
}

/* Mobile sticky total dock — outside .app-shell so position:fixed works */
.booking-total-dock {
    display: none;
}

@media (max-width: 899px) {
    .booking-page-sp {
        padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
    }

    .booking-total-dock {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(10, 42, 107, 0.12);
        box-shadow: 0 -10px 28px rgba(10, 42, 107, 0.12);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

    .booking-total-dock-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .booking-total-dock-price {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1px;
    }

    .booking-total-dock-details {
        font-size: 11px;
        font-weight: 500;
        line-height: 1.3;
        color: #6b7388;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .booking-total-dock-label {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: var(--navy);
        line-height: 1.2;
        margin-top: 2px;
    }

    .booking-total-dock-amount {
        font-size: 24px;
        font-weight: 900;
        letter-spacing: -0.02em;
        color: var(--navy);
        line-height: 1.1;
        white-space: nowrap;
    }

    /* Override .btn.primary { width: 100% } so Total stays visible */
    .booking-total-dock .booking-total-dock-pay.btn.primary {
        flex: 0 0 auto;
        width: auto !important;
        max-width: none;
        min-width: 9.5rem;
        min-height: 48px;
        padding: 12px 20px !important;
        border-radius: 999px;
        font-weight: 700;
        white-space: nowrap;
        background: linear-gradient(180deg, #f0d060 0%, #e0a820 55%, #d4920f 100%);
        color: #071428;
        border: 0;
        box-shadow: 0 8px 18px rgba(212, 146, 15, 0.35);
        align-self: center;
    }

    .booking-total-dock-pay:disabled {
        opacity: 0.7;
        cursor: progress;
    }
}

@media (min-width: 900px) {
    .booking-total-dock { display: none !important; }

    .booking-page-sp {
        padding: 20px 16px 40px;
        border-radius: 24px;
    }
    .booking-page-sp .checkout-layout { gap: 16px; }
    .booking-page-sp .booking-summary-card,
    .booking-page-sp .booking-details-card,
    .booking-page-sp .booking-pay-card {
        padding: 22px;
    }
}
.home-promo-offer {
    margin: 8px 0 12px;
    padding: 12px 14px;
    border: 1px dashed var(--border);
    border-radius: var(--r-md);
    background: #fff8f8;
}
.home-promo-offer strong {
    display: block;
    color: var(--navy);
    font-size: 13px;
    margin-bottom: 4px;
}
.home-promo-offer p {
    margin: 0;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.4;
}
.home-promo-code {
    display: inline-block;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.04em;
}
.home-booking .home-promo-offer {
    margin: 4px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(20, 39, 74, 0.08);
    border-radius: 10px;
    background: #f7f8fb;
}
.home-booking .bulk-hint {
    margin: 4px 0 0;
}

/* Google Maps dedicated booking landing */
.maps-book-page {
    position: relative;
    padding: 0 0 28px;
}
.maps-book-banner {
    position: relative;
    height: 148px;
    overflow: hidden;
}
.maps-book-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.maps-book-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 24, 48, 0.35) 0%, rgba(12, 24, 48, 0.55) 55%, rgba(247, 248, 251, 0.98) 100%);
}
.maps-book-sheet {
    position: relative;
    margin-top: -42px;
    padding: 0 16px 8px;
    z-index: 1;
}
.maps-book-intro {
    margin: 0 0 14px;
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 39, 74, 0.08);
    box-shadow: 0 10px 28px rgba(20, 39, 74, 0.08);
    backdrop-filter: blur(8px);
}
.maps-book-eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
}
.maps-book-intro h1 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 4.4vw, 1.75rem);
    line-height: 1.18;
    color: var(--navy);
}
.maps-book-sub {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-2);
}
.maps-book-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}
.maps-book-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f3f5f9;
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}
.maps-book-chip svg {
    flex: none;
    color: var(--red);
}
.maps-book-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.maps-book-form {
    margin-top: 0;
}
.maps-setmore-card {
    margin-top: 0;
    padding: 16px;
}
.maps-setmore-actions {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}
.maps-setmore-book-btn,
button.anywhere-book-now-button.maps-setmore-book-btn {
    width: 100%;
    background: var(--navy) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    cursor: pointer;
}
.maps-setmore-open-link {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
}
.maps-setmore-embed {
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    min-height: 640px;
}
.maps-setmore-embed iframe {
    display: block;
    width: 100%;
    height: 720px;
    border: 0;
    background: #fff;
}
.maps-setmore-fallback {
    margin: 10px 0 0;
    font-size: 12px;
    text-align: center;
}
.maps-setmore-fallback a {
    color: var(--red);
    font-weight: 700;
}
.maps-book-trust {
    margin-top: 16px;
}
@media (min-width: 720px) {
    .maps-book-banner { height: 180px; }
    .maps-book-sheet { max-width: 560px; margin-left: auto; margin-right: auto; }
    .maps-setmore-embed iframe { height: 780px; }
}


/* ---------- Blog / Travel Notes (news style) ---------- */
.news-wrap,
.news-article,
.news-related {
    padding: 8px 16px 28px;
}

.news-masthead {
    padding: 10px 0 6px;
    text-align: center;
}

.news-kicker,
.news-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.news-masthead h1 {
    margin: 6px 0 4px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.news-deck {
    margin: 0 auto;
    max-width: 32ch;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-2);
}

.news-rule {
    height: 2px;
    margin: 14px 0;
    background: linear-gradient(90deg, transparent, var(--navy) 12%, var(--navy) 88%, transparent);
    opacity: 0.85;
}

.news-lead {
    display: grid;
    gap: 12px;
    margin-bottom: 4px;
}

.news-lead-media {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.news-lead-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-lead-copy time,
.news-row-copy time,
.news-byline {
    font-size: 12px;
    color: var(--muted);
}

.news-lead-copy h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.35rem, 5vw, 1.7rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.news-lead-copy h2 a,
.news-row-copy h2 a,
.news-row-copy h3 a,
.news-article-head h1 {
    color: var(--navy);
    text-decoration: none;
}

.news-lead-copy p,
.news-row-copy p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
}

.news-read {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
}

.news-list {
    display: grid;
    gap: 0;
}

.news-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--divider);
}

.news-thumb {
    display: block;
    overflow: hidden;
    border-radius: 3px;
    background: #dce3ec;
}

.news-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-row-copy h2,
.news-row-copy h3 {
    margin: 4px 0 6px;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.news-empty {
    padding: 18px 0;
    color: var(--text-2);
}

.news-pager {
    margin-top: 16px;
}

.news-back {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
}

.news-article-head {
    margin-bottom: 14px;
}

.news-article-head h1 {
    margin: 8px 0 10px;
    font-size: clamp(1.55rem, 5.5vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.news-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.news-article-hero {
    margin: 0 0 18px;
}

.news-article-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 4px;
}

.news-article-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.news-article-body p { margin: 0 0 1em; }
.news-article-body h2 {
    margin: 1.4em 0 0.55em;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--navy);
}
.news-article-body h3 {
    margin: 1.2em 0 0.45em;
    font-size: 1.05rem;
    color: var(--navy);
}
.news-article-body ul,
.news-article-body ol {
    margin: 0 0 1em 1.15em;
    padding: 0;
}
.news-article-body a {
    color: var(--red);
    font-weight: 600;
}

.news-cta {
    margin-top: 28px;
    padding: 16px;
    border-left: 3px solid var(--red);
    background: #f7f8fb;
}

.news-cta strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.news-cta p {
    margin: 4px 0 12px;
    font-size: 13px;
    color: var(--text-2);
}

.news-related h2 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--navy);
}

@media (min-width: 640px) {
    .news-lead {
        grid-template-columns: 1.15fr 1fr;
        gap: 18px;
        align-items: center;
    }
    .news-row {
        grid-template-columns: 160px 1fr;
        gap: 16px;
    }
    .news-row-copy h2,
    .news-row-copy h3 {
        font-size: 18px;
    }
    .news-article-body {
        max-width: 40rem;
    }
}

/* Bounce-style bag type selectors */
.bag-type-block {
    margin-top: 4px;
    display: grid;
    gap: 10px;
}
.bag-type-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}
.bag-type-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.bag-type-list {
    display: grid;
    gap: 8px;
}
.bag-type-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}
.bag-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef3fb;
    color: var(--navy);
    display: grid;
    place-items: center;
}
.bag-type-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}
.bag-type-copy strong {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.bag-type-copy span {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.3;
}
.bag-type-copy em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 2px;
}
.bag-type-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: none;
}
.bag-type-stepper strong {
    min-width: 1.2em;
    text-align: center;
    font-size: 15px;
    color: var(--navy);
}
.bag-type-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f0f4fb;
    border: 1px solid #d9e3f2;
}
.bag-type-total span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
}
.bag-type-total strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

/* Bag picker popup */
.bag-picker-trigger {
    text-align: left;
    cursor: pointer;
    width: 100%;
    font: inherit;
}
.bag-picker-trigger .bag-picker-detail {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.bag-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 48, 0.45);
    z-index: 80;
}
.bag-picker-modal {
    position: fixed;
    inset: 0;
    z-index: 81;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    pointer-events: none;
}
.bag-picker-modal:not([hidden]) {
    pointer-events: auto;
}
.bag-picker-sheet {
    width: min(100%, 460px);
    max-height: min(88vh, 640px);
    overflow: auto;
    background: #fff;
    border-radius: 18px 18px 14px 14px;
    padding: 16px 14px 14px;
    box-shadow: 0 -12px 40px rgba(10, 42, 107, 0.18);
    display: grid;
    gap: 12px;
    pointer-events: auto;
    animation: bagPickerIn 0.22s ease-out;
}
@keyframes bagPickerIn {
    from { transform: translateY(18px); opacity: 0.6; }
    to { transform: translateY(0); opacity: 1; }
}
.bag-picker-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.bag-picker-sheet-head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.bag-picker-sheet-head p {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.35;
}
.bag-picker-close {
    border: 0;
    background: #eef2f8;
    color: var(--navy);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex: none;
}
.bag-picker-done {
    width: 100%;
    min-height: 48px;
}
body.bag-picker-open {
    overflow: hidden;
}
@media (min-width: 640px) {
    .bag-picker-modal {
        align-items: center;
    }
    .bag-picker-sheet {
        border-radius: 18px;
    }
}

.bag-picker-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}
.bag-picker-error {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #c62828;
    line-height: 1.3;
}
.bag-picker-trigger.is-invalid {
    border-color: #e57373 !important;
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.12);
}



/* ---------- St Pancras homepage below-form (distinct layout) ---------- */
.sp-below {
    padding-bottom: 8px;
    background:
        radial-gradient(120% 60% at 100% 0%, rgba(26, 111, 232, 0.06), transparent 55%),
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 38%, #f7f9fc 100%);
}
.sp-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
}
.sp-kicker.light { color: rgba(255, 255, 255, 0.8); }
.sp-section-head {
    padding: 0 16px;
    margin-bottom: 14px;
}
.sp-section-head h2 {
    margin: 0;
    font-size: clamp(22px, 5.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.15;
}

.sp-trust {
    padding: 4px 16px 10px;
}
.sp-trust-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sp-trust-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(10, 42, 107, 0.08);
    box-shadow: 0 4px 12px rgba(10, 42, 107, 0.04);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}
.sp-trust-grid li > span:last-child {
    min-width: 0;
}
.sp-trust-ico {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--blue);
}

@media (min-width: 640px) {
    .sp-trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }
    .sp-trust-grid li {
        font-size: 13px;
        padding: 12px 14px;
    }
}

.sp-feature {
    display: grid;
    gap: 0;
    margin: 18px 16px 8px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(90% 80% at 100% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
        #fff;
    border: 1px solid rgba(10, 42, 107, 0.08);
    box-shadow: 0 14px 34px rgba(10, 42, 107, 0.08);
}
.sp-feature-media {
    min-height: 0;
    background: #071428;
    overflow: hidden;
}
.sp-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
}
.sp-feature-copy {
    padding: 20px 18px 22px;
}
.sp-feature-copy .sp-kicker {
    color: #d4920f;
}
.sp-feature-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 5.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.15;
}
.sp-feature-copy p {
    margin: 0 0 14px;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.55;
}
.sp-feature-points {
    margin: 0;
    padding: 12px 14px;
    list-style: none;
    display: grid;
    gap: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 160, 140, 0.1), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(14, 160, 140, 0.18);
}
.sp-feature-points li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
}
.sp-feature-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #fff 0 28%, transparent 30%),
        linear-gradient(135deg, #0ea08c, #d4af37);
    box-shadow: 0 0 0 2px rgba(14, 160, 140, 0.18);
}

.sp-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: minmax(112px, auto);
    gap: 8px;
    margin: 18px 16px 8px;
    overflow: hidden;
}
.sp-mosaic-tile {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #d8e0ef;
    height: 112px;
    min-height: 0;
}
.sp-mosaic-open {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}
.sp-mosaic-tile:first-child {
    grid-row: span 2;
    height: 232px;
    min-height: 232px;
}
.sp-mosaic-tile:nth-child(6) {
    grid-column: 1 / -1;
    height: 132px;
    min-height: 132px;
}
.sp-mosaic-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.35s ease;
    pointer-events: none;
}
.sp-mosaic-tile.is-shopfront img {
    object-position: center top;
}
.sp-mosaic-tile.is-storage img {
    object-position: center center;
}
.sp-mosaic-tile:hover img { transform: scale(1.04); }
.sp-mosaic-tile figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 10px 8px;
    background: linear-gradient(transparent, rgba(8, 24, 56, 0.78));
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.25;
    z-index: 2;
    pointer-events: none;
}

.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 52px 48px;
}
.sp-lightbox[hidden] { display: none !important; }
.sp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 40, 0.88);
}
.sp-lightbox-stage {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(960px, 100%);
    text-align: center;
}
.sp-lightbox-stage img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: min(78vh, 720px);
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: #071428;
    object-fit: contain;
}
.sp-lightbox-stage figcaption {
    margin-top: 12px;
    color: #f6e7b8;
    font-size: 14px;
    font-weight: 700;
}
.sp-lightbox-close,
.sp-lightbox-nav {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    background: rgba(11, 31, 74, 0.92);
    color: #f6e7b8;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.sp-lightbox-close { top: 12px; right: 12px; }
.sp-lightbox-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.sp-lightbox-next { right: 8px; top: 50%; transform: translateY(-50%); }
.sp-lightbox-close:hover,
.sp-lightbox-nav:hover {
    background: #0b1f4a;
    color: #fff;
    border-color: #d4af37;
}
.sp-lightbox-count {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 12px;
    margin: 0;
    text-align: center;
    color: #e8eef8;
    font-size: 13px;
    font-weight: 700;
}
body.sp-lightbox-open { overflow: hidden; }

.sp-steps {
    margin: 20px 0 8px;
    padding: 12px 0 4px;
    position: relative;
    z-index: 2;
    clear: both;
    background: #fff;
}
.sp-step-list {
    display: grid;
    gap: 10px;
    padding: 0 16px;
}
.sp-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(10, 42, 107, 0.07);
    box-shadow: 0 8px 20px rgba(10, 42, 107, 0.05);
}
.sp-step img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
}
.sp-step-num {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 2px;
}
.sp-step h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}
.sp-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-2);
}

.sp-voices {
    margin: 18px 0 8px;
}
.sp-voices-panel {
    position: relative;
    margin: 0 16px;
    padding: 8px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 42, 107, 0.1);
    box-shadow: 0 14px 34px rgba(10, 42, 107, 0.08);
    color: var(--navy);
}
.sp-voices-panel .carousel {
    margin: 0;
    padding: 22px 44px 12px;
    border: 0;
    border-radius: 16px;
    background: #f3f6fb;
    box-shadow: none;
}
.sp-voices-panel .carousel-wrap { position: relative; }
.sp-voices-panel .car-text {
    color: var(--navy);
    font-size: 15.5px;
    line-height: 1.55;
    font-weight: 600;
}
.sp-voices-panel .car-stars {
    color: var(--star-orange);
    margin-bottom: 10px;
}
.sp-voices-panel .car-meta {
    color: #6b7388;
    margin-top: 14px;
}
.sp-voices-panel .car-author {
    color: var(--navy);
    font-weight: 800;
}
.sp-voices-panel .car-author[href] { text-decoration: underline; text-underline-offset: 2px; }
.sp-voices-summary {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.sp-voices-summary a { margin-left: 6px; }
.sp-voices-empty {
    padding: 28px 20px;
    text-align: center;
    color: var(--muted);
}
.sp-voices-empty .btn { margin-top: 12px; }
.sp-voices-trust {
    padding: 28px 24px;
    text-align: center;
}
.sp-voices-trust .rating {
    justify-content: center;
    margin-bottom: 10px;
}
.sp-voices-trust-note {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}
.sp-voices-trust .btn { margin-top: 4px; }
.car-google-attr {
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.sp-voices-panel .car-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(10, 42, 107, 0.12);
    color: var(--blue);
    font-size: 22px;
    display: grid;
    place-items: center;
    padding: 0;
}
.sp-voices-panel .car-arrow.prev { left: 10px; }
.sp-voices-panel .car-arrow.next { right: 10px; }
.sp-voices-panel .car-dots { margin-top: 12px; margin-bottom: 4px; }
.sp-voices-panel .car-dot { background: #c9d3e4; }
.sp-voices-panel .car-dot.active { background: var(--blue); }

.sp-locate {
    margin: 28px 16px 14px;
}
.sp-locate-stage {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0A2A6B;
    box-shadow: 0 18px 40px rgba(10, 42, 107, 0.16);
}
.sp-locate-mapframe {
    position: relative;
}
.sp-locate-mapframe .map-embed {
    aspect-ratio: 4 / 3;
    min-height: 320px;
    margin: 0;
    background: #c5d4e6;
}
.sp-locate-mapframe .map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.sp-locate-sheet {
    position: relative;
    z-index: 2;
    margin-top: -28px;
    display: grid;
    gap: 0;
    background: transparent;
    animation: spLocateIn 0.55s ease both;
}
@keyframes spLocateIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .sp-locate-sheet { animation: none; }
}
.sp-locate-walk {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: end;
    gap: 6px 8px;
    margin: 0 14px;
    padding: 14px 16px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #0A2A6B 0%, #143f8f 55%, #1A6FE8 140%);
    color: #fff;
    box-shadow: 0 -8px 28px rgba(10, 42, 107, 0.22);
}
.sp-locate-walk-num {
    grid-row: 1 / 3;
    font-size: 52px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: #fff;
}
.sp-locate-walk-unit {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
    align-self: end;
    padding-bottom: 4px;
}
.sp-locate-walk-note {
    grid-column: 2 / 4;
    font-size: 12.5px;
    line-height: 1.35;
    opacity: 0.88;
    max-width: 18em;
}
.sp-locate-body {
    margin: 0 14px 14px;
    padding: 18px 16px 18px;
    border-radius: 0 0 16px 16px;
    background: #fff;
}
.sp-locate-body .sp-kicker {
    display: inline-block;
    margin-bottom: 6px;
}
.sp-locate-body h2 {
    margin: 0 0 4px;
    font-size: clamp(22px, 5.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.15;
}
.sp-locate-postcode {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text-2);
}
.sp-locate-meta {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}
.sp-locate-meta li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.35;
}
.sp-locate-meta svg {
    flex: none;
    color: var(--blue);
}
.sp-locate-meta a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}
.sp-locate-meta a:hover { color: var(--blue); }
.sp-locate-actions {
    display: grid;
    gap: 10px;
}
.sp-locate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(26, 111, 232, 0.28);
    transition: transform 0.15s ease, background 0.15s ease;
}
.sp-locate-cta:hover {
    background: #0f5fd0;
    transform: translateY(-1px);
}
.sp-locate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}
.sp-locate-link:hover { color: var(--blue); }

.sp-faq {
    margin: 18px 0 8px;
}
.sp-faq-list {
    margin: 0 16px;
    display: grid;
    gap: 8px;
    background: transparent;
    border: 0;
}
.sp-faq-list .acc-item {
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(10, 42, 107, 0.06);
    overflow: hidden;
}
.sp-faq-list .acc-row {
    gap: 12px;
    padding: 14px 14px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    transition: background 0.15s ease;
}
.sp-faq-list .acc-item.open .acc-row,
.sp-faq-list .acc-row:hover {
    background: #f5f8fc;
}
.sp-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    text-align: left;
}
.sp-faq-num {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.sp-faq-label {
    padding-top: 4px;
    line-height: 1.35;
}
.sp-faq-list .acc-row .chev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--blue);
    transition: transform 0.18s ease, background 0.15s ease;
}
.sp-faq-list .acc-item.open .acc-row .chev {
    background: var(--blue);
    color: #fff;
    transform: rotate(180deg);
}
.sp-faq-list .acc-answer {
    padding: 0 14px 16px 54px;
    color: #556277;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 400;
}
.sp-faq-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin: 16px 16px 0;
    font-size: 13.5px;
}
.sp-faq-links a {
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}
.sp-faq-links a:last-child {
    color: var(--navy);
    font-weight: 600;
}

@media (max-width: 420px) {
    .sp-faq-list .acc-answer {
        padding-left: 14px;
    }
}

.sp-help {
    position: relative;
    margin: 18px 16px 4px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(10, 42, 107, 0.94), rgba(26, 111, 232, 0.82)),
        var(--sp-help-bg) center / cover no-repeat;
    color: #fff;
    box-shadow: 0 16px 36px rgba(10, 42, 107, 0.2);
}
.sp-help-inner {
    padding: 26px 18px 22px;
}
.sp-help-inner h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 5.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}
.sp-help-inner .sp-kicker {
    color: rgba(255, 255, 255, 0.85);
}
.sp-help-inner > p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.5;
}
.sp-help-actions {
    display: grid;
    gap: 8px;
}
.sp-help-btn {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.15s ease;
}
.sp-help-btn:hover { background: rgba(255, 255, 255, 0.2); }
.sp-help-btn strong {
    font-size: 13px;
    font-weight: 800;
}
.sp-help-btn span {
    font-size: 12.5px;
    opacity: 0.85;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 760px) {
    .app-shell.page-home .sp-feature {
        grid-template-columns: 1.05fr 1fr;
        align-items: stretch;
        margin: 22px auto 12px;
        max-width: 980px;
    }
    .app-shell.page-home .sp-feature-media img {
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center top;
    }
    .app-shell.page-home .sp-feature-copy { padding: 32px 28px; }
    .app-shell.page-home .sp-mosaic {
        grid-template-columns: 1.3fr 1fr 1fr;
        grid-auto-rows: minmax(150px, auto);
        max-width: 980px;
        margin: 22px auto 12px;
        overflow: hidden;
    }
    .app-shell.page-home .sp-mosaic-tile { height: 150px; }
    .app-shell.page-home .sp-mosaic-tile:first-child {
        grid-row: span 2;
        height: 308px;
        min-height: 308px;
    }
    .app-shell.page-home .sp-mosaic-tile:nth-child(6) {
        grid-column: 1 / -1;
        height: 170px;
        min-height: 170px;
    }
    .app-shell.page-home .sp-step-list,
    .app-shell.page-home .sp-section-head,
    .app-shell.page-home .sp-voices-panel,
    .app-shell.page-home .sp-faq-list,
    .app-shell.page-home .sp-faq-links {
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
    }
    .app-shell.page-home .sp-voices-panel { margin: 0 auto; }
    .app-shell.page-home .sp-locate {
        max-width: 980px;
        margin: 36px auto 16px;
    }
    .app-shell.page-home .sp-locate-stage {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        min-height: 420px;
    }
    .app-shell.page-home .sp-locate-mapframe,
    .app-shell.page-home .sp-locate-mapframe .map-embed {
        height: 100%;
        min-height: 420px;
        aspect-ratio: auto;
    }
    .app-shell.page-home .sp-locate-sheet {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        animation: spLocateIn 0.6s ease 0.08s both;
    }
    .app-shell.page-home .sp-locate-walk {
        margin: 0;
        border-radius: 0;
        flex: none;
        padding: 22px 24px 18px;
        box-shadow: none;
        grid-template-columns: auto auto 1fr;
    }
    .app-shell.page-home .sp-locate-walk-num { font-size: 64px; }
    .app-shell.page-home .sp-locate-walk-note { font-size: 13.5px; max-width: none; }
    .app-shell.page-home .sp-locate-body {
        margin: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        border-radius: 0;
        padding: 22px 24px 24px;
    }
    .app-shell.page-home .sp-locate-actions { margin-top: auto; }
    .app-shell.page-home .sp-locate-cta { padding: 15px 20px; }
    .app-shell.page-home .sp-help {
        max-width: 980px;
        margin: 28px auto 12px;
    }
    .app-shell.page-home .sp-help-actions {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-shell.page-home .sp-step-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .app-shell.page-home .sp-step {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
        padding: 18px 16px 20px;
    }

    .app-shell.page-home .sp-step img {
        width: 100%;
        height: 132px;
        border-radius: 14px;
    }

    .app-shell.page-home .sp-section-head {
        text-align: center;
    }

    .app-shell.page-home .sp-below .sp-section-head h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .app-shell.page-home .sp-voices-summary {
        text-align: center;
    }
}

@media (min-width: 960px) {
    .app-shell.page-home .sp-feature {
        max-width: 1040px;
        margin-top: 28px;
    }

    .app-shell.page-home .sp-mosaic {
        max-width: 1040px;
    }

    .app-shell.page-home .sp-step-list,
    .app-shell.page-home .sp-section-head,
    .app-shell.page-home .sp-voices-panel,
    .app-shell.page-home .sp-faq-list,
    .app-shell.page-home .sp-faq-links,
    .app-shell.page-home .sp-locate,
    .app-shell.page-home .sp-help {
        max-width: 1040px;
    }

    .app-shell.page-home .sp-faq-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: start;
    }

    .app-shell.page-home .sp-steps {
        padding: 20px 0 12px;
    }
}
/* ---------- Home open pitch (centered navy/gold hero) ---------- */
.sp-open-preview-banner {
    margin: 10px 10px 0;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff6d8;
    border: 1px solid #e6c96a;
    color: #5a4508;
    font-size: 13px;
    font-weight: 700;
}

.sp-open-preview-banner a {
    color: #0b1f4a;
    text-decoration: underline;
}

.sp-open.sp-open-center {
    position: relative;
    margin: 0;
    padding: 22px 18px 96px;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(80% 55% at 50% 28%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(180deg, #071428 0%, #0a1a36 55%, #0c2044 100%);
    color: #fff;
    box-shadow: none;
    animation: sp-open-in 0.55s ease-out both;
    font-family: system-ui, -apple-system, "Segoe UI", var(--font);
}

/* Shop-front hero: desktop only — mobile keeps centered navy/gold hero without photo */
.sp-open.sp-open-shopfront {
    padding: 22px 18px 96px;
    background:
        radial-gradient(80% 55% at 50% 28%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(180deg, #071428 0%, #0a1a36 55%, #0c2044 100%);
}

.sp-open.sp-open-shopfront.sp-open-center {
    background:
        radial-gradient(80% 55% at 50% 28%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(180deg, #071428 0%, #0a1a36 55%, #0c2044 100%);
}

.sp-shopfront-grid {
    display: flex;
    flex-direction: column;
}

.sp-shopfront-photo {
    display: none;
    background: #071428;
    line-height: 0;
}

.sp-shopfront-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
}

.sp-shopfront-body {
    padding: 0;
}

@media (min-width: 768px) {
    .sp-open.sp-open-shopfront {
        padding: 32px 28px 40px;
        background: #f7f9fc;
    }

    .sp-open.sp-open-shopfront.sp-open-center {
        background: #f7f9fc;
        text-align: center;
    }

    .sp-open.sp-open-shopfront .sp-open-curve {
        display: none;
    }

    .sp-open-shopfront ~ .sp-below,
    .sp-open-shopfront + .home-booking-clean {
        margin-top: 0;
    }

    .sp-shopfront-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
        gap: 28px;
        align-items: stretch;
        max-width: 1080px;
        margin: 0 auto;
    }

    .sp-shopfront-photo {
        display: flex;
        height: 100%;
        min-height: 100%;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid #e3e8f0;
        box-shadow: 0 18px 48px rgba(10, 42, 107, 0.1);
        background: #071428;
    }

    .sp-shopfront-photo img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: contain;
        object-position: center center;
        flex: 1 1 auto;
    }

    .sp-shopfront-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        padding: 26px 24px 22px;
        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 18px;
        background:
            radial-gradient(80% 55% at 50% 28%, rgba(212, 175, 55, 0.18), transparent 60%),
            linear-gradient(180deg, #071428 0%, #0a1a36 55%, #0c2044 100%);
        box-shadow: 0 18px 48px rgba(7, 20, 40, 0.35);
        text-align: center;
        color: #fff;
    }

    .app-shell.page-home .sp-open-shopfront .sp-open-chips {
        max-width: none;
        width: 100%;
    }

    .app-shell.page-home .sp-open-shopfront .sp-open-ctas {
        max-width: none;
        width: 100%;
    }

    .app-shell.page-home .sp-open-shopfront .sp-open-lead {
        max-width: 38ch;
    }
}

@media (min-width: 1024px) {
    .sp-open.sp-open-shopfront {
        padding: 40px 36px 48px;
    }

    .sp-shopfront-grid {
        gap: 32px;
        max-width: 1120px;
    }

    .sp-shopfront-card {
        padding: 30px 28px 24px;
    }
}

@keyframes sp-open-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp-open-tag {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #d4af37;
}

.sp-open-brand-lock {
    margin: 0;
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.sp-open-brand-white {
    font-size: clamp(28px, 8.5vw, 36px);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}

.sp-open-brand-gold {
    font-size: clamp(22px, 6.8vw, 28px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #d4af37;
}

.sp-open-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto;
    color: #d4af37;
}

.sp-open-divider span {
    width: 42px;
    height: 1px;
    background: #d4af37;
    opacity: 0.85;
}

.sp-open-lead {
    margin: 0 auto 8px;
    max-width: 30ch;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0;
    color: #e8eef8;
    font-family: system-ui, -apple-system, "Segoe UI", var(--font);
}

.sp-open-price-line {
    margin: 0 auto 18px;
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: #d4af37;
}

.sp-open-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 420px;
    margin: 0 auto 18px;
    padding: 0 2px;
    text-align: left;
}

.sp-open-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 11px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 12px;
    background: rgba(7, 20, 40, 0.35);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    color: #f3e7b8;
}

.sp-open-chip > span:last-child {
    flex: 1;
    min-width: 0;
}

.sp-open-chip-featured {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
}

.sp-open-chip-ico {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d4af37;
    color: #d4af37;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

@media (min-width: 721px) {
    .app-shell.page-home .sp-open-chips {
        max-width: 520px;
        gap: 10px;
    }
    .app-shell.page-home .sp-open-chip {
        font-size: 11.5px;
        padding: 11px 12px;
        min-height: 48px;
    }
}

.sp-open-ctas {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}

.sp-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.sp-open-btn-book {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
    color: #0b1f4a;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.28), 0 6px 18px rgba(0, 0, 0, 0.22);
    animation:
        spBookIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both,
        spBookGlowWhite 2.6s ease-in-out 1s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.sp-open-btn-book::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: spBookShine 3.2s ease-in-out 1.2s infinite;
    pointer-events: none;
}
.sp-open-btn-book > * {
    position: relative;
    z-index: 1;
}
.sp-open-btn-book:hover,
.sp-open-btn-book:focus-visible {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.04);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.38), 0 8px 22px rgba(0, 0, 0, 0.26);
    animation: none;
}
.sp-open-btn-book:hover::after,
.sp-open-btn-book:focus-visible::after {
    animation: none;
    transform: translateX(120%);
    transition: transform 0.55s ease;
}
.sp-open-btn-book:active {
    transform: translateY(0) scale(0.99);
}
.sp-open-btn-book svg {
    animation: spBookIconNudge 1.8s ease-in-out 1.4s infinite;
}
.sp-open-btn-book:hover svg,
.sp-open-btn-book:focus-visible svg {
    animation: none;
}

@keyframes spBookIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes spBookGlowWhite {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(255, 255, 255, 0.28), 0 6px 18px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 255, 255, 0.42), 0 8px 22px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}
@keyframes spBookGlow {
    0%, 100% {
        box-shadow: 0 10px 24px rgba(212, 146, 15, 0.34), 0 0 0 0 rgba(240, 208, 96, 0.45);
    }
    50% {
        box-shadow: 0 12px 28px rgba(212, 146, 15, 0.48), 0 0 0 10px rgba(240, 208, 96, 0);
    }
}
@keyframes spBookShine {
    0%, 55%, 100% { transform: translateX(-120%); }
    70% { transform: translateX(120%); }
}
@keyframes spBookIconNudge {
    0%, 100% { transform: translateX(0); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
}

@media (prefers-reduced-motion: reduce) {
    .sp-open-btn-book,
    .sp-open-btn-book svg,
    .sp-open-btn-book::after,
    .sp-bottom-dock.is-visible .sp-bottom-dock-book,
    .sp-bottom-dock.is-visible .sp-bottom-dock-book::after {
        animation: none !important;
    }
}

.sp-open-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sp-open-btn-dir {
    border: 1.5px solid #d4af37;
    color: #d4af37;
    background: rgba(7, 20, 40, 0.45);
}

.sp-open-btn-wa {
    background: #25d366;
    color: #fff;
}

.sp-open-curve {
    position: absolute;
    left: 50%;
    bottom: -1px;
    z-index: 1;
    width: 140%;
    height: 56px;
    transform: translateX(-50%);
    background: #f4f6fa;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
}

/* Content under the curve */
.sp-open-center ~ .sp-below,
.sp-open-center + .home-booking-clean {
    margin-top: -28px;
    position: relative;
    z-index: 1;
}

@media (min-width: 721px) {
    .app-shell.page-home .sp-open.sp-open-center:not(.sp-open-shopfront) {
        margin: 0 auto;
        max-width: 720px;
        padding: 28px 34px 108px;
        border-radius: 0 0 0 0;
    }

    .app-shell.page-home .sp-open-lead {
        font-size: 15px;
        max-width: 36ch;
    }

    .app-shell.page-home .sp-open-ctas {
        max-width: 480px;
    }

    .app-shell.page-home .sp-open.sp-open-shopfront {
        max-width: none;
        margin: 0;
        padding: 32px 28px 40px;
    }

    .app-shell.page-home .sp-open-center:not(.sp-open-shopfront) .sp-open-chips {
        max-width: 420px;
    }

    .app-shell.page-home .sp-open-center:not(.sp-open-shopfront) .sp-open-ctas {
        max-width: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sp-open {
        animation: none !important;
    }
}

/* ---------- Radical-clean booking form ---------- */
.home-booking-clean {
    margin: 10px 12px 18px;
    padding: 16px 14px 14px;
    border-radius: 14px;
    border: 1px solid #eceff3;
    box-shadow: none;
    background: #fff;
    scroll-margin-top: 72px;
}
.home-booking-clean::before {
    display: none;
}
.sp-clean-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #0b1f4a;
    letter-spacing: -0.01em;
}
.sp-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 10px;
}
.sp-clean-col {
    display: grid;
    gap: 6px;
    min-width: 0;
}
.sp-clean-label {
    font-size: 11px;
    font-weight: 600;
    color: #8b93a7;
}
.sp-clean-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 11px 12px;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}
.sp-clean-cell:hover,
.sp-clean-cell:focus-within,
.sp-time-trigger.sp-clean-cell.is-open {
    border-color: #c5cedb;
    background: #fafbfc;
    box-shadow: none;
}
.sp-clean-cell-v {
    font-size: 14px;
    font-weight: 650;
    color: #0b1f4a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-clean-chev {
    flex: none;
    color: #9aa3b5;
}
.sp-time-trigger.sp-clean-cell.is-open .sp-clean-chev {
    transform: rotate(180deg);
}
.sp-clean-cell .home-date-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.sp-clean-cell .home-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.sp-clean-time {
    position: relative;
    gap: 0;
}
.sp-clean-time .sp-time-trigger.sp-clean-cell {
    display: flex;
}
.sp-clean-time .sp-time-panel {
    left: 0;
    right: 0;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(11, 31, 74, 0.12);
}
.sp-clean-duration {
    margin: 4px 0 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    color: #5c6578;
    font-size: 13px;
    font-weight: 500;
    background: #f4f6fa;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
}
.sp-clean-duration-label {
    color: #8b93a7;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.sp-clean-duration strong,
.sp-clean-duration #bookDurationPreview {
    color: #0b1f4a;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.sp-schedule-flex {
    margin: 14px 0 0;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    background: #fafbfc;
    gap: 10px;
}
.sp-schedule-flex .addon-copy strong {
    display: block;
    font-size: 13.5px;
    color: #0b1f4a;
}
.sp-schedule-flex .addon-copy small {
    color: #5c6578;
}
.sp-schedule-insurance-col {
    display: block;
    width: 100%;
    margin-top: 10px;
}
.sp-schedule-insurance {
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(26, 111, 232, 0.22);
    background: linear-gradient(135deg, rgba(26, 111, 232, 0.08) 0%, rgba(20, 39, 74, 0.04) 100%);
    gap: 10px;
    align-items: flex-start;
}
.sp-schedule-insurance .sp-insurance-title {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a4f9c;
}
.sp-schedule-insurance .addon-copy small {
    color: #5c6578;
    line-height: 1.35;
}
.summary-insurance-line span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}
.summary-insurance-line .summary-addon-title {
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.summary-insurance-line .summary-addon-meta {
    color: #6b7388;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
}
.summary-insurance-line strong {
    flex: none;
    white-space: nowrap;
}
@media (max-width: 420px) {
    .booking-page-sp .summary-insurance-line {
        flex-wrap: wrap;
        row-gap: 4px;
    }
    .booking-page-sp .summary-insurance-line strong {
        margin-left: auto;
    }
}
.booking-page-sp .booking-schedule-card.home-booking-clean {
    margin: 0 0 14px;
    padding: 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(10, 42, 107, 0.1);
    box-shadow: 0 12px 32px rgba(10, 42, 107, 0.08);
    background: #fff;
}
.booking-page-sp .booking-schedule-card .sp-book-schedule {
    margin-bottom: 14px;
}
.booking-page-sp .booking-bags-card {
    border: 1px solid rgba(10, 42, 107, 0.1);
    border-radius: 20px;
    background:
        radial-gradient(90% 70% at 100% 0%, rgba(224, 168, 32, 0.1), transparent 50%),
        #fff;
    box-shadow: 0 12px 32px rgba(10, 42, 107, 0.08);
    padding: 18px 16px;
}
.booking-page-sp .sp-clean-grid,
.sp-clean-grid-stack {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0 14px;
}
.booking-page-sp .sp-clean-col {
    gap: 8px;
}
.booking-page-sp .sp-clean-label {
    font-size: 12px;
}
.booking-page-sp .sp-clean-cell {
    padding: 14px 14px;
    min-height: 48px;
}
.booking-page-sp .sp-clean-cell-v {
    font-size: 15.5px;
    font-weight: 700;
}

/* Colorful booking titles + drop/pick columns */
.booking-page-sp .sp-kicker {
    color: #d4920f;
    letter-spacing: 0.1em;
}
.booking-page-sp .booking-summary-top h1 {
    background: linear-gradient(90deg, #0b1f4a 0%, #1a4f9c 55%, #0ea08c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.booking-page-sp .sp-clean-title,
.booking-page-sp .bag-section-head h2,
.booking-page-sp .booking-details-title {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1f4a;
}
.booking-page-sp .sp-clean-title::after,
.booking-page-sp .bag-section-head h2::after,
.booking-page-sp .booking-details-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e0a820, #e87030);
}
.booking-page-sp .bag-section-head h2::after {
    background: linear-gradient(90deg, #0ea08c, #1a6fd4);
}
.booking-page-sp .booking-details-title::after {
    background: linear-gradient(90deg, #1a6fd4, #7c5cff);
}
.booking-page-sp .bag-section-head p {
    color: #5c6578;
}
.booking-page-sp .sp-clean-col:first-child {
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(14, 160, 140, 0.12), rgba(14, 160, 140, 0.03));
    border: 1px solid rgba(14, 160, 140, 0.22);
}
.booking-page-sp .sp-clean-col:last-child {
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(232, 112, 48, 0.12), rgba(232, 112, 48, 0.03));
    border: 1px solid rgba(232, 112, 48, 0.22);
}
.booking-page-sp .sp-clean-col:first-child .sp-clean-label {
    color: #0a6e62;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 11px;
}
.booking-page-sp .sp-clean-col:last-child .sp-clean-label {
    color: #b34a12;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 11px;
}
.booking-page-sp .sp-clean-col:first-child .sp-clean-cell {
    border-color: rgba(14, 160, 140, 0.28);
    background: rgba(255, 255, 255, 0.92);
}
.booking-page-sp .sp-clean-col:last-child .sp-clean-cell {
    border-color: rgba(232, 112, 48, 0.28);
    background: rgba(255, 255, 255, 0.92);
}
.booking-page-sp .sp-clean-col:first-child .sp-clean-cell:hover,
.booking-page-sp .sp-clean-col:first-child .sp-clean-cell:focus-within,
.booking-page-sp .sp-clean-col:first-child .sp-time-trigger.sp-clean-cell.is-open {
    border-color: #0ea08c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 160, 140, 0.12);
}
.booking-page-sp .sp-clean-col:last-child .sp-clean-cell:hover,
.booking-page-sp .sp-clean-col:last-child .sp-clean-cell:focus-within,
.booking-page-sp .sp-clean-col:last-child .sp-time-trigger.sp-clean-cell.is-open {
    border-color: #e87030;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 112, 48, 0.12);
}
.booking-page-sp .sp-clean-col:first-child .sp-clean-cell-v { color: #0a6e62; }
.booking-page-sp .sp-clean-col:last-child .sp-clean-cell-v { color: #b34a12; }
.booking-page-sp .sp-clean-duration {
    background: linear-gradient(90deg, rgba(26, 111, 232, 0.1), rgba(124, 92, 255, 0.1));
    border-color: rgba(26, 111, 232, 0.18);
}
.booking-page-sp .sp-clean-duration-label {
    color: #1a6fd4;
}
.booking-page-sp .sp-clean-duration strong,
.booking-page-sp .sp-clean-duration #bookDurationPreview {
    color: #4b3fb8;
}
.booking-page-sp .sp-schedule-flex {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(14, 160, 140, 0.08));
    border-color: rgba(212, 175, 55, 0.35);
}
.booking-page-sp .sp-schedule-flex .addon-copy strong {
    color: #8a6a00;
}
.booking-page-sp .sp-schedule-insurance {
    background: linear-gradient(135deg, rgba(26, 111, 232, 0.1) 0%, rgba(14, 39, 74, 0.05) 100%);
    border-color: rgba(26, 111, 232, 0.28);
}
.booking-page-sp .sp-schedule-insurance .sp-insurance-title {
    color: #0f4a9c;
}
.booking-page-sp .booking-details-card {
    background:
        radial-gradient(90% 70% at 0% 0%, rgba(26, 111, 232, 0.08), transparent 55%),
        #fff;
}
.booking-page-sp .booking-details-grid label {
    color: #1a4f9c;
    font-weight: 700;
}
.booking-page-sp .pay-btn {
    background: linear-gradient(180deg, #f0d060 0%, #e0a820 55%, #d4920f 100%);
    color: #071428;
    border: 0;
    box-shadow: 0 10px 22px rgba(212, 146, 15, 0.35);
}
.booking-page-sp .pay-btn:hover {
    filter: brightness(1.04);
    transform: none;
}
.home-booking-clean .bulk-hint,
.home-booking-clean .home-promo-offer {
    margin: 0 0 8px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 0;
    background: #f7f8fa;
    box-shadow: none;
    font-size: 12.5px;
}
.home-booking-clean .home-promo-offer p {
    margin: 0;
}
.home-booking-clean .home-booking-cta {
    margin-top: 2px;
    min-height: 48px;
    border-radius: 10px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
}
.home-booking-clean .home-booking-cta:hover {
    box-shadow: none;
    transform: none;
}
.home-booking-clean .btn-arrow {
    display: none;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 380px) {
    .booking-page-sp .sp-book-row {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 721px) {
    .home-booking-clean {
        margin: 14px 16px 22px;
        padding: 18px 18px 16px;
    }
}

/* ---------- Time dropdown (closed until tapped; keeps selected time) ---------- */
.sp-schedule-clear .sp-leg-body {
    display: grid;
    gap: 10px;
}
.sp-schedule-clear .sp-field-date {
    display: grid;
    width: 100%;
}
.sp-time-block {
    display: grid;
    gap: 8px;
    position: relative;
    width: 100%;
}
.sp-time-block .sp-field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.sp-time-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(11, 31, 74, 0.16);
    background: #fff;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(11, 31, 74, 0.05);
}
.sp-time-trigger.is-open {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11, 31, 74, 0.1);
}
.sp-time-trigger svg {
    flex: none;
    transition: transform 0.15s ease;
}
.sp-time-trigger.is-open svg {
    transform: rotate(180deg);
}
.sp-time-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 31, 74, 0.14);
    box-shadow: 0 16px 34px rgba(11, 31, 74, 0.16);
}
.sp-time-panel[hidden] {
    display: none !important;
}
.sp-time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    max-height: 220px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.sp-time-chip {
    appearance: none;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(11, 31, 74, 0.14);
    background: #f7f9fc;
    color: var(--navy);
    border-radius: 10px;
    padding: 10px 2px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.sp-time-chip.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 6px 14px rgba(11, 31, 74, 0.18);
}
.sp-time-chip:hover:not(.is-active) {
    border-color: rgba(11, 31, 74, 0.35);
    background: #fff;
}
@media (max-width: 400px) {
    .sp-time-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
    .sp-time-chip { font-size: 11px; padding: 9px 1px; }
}
@media (min-width: 721px) {
    .sp-time-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .sp-time-chip { font-size: 12.5px; padding: 9px 4px; }
}

/* Fee ? help on booking pay card */
.fee-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.fee-label-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 70%;
}
.fee-help-btn {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(11, 31, 74, 0.28);
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
}
.fee-help-btn[aria-expanded="true"] {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.fee-help-pop {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 5;
    width: min(260px, 72vw);
    padding: 10px 12px;
    border-radius: 12px;
    background: #0b1f4a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(11, 31, 74, 0.28);
}
.fee-help-pop[hidden] { display: none !important; }

/* ---------- Sample-style Small / Large bag rows ---------- */
.bag-row-list {
    display: grid;
    gap: 14px;
}
.bag-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1.5px solid transparent;
    box-shadow: 0 8px 18px rgba(11, 31, 74, 0.06);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.bag-row[data-bag-choice="small"] {
    background: linear-gradient(135deg, #e8fffb 0%, #f4fffc 45%, #ffffff 100%);
    border-color: rgba(14, 160, 140, 0.28);
}
.bag-row[data-bag-choice="regular"] {
    background: linear-gradient(135deg, #fff0e6 0%, #fff8f2 45%, #ffffff 100%);
    border-color: rgba(232, 112, 48, 0.28);
}
.bag-row.is-selected[data-bag-choice="small"] {
    border-color: #0ea08c;
    box-shadow: 0 12px 26px rgba(14, 160, 140, 0.22);
}
.bag-row.is-selected[data-bag-choice="regular"] {
    border-color: #e87030;
    box-shadow: 0 12px 26px rgba(232, 112, 48, 0.22);
}
.bag-row-media {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(165deg, #fff7e8 0%, #ffe8d2 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.bag-row-media-small {
    background: linear-gradient(165deg, #d5fff6 0%, #9be8d8 100%);
}
.bag-row-media-regular {
    background: linear-gradient(165deg, #ffe4d1 0%, #ffc39a 100%);
}
.bag-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
}
.bag-row-body {
    min-width: 0;
    display: grid;
    gap: 10px;
}
.bag-row-copy {
    display: grid;
    gap: 2px;
}
.bag-row-copy strong {
    font-size: 17px;
    font-weight: 800;
    color: #0b1f4a;
}
.bag-row[data-bag-choice="small"] .bag-row-copy strong { color: #0a6e62; }
.bag-row[data-bag-choice="regular"] .bag-row-copy strong { color: #b34a12; }
.bag-row-copy small {
    font-size: 12.5px;
    color: #5c6578;
}
.bag-row-copy em {
    font-style: normal;
    font-size: 14px;
    font-weight: 800;
    color: #0b1f4a;
}
.bag-row[data-bag-choice="small"] .bag-row-copy em { color: #0ea08c; }
.bag-row[data-bag-choice="regular"] .bag-row-copy em { color: #e87030; }
.bag-row-stepper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
}
.bag-row-stepper .btnc {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    background: #fff;
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.bag-row[data-bag-choice="small"] .bag-row-stepper .btnc { color: #0ea08c; }
.bag-row[data-bag-choice="regular"] .bag-row-stepper .btnc { color: #e87030; }
.bag-row-stepper .btnc:disabled {
    opacity: 0.35;
    cursor: default;
    border-color: #c5cedb;
    color: #98a3b5;
}
.bag-row-stepper strong {
    min-width: 1.25rem;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #0b1f4a;
}
.bag-rows-field .bag-section-head {
    margin-bottom: 12px;
}

/* ---------- Homepage below-fold color polish ---------- */
.sp-below .sp-section-head .sp-kicker {
    color: #d4920f;
}
.sp-below .sp-section-head h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.sp-below .sp-section-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e0a820, #e87030);
}

.sp-mosaic-tile figcaption {
    padding: 8px 10px !important;
    background: linear-gradient(90deg, rgba(7, 20, 40, 0.88), rgba(11, 31, 74, 0.72)) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    color: #f6e7b8 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    max-height: 42%;
    overflow: hidden;
}

.sp-steps {
    margin-top: 8px;
    padding-top: 16px;
    position: relative;
    z-index: 2;
    background:
        radial-gradient(90% 60% at 0% 0%, rgba(14, 160, 140, 0.08), transparent 55%),
        #fff;
}
.sp-step {
    border-width: 1.5px;
}
.sp-step-book {
    background: linear-gradient(135deg, #e8fffb 0%, #ffffff 70%);
    border-color: rgba(14, 160, 140, 0.28);
}
.sp-step-drop {
    background: linear-gradient(135deg, #fff8e8 0%, #ffffff 70%);
    border-color: rgba(212, 175, 55, 0.35);
}
.sp-step-explore {
    background: linear-gradient(135deg, #fff0e6 0%, #ffffff 70%);
    border-color: rgba(232, 112, 48, 0.28);
}
.sp-step-num {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--blue);
}
.sp-step-book .sp-step-num { background: #0ea08c; }
.sp-step-drop .sp-step-num { background: #d4920f; }
.sp-step-explore .sp-step-num { background: #e87030; }
.sp-step-book h3 { color: #0a6e62; }
.sp-step-drop h3 { color: #8a6a00; }
.sp-step-explore h3 { color: #b34a12; }

.sp-locate-stage {
    box-shadow: 0 18px 40px rgba(10, 42, 107, 0.2);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
}
.sp-locate-walk {
    background: linear-gradient(135deg, #071428 0%, #0b1f4a 45%, #143f8f 100%);
}
.sp-locate-walk-num {
    color: #f0d060 !important;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.sp-locate-body {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-top: 0;
}
.sp-locate-body .sp-kicker { color: #d4920f; }
.sp-locate-meta svg { color: #d4920f; }
.sp-locate-cta {
    background: linear-gradient(180deg, #f0d060 0%, #e0a820 55%, #d4920f 100%) !important;
    color: #071428 !important;
    box-shadow: 0 10px 22px rgba(212, 146, 15, 0.35) !important;
}
.sp-locate-cta:hover {
    background: linear-gradient(180deg, #f6db78 0%, #e8b428 55%, #db9c18 100%) !important;
    filter: none;
}

.sp-voices {
    background: radial-gradient(80% 50% at 100% 0%, rgba(212, 175, 55, 0.12), transparent 55%);
    padding-top: 4px;
}
.sp-voices-panel {
    background: linear-gradient(165deg, #fff9ec 0%, #ffffff 55%) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 14px 34px rgba(180, 130, 20, 0.1) !important;
}
.sp-voices-panel .carousel {
    background: linear-gradient(180deg, #fff7e0, #fffdf7) !important;
}
.sp-voices-panel .car-stars {
    color: #e0a820 !important;
    font-size: 16px;
    letter-spacing: 0.06em;
}
.sp-voices-panel .car-dot.active { background: #d4920f !important; }

.sp-faq-list .acc-item {
    border: 1px solid rgba(10, 42, 107, 0.06);
}
.sp-faq-list .acc-item:nth-child(3n+1) .sp-faq-num {
    background: #e6faf6;
    color: #0a6e62;
}
.sp-faq-list .acc-item:nth-child(3n+2) .sp-faq-num {
    background: #fff4d8;
    color: #8a6a00;
}
.sp-faq-list .acc-item:nth-child(3n) .sp-faq-num {
    background: #eef2ff;
    color: #1a4f9c;
}
.sp-faq-list .acc-item.open {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 24px rgba(180, 130, 20, 0.12);
}
.sp-faq-list .acc-item.open .acc-row {
    background: #fffaf0;
    border-left: 3px solid #e0a820;
}

.sp-help {
    background:
        linear-gradient(120deg, rgba(7, 20, 40, 0.94), rgba(11, 31, 74, 0.88) 45%, rgba(26, 111, 232, 0.72)),
        var(--sp-help-bg) center / cover no-repeat !important;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
}
.sp-help-inner .sp-kicker {
    color: #f0d060 !important;
}
.sp-help-call {
    background: linear-gradient(180deg, #f0d060, #d4920f) !important;
    color: #071428 !important;
    border-color: transparent !important;
}
.sp-help-call strong,
.sp-help-call span { color: #071428; opacity: 1; }
.sp-help-wa {
    background: #25d366 !important;
    border-color: transparent !important;
}
.sp-help-wa strong,
.sp-help-wa span { color: #fff; opacity: 1; }
.sp-help-mail {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
}

.sp-contact {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.sp-contact[hidden] { display: none !important; }
.sp-contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 40, 0.72);
}
.sp-contact-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 22px 20px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(7, 20, 40, 0.28);
    border: 1px solid rgba(10, 42, 107, 0.08);
}
.sp-contact-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f3f5f8;
    color: #0b1f4a;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.sp-contact-panel h2 {
    margin: 0 36px 6px 0;
    font-size: 22px;
}
.sp-contact-lead {
    margin: 0 0 16px;
    color: #5a6578;
    font-size: 14px;
}
.sp-contact-panel label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0b1f4a;
}
.sp-contact-panel .input {
    width: 100%;
    margin: 0 0 12px;
}
.sp-contact-panel textarea.input {
    min-height: 120px;
    resize: vertical;
}
.sp-contact-panel .btn {
    width: 100%;
    margin-top: 4px;
}
.sp-contact-error {
    margin: 0 0 10px;
    color: #9b2335;
    font-size: 13px;
    font-weight: 700;
}
.sp-contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
body.sp-contact-open { overflow: hidden; }
.header-help { cursor: pointer; }

