/*
Theme Name: Bali Travelica
Description: Single Tour page — Forever Vacation grade UI
             Sections: breadcrumb → mosaic gallery (lightbox) → title+wishlist
             → sticky tabs → 2-col (main | booking sidebar) → reviews
             → why different (yellow) → related → sticky bottom bar → WA float.
             Mobile-first responsive.
*/

/* =====================================================================
   0. DESIGN TOKENS
   ===================================================================== */
:root {
    --bbt-st-pad-x: clamp(16px, 4vw, 28px);
    --bbt-st-radius: 18px;
    --bbt-st-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
    --bbt-st-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --bbt-st-amber: #F5A623;
    --bbt-st-amber-light: #FFB84D;
    --bbt-st-amber-bg: #FEF3C7;
    --bbt-st-navy: #1E3A5F;
    --bbt-st-navy-dk: #0F172A;
    --bbt-st-gray: #64748B;
    --bbt-st-gray-2: #94A3B8;
    --bbt-st-bg: #F8FAFC;
    --bbt-st-line: #E2E8F0;

    /* Height of the global fixed .site-header — used as offset for the
     * sticky in-page tabs nav so it docks right under the main header.
     * JS will overwrite this with the measured value (see single-tour.js). */
    --bbt-st-header-h: 80px;
    --bbt-st-tabs-h: 56px;
}

/* WordPress admin bar adds 32px (46px on mobile) to the top of the page. */
body.admin-bar {
    --bbt-st-header-h: 112px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --bbt-st-header-h: 126px;
    }
}

/* =====================================================================
 *  CONTAINER RESET — Defensive multi-layer reset for parent themes
 *  that wrap our <main> in narrow .site-main, .container, .content-area,
 *  .wrap, or any column-based grid system.
 *
 *  We target the WordPress body class (`body.single-tour` /
 *  `body.single-activity`) to break ALL ancestors out of their max-widths.
 * ===================================================================== */

/* Layer 1: Force every ancestor of the single-tour container to be full width */
body.single-tour,
body.single-activity,
body.single-tour>div,
body.single-activity>div,
body.single-tour #page,
body.single-activity #page,
body.single-tour #content,
body.single-activity #content,
body.single-tour .site-content,
body.single-activity .site-content,
body.single-tour .site-main,
body.single-activity .site-main,
body.single-tour .content-area,
body.single-activity .content-area,
body.single-tour .container,
body.single-activity .container,
body.single-tour .wrap,
body.single-activity .wrap,
body.single-tour .entry-content,
body.single-activity .entry-content {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
}

/* Layer 2: Hide any sidebar that the parent theme injects on single-post pages */
body.single-tour #secondary,
body.single-activity #secondary,
body.single-tour .sidebar,
body.single-activity .sidebar,
body.single-tour .widget-area:not(.bbt-st-booking) {
    display: none !important;
}

/* Layer 3: Ensure the single-tour <main> itself spans full width.
 *
 *  IMPORTANT: we use `overflow-x: clip` (not `hidden`) so children with
 *  `position: sticky` (e.g. the anchor tabs nav) keep sticking to the
 *  viewport instead of being trapped by this scroll container.
 *  `clip` blocks horizontal overflow without creating a new scroll context. */
main.bbt-single-tour,
.site-main.bbt-single-tour,
.bbt-single-tour {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: var(--bbt-st-bg);
    padding-bottom: 120px;
    box-sizing: border-box;
    overflow-x: clip;
    overflow-y: visible;
    float: none !important;
}

/* Fallback for browsers that don't support `overflow: clip` (Safari < 16). */
@supports not (overflow: clip) {

    main.bbt-single-tour,
    .site-main.bbt-single-tour,
    .bbt-single-tour {
        overflow-x: hidden;
        /* Use contain to preserve a tighter containment context */
        contain: paint;
    }
}

.bbt-single-tour *,
.bbt-single-tour *::before,
.bbt-single-tour *::after {
    box-sizing: border-box;
}

/* Layer 4: Inner caps (1280px max for content blocks) */
.bbt-single-tour>.bbt-st-breadcrumb>.bbt-st-breadcrumb__inner,
.bbt-single-tour>.bbt-st-gallery,
.bbt-single-tour>.bbt-st-header,
.bbt-single-tour>.bbt-st-tabs>.bbt-st-tabs__inner,
.bbt-single-tour>.bbt-st-layout,
.bbt-single-tour>.bbt-st-related,
.bbt-single-tour>.bbt-st-why-different {
    width: 100%;
    max-width: 1280px;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

/* =====================================================================
   1. TOP BREADCRUMB — flush against the dark fixed header
   ===================================================================== */
.bbt-st-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--bbt-st-line);
    padding: 18px var(--bbt-st-pad-x) 14px;
    /* Add a subtle shadow so the white breadcrumb doesn't bleed into the
     * dark header — gives a clean visual break. */
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    position: relative;
    z-index: 5;
}

.bbt-st-breadcrumb__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bbt-st-gray);
    flex-wrap: wrap;
}

.bbt-st-breadcrumb a {
    color: var(--bbt-st-gray);
    text-decoration: none;
    transition: color 0.15s;
}

.bbt-st-breadcrumb a:hover {
    color: var(--bbt-st-amber);
}

.bbt-st-breadcrumb__sep {
    color: var(--bbt-st-gray-2);
    margin: 0 4px;
}

.bbt-st-breadcrumb__current {
    color: var(--bbt-st-navy);
    font-weight: 600;
}

/* =====================================================================
   2. HERO GALLERY MOSAIC (1 big + 4 small + "+N photos" overlay)
   ===================================================================== */
.bbt-st-gallery {
    max-width: 1280px;
    margin: 18px auto 0;
    padding: 0 var(--bbt-st-pad-x);
}

.bbt-st-gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 480px;
    border-radius: var(--bbt-st-radius);
    overflow: hidden;
    box-shadow: var(--bbt-st-shadow);
}

.bbt-st-gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f3f4f6;
    border: 0;
    padding: 0;
}

.bbt-st-gallery__item--main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.bbt-st-gallery__grid--count-1 {
    display: block;
    height: clamp(320px, 52vw, 560px);
}

.bbt-st-gallery__grid--count-1 .bbt-st-gallery__item--main {
    width: 100%;
    height: 100%;
}

.bbt-st-gallery__grid--count-2 {
    grid-template-columns: 2fr 1fr;
}

.bbt-st-gallery__grid--count-2>.bbt-st-gallery__item:not(.bbt-st-gallery__item--main) {
    grid-row: 1 / 3;
}

.bbt-st-gallery__grid--count-3 {
    grid-template-columns: 2fr 1fr;
}

.bbt-st-gallery__grid--count-4 {
    grid-template-columns: 2fr 1fr 1fr;
}

.bbt-st-gallery__grid--count-4>.bbt-st-gallery__item:nth-child(2) {
    grid-row: 1 / 3;
}

.bbt-st-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

.bbt-st-gallery__item:hover img {
    transform: scale(1.05);
}

.bbt-st-gallery__more {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(2px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    gap: 6px;
    transition: background 0.2s;
}

.bbt-st-gallery__more:hover {
    background: rgba(15, 23, 42, 0.85);
}

.bbt-st-gallery__more strong {
    font-size: 24px;
    font-weight: 900;
}

.bbt-st-gallery__open-all {
    display: none;
    margin-top: 12px;
    width: 100%;
    padding: 12px 18px;
    background: #fff;
    border: 1.5px solid var(--bbt-st-line);
    color: var(--bbt-st-navy);
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 13px;
}

/* =====================================================================
   3. LIGHTBOX
   ===================================================================== */
.bbt-st-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    animation: bbt-lb-in 0.25s ease;
}

.bbt-st-lightbox.is-open {
    display: flex;
}

@keyframes bbt-lb-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bbt-st-lightbox__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    color: #fff;
}

.bbt-st-lightbox__counter {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.bbt-st-lightbox__close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.bbt-st-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bbt-st-lightbox__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 80px;
    min-height: 0;
}

.bbt-st-lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.bbt-st-lightbox__nav {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    transform: translateY(-50%);
}

.bbt-st-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.bbt-st-lightbox__nav--prev {
    left: 16px;
}

.bbt-st-lightbox__nav--next {
    right: 16px;
}

.bbt-st-lightbox__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 28px;
    scroll-behavior: smooth;
}

.bbt-st-lightbox__thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.18s;
    background: transparent;
    padding: 0;
}

.bbt-st-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bbt-st-lightbox__thumb.is-active,
.bbt-st-lightbox__thumb:hover {
    opacity: 1;
    border-color: var(--bbt-st-amber);
}

/* =====================================================================
   4. TITLE BLOCK + WISHLIST
   ===================================================================== */
.bbt-st-header {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 var(--bbt-st-pad-x);
}

.bbt-st-header__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.bbt-st-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 900;
    color: var(--bbt-st-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.bbt-st-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bbt-st-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid #CBD5E1;
    color: var(--bbt-st-navy);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease,
        background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.bbt-st-action-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease, fill 0.18s ease, color 0.18s ease;
}

.bbt-st-action-btn__label {
    line-height: 1;
}

.bbt-st-action-btn:hover {
    border-color: var(--bbt-st-amber);
    color: var(--bbt-st-navy);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.20);
    transform: translateY(-1px);
}

.bbt-st-action-btn:active {
    transform: translateY(0);
}

.bbt-st-action-btn:focus-visible {
    outline: 3px solid rgba(245, 166, 35, 0.45);
    outline-offset: 2px;
}

/* Wishlist active = solid red heart */
.bbt-st-action-btn--wishlist.is-active {
    background: #FEF2F2;
    border-color: #ef4444;
    color: #ef4444;
}

.bbt-st-action-btn--wishlist.is-active svg {
    fill: #ef4444;
    color: #ef4444;
    animation: bbt-st-heartbeat 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bbt-st-heartbeat {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.28);
    }

    70% {
        transform: scale(0.92);
    }

    100% {
        transform: scale(1);
    }
}

/* Share "Link copied!" toast */
.bbt-st-action-btn__copied {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translate(-50%, 6px);
    white-space: nowrap;
    background: var(--bbt-st-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.bbt-st-action-btn__copied::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bbt-st-navy);
}

.bbt-st-action-btn--share[data-copied="yes"] {
    border-color: #10b981;
    color: #10b981;
}

.bbt-st-action-btn--share[data-copied="yes"] .bbt-st-action-btn__copied {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.bbt-st-meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--bbt-st-gray);
}

.bbt-st-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--bbt-st-navy);
    font-weight: 700;
}

.bbt-st-rating svg {
    color: var(--bbt-st-amber);
}

.bbt-st-rating__count {
    color: var(--bbt-st-gray);
    font-weight: 500;
    font-size: 13px;
}

.bbt-st-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bbt-st-meta-item svg {
    color: var(--bbt-st-amber);
}

/* =====================================================================
   5. STICKY TABS NAV — docks right below the global fixed header,
      stays glued while user scrolls through the page sections.
   ===================================================================== */
.bbt-st-tabs {
    /* Glassy white surface — readable over any background */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--bbt-st-line);
    margin-top: 24px;

    /* THE CORE FIX — sticky to viewport, offset by the live header height.
     * The JS file measures .site-header on load + resize and writes the
     * value into --bbt-st-header-h, so this stays accurate even if the
     * header expands (e.g. when the WP admin bar is shown). */
    position: -webkit-sticky;
    position: sticky;
    top: var(--bbt-st-header-h, 80px);
    z-index: 90;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, background 0.25s ease;
    /* Force own stacking context so the underline never bleeds */
    isolation: isolate;
    will-change: top;
}

/* Heavier shadow once it's actually pinned (added by JS via IntersectionObserver) */
.bbt-st-tabs.is-pinned {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(15, 23, 42, 0.04);
}

.bbt-st-tabs__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--bbt-st-pad-x);
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    /* Smooth horizontal scroll when active tab snaps into view on mobile */
    scroll-behavior: smooth;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
}

.bbt-st-tabs__inner::-webkit-scrollbar {
    display: none;
}

.bbt-st-tab {
    padding: 18px 20px 16px;
    color: var(--bbt-st-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    letter-spacing: 0.01em;
}

.bbt-st-tab::before {
    /* Subtle hover halo */
    content: '';
    position: absolute;
    inset: 8px 6px;
    border-radius: 10px;
    background: var(--bbt-st-amber-bg);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
    z-index: -1;
}

.bbt-st-tab:hover {
    color: var(--bbt-st-navy);
}

.bbt-st-tab:hover::before {
    opacity: 0.55;
}

.bbt-st-tab:focus-visible {
    outline: 2px solid var(--bbt-st-amber);
    outline-offset: 2px;
    border-radius: 6px;
}

.bbt-st-tab.is-active {
    color: var(--bbt-st-navy);
    border-bottom-color: var(--bbt-st-amber);
}

.bbt-st-tab.is-active::after {
    /* Animated gradient underline (sits flush on the bottom border) */
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    border-radius: 3px 3px 0 0;
    animation: bbt-st-tab-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bbt-st-tab-in {
    from {
        transform: scaleX(0.4);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* =====================================================================
   6. MAIN 2-COL LAYOUT
   ===================================================================== */
.bbt-st-layout {
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 0 var(--bbt-st-pad-x);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.bbt-st-content {
    min-width: 0;
}

.bbt-st-section {
    background: #fff;
    border-radius: var(--bbt-st-radius);
    padding: 28px;
    margin-bottom: 18px;
    box-shadow: var(--bbt-st-shadow);
}

.bbt-st-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.bbt-st-section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.bbt-st-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: -4px;
}

/* QUICK INFO ROW */
.bbt-st-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #fff;
    border-radius: var(--bbt-st-radius);
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: var(--bbt-st-shadow);
}

.bbt-st-quick-info__item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bbt-st-quick-info__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bbt-st-amber-bg);
    color: var(--bbt-st-amber);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bbt-st-quick-info__label {
    font-size: 11px;
    color: var(--bbt-st-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 2px;
}

.bbt-st-quick-info__value {
    font-size: 14px;
    color: var(--bbt-st-navy);
    font-weight: 800;
}

/* OVERVIEW */
.bbt-st-overview {
    color: var(--bbt-st-gray);
    line-height: 1.7;
    font-size: 15px;
}

.bbt-st-overview p {
    margin: 0 0 12px;
}

.bbt-st-overview p:last-child {
    margin-bottom: 0;
}

/* HIGHLIGHTS */
.bbt-st-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bbt-st-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bbt-st-amber-bg);
    border-radius: 10px;
    font-size: 14px;
    color: var(--bbt-st-navy);
    font-weight: 600;
    line-height: 1.5;
}

.bbt-st-highlights svg {
    flex-shrink: 0;
    color: var(--bbt-st-amber);
    margin-top: 1px;
}

/* TOUR STOPS */
.bbt-st-stops {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bbt-st-stops__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    background: var(--bbt-st-bg);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid var(--bbt-st-line);
}

.bbt-st-stops__item:hover {
    transform: translateX(4px);
    box-shadow: var(--bbt-st-shadow);
    border-color: var(--bbt-st-amber);
}

.bbt-st-stops__thumb {
    aspect-ratio: 1/1;
    background: var(--bbt-st-line);
    overflow: hidden;
}

.bbt-st-stops__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bbt-st-stops__body {
    padding: 14px 16px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.bbt-st-stops__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bbt-st-amber);
    color: var(--bbt-st-navy);
    border-radius: 50%;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 8px;
}

.bbt-st-stops__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
    color: var(--bbt-st-navy);
}

.bbt-st-stops__text {
    margin: 0;
    font-size: 13px;
    color: var(--bbt-st-gray);
    line-height: 1.55;
}

/* SCHEDULE / "WHAT TO EXPECT" TIMELINE — animated line-story */
.bbt-st-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* The connector line — visible by default; hidden only once JS arms it */
.bbt-st-timeline::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg,
            var(--bbt-st-amber) 0%,
            var(--bbt-st-amber-light) 55%,
            rgba(245, 166, 35, 0) 100%);
    transform: scaleY(1);
    transform-origin: top center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.bbt-st-timeline.is-armed::before {
    transform: scaleY(0);
}

.bbt-st-timeline.is-revealed::before {
    transform: scaleY(1);
}

.bbt-st-timeline__item {
    display: grid;
    grid-template-columns: 56px 32px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 8px 0;
    position: relative;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hidden start state applies ONLY when JS has armed the animation —
 * guarantees the content is visible if the script never loads. */
.bbt-st-timeline.is-armed .bbt-st-timeline__item {
    opacity: 0;
    transform: translateY(18px);
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger: each subsequent step waits a touch longer */
.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(1) {
    transition-delay: 0.12s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(2) {
    transition-delay: 0.24s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(3) {
    transition-delay: 0.36s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(4) {
    transition-delay: 0.48s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(5) {
    transition-delay: 0.60s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(6) {
    transition-delay: 0.72s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(7) {
    transition-delay: 0.84s;
}

.bbt-st-timeline.is-revealed .bbt-st-timeline__item:nth-child(n+8) {
    transition-delay: 0.96s;
}

.bbt-st-timeline__time {
    font-weight: 800;
    font-size: 13px;
    color: var(--bbt-st-navy);
    background: var(--bbt-st-amber-bg);
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.4;
}

.bbt-st-timeline__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--bbt-st-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: var(--bbt-st-amber);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

/* Soft glowing ring around every dot once revealed */
.bbt-st-timeline.is-revealed .bbt-st-timeline__dot {
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.14);
}

/* Hover lifts the step + grows its dot for an interactive feel */
.bbt-st-timeline__item:hover .bbt-st-timeline__dot {
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.20);
}

/* First dot keeps a gentle pulse to draw the eye to the start */
.bbt-st-timeline.is-revealed .bbt-st-timeline__item:first-child .bbt-st-timeline__dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid var(--bbt-st-amber);
    animation: bbt-st-dot-pulse 2.2s ease-out infinite;
}

@keyframes bbt-st-dot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.bbt-st-timeline__body {
    padding: 4px 0 12px;
    border-bottom: 1px solid var(--bbt-st-line);
}

.bbt-st-timeline__item:last-child .bbt-st-timeline__body {
    border-bottom: 0;
}

.bbt-st-timeline__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--bbt-st-navy);
}

.bbt-st-timeline__text {
    margin: 0;
    font-size: 13px;
    color: var(--bbt-st-gray);
    line-height: 1.55;
}

/* Accessibility: honour reduced-motion — show everything, no transforms */
@media (prefers-reduced-motion: reduce) {
    .bbt-st-timeline::before {
        transform: scaleY(1);
        transition: none;
    }

    .bbt-st-timeline__item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bbt-st-timeline__item:first-child .bbt-st-timeline__dot::after {
        animation: none;
    }
}

/* INCLUDED / EXCLUDED */
.bbt-st-inex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bbt-st-inex__col h4 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbt-st-inex__col h4.is-included svg {
    color: #10b981;
}

.bbt-st-inex__col h4.is-excluded svg {
    color: #ef4444;
}

.bbt-st-inex__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbt-st-inex__col li {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--bbt-st-gray);
    line-height: 1.5;
}

.bbt-st-inex__col.is-included li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 3px;
}

.bbt-st-inex__col.is-excluded li svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 3px;
}

/* IMPORTANT INFO */
.bbt-st-important {
    background: #FEF3C7;
    border-left: 4px solid var(--bbt-st-amber);
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 8px;
}

.bbt-st-important h4 {
    margin: 0 0 10px;
    color: var(--bbt-st-navy);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbt-st-important ul {
    margin: 0;
    padding-left: 20px;
    color: var(--bbt-st-gray);
    line-height: 1.6;
    font-size: 14px;
}

/* FAQ */
.bbt-st-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bbt-st-faq details {
    background: var(--bbt-st-bg);
    border: 1px solid var(--bbt-st-line);
    border-radius: 12px;
    padding: 0;
    transition: all 0.2s;
}

.bbt-st-faq details[open] {
    border-color: var(--bbt-st-amber);
    box-shadow: var(--bbt-st-shadow);
}

.bbt-st-faq summary {
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--bbt-st-navy);
    font-size: 15px;
    user-select: none;
}

.bbt-st-faq summary::-webkit-details-marker {
    display: none;
}

.bbt-st-faq summary::after {
    content: '+';
    width: 28px;
    height: 28px;
    background: var(--bbt-st-amber);
    color: var(--bbt-st-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    transition: transform 0.2s;
}

.bbt-st-faq details[open] summary::after {
    content: '−';
}

.bbt-st-faq__answer {
    padding: 0 18px 16px;
    color: var(--bbt-st-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================================
   7. BOOKING SIDEBAR (sticky)
   ===================================================================== */
.bbt-st-booking {
    position: sticky;
    top: 130px;
    background: #fff;
    border-radius: var(--bbt-st-radius);
    padding: 22px;
    box-shadow: var(--bbt-st-shadow-lg);
    border: 1px solid var(--bbt-st-line);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.bbt-st-booking__price-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.bbt-st-booking__price-from {
    font-size: 12px;
    color: var(--bbt-st-gray);
    font-weight: 600;
}

.bbt-st-booking__price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--bbt-st-navy);
    letter-spacing: -0.02em;
}

.bbt-st-booking__price-original {
    font-size: 14px;
    color: var(--bbt-st-gray);
    text-decoration: line-through;
}

.bbt-st-booking__price-per {
    font-size: 12px;
    color: var(--bbt-st-gray);
    margin-bottom: 18px;
}

.bbt-st-booking__field {
    margin-bottom: 14px;
}

.bbt-st-booking__label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.bbt-st-booking__date {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--bbt-st-line);
    border-radius: 10px;
    font-size: 14px;
    color: var(--bbt-st-navy);
    font-weight: 600;
    background: var(--bbt-st-bg);
    cursor: pointer;
}

.bbt-st-booking__date:focus {
    outline: none;
    border-color: var(--bbt-st-amber);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.bbt-st-booking__morning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    color: var(--bbt-st-navy);
    background: linear-gradient(135deg, #fff8e5 0%, #fffdf7 100%);
    border: 1px solid rgba(245, 166, 35, 0.42);
    border-radius: 12px;
}

.bbt-st-booking__morning>svg {
    flex: 0 0 auto;
    color: var(--bbt-st-amber);
}

.bbt-st-booking__morning span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bbt-st-booking__morning strong {
    font-size: 13px;
    font-weight: 900;
}

.bbt-st-booking__morning small {
    color: var(--bbt-st-gray);
    font-size: 11px;
    line-height: 1.45;
}

/* ---- Time slots: premium grid with capacity meta ---- */
.bbt-st-booking__hint {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bbt-st-booking__hint::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: bbt-st-pulse 1.8s infinite;
}

@keyframes bbt-st-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.bbt-st-booking__slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.bbt-st-booking__slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 14px;
    border: 1.5px solid var(--bbt-st-line);
    border-radius: 12px;
    background: #fff;
    color: var(--bbt-st-navy);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.18s ease,
        background 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    overflow: hidden;
    isolation: isolate;
}

.bbt-st-booking__slot::after {
    /* Subtle gradient highlight on hover/active */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
}

.bbt-st-booking__slot-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
}

.bbt-st-booking__slot-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--bbt-st-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bbt-st-booking__slot-meta {
    font-size: 11px;
    font-weight: 700;
    color: var(--bbt-st-gray);
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bbt-st-booking__slot-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bbt-st-gray-2);
    flex-shrink: 0;
}

.bbt-st-booking__slot:hover {
    border-color: var(--bbt-st-amber);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.15);
}

.bbt-st-booking__slot:hover::after {
    opacity: 1;
}

.bbt-st-booking__slot.is-active {
    border-color: var(--bbt-st-amber);
    background: linear-gradient(135deg, var(--bbt-st-amber-bg) 0%, #FFF8E5 100%);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.28),
        inset 0 0 0 1px var(--bbt-st-amber);
}

.bbt-st-booking__slot.is-active::after {
    opacity: 1;
}

.bbt-st-booking__slot.is-active .bbt-st-booking__slot-meta::before {
    background: var(--bbt-st-amber);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

/* Status colours */
.bbt-st-booking__slot[data-status="almost_full"] .bbt-st-booking__slot-meta {
    color: #b45309;
}

.bbt-st-booking__slot[data-status="almost_full"] .bbt-st-booking__slot-meta::before {
    background: #f59e0b;
}

.bbt-st-booking__slot[data-status="sold_out"] {
    color: var(--bbt-st-gray-2);
    border-style: dashed;
    cursor: not-allowed;
    background: var(--bbt-st-bg);
}

.bbt-st-booking__slot[data-status="sold_out"] .bbt-st-booking__slot-meta {
    color: #ef4444;
}

.bbt-st-booking__slot[data-status="sold_out"] .bbt-st-booking__slot-meta::before {
    background: #ef4444;
}

.bbt-st-booking__slot[data-status="sold_out"]:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--bbt-st-line);
}

/* Skeleton shimmer while AJAX loads */
.bbt-st-booking__slot.is-skeleton .bbt-st-booking__slot-meta {
    color: transparent;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    animation: bbt-st-shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
    width: 60px;
    height: 8px;
}

.bbt-st-booking__slot.is-skeleton .bbt-st-booking__slot-meta::before {
    display: none;
}

@keyframes bbt-st-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.bbt-st-booking__counters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bbt-st-booking__counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bbt-st-bg);
    border-radius: 10px;
    border: 1px solid var(--bbt-st-line);
}

.bbt-st-booking__counter-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bbt-st-booking__counter-label {
    font-weight: 700;
    color: var(--bbt-st-navy);
    font-size: 14px;
}

.bbt-st-booking__counter-sub {
    font-size: 11px;
    color: var(--bbt-st-gray);
}

.bbt-st-booking__counter-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbt-st-booking__btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--bbt-st-line);
    color: var(--bbt-st-navy);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

.bbt-st-booking__btn:hover:not(:disabled) {
    border-color: var(--bbt-st-amber);
    color: var(--bbt-st-amber);
}

.bbt-st-booking__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bbt-st-booking__count {
    width: 24px;
    text-align: center;
    font-weight: 800;
    color: var(--bbt-st-navy);
}

.bbt-st-booking__addons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bbt-st-booking__addon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bbt-st-bg);
    border: 1px solid var(--bbt-st-line);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
}

.bbt-st-booking__addon:hover {
    border-color: var(--bbt-st-amber);
}

.bbt-st-booking__addon:has(input:checked) {
    background: var(--bbt-st-amber-bg);
    border-color: var(--bbt-st-amber);
}

.bbt-st-booking__addon input {
    accent-color: var(--bbt-st-amber);
}

.bbt-st-booking__addon-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--bbt-st-navy);
}

.bbt-st-booking__addon-price {
    font-size: 12px;
    color: var(--bbt-st-gray);
    font-weight: 700;
}

.bbt-st-booking__promo-row {
    display: flex;
    gap: 6px;
}

.bbt-st-booking__promo-row input {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid var(--bbt-st-line);
    border-radius: 10px;
    font-size: 13px;
    background: var(--bbt-st-bg);
    text-transform: uppercase;
}

.bbt-st-booking__promo-apply {
    padding: 0 16px;
    background: var(--bbt-st-navy);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
}

.bbt-st-booking__summary {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 2px dashed var(--bbt-st-line);
}

.bbt-st-booking__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--bbt-st-gray);
    padding: 4px 0;
}

.bbt-st-booking__row--total {
    font-size: 16px;
    color: var(--bbt-st-navy);
    font-weight: 900;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid var(--bbt-st-line);
}

.bbt-st-booking__row--total .bbt-st-booking__row-amount {
    font-size: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--bbt-st-amber);
}

.bbt-st-booking__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    color: var(--bbt-st-navy);
    border: 0;
    border-radius: 12px;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.bbt-st-booking__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(245, 166, 35, 0.55);
}

.bbt-st-booking__cta--whatsapp {
    margin-top: 10px;
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.bbt-st-booking__cta--whatsapp:hover {
    color: #fff;
    box-shadow: 0 16px 38px rgba(18, 140, 126, 0.42);
}

.bbt-st-booking__cta:focus-visible {
    outline: 3px solid rgba(245, 166, 35, 0.4);
    outline-offset: 3px;
}

.bbt-st-booking__trust {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 11px;
    color: var(--bbt-st-gray);
}

.bbt-st-booking__trust-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bbt-st-booking__trust-row svg {
    color: #10b981;
}

/* =====================================================================
   8. REVIEWS
   ===================================================================== */
.bbt-st-reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #FFF8E5, #FEF3C7);
    border-radius: 14px;
    margin-bottom: 18px;
}

.bbt-st-reviews-big {
    text-align: center;
}

.bbt-st-reviews-big__num {
    font-size: 56px;
    font-weight: 900;
    color: var(--bbt-st-navy);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bbt-st-reviews-big__stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 6px 0;
    color: var(--bbt-st-amber);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.bbt-st-reviews-big__stars svg {
    flex-shrink: 0;
}

.bbt-st-reviews-big__count {
    font-size: 13px;
    color: var(--bbt-st-gray);
    font-weight: 600;
}

.bbt-st-reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bbt-st-reviews-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--bbt-st-gray);
}

.bbt-st-reviews-bar__bg {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.bbt-st-reviews-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.bbt-st-review {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--bbt-st-line);
}

.bbt-st-review:last-child {
    border-bottom: 0;
}

.bbt-st-review__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bbt-st-navy);
    font-weight: 900;
    font-size: 20px;
    overflow: hidden;
}

.bbt-st-review__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bbt-st-review__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    gap: 12px;
}

.bbt-st-review__name {
    font-weight: 800;
    color: var(--bbt-st-navy);
    font-size: 14px;
}

.bbt-st-review__date {
    font-size: 12px;
    color: var(--bbt-st-gray-2);
}

.bbt-st-review__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--bbt-st-amber);
    margin-bottom: 6px;
    flex-wrap: nowrap;
}

.bbt-st-review__stars svg {
    flex-shrink: 0;
}

.bbt-st-review__text {
    margin: 0;
    color: var(--bbt-st-gray);
    line-height: 1.6;
    font-size: 14px;
}

/* =====================================================================
   9. WHY DIFFERENT (yellow)
   ===================================================================== */
.bbt-st-why-different {
    margin-top: 32px;
    background: linear-gradient(135deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    border-radius: 24px;
    padding: 48px clamp(24px, 4vw, 56px);
    color: var(--bbt-st-navy);
    position: relative;
    overflow: hidden;
}

.bbt-st-why-different::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.2), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.05), transparent 50%);
}

.bbt-st-why-different__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

.bbt-st-why-different__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.bbt-st-why-different__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.bbt-st-why-different__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    transition: transform 0.2s;
}

.bbt-st-why-different__item:hover {
    transform: translateX(4px);
}

.bbt-st-why-different__icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bbt-st-navy);
}

.bbt-st-why-different__item h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 800;
}

.bbt-st-why-different__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
}

/* =====================================================================
   10. RELATED TOURS
   ===================================================================== */
.bbt-st-related {
    margin-top: 32px;
    max-width: 1280px;
    padding: 0 var(--bbt-st-pad-x);
    margin-left: auto;
    margin-right: auto;
}

.bbt-st-related__head {
    text-align: center;
    margin-bottom: 24px;
}

.bbt-st-related__head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--bbt-st-navy);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.bbt-st-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.bbt-st-related__card {
    background: #fff;
    border-radius: var(--bbt-st-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--bbt-st-shadow);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.bbt-st-related__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bbt-st-shadow-lg);
}

.bbt-st-related__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.bbt-st-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.bbt-st-related__card:hover .bbt-st-related__thumb img {
    transform: scale(1.06);
}

.bbt-st-related__body {
    padding: 14px 16px;
}

.bbt-st-related__title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bbt-st-related__price {
    color: var(--bbt-st-amber);
    font-weight: 900;
    font-size: 16px;
}

/* =====================================================================
   11. STICKY BOTTOM PRICE BAR — mobile-first, premium feel
   ===================================================================== */
.bbt-st-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.10);
    padding: 12px var(--bbt-st-pad-x);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 100;
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
    isolation: isolate;
}

.bbt-st-sticky-bar.is-visible {
    transform: translateY(0);
    box-shadow: 0 -14px 40px rgba(15, 23, 42, 0.14);
}

.bbt-st-sticky-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 14px;
}

.bbt-st-sticky-bar__price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
    flex: 1;
}

.bbt-st-sticky-bar__from {
    font-size: 10.5px;
    color: var(--bbt-st-gray);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bbt-st-sticky-bar__amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--bbt-st-navy);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--bbt-st-navy) 0%, #0F172A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bbt-st-sticky-bar__amount strong {
    font-weight: 900;
}

.bbt-st-sticky-bar__per {
    font-size: 12px;
    color: var(--bbt-st-gray);
    font-weight: 700;
    -webkit-text-fill-color: var(--bbt-st-gray);
}

.bbt-st-sticky-bar__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #10b981;
    font-weight: 700;
    margin-top: 2px;
}

.bbt-st-sticky-bar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: bbt-st-pulse 1.8s infinite;
}

.bbt-st-sticky-bar__cta {
    position: relative;
    flex-shrink: 0;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--bbt-st-amber) 0%, var(--bbt-st-amber-light) 50%, var(--bbt-st-amber) 100%);
    background-size: 200% 100%;
    color: var(--bbt-st-navy);
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(245, 166, 35, 0.42);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background-position 0.5s ease;
    overflow: hidden;
    isolation: isolate;
}

.bbt-st-sticky-bar__cta::before {
    /* Sweep highlight that animates across the button */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 0%, transparent 30%,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 70%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.bbt-st-sticky-bar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(245, 166, 35, 0.55);
    background-position: 100% 0;
}

.bbt-st-sticky-bar__cta:hover::before {
    transform: translateX(100%);
}

.bbt-st-sticky-bar__cta:active {
    transform: translateY(0) scale(0.98);
}

.bbt-st-sticky-bar__cta svg {
    transition: transform 0.2s ease;
}

.bbt-st-sticky-bar__cta:hover svg {
    transform: translateX(3px);
}

/* =====================================================================
   12. FLOATING WHATSAPP
   ===================================================================== */
.bbt-st-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 110px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 99;
    transition: all 0.2s;
    text-decoration: none;
    animation: bbt-wa-pulse 2.5s infinite;
}

.bbt-st-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bbt-wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}

/* =====================================================================
   12B. BOOKING MODAL — multi-step AJAX checkout (premium)
   ===================================================================== */
.bbt-bm {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bbt-bm.is-open {
    display: flex;
    animation: bbt-bm-fade 0.25s ease;
}

@keyframes bbt-bm-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bbt-bm__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.bbt-bm__panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32),
        0 6px 18px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: bbt-bm-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    isolation: isolate;
}

@keyframes bbt-bm-pop {
    from {
        transform: translateY(28px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.bbt-bm__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(15, 23, 42, 0.06);
    color: var(--bbt-st-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.18s ease, transform 0.18s ease;
}

.bbt-bm__close:hover {
    background: rgba(15, 23, 42, 0.12);
    transform: rotate(90deg);
}

.bbt-bm__progress {
    height: 3px;
    background: var(--bbt-st-line);
}

.bbt-bm__progress-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 999px 999px 0;
}

.bbt-bm__head {
    padding: 22px 26px 16px;
}

.bbt-bm__steps {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.bbt-bm__step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 5px;
    background: var(--bbt-st-bg);
    border: 1px solid var(--bbt-st-line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bbt-st-gray);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.bbt-bm__step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--bbt-st-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: var(--bbt-st-gray);
    transition: all 0.25s ease;
}

.bbt-bm__step.is-active {
    background: linear-gradient(135deg, var(--bbt-st-amber-bg), #FFF8E5);
    border-color: var(--bbt-st-amber);
    color: var(--bbt-st-navy);
}

.bbt-bm__step.is-active .bbt-bm__step-num {
    background: var(--bbt-st-amber);
    border-color: var(--bbt-st-amber);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.bbt-bm__step.is-done {
    background: #ecfdf5;
    border-color: #10b981;
    color: #047857;
}

.bbt-bm__step.is-done .bbt-bm__step-num {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
    font-size: 0;
    position: relative;
}

.bbt-bm__step.is-done .bbt-bm__step-num::after {
    content: '✓';
    font-size: 13px;
}

.bbt-bm__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--bbt-st-navy);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.bbt-bm__subtitle {
    color: var(--bbt-st-gray);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

.bbt-bm__body {
    flex: 1;
    overflow-y: auto;
    padding: 4px 26px 24px;
    scrollbar-width: thin;
}

.bbt-bm__body::-webkit-scrollbar {
    width: 6px;
}

.bbt-bm__body::-webkit-scrollbar-thumb {
    background: var(--bbt-st-line);
    border-radius: 3px;
}

.bbt-bm__step-pane {
    display: none;
    animation: bbt-bm-slide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bbt-bm__step-pane.is-active {
    display: block;
}

@keyframes bbt-bm-slide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bbt-bm__tour-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--bbt-st-bg) 0%, #fff 100%);
    border: 1px solid var(--bbt-st-line);
    border-radius: 14px;
    margin-bottom: 14px;
}

.bbt-bm__tour-thumb {
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bbt-st-line);
}

.bbt-bm__tour-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bbt-bm__tour-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    line-height: 1.3;
}

.bbt-bm__tour-info p {
    margin: 0;
    font-size: 12.5px;
    color: var(--bbt-st-gray);
    line-height: 1.5;
}

.bbt-bm__summary {
    list-style: none;
    margin: 0 0 14px;
    padding: 14px 16px;
    background: var(--bbt-st-bg);
    border-radius: 14px;
    border: 1px solid var(--bbt-st-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bbt-bm__summary li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
}

.bbt-bm__summary li>span {
    color: var(--bbt-st-gray);
    font-weight: 600;
}

.bbt-bm__summary li>strong {
    color: var(--bbt-st-navy);
    font-weight: 800;
    text-align: right;
}

.bbt-bm__summary-total {
    padding-top: 10px;
    border-top: 1px dashed var(--bbt-st-line);
}

.bbt-bm__summary-total>span {
    color: var(--bbt-st-navy) !important;
    font-weight: 800 !important;
    font-size: 14px;
}

.bbt-bm__summary-total>strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px !important;
    color: var(--bbt-st-amber) !important;
}

.bbt-bm__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--bbt-st-gray);
    font-weight: 600;
}

.bbt-bm__trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bbt-bm__trust-row svg {
    color: #10b981;
    flex-shrink: 0;
}

.bbt-bm__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bbt-bm__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bbt-bm__field label {
    font-size: 12px;
    font-weight: 800;
    color: var(--bbt-st-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bbt-bm__field label em {
    color: #ef4444;
    font-style: normal;
    margin-left: 2px;
}

.bbt-bm__field input,
.bbt-bm__field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--bbt-st-line);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--bbt-st-navy);
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.bbt-bm__field input:focus,
.bbt-bm__field textarea:focus {
    outline: none;
    border-color: var(--bbt-st-amber);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
}

.bbt-bm__field input.is-invalid,
.bbt-bm__field textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.bbt-bm__error {
    margin: 0;
    padding: 12px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
}

.bbt-bm__success {
    text-align: center;
    padding: 12px 0 8px;
}

.bbt-bm__check {
    display: inline-flex;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #10b981;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    animation: bbt-bm-check-in 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bbt-bm-check-in {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.bbt-bm__check-tick {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: bbt-bm-tick 0.5s 0.25s ease forwards;
}

@keyframes bbt-bm-tick {
    to {
        stroke-dashoffset: 0;
    }
}

.bbt-bm__success h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--bbt-st-navy);
    margin: 0 0 6px;
}

.bbt-bm__success p {
    color: var(--bbt-st-gray);
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.55;
}

.bbt-bm__bid {
    display: inline-flex;
    flex-direction: column;
    padding: 10px 18px;
    background: var(--bbt-st-bg);
    border-radius: 10px;
    margin-bottom: 18px;
    border: 1px dashed var(--bbt-st-line);
}

.bbt-bm__bid span {
    font-size: 11px;
    color: var(--bbt-st-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bbt-bm__bid strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--bbt-st-navy);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.bbt-bm__success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.bbt-bm__foot {
    padding: 14px 22px;
    background: #fff;
    border-top: 1px solid var(--bbt-st-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.04);
}

.bbt-bm__foot-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.bbt-bm__foot-price span {
    font-size: 10.5px;
    color: var(--bbt-st-gray);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bbt-bm__foot-price strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: var(--bbt-st-amber);
}

.bbt-bm__foot-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.bbt-bm__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13.5px;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: 0.02em;
    line-height: 1;
    isolation: isolate;
}

.bbt-bm__btn--primary {
    background: linear-gradient(135deg, var(--bbt-st-amber), var(--bbt-st-amber-light));
    color: var(--bbt-st-navy);
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.42);
    text-transform: uppercase;
}

.bbt-bm__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.55);
}

.bbt-bm__btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.bbt-bm__btn--primary:disabled,
.bbt-bm__btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.bbt-bm__btn--ghost {
    background: transparent;
    color: var(--bbt-st-navy);
    padding: 12px 18px;
    border: 1.5px solid var(--bbt-st-line);
}

.bbt-bm__btn--ghost:hover {
    background: var(--bbt-st-bg);
    border-color: var(--bbt-st-amber);
}

.bbt-bm__btn--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    padding: 14px 22px;
}

.bbt-bm__btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.bbt-bm__btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.25);
    border-top-color: var(--bbt-st-navy);
    animation: bbt-bm-spin 0.7s linear infinite;
}

.bbt-bm__btn.is-loading .bbt-bm__btn-spinner {
    display: inline-block;
}

.bbt-bm__btn.is-loading .bbt-bm__btn-label {
    opacity: 0.6;
}

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

/* Lock body scroll when modal is open */
body.bbt-bm-open {
    overflow: hidden;
    touch-action: none;
}

/* =====================================================================
   13. MOBILE OVERRIDES
   ===================================================================== */
/* Switch to single-column at 1100px so content has room before sidebar squeezes it.
 * (At 1024-1100 the 1fr column was only ~640px which made the gallery + booking sidebar feel tight.) */
@media (max-width: 1100px) {
    .bbt-st-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bbt-st-booking {
        position: static;
        max-height: none;
        order: 2;
    }

    .bbt-st-content {
        order: 1;
    }

    /* Quick info: 4 → 2 cols at tablet so icons don't crowd */
    .bbt-st-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {

    /* Mobile gallery — swipe all real images, featured image stays first. */
    .bbt-st-gallery__grid,
    .bbt-st-gallery__grid--count-1,
    .bbt-st-gallery__grid--count-2,
    .bbt-st-gallery__grid--count-3,
    .bbt-st-gallery__grid--count-4 {
        display: flex;
        height: 300px;
        gap: 6px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bbt-st-gallery__grid::-webkit-scrollbar {
        display: none;
    }

    .bbt-st-gallery__item,
    .bbt-st-gallery__grid--count-1 .bbt-st-gallery__item--main {
        display: block;
        flex: 0 0 88%;
        width: auto;
        height: 100%;
        grid-row: auto;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .bbt-st-gallery__grid--count-1 .bbt-st-gallery__item {
        flex-basis: 100%;
    }

    .bbt-st-gallery__open-all {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    /* Mobile sticks just below the (smaller) fixed header — JS will
     * overwrite --bbt-st-header-h with the live value, this is the fallback. */
    .bbt-st-tabs {
        top: var(--bbt-st-header-h, 64px);
    }

    .bbt-st-tabs__inner {
        padding: 0 12px;
        gap: 2px;
    }

    .bbt-st-tab {
        padding: 14px 14px;
        font-size: 13px;
    }

    .bbt-st-tab.is-active::after {
        left: 8px;
        right: 8px;
    }

    .bbt-st-quick-info {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 14px;
    }

    .bbt-st-quick-info__item {
        gap: 8px;
    }

    .bbt-st-quick-info__icon {
        width: 36px;
        height: 36px;
    }

    .bbt-st-quick-info__value {
        font-size: 13px;
    }

    .bbt-st-section {
        padding: 18px;
        border-radius: 14px;
    }

    .bbt-st-section__title {
        font-size: 19px;
    }

    .bbt-st-header {
        padding: 0 16px;
    }

    .bbt-st-title {
        font-size: clamp(20px, 5vw, 26px);
    }

    .bbt-st-highlights {
        grid-template-columns: 1fr;
    }

    .bbt-st-stops__item {
        grid-template-columns: 100px 1fr;
        gap: 12px;
    }

    .bbt-st-stops__body {
        padding: 10px 12px 10px 0;
    }

    .bbt-st-timeline::before {
        left: 50px;
    }

    .bbt-st-timeline__item {
        grid-template-columns: 44px 28px 1fr;
        gap: 10px;
    }

    .bbt-st-timeline__time {
        font-size: 11px;
    }

    .bbt-st-inex {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bbt-st-reviews-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bbt-st-why-different__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bbt-st-why-different {
        padding: 32px 20px;
    }

    .bbt-st-sticky-bar__cta {
        padding: 12px 20px;
        font-size: 13px;
    }

    .bbt-st-sticky-bar__amount {
        font-size: 18px;
    }

    .bbt-st-sticky-bar__per {
        font-size: 11px;
    }

    .bbt-st-sticky-bar__trust {
        display: none;
    }

    .bbt-st-whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 90px;
        right: 16px;
    }

    /* Modal becomes a bottom-sheet on mobile */
    .bbt-bm {
        padding: 0;
        align-items: flex-end;
    }

    .bbt-bm__panel {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 22px 22px 0 0;
        animation: bbt-bm-slide-up 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes bbt-bm-slide-up {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .bbt-bm__panel::before {
        /* Drag handle */
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 38px;
        height: 4px;
        border-radius: 2px;
        background: var(--bbt-st-line);
        z-index: 4;
    }

    .bbt-bm__close {
        top: 18px;
    }

    .bbt-bm__head {
        padding: 28px 22px 14px;
    }

    .bbt-bm__title {
        font-size: 20px;
    }

    .bbt-bm__step-text {
        display: none;
    }

    .bbt-bm__step {
        padding: 5px 5px;
    }

    .bbt-bm__body {
        padding: 4px 22px 18px;
    }

    .bbt-bm__foot {
        padding: 12px 18px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .bbt-st-title {
        font-size: 22px;
    }

    .bbt-st-actions {
        order: -1;
        width: 100%;
        justify-content: flex-end;
    }

    .bbt-st-meta-row {
        font-size: 13px;
        gap: 12px;
    }

    .bbt-st-quick-info {
        grid-template-columns: 1fr;
    }

    .bbt-st-sticky-bar {
        padding: 10px 14px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .bbt-st-sticky-bar__amount {
        font-size: 17px;
    }

    .bbt-st-sticky-bar__cta {
        padding: 11px 18px;
        font-size: 12px;
    }

    .bbt-st-booking__slots {
        grid-template-columns: repeat(2, 1fr);
    }
}