/* BonjourBonheur Trip Builder Styles */

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

:root {
    --bb-navy: #0C548C;
    --bb-gold: #f1c40f;
    --bb-red: #D4241C;
    --bb-green: #00BFA5; /* PickYourTrail style green */
    --bb-cream: #FDF9F3;
    --bb-gray: #7F8C8D;
    --bb-border: #E8E8E8;
    --bb-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --bb-ink: #13284b;
    --bb-soft-surface: #fffaf1;
    --bb-heading-font: 'Playfair Display', serif;
    --bb-body-font: 'Plus Jakarta Sans', sans-serif;
}

.bb-trip-builder-container {
    background-color: #0C548C;
    background-image:
        radial-gradient(circle at top right, rgba(241, 196, 15, 0.16), transparent 28%),
        linear-gradient(180deg, #0e5f9d 0%, #0C548C 58%, #0a4a7a 100%),
        url('/wp-content/uploads/revslider/slider-2/layer-181.png');
    background-position: bottom center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, contain; /* Decorative skyline stays anchored at bottom */
    height: 100dvh;
    min-height: 100dvh;
    width: 100vw;
    font-family: var(--bb-body-font);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Ensure no scroll on body when builder is open */
body.bb-tb-open {
    overflow: hidden;
}

/* Steps Wrapper */
.bb-tb-steps-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Important for flex-scroll */
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.bb-tb-step {
    display: none;
    opacity: 0;
    height: 100%;
    min-height: 0;
    width: 100%;
    min-width: 0;
    flex-direction: column;
}

.bb-tb-step.active {
    display: flex;
    opacity: 1;
    z-index: 50; /* Ensure active step is on top */
    overflow: hidden;
}

.bb-tb-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    padding-top: 50px;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bb-tb-content-scroll {
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 10px 40px 30px;
    mask-image: linear-gradient(to bottom, transparent, black 20px, black calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20px, black calc(100% - 20px), transparent);
}

.bb-tb-footer-sticky {
    flex-shrink: 0;
    padding: 20px 0 calc(24px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    z-index: 10;
}

.bb-tb-header h2 {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 0.98;
    color: #fff8e8;
    font-family: var(--bb-heading-font);
    text-shadow: 0 10px 26px rgba(8, 29, 48, 0.24);
}

.bb-tb-header p {
    color: rgba(255, 248, 232, 0.92);
    font-size: clamp(18px, 2vw, 24px);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 600;
}

.bb-tb-back-btn {
    background: none;
    border: none;
    color: #888;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 10px;
    transition: color 0.3s ease;
}

/* Global Integrated Header Stepper */
.bb-tb-site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    min-height: 86px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 28px;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(12, 84, 140, 0.1);
    box-shadow: 0 10px 30px rgba(8, 29, 48, 0.08);
}

.bb-tb-header-left {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
}

.bb-tb-site-logo img {
    height: 54px;
    width: auto;
}

.bb-tb-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.bb-tb-header-right {
    flex: 0 0 150px;
    display: flex;
    justify-content: flex-end;
}

.bb-tb-stepper-shell {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, 980px);
}

.bb-tb-stepper-viewport {
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
    scroll-behavior: smooth;
}

.bb-tb-stepper-viewport::-webkit-scrollbar {
    display: none;
}

.bb-tb-stepper-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bb-navy);
    width: max-content;
    min-width: 100%;
}

.bb-tb-step-item {
    cursor: pointer;
    opacity: 0.92;
    padding: 12px 18px;
    position: relative;
    white-space: nowrap;
    transition: all 0.28s ease;
    border-radius: 999px;
    border: 1px solid rgba(12, 84, 140, 0.15);
    background: rgba(12, 84, 140, 0.06);
    color: rgba(19, 40, 75, 0.92);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.bb-tb-step-item:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.bb-tb-step-item.active,
.bb-tb-step-item.completed {
    opacity: 1;
    font-weight: 700;
}

.bb-tb-step-item.active::after,
.bb-tb-step-item.completed::after {
    display: none;
}

.bb-tb-step-item.active {
    background: linear-gradient(135deg, #f6d44f 0%, var(--bb-gold) 100%);
    color: var(--bb-ink);
    border-color: rgba(241, 196, 15, 0.45);
    box-shadow: 0 10px 24px rgba(241, 196, 15, 0.3);
}

.bb-tb-step-item.completed {
    background: rgba(241, 196, 15, 0.18);
    color: var(--bb-ink);
    border-color: rgba(241, 196, 15, 0.5);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.18);
}

.bb-tb-step-item.has-value {
    font-weight: 800;
}

.bb-tb-step-item.completed.has-value {
    background: linear-gradient(180deg, rgba(241, 196, 15, 0.24) 0%, rgba(241, 196, 15, 0.14) 100%);
    color: #102745;
}

#step-nav-1.completed.has-value,
#step-nav-1.active.has-value {
    box-shadow: 0 12px 26px rgba(241, 196, 15, 0.24);
}

.bb-tb-step-separator {
    opacity: 0.22;
    color: rgba(12, 84, 140, 0.55);
}

.bb-tb-stepper-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(12, 84, 140, 0.12);
    background: #fff;
    color: var(--bb-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(12, 84, 140, 0.08);
}

.bb-tb-stepper-arrow:hover:not(:disabled),
.bb-tb-carousel-arrow:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(12, 84, 140, 0.14);
}

.bb-tb-stepper-arrow:disabled,
.bb-tb-carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.bb-tb-btn-close-main {
    background: var(--bb-red);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.bb-tb-btn-close-main:hover {
    background: #bd2130;
    color: #fff;
}

.bb-tb-btn-back-main {
    background: rgba(12, 84, 140, 0.05);
    color: var(--bb-navy);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    margin-right: 20px;
}

/* Inputs & Buttons */
.bb-tb-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--bb-border);
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.bb-tb-input:focus {
    outline: none;
    border-color: var(--bb-navy);
}

.bb-tb-input:focus {
    outline: none;
    background: #fff !important;
    border-color: var(--bb-gold);
    color: var(--bb-navy);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.22), 0 16px 32px rgba(8, 29, 48, 0.1);
}

/* Search Icon Fix */
.bb-tb-search-wrapper {
    position: relative;
    max-width: 640px;
    margin: 30px auto 0;
}

.bb-tb-search-wrapper .dashicons {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bb-red) !important;
    z-index: 10;
    font-size: 24px;
    pointer-events: none;
}

.bb-tb-search-wrapper .bb-tb-input {
    padding-left: 55px;
    background: rgba(255, 252, 245, 0.99);
    color: var(--bb-ink);
    border: 3px solid rgba(241, 196, 15, 0.96);
    box-shadow: 0 16px 34px rgba(8, 29, 48, 0.14);
    font-size: 17px;
    font-weight: 700;
}

.bb-tb-search-wrapper .dashicons-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bb-red);
    font-size: 20px;
}

.bb-tb-search-wrapper .bb-tb-input::placeholder,
#bb-tb-city-input::placeholder,
#bb-tb-dest-search::placeholder {
    color: rgba(19, 40, 75, 0.6);
}

.bb-tb-btn-primary {
    background: var(--bb-gold);
    color: var(--bb-ink);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(241, 196, 15, 0.28);
}

.bb-tb-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(241, 196, 15, 0.34);
    background: #f5ce32;
}

.bb-tb-btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Grids and Cards */
.bb-tb-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bb-tb-destination-carousel {
    position: relative;
    margin-top: 40px;
    padding: 0 56px;
}

.bb-tb-step-1 .bb-tb-content-scroll {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bb-tb-step-1 .bb-tb-destination-carousel {
    flex: 1;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.bb-tb-destinations-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 12px 3vw 30px;
    scroll-padding-inline: 3vw;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bb-tb-destinations-grid::-webkit-scrollbar {
    display: none;
}

.bb-tb-destinations-grid .bb-tb-card {
    flex: 0 0 clamp(220px, 19vw, 270px);
    scroll-snap-align: center;
    height: min(54vh, 610px);
    max-height: min(54vh, 610px);
}

.bb-tb-step-1 .bb-tb-card {
    background: #000;
    border-radius: 180px 180px 24px 24px;
    box-shadow: 0 18px 40px rgba(8, 29, 48, 0.16);
    border: none;
    overflow: hidden;
}

.bb-tb-step-1 .bb-tb-card-img {
    height: 100% !important;
    object-fit: cover;
}

.bb-tb-step-1 .bb-tb-card-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.46) 45%, rgba(0,0,0,0.06) 72%, transparent 100%);
    color: #fff;
    padding: 26px 18px 24px;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.bb-tb-step-1 .bb-tb-card-tagline {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    font-size: 11px;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.bb-tb-step-1 .bb-tb-card-title {
    color: #fff !important;
    text-shadow: 0 4px 14px rgba(0,0,0,0.38);
    font-size: 28px;
    line-height: 0.95;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.bb-tb-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(9, 35, 58, 0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.bb-tb-carousel-prev {
    left: 0;
}

.bb-tb-carousel-next {
    right: 0;
}

/* Exception for scope cards: 2 big columns centered */
.bb-tb-scope-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    flex: 1;
}

.bb-tb-scope-card {
    width: 320px;
    height: 480px;
    flex-shrink: 0;
}

#bb-tb-travel-types-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Swiping on Mobile */
@media (max-width: 768px) {
    .bb-trip-builder-container {
        height: 100dvh;
        min-height: 100dvh;
    }
    .bb-tb-steps-wrapper {
        padding: 0 14px;
    }
    .bb-tb-header {
        margin-bottom: 24px;
        padding-top: 28px;
    }
    .bb-tb-step-1 .bb-tb-header {
        margin-bottom: 16px;
        padding-top: 18px;
    }
    .bb-tb-step-1 .bb-tb-header h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .bb-tb-step-1 .bb-tb-header p {
        font-size: 15px;
        line-height: 1.35;
    }
    .bb-tb-content-scroll {
        padding: 8px 10px 18px;
    }
    .bb-tb-footer-sticky {
        padding: 18px 0 calc(12px + env(safe-area-inset-bottom, 0px));
        background: transparent;
    }
    .bb-tb-footer-sticky .bb-tb-btn-primary {
        width: min(100%, 320px);
    }
    .bb-tb-step-5 .bb-tb-footer-sticky {
        padding-top: 24px;
    }
    .bb-tb-options-grid,
    .bb-tb-scope-options {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 0 40px;
        gap: 20px;
        margin-top: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .bb-tb-card {
        flex: 0 0 85%; /* Shows most of one card and a bit of next */
        scroll-snap-align: center;
        height: 450px !important;
    }

    .bb-tb-site-header { padding: 12px 16px; min-height: 72px; }
    .bb-tb-header-left,
    .bb-tb-header-right {
        display: none;
    }
    .bb-tb-header-center {
        width: 100%;
    }
    .bb-tb-stepper-shell {
        width: 100%;
        gap: 8px;
    }
    .bb-tb-step-separator {
        display: none;
    }
    .bb-tb-step-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    .bb-tb-btn-close-main { padding: 8px 15px; font-size: 11px; }
    .bb-tb-destination-carousel {
        padding: 0;
        margin-top: 12px;
    }
    .bb-tb-destinations-grid {
        padding: 8px 0 12px;
        scroll-padding-inline: 0;
        gap: 10px;
    }
    .bb-tb-destinations-grid .bb-tb-card {
        flex-basis: 82vw;
        width: 82vw;
        height: min(42dvh, 360px) !important;
        max-height: min(42dvh, 360px) !important;
    }
    .bb-tb-carousel-arrow {
        display: none;
    }
    .bb-tb-step-1 .bb-tb-card-overlay {
        padding: 26px 14px 18px;
    }
    .bb-tb-step-1 .bb-tb-card-tagline {
        font-size: 11px;
        letter-spacing: 1.1px;
        margin-bottom: 6px;
    }
    .bb-tb-step-1 .bb-tb-card-title {
        font-size: 18px;
        line-height: 1.12;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    
    /* Hide scrollbars but keep functionality */
    .bb-tb-options-grid::-webkit-scrollbar,
    .bb-tb-scope-options::-webkit-scrollbar {
        display: none;
    }

    .bb-tb-popular-cities {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 100%;
        padding: 0 4px;
    }

    .bb-tb-city-pill {
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.2;
        border-radius: 18px;
    }
}

.bb-tb-scope-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-tb-scope-card:hover {
    transform: scale(1.03);
}

.bb-tb-scope-card .bb-tb-card-img {
    height: 400px; /* Taller images for scope selection */
}

@media (max-width: 1200px) {
    .bb-tb-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bb-tb-destinations-grid .bb-tb-card {
        flex-basis: clamp(220px, 26vw, 280px);
        height: min(50vh, 540px);
        max-height: min(50vh, 540px);
    }
}

@media (max-width: 991px) {
    .bb-tb-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bb-tb-destination-carousel {
        padding: 0;
    }

    .bb-tb-destinations-grid {
        padding-inline: 0;
        scroll-padding-inline: 0;
    }

    .bb-tb-destinations-grid .bb-tb-card {
        flex-basis: min(56vw, 360px);
        height: min(48vh, 500px);
        max-height: min(48vh, 500px);
    }
}

@media (max-width: 576px) {
    .bb-tb-options-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Arch Cards (For Durations) */
.bb-tb-card {
    position: relative;
    border-radius: 140px 140px 15px 15px; /* Pronounced arch at top */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
    height: 480px; 
    width: 320px;
    z-index: 10;
    pointer-events: auto !important;
}

.bb-tb-card-product {
    background: #fff;
    border-radius: 140px 140px 15px 15px;
    border: 1px solid rgba(12, 84, 140, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bb-tb-card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--bb-gold);
}

.bb-tb-card-product.selected {
    border: 3px solid var(--bb-gold);
    box-shadow: 0 10px 25px rgba(255, 157, 61, 0.2);
}

.bb-tb-product-image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bb-tb-product-img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.bb-tb-product-footer {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.bb-tb-product-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #111;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bb-tb-card-img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.bb-tb-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 30px;
    /* Clean gradient: top transparency to bottom black */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; /* Cover full height to avoid black line gap */
    z-index: 2;
}

.bb-tb-card-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    opacity: 1;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bb-tb-card-title {
    font-size: 48px;
    font-weight: 400;
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #fff !important;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.bb-tb-card.selected {
    border-color: var(--bb-gold);
    box-shadow: 0 0 0 2px rgba(255, 157, 61, 0.2);
}

.bb-tb-card.selected::after {
    content: '✔';
    position: absolute;
    top: 34px;
    right: 34px;
    background: var(--bb-red);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    border: 4px solid var(--bb-gold);
    box-shadow: 0 10px 22px rgba(8, 29, 48, 0.3);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    z-index: 6;
}

.bb-tb-card-content {
    padding: 20px 15px;
    text-align: center;
}

.bb-tb-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--bb-navy);
}

/* Durations & Budget plain cards */
.bb-tb-card-plain {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bb-tb-img-contain {
    object-fit: contain;
    height: 150px;
    width: 100%;
    margin-bottom: 15px;
}

.bb-tb-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-gold);
    color: var(--bb-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Rooms */
.bb-tb-rooms-container {
    max-width: 600px;
    margin: 0 auto;
}

.bb-tb-room-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: var(--bb-navy);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bb-tb-room-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 20px;
    color: var(--bb-navy);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bb-tb-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    color: var(--bb-navy);
}

.bb-tb-room-header strong {
    font-size: 18px;
}

.bb-tb-remove-room {
    background: var(--bb-red);
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

.bb-tb-remove-room:hover {
    background: #bd2130;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

.bb-tb-pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bb-tb-pax-row > div {
    font-weight: 600;
}

.bb-tb-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bb-tb-counter button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bb-navy);
}

.bb-room-count {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--bb-navy);
}

/* Add Room Button */
.bb-tb-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    display: block;
}

.bb-tb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.bb-tb-input {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--bb-navy);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bb-tb-input:focus {
    outline: none;
    border-color: var(--bb-gold);
    box-shadow: 0 0 15px rgba(255, 157, 61, 0.3);
}

/* Popular Cities & Autocomplete */
.bb-tb-city-search-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.bb-tb-input-wrapper {
    position: relative;
}

.bb-tb-city-search-container .bb-tb-input,
#bb-tb-city-input {
    background: rgba(255, 252, 245, 0.99);
    border: 3px solid rgba(241, 196, 15, 0.96);
    color: var(--bb-ink);
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(8, 29, 48, 0.14);
}

.bb-tb-city-search-container .bb-tb-input:focus,
#bb-tb-city-input:focus {
    border-color: var(--bb-red);
    box-shadow: 0 0 0 4px rgba(212, 36, 28, 0.16), 0 16px 34px rgba(8, 29, 48, 0.14);
}

.bb-tb-scope-options {
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.bb-tb-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 0 18px 42px rgba(8, 29, 48, 0.16);
    z-index: 100;
    overflow: hidden;
    display: none;
    border: 2px solid rgba(241, 196, 15, 0.55);
}

.bb-tb-autocomplete-item {
    padding: 15px 25px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: var(--bb-ink);
    font-weight: 700;
    transition: all 0.2s ease;
    background: rgba(255, 252, 245, 0.98);
}

.bb-tb-autocomplete-item:last-child {
    border-bottom: none;
}

.bb-tb-autocomplete-item:hover {
    background: rgba(241, 196, 15, 0.18);
    color: var(--bb-ink);
    padding-left: 30px;
}

.bb-tb-popular-cities-label {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255, 248, 232, 0.78);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 800;
}

.bb-tb-popular-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.bb-tb-city-pill {
    background: #fff;
    color: var(--bb-navy);
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    box-shadow: 0 8px 18px rgba(8, 29, 48, 0.16);
    min-width: 0;
    width: auto;
    white-space: nowrap;
}

.bb-tb-city-pill:hover,
.bb-tb-city-pill.selected {
    background: var(--bb-gold);
    color: var(--bb-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 157, 61, 0.3);
}

.bb-tb-flight-choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 700px;
    margin: 22px auto 0;
    color: #fff8e8;
    font-weight: 700;
    line-height: 1.35;
}

.bb-tb-flight-choice input {
    width: 24px;
    height: 24px;
    margin-top: 1px;
    accent-color: var(--bb-gold);
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(8, 29, 48, 0.16);
    flex-shrink: 0;
}

.bb-tb-flight-choice-note {
    max-width: 700px;
    margin: 8px auto 0;
    color: rgba(255, 248, 232, 0.82);
    font-size: 13px;
    line-height: 1.4;
}

.bb-tb-flight-choice strong {
    color: #fff;
}

/* Global Nav Buttons */
.bb-tb-global-nav {
    position: fixed;
    top: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bb-tb-global-nav:hover {
    background: var(--bb-gold);
    color: var(--bb-navy);
    border-color: var(--bb-gold);
    transform: scale(1.1);
}

.bb-tb-nav-left { left: 40px; }
.bb-tb-nav-right { right: 40px; }

.bb-tb-global-nav .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Dates Redesign */
.bb-tb-btn-flexible {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 2px solid var(--bb-border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--bb-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.bb-tb-btn-flexible .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--bb-gold);
}

.bb-tb-btn-flexible:hover,
.bb-tb-btn-flexible.active {
    border-color: #f1c40f;
    background: #f1c40f;
    color: #13284b;
    box-shadow: 0 8px 22px rgba(241, 196, 15, 0.22);
}

.bb-tb-date-mode-card {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bb-tb-date-input-wrap {
    background: rgba(255, 252, 245, 0.98);
    border-radius: 24px;
    padding: 18px 20px;
    box-shadow: 0 12px 32px rgba(8, 29, 48, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.28);
}

.bb-tb-date-label,
.bb-tb-flexible-label {
    display: block;
    color: var(--bb-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bb-tb-date-input {
    border-radius: 16px;
    border: 1px solid rgba(12, 84, 140, 0.12);
    box-shadow: none;
}

.bb-tb-flexible-dates-v2 {
    background: rgba(255, 252, 245, 0.98);
    border-radius: 24px;
    padding: 18px 20px 20px;
    box-shadow: 0 12px 32px rgba(8, 29, 48, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.28);
}

.bb-tb-month-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bb-tb-month-opt {
    padding: 10px;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    color: var(--bb-ink);
}

.bb-tb-month-opt:hover,
.bb-tb-month-opt.selected {
    background: #f1c40f;
    color: #13284b;
    border-color: #f1c40f;
}

.bb-tb-step-7 #bb-tb-budgets-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.bb-tb-budget-card {
    width: 100%;
    min-width: 0;
    min-height: 150px;
    height: auto !important;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(255, 157, 61, 0.14);
    box-shadow: 0 12px 32px rgba(8, 29, 48, 0.08);
    padding: 20px 16px;
}

.bb-tb-step-7 .bb-tb-budget-card .bb-tb-card-title {
    color: #111 !important;
    font-family: var(--bb-body-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

/* Floating Labels */
.bb-tb-form {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 48px rgba(8, 29, 48, 0.12);
}

.bb-tb-captcha-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-top: 8px;
    border: 2px solid rgba(241, 196, 15, 0.45);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf7 0%, #fff7dd 100%);
}

.bb-tb-captcha-copy {
    min-width: 0;
}

.bb-tb-captcha-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bb-red);
    margin-bottom: 6px;
}

.bb-tb-captcha-question {
    color: var(--bb-ink);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bb-tb-captcha-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bb-tb-captcha-input {
    width: 120px;
    padding: 14px 14px;
    border: 2px solid rgba(12, 84, 140, 0.16);
    border-radius: 14px;
    background: #fff;
    color: var(--bb-ink);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bb-tb-captcha-input:focus {
    outline: none;
    border-color: var(--bb-gold);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.16);
}

.bb-tb-captcha-refresh {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: var(--bb-navy);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(12, 84, 140, 0.18);
}

.bb-tb-captcha-refresh:hover {
    transform: translateY(-1px);
}

.bb-tb-floating-group {
    position: relative;
    margin-bottom: 16px;
}

.bb-tb-floating-input {
    width: 100%;
    padding: 20px 18px 20px !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.2 !important;
    color: #1F2937;
    background: #FFF !important;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.bb-tb-floating-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #9CA3AF;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    display: block;
    z-index: 2;
    background: #FFF;
    padding: 0 2px;
    font-weight: 400;
}

.bb-tb-textarea-group > .bb-tb-floating-label {
    top: 28px;
    transform: none;
}

.bb-tb-floating-input:focus,
.bb-tb-floating-input:not(:placeholder-shown) {
    border-color: #0A1F44 !important;
    background: #FFF !important;
}

.bb-tb-floating-group:focus-within > .bb-tb-floating-label,
.bb-tb-floating-group > .bb-tb-floating-input:focus ~ .bb-tb-floating-label,
.bb-tb-floating-group > .bb-tb-floating-input:not(:placeholder-shown) ~ .bb-tb-floating-label,
.bb-tb-floating-group.is-filled > .bb-tb-floating-label {
    top: 0;
    left: 14px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 700;
    color: var(--bb-navy);
    padding: 0 8px;
}

.bb-tb-textarea-group:focus-within > .bb-tb-floating-label,
.bb-tb-textarea-group.is-filled > .bb-tb-floating-label {
    top: 0;
    transform: translateY(-50%);
}

.bb-tb-floating-input::placeholder {
    color: transparent;
}

.bb-tb-floating-input::-webkit-input-placeholder {
    color: transparent;
}

.bb-tb-floating-input::-moz-placeholder {
    color: transparent;
    opacity: 1;
}

.bb-tb-floating-input:-ms-input-placeholder {
    color: transparent;
}

.bb-tb-floating-input::-ms-input-placeholder {
    color: transparent;
}

textarea.bb-tb-floating-input {
    height: 188px !important;
    padding-top: 30px !important;
    resize: none;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .bb-tb-form {
        max-width: 100%;
        border-radius: 22px;
        padding: 18px 16px 18px;
    }

    .bb-tb-captcha-card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .bb-tb-captcha-question {
        font-size: 20px;
    }

    .bb-tb-captcha-actions {
        width: 100%;
    }

    .bb-tb-captcha-input {
        width: 100%;
    }

    .bb-tb-floating-group { margin-bottom: 14px; }

    .bb-tb-floating-input {
        padding: 18px 16px 18px !important;
        border-radius: 14px;
    }

    .bb-tb-floating-label {
        left: 16px;
        font-size: 14px;
    }

    .bb-tb-floating-group:focus-within > .bb-tb-floating-label,
    .bb-tb-floating-group > .bb-tb-floating-input:focus ~ .bb-tb-floating-label,
    .bb-tb-floating-group > .bb-tb-floating-input:not(:placeholder-shown) ~ .bb-tb-floating-label,
    .bb-tb-textarea-group:focus-within > .bb-tb-floating-label,
    .bb-tb-textarea-group.is-filled > .bb-tb-floating-label,
    .bb-tb-floating-group.is-filled > .bb-tb-floating-label {
        left: 16px;
        top: 0;
    }
}

/* Footer Actions */
.bb-tb-footer-actions {
    text-align: center;
    margin-top: 30px;
}

/* Success */
.bb-tb-success-content {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Luggage Icons for Duration */
.bb-tb-luggage-stack {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    height: 60px;
    align-items: flex-end;
}

.bb-tb-luggage-icon {
    width: 40px;
    height: 40px;
    color: var(--bb-gold);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.bb-tb-duration-card:hover .bb-tb-luggage-icon,
.bb-tb-duration-card.selected .bb-tb-luggage-icon {
    transform: scale(1.1);
    opacity: 1;
}

.bb-tb-success-icon {
    font-size: 60px;
    color: var(--bb-green);
    margin-bottom: 20px;
}

.bb-tb-room-card { padding: 15px; }
.bb-tb-room-header { padding: 10px; }
.bb-tb-pax-row { margin: 5px 0; }

/* Step-specific layouts: only destination keeps the horizontal carousel */
.bb-tb-step-0 .bb-tb-content-scroll,
.bb-tb-step-2 .bb-tb-content-scroll,
.bb-tb-step-4 .bb-tb-content-scroll {
    overflow: hidden;
}

.bb-tb-step-0 .bb-tb-scope-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 320px));
    justify-content: center;
    align-content: center;
    gap: 28px;
    padding: 20px 0;
    max-width: 760px;
    margin: 0 auto;
}

.bb-tb-step-0 .bb-tb-scope-card {
    width: 100%;
    height: min(50vh, 460px);
}

.bb-tb-step-2 #bb-tb-travel-types-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    align-items: stretch;
}

.bb-tb-step-2 .bb-tb-travel-type-card {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 320px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(8, 29, 48, 0.08);
    border: 1px solid rgba(255, 157, 61, 0.14);
    overflow: hidden;
}

.bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-img {
    height: 220px !important;
    object-fit: cover;
}

.bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-overlay {
    position: static;
    height: auto;
    background: #fff;
    color: #111;
    padding: 18px 14px 22px;
}

.bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-tagline {
    color: #666;
    text-shadow: none;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-title {
    color: #111 !important;
    text-shadow: none;
    font-size: 18px;
    line-height: 1.15;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.bb-tb-step-4 #bb-tb-durations-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
    align-items: stretch;
}

.bb-tb-step-4 .bb-tb-duration-card {
    width: 100%;
    min-width: 0;
    height: min(40vh, 360px);
    background: #fef7f1;
    border: 1px solid rgba(255, 157, 61, 0.22);
    box-shadow: 0 18px 40px rgba(8, 29, 48, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 18px 18px 22px;
}

.bb-tb-duration-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
}

.bb-tb-duration-img {
    width: 100%;
    max-width: 160px;
    max-height: 170px;
    object-fit: contain;
    display: block;
}

.bb-tb-step-4 .bb-tb-card-content {
    padding: 8px 0 0;
}

.bb-tb-step-4 .bb-tb-card-title {
    color: #111 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .bb-tb-step-2 #bb-tb-travel-types-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bb-tb-step-4 #bb-tb-durations-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .bb-tb-step-0 .bb-tb-content-scroll,
    .bb-tb-step-2 .bb-tb-content-scroll,
    .bb-tb-step-4 .bb-tb-content-scroll {
        overflow-y: auto;
    }

    .bb-tb-step-0 .bb-tb-scope-options {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 18px;
        padding: 8px 0 0;
    }

    .bb-tb-step-0 .bb-tb-scope-card {
        height: auto !important;
        min-height: 0;
    }

    .bb-tb-step-0 .bb-tb-scope-card {
        border-radius: 28px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(8, 29, 48, 0.08);
        border: 1px solid rgba(255, 157, 61, 0.14);
        overflow: hidden;
    }

    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-img {
        height: 150px !important;
        object-fit: cover;
    }

    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-overlay {
        position: static;
        height: auto;
        background: #fff;
        color: #111;
        padding: 12px 12px 16px;
    }

    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-tagline {
        color: #666;
        text-shadow: none;
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-title {
        color: #111 !important;
        text-shadow: none;
        font-size: 16px;
        line-height: 1.15;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
    }

    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-tagline,
    .bb-tb-step-0 .bb-tb-scope-card .bb-tb-card-title {
        margin-bottom: 0;
    }

    .bb-tb-step-2 #bb-tb-travel-types-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 12px;
    }

    .bb-tb-step-2 .bb-tb-travel-type-card {
        height: auto !important;
        min-height: 0;
        border-radius: 28px;
        box-shadow: 0 12px 28px rgba(8, 29, 48, 0.08);
    }

    .bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-img {
        height: 138px !important;
        object-fit: cover;
    }

    .bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-overlay {
        position: static;
        height: auto;
        background: #fff;
        color: #111;
        padding: 12px 10px 14px;
    }

    .bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-tagline {
        color: #666;
        text-shadow: none;
    }

    .bb-tb-step-2 .bb-tb-travel-type-card .bb-tb-card-title {
        font-size: 15px;
    }

    .bb-tb-step-2 #bb-tb-travel-types-list .bb-tb-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 52%;
        justify-self: center;
    }

    .bb-tb-step-4 #bb-tb-durations-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 12px;
    }

    .bb-tb-step-4 .bb-tb-duration-card {
        height: auto !important;
        min-height: 200px;
        padding: 14px 12px 18px;
        border-radius: 24px;
    }

    .bb-tb-duration-img {
        max-width: 110px;
        max-height: 110px;
    }

    .bb-tb-step-4 .bb-tb-card-title {
        font-size: 15px;
    }
}

.bb-tb-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #888;
}

@media (max-width: 768px) {
    .bb-tb-header h2 {
        font-size: 24px;
    }
    .bb-tb-back-btn {
        position: static;
        display: block;
        margin-bottom: 15px;
    }
}
