/*
Theme Name: Bali Travelica
Description: Per-location taxonomy template — premium hero, stats,
             tabbed tour/activity grid, and explore-more carousel.
Version: 1.0.0
*/

/* =====================================================================
   DESIGN TOKENS (scoped to .bbt-location)
   ===================================================================== */
.bbt-location {
    --bbt-loc-amber:       #F5A623;
    --bbt-loc-amber-light: #FFB84D;
    --bbt-loc-amber-bg:    #FEF3C7;
    --bbt-loc-navy:        #1E3A5F;
    --bbt-loc-navy-dk:     #0F172A;
    --bbt-loc-gray:        #64748B;
    --bbt-loc-gray-2:      #94A3B8;
    --bbt-loc-bg:          #F8FAFC;
    --bbt-loc-line:        #E2E8F0;
    --bbt-loc-radius:      18px;
    --bbt-loc-shadow:      0 8px 28px rgba(15, 23, 42, 0.10);
    --bbt-loc-shadow-lg:   0 22px 60px rgba(15, 23, 42, 0.18);

    background: var(--bbt-loc-bg);
    overflow-x: clip;
}

/* Reset any parent container max-width that might hold us back */
.bbt-location,
main.bbt-location {
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* Use longhands so the global --bbt-header-h padding-top from header.css survives */
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

/* =====================================================================
   1. CINEMATIC HERO (per-location)
   ===================================================================== */
.bbt-loc-hero {
    position: relative;
    /* Bleed under the dark fixed header — body has padding-top: 80px,
     * cancel it with negative margin then re-add as inner padding. */
    margin-top: -80px;
    padding-top: clamp(120px, 12vw, 160px);
    min-height: clamp(560px, 82vh, 800px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    padding-left: clamp(20px, 4vw, 56px);
    padding-right: clamp(20px, 4vw, 56px);
    padding-bottom: clamp(48px, 8vw, 88px);
}
@media (max-width: 768px) {
    .bbt-loc-hero {
        margin-top: -70px;
        padding-top: clamp(100px, 22vw, 130px);
    }
}

/* Slow zoom on the bg image — feels cinematic without parallax JS */
.bbt-loc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: bbt-loc-hero-zoom 18s ease-out forwards;
    z-index: -2;
}
@keyframes bbt-loc-hero-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.10); }
}

.bbt-loc-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.10) 0%, rgba(15, 23, 42, 0.20) 35%, rgba(15, 23, 42, 0.78) 100%),
        radial-gradient(1100px 600px at 12% 100%, rgba(245, 166, 35, 0.18) 0%, transparent 60%);
    z-index: -1;
}

/* Subtle film grain via repeating gradient — premium photo feel */
.bbt-loc-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}

.bbt-loc-hero__inner {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    z-index: 1;
}

.bbt-loc-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.bbt-loc-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.18s;
}
.bbt-loc-hero__breadcrumb a:hover { color: #fff; }
.bbt-loc-hero__breadcrumb span[aria-hidden] { opacity: 0.4; }
.bbt-loc-hero__breadcrumb [aria-current="page"] { color: #fff; }

.bbt-loc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    color: #fff;
    animation: bbt-loc-fade-up 0.7s 0.05s ease both;
}

.bbt-loc-hero__title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    line-height: 0.98;
    color: #fff;
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.4);
    animation: bbt-loc-fade-up 0.8s 0.15s ease both;
}

.bbt-loc-hero__subtitle {
    font-size: clamp(15px, 1.5vw, 19px);
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
    max-width: 640px;
    margin: 0 0 28px;
    font-weight: 500;
    animation: bbt-loc-fade-up 0.8s 0.25s ease both;
}

@keyframes bbt-loc-fade-up {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Hero stats: pill row with glassmorphism */
.bbt-loc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    animation: bbt-loc-fade-up 0.9s 0.35s ease both;
}
.bbt-loc-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease;
    min-width: 110px;
}
.bbt-loc-hero__stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}
.bbt-loc-hero__stat strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff 0%, #FFE7B5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bbt-loc-hero__stat-suffix {
    font-size: 14px;
    background: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    margin-left: 2px;
}
.bbt-loc-hero__stat span:not(.bbt-loc-hero__stat-suffix) {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bbt-loc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: bbt-loc-fade-up 1s 0.45s ease both;
}
.bbt-loc-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.25s ease, background 0.22s ease;
    border: 0;
    line-height: 1;
}
.bbt-loc-hero__btn--primary {
    background: linear-gradient(135deg, var(--bbt-loc-amber), var(--bbt-loc-amber-light));
    color: var(--bbt-loc-navy);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.45);
}
.bbt-loc-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(245, 166, 35, 0.6);
}
.bbt-loc-hero__btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.bbt-loc-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}
.bbt-loc-hero__btn svg { transition: transform 0.2s; }
.bbt-loc-hero__btn--primary:hover svg { transform: translateX(3px); }

/* Animated scroll cue */
.bbt-loc-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    text-decoration: none;
}
.bbt-loc-hero__scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    margin: 7px auto 0;
    animation: bbt-loc-scroll 1.6s infinite ease-in-out;
}
@keyframes bbt-loc-scroll {
    0%, 100% { transform: translateY(0);  opacity: 1; }
    50%      { transform: translateY(12px); opacity: 0.3; }
}

/* =====================================================================
   2. QUICK FACTS STRIP
   ===================================================================== */
.bbt-loc-facts {
    position: relative;
    margin-top: -54px;
    z-index: 5;
    padding: 0 clamp(20px, 4vw, 56px);
}
.bbt-loc-facts__inner {
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    padding: 22px clamp(20px, 3vw, 32px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    border: 1px solid var(--bbt-loc-line);
}
.bbt-loc-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
}
.bbt-loc-fact + .bbt-loc-fact {
    border-left: 1px solid var(--bbt-loc-line);
    padding-left: 18px;
}
.bbt-loc-fact__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bbt-loc-amber-bg), #FFF8E5);
    color: var(--bbt-loc-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bbt-loc-fact__body h4 {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 800;
    color: var(--bbt-loc-navy);
    letter-spacing: 0.01em;
}
.bbt-loc-fact__body p {
    margin: 0;
    font-size: 13px;
    color: var(--bbt-loc-gray);
    line-height: 1.4;
}

/* =====================================================================
   3. INTRO COPY
   ===================================================================== */
.bbt-loc-intro {
    padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(36px, 5vw, 56px);
}
.bbt-loc-intro__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.bbt-loc-intro__eyebrow {
    display: inline-block;
    color: var(--bbt-loc-amber);
    font-size: 12.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.bbt-loc-intro__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--bbt-loc-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 20px;
}
.bbt-loc-intro__copy {
    color: var(--bbt-loc-gray);
    font-size: 16px;
    line-height: 1.75;
}
.bbt-loc-intro__copy p { margin: 0 0 14px; }
.bbt-loc-intro__copy p:last-child { margin-bottom: 0; }

/* =====================================================================
   4. TAB LIST: TOURS / ACTIVITIES
   ===================================================================== */
.bbt-loc-list {
    padding: clamp(20px, 5vw, 48px) clamp(20px, 4vw, 56px) clamp(64px, 9vw, 100px);
}
.bbt-loc-list__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.bbt-loc-list__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.bbt-loc-list__eyebrow {
    display: inline-block;
    color: var(--bbt-loc-amber);
    font-size: 12.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
}
.bbt-loc-list__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 900;
    color: var(--bbt-loc-navy);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.15;
}

/* Tabs */
.bbt-loc-tabs {
    display: inline-flex;
    padding: 5px;
    background: #fff;
    border: 1px solid var(--bbt-loc-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    gap: 4px;
}
.bbt-loc-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: var(--bbt-loc-gray);
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.01em;
}
.bbt-loc-tab:hover { color: var(--bbt-loc-navy); }
.bbt-loc-tab.is-active {
    background: linear-gradient(135deg, var(--bbt-loc-navy) 0%, var(--bbt-loc-navy-dk) 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}
.bbt-loc-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--bbt-loc-bg);
    color: var(--bbt-loc-gray);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    transition: all 0.25s;
}
.bbt-loc-tab.is-active .bbt-loc-tab__count {
    background: var(--bbt-loc-amber);
    color: var(--bbt-loc-navy);
}

/* Panel transitions */
.bbt-loc-panel {
    animation: bbt-loc-fade-in 0.4s ease;
}
@keyframes bbt-loc-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   GRID OF CARDS
   ===================================================================== */
.bbt-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.bbt-loc-card {
    background: #fff;
    border-radius: var(--bbt-loc-radius);
    overflow: hidden;
    box-shadow: var(--bbt-loc-shadow);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.bbt-loc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bbt-loc-shadow-lg);
}

.bbt-loc-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bbt-loc-bg);
}
.bbt-loc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bbt-loc-card:hover .bbt-loc-card__media img {
    transform: scale(1.08);
}
.bbt-loc-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.30) 100%);
    pointer-events: none;
}

.bbt-loc-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.bbt-loc-card__badge--sale {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
}
.bbt-loc-card__badge--feat {
    background: linear-gradient(135deg, var(--bbt-loc-amber), var(--bbt-loc-amber-light));
    color: var(--bbt-loc-navy);
}

.bbt-loc-card__rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: var(--bbt-loc-navy);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
}
.bbt-loc-card__rating svg {
    color: var(--bbt-loc-amber);
}

.bbt-loc-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.bbt-loc-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}
.bbt-loc-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    background: var(--bbt-loc-bg);
    color: var(--bbt-loc-gray);
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.bbt-loc-card__chip--type {
    background: var(--bbt-loc-amber-bg);
    color: #b45309;
}
.bbt-loc-card--activity .bbt-loc-card__chip--type {
    background: #dbeafe;
    color: #1d4ed8;
}

.bbt-loc-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
    /* Two-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bbt-loc-card__title a {
    color: var(--bbt-loc-navy);
    text-decoration: none;
    transition: color 0.18s;
}
.bbt-loc-card__title a:hover { color: var(--bbt-loc-amber); }

.bbt-loc-card__desc {
    margin: 0;
    color: var(--bbt-loc-gray);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bbt-loc-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--bbt-loc-line);
}
.bbt-loc-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.bbt-loc-card__price-from {
    font-size: 10.5px;
    color: var(--bbt-loc-gray);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bbt-loc-card__price-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.bbt-loc-card__price-amount del {
    color: var(--bbt-loc-gray-2);
    font-size: 12px;
    font-weight: 600;
}
.bbt-loc-card__price-amount strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--bbt-loc-amber);
    letter-spacing: -0.01em;
}
.bbt-loc-card__cta {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bbt-loc-amber), var(--bbt-loc-amber-light));
    color: var(--bbt-loc-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
    transition: transform 0.22s ease, box-shadow 0.25s ease;
}
.bbt-loc-card__cta:hover {
    transform: translateX(3px) scale(1.06);
    box-shadow: 0 10px 22px rgba(245, 166, 35, 0.55);
}

/* "See all" tile */
.bbt-loc-list__more {
    text-align: center;
    margin-top: 32px;
}
.bbt-loc-list__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid var(--bbt-loc-navy);
    color: var(--bbt-loc-navy);
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}
.bbt-loc-list__more-btn:hover {
    background: var(--bbt-loc-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.bbt-loc-list__more-btn svg { transition: transform 0.22s; }
.bbt-loc-list__more-btn:hover svg { transform: translateX(3px); }

/* =====================================================================
   EMPTY STATE
   ===================================================================== */
.bbt-loc-empty {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border: 2px dashed var(--bbt-loc-line);
    border-radius: var(--bbt-loc-radius);
}
.bbt-loc-empty__icon {
    color: var(--bbt-loc-amber);
    margin-bottom: 18px;
    display: inline-flex;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--bbt-loc-amber-bg), #FFF8E5);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.bbt-loc-empty__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--bbt-loc-navy);
    margin: 0 0 8px;
}
.bbt-loc-empty__text {
    color: var(--bbt-loc-gray);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 auto 22px;
    max-width: 440px;
}
.bbt-loc-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: linear-gradient(135deg, var(--bbt-loc-amber), var(--bbt-loc-amber-light));
    color: var(--bbt-loc-navy);
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.4);
    transition: transform 0.22s, box-shadow 0.25s;
}
.bbt-loc-empty__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.55);
}

/* =====================================================================
   5. OTHER LOCATIONS CAROUSEL
   ===================================================================== */
.bbt-loc-others {
    padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 56px);
    background: linear-gradient(180deg, var(--bbt-loc-bg) 0%, #fff 100%);
}
.bbt-loc-others__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.bbt-loc-others__head {
    text-align: center;
    margin-bottom: 28px;
}
.bbt-loc-others__eyebrow {
    display: inline-block;
    color: var(--bbt-loc-amber);
    font-size: 12.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
}
.bbt-loc-others__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 900;
    color: var(--bbt-loc-navy);
    letter-spacing: -0.02em;
    margin: 0;
}

.bbt-loc-others__scroller {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.bbt-loc-others__card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--bbt-loc-radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--bbt-loc-shadow);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    isolation: isolate;
}
.bbt-loc-others__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -2;
}
.bbt-loc-others__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bbt-loc-shadow-lg);
}
.bbt-loc-others__card:hover::before {
    transform: scale(1.10);
}
.bbt-loc-others__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.30) 45%,
        rgba(15, 23, 42, 0.85) 100%);
    z-index: -1;
}
.bbt-loc-others__card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bbt-loc-others__card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.bbt-loc-others__card-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bbt-loc-others__card-meta svg { transition: transform 0.22s; }
.bbt-loc-others__card:hover .bbt-loc-others__card-meta svg { transform: translateX(3px); }

/* =====================================================================
   /location ROOT — grid of all locations (used by archive-locations.php)
   ===================================================================== */
.bbt-locs-root {
    background: var(--bbt-loc-bg);
    overflow-x: clip;
    padding-bottom: 80px;
}
.bbt-locs-root__hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
    background-image:
        linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.85)),
        url('https://images.unsplash.com/photo-1518002171953-a080ee817e1f?w=1920&h=600&fit=crop&q=75');
    background-size: cover;
    background-position: center;
    padding: clamp(56px, 9vw, 110px) clamp(20px, 4vw, 56px);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.bbt-locs-root__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 50% 100%, rgba(245, 166, 35, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.bbt-locs-root__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 166, 35, 0.18);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: #FFB84D;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.bbt-locs-root__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.bbt-locs-root__subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.bbt-locs-root__grid {
    max-width: 1280px;
    margin: -64px auto 0;
    padding: 0 clamp(20px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 2;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
    .bbt-loc-hero { min-height: 540px; align-items: center; padding-top: 100px; }
    .bbt-loc-hero__title { font-size: clamp(36px, 9vw, 56px); }
    .bbt-loc-hero__stats { gap: 10px; }
    .bbt-loc-hero__stat { padding: 11px 16px; min-width: 92px; }
    .bbt-loc-hero__stat strong { font-size: 22px; }
    .bbt-loc-hero__scroll { display: none; }

    .bbt-loc-facts__inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px;
        gap: 14px;
    }
    .bbt-loc-fact + .bbt-loc-fact { border-left: 0; padding-left: 0; }
    .bbt-loc-fact:nth-child(2) { border-left: 1px solid var(--bbt-loc-line); padding-left: 14px; }
    .bbt-loc-fact:nth-child(3) {
        border-top: 1px solid var(--bbt-loc-line);
        padding-top: 14px;
        grid-column: 1;
    }
    .bbt-loc-fact:nth-child(4) {
        border-top: 1px solid var(--bbt-loc-line);
        border-left: 1px solid var(--bbt-loc-line);
        padding: 14px 0 0 14px;
        grid-column: 2;
    }

    .bbt-loc-list__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .bbt-loc-tabs {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .bbt-loc-tabs::-webkit-scrollbar { display: none; }
}

@media (max-width: 600px) {
    .bbt-loc-hero {
        min-height: 480px;
        padding: 96px 16px 36px;
        align-items: flex-end;
    }
    .bbt-loc-hero__title { font-size: clamp(32px, 11vw, 46px); }
    .bbt-loc-hero__subtitle { font-size: 14px; }
    .bbt-loc-hero__stats { gap: 8px; }
    .bbt-loc-hero__stat {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 10px 14px;
    }
    .bbt-loc-hero__stat strong { font-size: 19px; }
    .bbt-loc-hero__btn { padding: 13px 22px; font-size: 13px; }

    .bbt-loc-facts { margin-top: -36px; }
    .bbt-loc-facts__inner {
        grid-template-columns: 1fr;
        padding: 14px;
    }
    .bbt-loc-fact + .bbt-loc-fact,
    .bbt-loc-fact:nth-child(2),
    .bbt-loc-fact:nth-child(3),
    .bbt-loc-fact:nth-child(4) {
        border: 0;
        border-top: 1px solid var(--bbt-loc-line);
        padding: 12px 0 0;
        grid-column: 1;
    }

    .bbt-loc-grid { grid-template-columns: 1fr; gap: 16px; }
    .bbt-loc-others__scroller { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bbt-loc-others__card-name { font-size: 17px; }

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