/**
 * Booking page — mobile UI only (max-width: 1023px). Desktop unchanged.
 */
@media (min-width: 1024px) {
    body.page-booking .mob-only {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    body.page-booking {
        background: #f0f2f8;
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }

    body.page-booking .mob-only {
        display: block;
    }

    body.page-booking a.mob-only,
    body.page-booking .mob-booking-header {
        display: flex;
    }

    body.page-booking nav.mob-only {
        display: flex !important;
    }

    body.page-booking a.site-mob-fab {
        display: flex !important;
    }

    /* Hide default site header bar — use booking header */
    body.page-booking header > .vip-header-outer {
        display: none !important;
    }

    body.page-booking header {
        position: static;
    }

    /* ── Mobile booking header ── */
    .mob-booking-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: calc(env(safe-area-inset-top, 0px) + 0.55rem) 1rem 0.7rem;
        background: linear-gradient(180deg, #163d85 0%, #1e56b8 50%, #2563eb 100%);
    }

    .mob-booking-logo {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        text-decoration: none;
        min-width: 0;
        flex: 1;
    }

    .mob-booking-logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .mob-booking-logo-icon svg path {
        fill: #1d4ed8;
    }

    .mob-booking-logo-text {
        min-width: 0;
    }

    .mob-booking-logo-name {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mob-booking-logo-sub {
        display: block;
        font-size: 0.5rem;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        margin-top: 0.08rem;
    }

    .mob-booking-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: transparent;
        border: none;
        padding: 0;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        cursor: pointer;
    }

    .mob-booking-menu span {
        display: block;
        background: #fff;
        height: 2px;
        width: 22px;
        border-radius: 1px;
        transition: 0.3s;
    }

    body.page-booking .mob-booking-menu.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.page-booking .mob-booking-menu.open span:nth-child(2) {
        opacity: 0;
    }

    body.page-booking .mob-booking-menu.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.page-booking.menu-open {
        overflow: hidden;
    }

    body.page-booking.menu-open .mob-booking-header {
        z-index: 10060 !important;
        position: relative;
    }

    body.page-booking.menu-open .site-mob-fab {
        z-index: 10070 !important;
    }

    /* Bottom nav stays above the drawer (reference) */
    body.page-booking.menu-open .mob-site-bottom-nav,
    body.page-booking.menu-open .mob-bottom-nav {
        z-index: 10065 !important;
    }

    /* Keep booking header visible above the drawer overlay */
    body.page-booking.menu-open .mob-booking-header {
        position: sticky;
        top: 0;
    }

    /* ── Right-side menu drawer (reference) ── */
    body.page-booking .vip-mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(15, 45, 106, 0.45) !important;
    }

    body.page-booking .vip-mobile-nav.open {
        display: flex !important;
        justify-content: flex-end;
        align-items: stretch;
    }

    body.page-booking .vip-mobile-nav-sheet {
        position: relative;
        width: min(86vw, 320px);
        max-width: 320px;
        height: 100%;
        min-height: 100%;
        max-height: none;
        align-self: stretch;
        margin: 0 0 0 auto;
        border-radius: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 4.6rem) 1.15rem calc(64px + 1.15rem + env(safe-area-inset-bottom, 0px));
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #fff !important;
        box-shadow: -12px 0 44px rgba(15, 45, 106, 0.22);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
        animation: none !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-shrink: 0;
        isolation: isolate;
    }

    body.page-booking .vip-mobile-nav.open .vip-mobile-nav-sheet {
        transform: translateX(0);
    }

    body.page-booking .mob-menu-support {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 0.95rem 0.85rem;
        background: #fff !important;
        border: 1px solid #e8ecf2;
        border-radius: 14px;
        margin-bottom: 1.15rem;
        position: relative;
        z-index: 2;
    }

    body.page-booking .mob-menu-support-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
    }

    body.page-booking .mob-menu-support-icon .ico {
        width: 1.6rem;
        height: 1.6rem;
    }

    body.page-booking .mob-menu-support-body strong {
        display: block;
        font-size: 0.88rem;
        font-weight: 700;
        color: #1e3a6b;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }

    body.page-booking .mob-menu-support-body p {
        margin: 0 0 0.4rem;
        font-size: 0.7rem;
        color: #64748b;
        line-height: 1.45;
    }

    body.page-booking .mob-menu-phone {
        font-size: 0.88rem;
        font-weight: 700;
        color: #2563eb;
        text-decoration: none;
    }

    body.page-booking .mob-menu-links {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
        flex: none;
    }

    body.page-booking .mob-menu-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.65rem 0;
        text-decoration: none;
        color: #1e293b !important;
        border-bottom: none !important;
        min-height: auto !important;
    }

    body.page-booking .mob-menu-link-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: #eef4ff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #1d4ed8;
    }

    body.page-booking .mob-menu-link-icon .ico {
        width: 1rem;
        height: 1rem;
    }

    body.page-booking .mob-menu-link-label {
        flex: 1;
        font-size: 0.88rem;
        font-weight: 600;
        color: #1e293b;
    }

    body.page-booking .mob-menu-link-chevron {
        display: flex;
        color: #94a3b8;
    }

    body.page-booking .mob-menu-link-chevron .ico {
        width: 0.8rem;
        height: 0.8rem;
    }

    body.page-booking .mob-menu-auth {
        flex: none;
        margin-top: 0.85rem;
        padding-top: 0.85rem !important;
        border-top: 1px solid #e8ecf2 !important;
        gap: 0.6rem !important;
        display: flex;
        flex-direction: row;
    }

    body.page-booking .mob-menu-auth .btn-login,
    body.page-booking .mob-menu-auth .btn-register {
        flex: 1;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 10px !important;
        font-size: 0.82rem !important;
        padding: 0.55rem 0.75rem !important;
        gap: 0.35rem !important;
        text-decoration: none;
        font-weight: 600;
        min-height: 44px;
    }

    body.page-booking .mob-menu-auth .btn-login .ico,
    body.page-booking .mob-menu-auth .btn-register .ico {
        width: 0.9rem;
        height: 0.9rem;
    }

    body.page-booking .mob-menu-auth .btn-login {
        border: 1.5px solid #d1d5db !important;
        color: #374151 !important;
        background: #fff !important;
    }

    body.page-booking .mob-menu-auth .btn-register {
        background: #2563eb !important;
        color: #fff !important;
        border: none !important;
    }

    body.page-booking .mob-menu-auth .btn-register .ico {
        color: #fff;
    }

    /* ── Page layout ── */
    body.page-booking .bk-page {
        background: #f0f2f8;
        padding: 0 0 1.5rem;
        min-height: auto;
    }

    body.page-booking .bk-container {
        padding: 0 0.85rem;
    }

    /* ── Search card ── */
    body.page-booking .bk-search-card {
        border-radius: 16px;
        padding: 1.15rem;
        margin-bottom: 0.85rem;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.08);
    }

    body.page-booking .bk-search-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1e3a6b;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    body.page-booking .bk-search-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        align-items: end;
    }

    body.page-booking .bk-sf-grp-full {
        grid-column: 1 / -1;
    }

    body.page-booking .bk-sf-grp-half {
        grid-column: span 1;
        min-width: 0 !important;
    }

    body.page-booking .bk-sf-lbl {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.58rem;
        font-weight: 700;
        color: #64748b;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.35rem;
    }

    body.page-booking .bk-sf-lbl i {
        display: none;
    }

    body.page-booking .bk-sf-lbl .desk-only {
        display: none !important;
    }

    body.page-booking .bk-sf-lbl .mob-only {
        display: inline !important;
    }

    body.page-booking .bk-search-btn .mob-only {
        display: inline !important;
    }

    body.page-booking .bk-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    body.page-booking .bk-dot-blue {
        background: #2563eb;
    }

    body.page-booking .bk-dot-pink {
        background: #ec4899;
    }

    body.page-booking .bk-sf-inp,
    body.page-booking .lug-picker-btn {
        padding: 0.72rem 0.85rem;
        border: 1.5px solid #e2e8f0;
        border-radius: 10px;
        font-size: 0.86rem;
        background: #fff;
        color: #1e293b;
    }

    body.page-booking .bk-sf-inp:focus,
    body.page-booking .lug-picker-btn:focus {
        border-color: #2563eb;
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    body.page-booking .bk-search-btn {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        padding: 0.88rem 1rem;
        background: #2563eb;
        border-radius: 10px;
        font-size: 0.92rem;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
        margin-top: 0.15rem;
    }

    body.page-booking .bk-search-btn:hover {
        background: #1d4ed8;
    }

    body.page-booking .bk-search-btn-desk {
        display: none;
    }

    body.page-booking .bk-return-row {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid #f1f5f9;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    body.page-booking .toggle-lbl {
        font-size: 0.82rem;
        color: #475569;
        font-weight: 500;
    }

    /* ── Trust badges ── */
    body.page-booking .bk-mob-trust {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        margin-bottom: 0.85rem;
    }

    body.page-booking .bk-trust-card {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: #fff;
        border-radius: 12px;
        padding: 0.65rem 0.7rem;
        box-shadow: 0 2px 10px rgba(15, 45, 106, 0.06);
        font-size: 0.68rem;
        font-weight: 600;
        color: #334155;
        line-height: 1.25;
    }

    body.page-booking .bk-trust-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    body.page-booking .bk-trust-icon .ico {
        width: 0.9rem;
        height: 0.9rem;
    }

    body.page-booking .bk-trust-blue .bk-trust-icon {
        background: #dbeafe;
        color: #1d4ed8;
    }

    body.page-booking .bk-trust-orange .bk-trust-icon {
        background: #ffedd5;
        color: #ea580c;
    }

    body.page-booking .bk-trust-pink .bk-trust-icon {
        background: #fce7f3;
        color: #db2777;
    }

    body.page-booking .bk-trust-green .bk-trust-icon {
        background: #dcfce7;
        color: #16a34a;
    }

    /* ── Airport price grid ── */
    body.page-booking .bk-empty {
        background: #fff;
        border-radius: 16px;
        padding: 1.25rem 1rem 1rem;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.08);
        text-align: center;
    }

    body.page-booking .bk-empty > i {
        font-size: 1.75rem;
        color: #94a3b8;
        margin-bottom: 0.65rem;
    }

    body.page-booking .bk-empty h3 {
        font-size: 0.95rem !important;
        color: #1e293b !important;
        font-weight: 700;
        margin-bottom: 0.35rem !important;
    }

    body.page-booking .bk-empty > p {
        font-size: 0.78rem !important;
        color: #64748b !important;
        margin-bottom: 1rem !important;
    }

    body.page-booking .airport-chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        margin-top: 0;
        justify-content: stretch;
    }

    body.page-booking .airport-chip {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 0.75rem 0.7rem;
        border: 1.5px solid #e8ecf2;
        border-radius: 12px;
        background: #fff;
        color: #1e293b;
        font-size: 0.72rem;
        font-weight: 600;
        text-align: left;
        line-height: 1.25;
    }

    body.page-booking .airport-chip i {
        color: #94a3b8;
        font-size: 0.85rem;
    }

    body.page-booking .airport-chip span {
        background: #eff6ff;
        color: #2563eb;
        padding: 0.15rem 0.45rem;
        border-radius: 6px;
        font-size: 0.68rem;
        font-weight: 700;
        margin-top: auto;
    }

    body.page-booking .airport-chip:hover {
        background: #f8fafc;
        border-color: #2563eb;
        color: #1e293b;
    }

    body.page-booking .airport-chip:hover span {
        background: #dbeafe;
        color: #1d4ed8;
    }

    /* ── Select Vehicle (Step 2) — mobile only ── */
    body.page-booking:has(.bk-results-layout) .bk-journey-bar {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-results-layout {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin: 0.75rem clamp(0.65rem, 3.2vw, 0.85rem) 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-vehicles-panel {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        overflow: visible;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-header {
        display: block;
        margin: 0 0 0.85rem;
        padding: 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-heading-legacy,
    body.page-booking:has(.bk-results-layout) .results-count {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-heading {
        display: block;
        margin: 0 0 0.2rem;
        color: #0f2d6b;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.25;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-sub {
        margin: 0;
        color: #64748b;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-sub .desk-only {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-sub .mob-only {
        display: block;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-carousel-wrap {
        display: block;
        margin: 0 -0.15rem;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        scrollbar-width: none;
        padding: 0.2rem 0 0.4rem;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-carousel::-webkit-scrollbar {
        display: none;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.65rem;
        width: max-content;
        min-width: 100%;
        padding: 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card {
        display: flex;
        flex: 0 0 200px;
        flex-direction: column;
        align-items: stretch;
        width: 200px;
        min-width: 200px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border: 1.5px solid #e2e8f0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(15, 45, 106, 0.06);
        position: relative;
        scroll-snap-align: start;
        transform: none;
        cursor: pointer;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card:hover {
        transform: none;
        border-color: #93c5fd;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card.selected {
        border-color: #2563eb;
        background: #fff;
        box-shadow: 0 4px 18px rgba(37, 99, 235, 0.18);
    }

    body.page-booking:has(.bk-results-layout) .veh-card-radio {
        position: absolute;
        top: 0.55rem;
        right: 0.55rem;
        z-index: 3;
        width: 17px;
        height: 17px;
        margin: 0;
        accent-color: #2563eb;
        cursor: pointer;
        display: block !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-img {
        width: 100%;
        height: 108px;
        min-height: 108px;
        padding: 0.65rem 0.75rem 0.35rem;
        border-radius: 0;
        background: #f4f6fa;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-img img {
        width: auto;
        height: auto;
        max-width: 96%;
        max-height: 82px;
        object-fit: contain;
        object-position: center center;
        margin: 0 auto;
        display: block;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-info {
        padding: 0.45rem 0.75rem 0;
        flex: 0 0 auto;
        width: 100%;
        text-align: left;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-name {
        margin-bottom: 0.3rem;
        color: #0f172a;
        font-size: 0.88rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-desc {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-specs {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.22rem;
        margin: 0 0 0.15rem;
        padding: 0;
        color: #475569;
        font-size: 0.68rem;
        line-height: 1.35;
        width: 100%;
        text-align: left;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-specs span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        text-align: left;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-specs i {
        color: #2563eb;
        margin-right: 0.28rem;
        font-size: 0.62rem;
        width: 0.8rem;
        flex-shrink: 0;
        text-align: center;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-features,
    body.page-booking:has(.bk-results-layout) .bk-veh-grid .btn-select-veh,
    body.page-booking:has(.bk-results-layout) .bk-veh-grid .vcp-from,
    body.page-booking:has(.bk-results-layout) .bk-veh-grid .vcp-price-label,
    body.page-booking:has(.bk-results-layout) .bk-veh-grid .vcp-return,
    body.page-booking:has(.bk-results-layout) .veh-popular-badge.desk-only {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .veh-card-price-col {
        width: 100%;
        min-width: 0;
        padding: 0.3rem 0.75rem 0.75rem;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        text-align: left !important;
    }

    body.page-booking:has(.bk-results-layout) .veh-price-top {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.35rem;
        width: 100%;
    }

    body.page-booking:has(.bk-results-layout) .veh-price-left {
        display: flex;
        align-items: center;
        order: 1;
        flex-shrink: 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-veh-grid .vcp-price {
        color: #2563eb;
        font-size: 1.22rem;
        font-weight: 800;
        line-height: 1;
    }

    body.page-booking:has(.bk-results-layout) .veh-popular-badge.mob-only {
        display: inline-block !important;
        order: 2;
        margin-left: auto;
        padding: 0.18rem 0.45rem;
        border-radius: 5px;
        background: #dbeafe;
        color: #1d4ed8;
        font-size: 0.58rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.01em;
        flex-shrink: 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-info-banner {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 0.85rem 0 0;
        padding: 0.75rem 0.85rem;
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        border-radius: 10px;
        color: #1e40af;
        font-size: 0.74rem;
        line-height: 1.45;
    }

    body.page-booking:has(.bk-results-layout) .bk-info-banner i {
        margin-top: 0.08rem;
        color: #0046be;
        flex-shrink: 0;
    }

    body.page-booking:has(.bk-results-layout) .toll-notice {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-summary-col {
        width: 100%;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-title {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        margin-bottom: 0.75rem;
        color: #0f2d6b;
        font-size: 0.95rem;
        font-weight: 700;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-title i {
        color: #0046be;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-card {
        margin: 0;
        padding: 1rem 0.95rem;
        background: #fff;
        border: 1px solid #e8ecf2;
        border-radius: 14px;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.06);
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.65rem;
        padding: 0.42rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.76rem;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-row span {
        color: #64748b;
        flex-shrink: 0;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-row strong {
        color: #0f172a;
        font-weight: 700;
        text-align: right;
        min-width: 0;
        word-break: break-word;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-veh-preview {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 0.7rem;
        padding: 0.6rem;
        background: transparent;
        border-radius: 10px;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-veh-preview img {
        width: 52px;
        height: 38px;
        object-fit: contain;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-veh-specs {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .no-veh-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        margin: 0.75rem 0 0.35rem;
        padding: 0.75rem 0.5rem;
        color: #94a3b8;
        text-align: center;
        font-size: 0.76rem;
    }

    body.page-booking:has(.bk-results-layout) .no-veh-hint i {
        font-size: 1.15rem;
        color: #cbd5e1;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-price-lines {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid #f1f5f9;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-price-line {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.3rem 0;
        font-size: 0.76rem;
        color: #64748b;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-price-line strong {
        color: #0f172a;
        font-weight: 700;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-total-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 0.45rem;
        padding-top: 0.55rem;
        border-top: 1px solid #e8ecf2;
        font-size: 0.82rem;
        font-weight: 700;
        color: #0f172a;
    }

    body.page-booking:has(.bk-results-layout) .bk-sum-total-row strong {
        color: #0046be;
        font-size: 1.05rem;
        font-weight: 800;
    }

    body.page-booking:has(.bk-results-layout) .btn-proceed {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        width: 100%;
        margin-top: 0.75rem;
        min-height: 48px;
        padding: 0.9rem 1rem;
        border: none;
        border-radius: 10px;
        background: #2563eb;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    }

    body.page-booking:has(.bk-results-layout) .btn-proceed:disabled {
        opacity: 0.55;
        box-shadow: none;
    }

    body.page-booking:has(.bk-results-layout) .btn-proceed i {
        font-size: 0.78rem;
    }

    body.page-booking:has(.bk-results-layout) .bk-desk-trust.desk-only {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin: 0.85rem clamp(0.65rem, 3.2vw, 0.85rem) 0;
        padding: 0.85rem 0.35rem;
        border: 1px solid #e8ecf2;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.06);
    }

    body.page-booking:has(.bk-results-layout) .bk-mob-trust {
        display: none !important;
    }

    body.page-booking:has(.bk-results-layout) .bk-desk-search-row.bk-step1-hidden {
        display: none !important;
    }

    /* ── Footer mobile spacing ── */
    body.page-booking .site-footer {
        background: #0b1528;
        padding: 1.5rem 1rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    body.page-booking .site-footer .footer-inner {
        padding: 0;
    }

    body.page-booking .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.page-booking .site-footer .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.35rem;
        padding-bottom: 0.5rem;
    }

    body.page-booking .site-footer .footer-desc,
    body.page-booking .site-footer .f-contact {
        display: none !important;
    }

    body.page-booking .site-footer .f-logo {
        margin-bottom: 0;
        align-items: center;
        gap: 0.55rem;
        width: 100%;
    }

    body.page-booking .site-footer .f-logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: #1d4ed8;
        flex-shrink: 0;
    }

    body.page-booking .site-footer .f-logo-name {
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.2;
    }

    body.page-booking .site-footer .f-logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.45);
        margin-top: 0.1rem;
    }

    body.page-booking .site-footer .f-social {
        margin-left: 0;
        margin-top: 0.15rem;
        gap: 0.4rem;
        width: 100%;
    }

    body.page-booking .site-footer .f-social a {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
    }

    body.page-booking .site-footer .footer-col h5 {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.55rem;
        color: #fff;
        font-weight: 700;
    }

    body.page-booking .site-footer .footer-col a {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
    }

    body.page-booking .site-footer .footer-bottom {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
        gap: 0.65rem;
        padding: 0.9rem 0 0.25rem;
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.38);
    }

    body.page-booking .site-footer .footer-bottom p {
        margin: 0;
        flex: 1;
        min-width: 0;
        max-width: 58%;
    }

    body.page-booking .site-footer .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.65rem 0.85rem;
        flex-shrink: 0;
    }

    body.page-booking .site-footer .footer-bottom-links a {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.45);
        white-space: nowrap;
    }

    body.page-booking .bk-desk-fields-wrap {
        display: contents;
    }

    body.page-booking .bk-loc-stack {
        display: contents;
    }

    /* ── Reference mobile booking layout ── */
    body.page-booking .mob-booking-header {
        position: relative;
        min-height: 44px;
        padding: calc(env(safe-area-inset-top, 0px) + 0.45rem) 1rem 0.55rem;
        background: #0f2d6a;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    body.page-booking .mob-booking-bell,
    body.page-booking .mob-booking-menu {
        width: 34px;
        height: 34px;
        color: #fff;
        flex: 0 0 34px;
    }

    body.page-booking .mob-booking-bell {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    body.page-booking .mob-booking-bell .ico {
        width: 1rem;
        height: 1rem;
        color: #fff;
    }

    body.page-booking .mob-booking-logo {
        flex: 0 1 auto;
        justify-content: center;
        text-align: center;
    }

    body.page-booking .mob-booking-logo-name {
        font-size: 0.8rem;
    }

    body.page-booking .mob-booking-logo-sub {
        font-size: 0.45rem;
    }

    body.page-booking .bk-page {
        padding-bottom: 1rem;
    }

    body.page-booking .bk-container {
        padding: 0 clamp(0.65rem, 3.2vw, 0.85rem);
        max-width: none;
        width: 100%;
    }

    body.page-booking .bk-stepper.desk-only {
        display: flex !important;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        margin: 0;
        padding: 1.15rem 0.75rem 1.05rem;
        background: #fff;
        border-bottom: 1px solid #e8ecf2;
    }

    body.page-booking .bk-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.28rem;
        width: 72px;
        min-width: 0;
        text-align: center;
    }

    body.page-booking .bk-step-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f1f3f7;
        border: 1px solid #edf0f4;
        color: #a8afbb;
        font-size: 0.7rem;
    }

    body.page-booking .bk-step.active .bk-step-icon {
        color: #fff;
        background: #0757c9;
        border-color: #0757c9;
        box-shadow: 0 3px 9px rgba(7, 87, 201, 0.25);
    }

    body.page-booking .bk-step.done .bk-step-icon {
        color: #fff;
        background: #22c55e;
        border-color: #22c55e;
    }

    body.page-booking .bk-step > span:not(.bk-step-icon):not(.bk-step-sub) {
        color: #9aa2ae;
        font-size: 0.54rem;
        line-height: 1.15;
        font-weight: 500;
    }

    body.page-booking .bk-step.active > span:not(.bk-step-icon):not(.bk-step-sub) {
        color: #0757c9;
        font-weight: 700;
    }

    body.page-booking .bk-step-sub {
        color: #c1c6ce;
        font-size: 0.42rem;
        line-height: 1.15;
    }

    body.page-booking .bk-step-line {
        width: clamp(18px, 8vw, 42px);
        height: 1px;
        margin-top: 15px;
        background: #e5e7eb;
        flex: 0 1 42px;
    }

    body.page-booking .bk-step-line.done {
        background: #22c55e;
    }

    body.page-booking .bk-desk-search-row {
        display: flex;
        flex-direction: column;
        gap: clamp(0.65rem, 2.5vw, 0.85rem);
        margin: clamp(0.65rem, 2.5vw, 0.85rem) 0 0;
        width: 100%;
    }

    body.page-booking .bk-desk-search-row.bk-step1-hidden {
        display: none;
    }

    body.page-booking .bk-search-card {
        order: 2;
        min-width: 0;
        width: 100%;
        margin: 0;
        padding: clamp(0.9rem, 3.5vw, 1.15rem);
        border-radius: 14px;
        border: 1px solid #e8ecf2;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.08);
    }

    body.page-booking .bk-search-title {
        font-size: clamp(1rem, 4.2vw, 1.15rem);
        margin-bottom: clamp(0.75rem, 3vw, 1rem);
    }

    body.page-booking .bk-search-fields {
        gap: 0.7rem;
    }

    body.page-booking .bk-sf-lbl {
        gap: 0.35rem;
        margin-bottom: 0.35rem;
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }

    body.page-booking .bk-dot {
        width: 7px;
        height: 7px;
    }

    body.page-booking .bk-sf-inp,
    body.page-booking .lug-picker-btn {
        min-height: clamp(40px, 11vw, 44px);
        padding: clamp(0.6rem, 2.5vw, 0.72rem) clamp(0.65rem, 2.8vw, 0.85rem);
        border-radius: 10px;
        font-size: clamp(0.78rem, 3.4vw, 0.86rem);
    }

    body.page-booking .lug-picker-btn {
        gap: 0.35rem;
    }

    body.page-booking .bk-search-btn {
        min-height: 46px;
        padding: 0.88rem 1rem;
        border-radius: 10px;
        font-size: 0.92rem;
        margin-top: 0.15rem;
    }

    body.page-booking .bk-search-btn .fa-search {
        font-size: 0.9rem;
    }

    body.page-booking .bk-return-row {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        gap: 0.5rem;
    }

    body.page-booking .toggle-lbl {
        font-size: 0.82rem;
        gap: 0.5rem;
    }

    body.page-booking .toggle-sw {
        transform: none;
        margin-right: 0;
    }

    /* Luggage dropdown — keep panel inside mobile viewport */
    body.page-booking .bk-search-card,
    body.page-booking .bk-search-fields,
    body.page-booking .bk-sf-grp.luggage-field {
        overflow: visible;
    }

    body.page-booking .bk-sf-grp.luggage-field {
        position: relative;
        z-index: 20;
        min-width: 0;
    }

    body.page-booking .lug-picker {
        min-width: 0;
        width: 100%;
    }

    body.page-booking .lug-picker.lug-picker-open {
        z-index: 10100;
    }

    body.page-booking .lug-picker-panel {
        border: 1.5px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(15, 45, 106, 0.14);
        z-index: 10100;
    }

    /* Map — full width above Search Your Journey */
    body.page-booking .bk-map-panel {
        order: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid #e8ecf2;
        border-radius: 14px;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.08);
    }

    body.page-booking .bk-map-trip-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        min-height: auto;
        padding: 0.85rem 1rem;
        background: #fff;
        border-bottom: 1px solid #eef1f5;
    }

    body.page-booking .bk-map-trip-locs {
        display: flex;
        flex: 1;
        min-width: 0;
        flex-direction: column;
        gap: 0.22rem;
    }

    body.page-booking .bk-map-trip-from,
    body.page-booking .bk-map-trip-to {
        display: flex;
        align-items: center;
        min-width: 0;
        gap: 0.4rem;
        overflow: hidden;
        color: #1e293b;
        font-size: clamp(0.68rem, 3vw, 0.78rem);
        font-weight: 700;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-booking .bk-map-trip-from::before,
    body.page-booking .bk-map-trip-to::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex: 0 0 6px;
    }

    body.page-booking .bk-map-trip-from::before {
        background: #2563eb;
    }

    body.page-booking .bk-map-trip-to::before {
        background: #ef4444;
    }

    body.page-booking .bk-map-trip-right {
        display: flex;
        flex: 0 0 auto;
    }

    body.page-booking .bk-map-stat {
        min-width: 64px;
        padding: 0 0.65rem;
        border-left: 1px solid #e8ecf2;
        text-align: center;
    }

    body.page-booking .bk-map-stat-lbl {
        display: block;
        color: #94a3b8;
        font-size: 0.62rem;
        line-height: 1.2;
    }

    body.page-booking .bk-map-stat strong {
        display: block;
        margin-top: 0.2rem;
        color: #0f172a;
        font-size: 0.82rem;
        line-height: 1.2;
    }

    body.page-booking .bk-map-shell {
        position: relative;
        flex: 1;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: clamp(190px, 42vw, 280px);
        max-height: 52vh;
    }

    body.page-booking #bkRouteMap {
        width: 100%;
        height: 100%;
        min-height: clamp(190px, 42vw, 280px);
        background: #e8f0f8;
    }

    body.page-booking .bk-map-badge {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 500;
        padding: 0.4rem 0.75rem;
        transform: translate(-50%, -50%);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
        color: #0046be;
        font-size: 0.72rem;
        font-weight: 700;
        white-space: nowrap;
        pointer-events: none;
    }

    body.page-booking .bk-route-marker {
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        border-radius: 50%;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    body.page-booking .leaflet-control-zoom a {
        width: 25px !important;
        height: 25px !important;
        line-height: 25px !important;
        font-size: 15px !important;
    }

    body.page-booking .bk-mob-trust {
        display: none !important;
    }

    body.page-booking .bk-desk-trust.desk-only {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin: 0.85rem 0.75rem 0;
        padding: 0.85rem 0.35rem;
        border: 1px solid #e8ecf2;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 2px 14px rgba(15, 45, 106, 0.06);
    }

    body.page-booking .bk-desk-trust-item {
        min-width: 0;
        padding: 0 0.18rem;
        gap: 0.22rem;
        text-align: center;
        border-right: 1px solid #f1f5f9;
    }

    body.page-booking .bk-desk-trust-item:last-child {
        border-right: 0;
    }

    body.page-booking .bk-desk-trust-item > i {
        font-size: 0.7rem;
    }

    body.page-booking .bk-desk-trust-item div {
        min-width: 0;
    }

    body.page-booking .bk-desk-trust-item strong {
        display: block;
        overflow: hidden;
        color: #1e293b;
        font-size: 0.44rem;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-booking .bk-desk-trust-item span {
        display: block;
        margin-top: 0.15rem;
        overflow: hidden;
        color: #94a3b8;
        font-size: 0.36rem;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-booking .bk-empty {
        display: none;
    }

    /* Homepage-style footer using the shared footer markup */
    body.page-booking .site-footer {
        padding: 1.5rem 1rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }

    body.page-booking .site-footer .footer-container {
        max-width: none;
        padding: 0;
    }

    body.page-booking .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
        padding-bottom: 1.25rem;
    }

    body.page-booking .site-footer .footer-brand-col {
        grid-column: 1 / -1;
    }

    body.page-booking .site-footer .footer-desc,
    body.page-booking .site-footer .footer-contact-list {
        display: none !important;
    }

    body.page-booking .site-footer .footer-logo {
        margin-bottom: 0.75rem;
    }

    body.page-booking .site-footer .footer-logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: #1d4ed8;
    }

    body.page-booking .site-footer .footer-logo-name {
        font-size: 0.82rem;
    }

    body.page-booking .site-footer .footer-logo-sub {
        font-size: 0.5rem;
    }

    body.page-booking .site-footer .footer-social {
        gap: 0.4rem;
    }

    body.page-booking .site-footer .footer-social a {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        font-size: 0.72rem;
    }

    body.page-booking .site-footer .footer-links-col h5 {
        margin-bottom: 0.55rem;
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    body.page-booking .site-footer .footer-links-col ul {
        gap: 0.32rem;
    }

    body.page-booking .site-footer .footer-links-col a {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    body.page-booking .site-footer .footer-bottom {
        flex-direction: row !important;
        padding: 0.9rem 0 0.25rem;
        font-size: 0.62rem;
        text-align: left !important;
    }

    body.page-booking .site-footer .footer-bottom p {
        max-width: 58%;
        margin: 0;
    }

    body.page-booking .site-footer .footer-bottom-links {
        justify-content: flex-end;
        gap: 0.65rem;
    }

    body.page-booking .site-footer .footer-bottom-links a {
        font-size: 0.62rem;
    }

    /* Keep one mobile WhatsApp/phone pair only. */
    body.page-booking .fab-float.desk-only {
        display: none !important;
    }

    body.page-booking .site-mob-fab {
        right: 1rem;
    }

    body.page-booking .site-mob-fab.wa-float {
        bottom: calc(9.2rem + env(safe-area-inset-bottom, 0px));
        background: #25d366;
    }

    body.page-booking .site-mob-fab.ph-float {
        bottom: calc(5.65rem + env(safe-area-inset-bottom, 0px));
        background: #1d4ed8;
    }
}

@media (max-width: 380px) {
    body.page-booking .mob-booking-logo-name {
        font-size: 0.74rem;
    }

    body.page-booking .bk-trust-card {
        font-size: 0.62rem;
        padding: 0.55rem 0.6rem;
    }
}
