/* ── Hotels Page Styles ── */
/* Variables are defined in variables.css — do NOT redefine :root here */
/* Additional variables used only on listing pages */
:root {
    --primary-pale: #E0F2F1;
    --primary-soft: #B2DFDB;
    --border: #E2E8F0;
    --bg-page: var(--bg-primary, #F8FAFC);
    --radius: var(--radius-md, 12px);
}

/* ── Hero Section (Matches Reference Design) ── */
.tf-hotel-hero {
    position: relative;
    min-height: 540px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 0 0;
    overflow: visible;
}

.tf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.tf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.tf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 34, 30, 0.58) 0%, rgba(15, 23, 42, 0.35) 42%, rgba(15, 23, 42, 0.78) 100%);
}

/* Flight Path & Plane decoration */
.tf-flight-path-wrap {
    position: absolute;
    top: 16%;
    left: 42%;
    width: 420px;
    height: 180px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.tf-flight-svg {
    width: 100%;
    height: 100%;
}

.tf-plane-icon {
    position: absolute;
    top: 14%;
    right: 8%;
    color: #ffffff;
    font-size: 19px;
    transform: rotate(45deg);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
    animation: tf-plane-bob 3s ease-in-out infinite alternate;
}

@keyframes tf-plane-bob {
    0% { transform: rotate(43deg) translate(0, 0); }
    100% { transform: rotate(47deg) translate(4px, -3px); }
}

.tf-hero-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 16px;
    position: relative;
    z-index: 2;
}

.tf-hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 60px;
}

.tf-hero-left {
    max-width: 820px;
    flex: 1 1 auto;
}

.tf-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 15px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.tf-tag-icon {
    color: #F59E0B;
    font-size: 13px;
}

.tf-hero-title {
    font-size: 54px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em;
    color: #ffffff !important;
    margin-bottom: 14px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.tf-hero-script {
    font-family: 'Dancing Script', 'Caveat', cursive;
    font-weight: 700;
    color: #F59E0B !important;
    font-size: 68px;
    display: inline-block;
    position: relative;
    margin-left: 8px;
    line-height: 0.88;
    vertical-align: baseline;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.tf-hero-script.tf-hero-script-block {
    display: inline-block;
    margin-left: 0;
    margin-top: 4px;
}

.tf-script-swirl {
    position: absolute;
    left: -12px;
    bottom: -16px;
    width: 146px;
    height: 26px;
    pointer-events: none;
}

.tf-hero-desc {
    font-size: 16.5px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 540px;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Trust Badges */
.tf-trust-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 1025px) {
    .tf-trust-badges {
        flex-wrap: nowrap;
    }
}

.tf-trust-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 9px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
    flex: 1 1 210px;
    min-width: 0;
    max-width: 100%;
}

.tf-trust-card:hover {
    background: rgba(15, 23, 42, 0.75);
    transform: translateY(-2px);
}

.tf-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eead4;
    font-size: 15px;
    flex-shrink: 0;
}

.tf-trust-info {
    min-width: 0;
}

.tf-trust-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tf-trust-info span {
    display: block;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.2;
    margin-top: 2px;
    white-space: normal;
}

/* Right Side Promo Card */
.tf-hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tf-promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(12, 45, 40, 0.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 18px 22px;
    min-width: 310px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.tf-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.tf-promo-badge {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #5eead4;
    margin-bottom: 3px;
}

.tf-promo-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.tf-promo-gold {
    color: #F59E0B;
    font-weight: 800;
    font-size: 22px;
    margin-left: 2px;
}

.tf-promo-sub {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 3px;
}

.tf-promo-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #0C5F58;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.tf-promo-arrow:hover {
    transform: scale(1.1) translateX(2px);
    background: #F59E0B;
    color: #ffffff;
}

/* ── Floating Search Bar ── */
.tf-search-wrapper {
    position: relative;
    z-index: 40;
    width: 100%;
}
.tf-hero-section .tf-search-wrapper {
    margin-bottom: -32px;
}

.tf-search-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.tf-search-bar-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    padding: 8px 10px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tf-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s;
    min-width: 0;
}

.tf-search-field + .tf-search-field {
    border-left: 1px solid #f1f5f9;
}

.tf-search-field:hover {
    background: #f8fafc;
}

.tf-sf-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #e6f6f4;
    color: #0C5F58;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
}

.tf-search-field:hover .tf-sf-icon {
    background: #ccede8;
    transform: scale(1.05);
}

.tf-sf-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    line-height: 1.2;
}

.tf-sf-value {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.tf-sf-value.placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.tf-search-btn {
    background: linear-gradient(135deg, rgb(245, 158, 11) 0%, rgb(217, 119, 6) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    min-width: 150px;
}

.tf-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
    background: linear-gradient(135deg, rgb(217, 119, 6) 0%, rgb(180, 83, 9) 100%);
}

.tf-search-btn:active {
    transform: translateY(0);
}

/* ── Main Layout ── */
.bk-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: flex-start;
}

/* ── Sidebar ── */
.bk-sidebar { position: sticky; top: 90px; }
.bk-map-preview { width: 100%; height: 160px; border-radius: var(--radius); overflow: hidden; background: var(--primary-light); position: relative; margin-bottom: 16px; border: 1px solid var(--border); }
.bk-map-btn { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); padding: 10px 20px; background: var(--primary); color: #fff; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow-md); transition: background 0.2s; white-space: nowrap; }
.bk-map-btn:hover { background: var(--primary-hover); }
.bk-filter-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }

/* Filter Section */
.bk-fs { margin-bottom: 4px; }
.bk-fs-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-light); cursor: pointer; user-select: none; }
.bk-fs-header:hover { color: var(--primary); }
.bk-fs-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.bk-fs-header i { font-size: 10px; color: var(--text-tertiary); transition: transform 0.25s; }
.bk-fs.collapsed .bk-fs-header i { transform: rotate(-90deg); }
.bk-fs-body { padding: 8px 0 12px; }
.bk-fs.collapsed .bk-fs-body { display: none; }
.bk-fs-note { font-size: 11px; color: var(--text-tertiary); margin-bottom: 6px; font-style: italic; }

/* Check items */
.bk-fc { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; font-size: 13px; color: var(--text-secondary); }
.bk-fc:hover { color: var(--primary); }
.bk-fc input[type="checkbox"], .bk-fc input[type="radio"] { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.bk-fc .cnt { margin-left: auto; font-size: 11px; color: var(--text-tertiary); min-width: 30px; text-align: right; }

/* Budget histogram + dual range slider */
.bk-budget-label { font-size: 13px; color: var(--text-primary); font-weight: 500; margin-bottom: 8px; }
.bk-budget-histogram { display: flex; align-items: flex-end; gap: 1px; height: 50px; margin-bottom: 12px; }
.bk-budget-bar { flex: 1; background: #e5e7eb; border-radius: 2px 2px 0 0; transition: background 0.2s; min-width: 2px; }
.bk-budget-bar.active { background: var(--primary, #007f5f); }

/* Dual range slider track */
.bk-slider-track { position: relative; height: 6px; background: #e5e7eb; border-radius: 3px; margin: 8px 0 4px; }
.bk-slider-fill { position: absolute; height: 100%; background: var(--primary, #007f5f); border-radius: 3px; top: 0; pointer-events: none; z-index: 1; }
.bk-slider-input { position: absolute; top: -7px; width: 100%; height: 20px; background: none; -webkit-appearance: none; appearance: none; pointer-events: none; outline: none; z-index: 2; margin: 0; }
.bk-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    background: var(--primary, #007f5f);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
    pointer-events: all;
}
.bk-slider-input::-moz-range-thumb {
    width: 20px; height: 20px;
    background: var(--primary, #007f5f);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
    pointer-events: all;
}
.bk-slider-min { z-index: 3; }
.bk-slider-max { z-index: 4; }

/* Smart filter */
.bk-smart { background: var(--primary-light); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 16px; }
.bk-smart-title { font-size: 13px; font-weight: 700; color: var(--primary-hover); margin-bottom: 8px; }
.bk-smart-input { width: 100%; padding: 8px 12px; border: 1px solid var(--primary-soft); border-radius: 6px; font-size: 12px; background: #fff; color: var(--text-primary); }
.bk-smart-input:focus { outline: none; border-color: var(--primary); }
.bk-smart-input::placeholder { color: var(--text-tertiary); }
.bk-smart-btn { width: 100%; margin-top: 8px; padding: 8px; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }
.bk-smart-btn:hover { background: var(--primary-hover); }

/* Show more */
.bk-show-more { font-size: 12px; font-weight: 600; color: var(--primary); cursor: pointer; padding: 4px 0; display: inline-block; }
.bk-show-more:hover { color: var(--primary-hover); }

/* Stars */
.bk-stars { display: flex; gap: 1px; color: var(--warning); font-size: 11px; }

/* ── Results Header ── */
.bk-results-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.bk-results-title { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.bk-results-actions { display: flex; align-items: center; gap: 10px; }
.bk-sort-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-size: 13px; font-weight: 500; color: var(--text-primary); cursor: pointer; transition: border-color 0.2s; }
.bk-sort-btn:hover { border-color: var(--primary); }
.bk-sort-btn i { font-size: 10px; color: var(--text-tertiary); }
.bk-view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.bk-view-btn { padding: 8px 16px; font-size: 13px; font-weight: 600; border: none; background: #fff; color: var(--text-tertiary); cursor: pointer; transition: all 0.15s; }
.bk-view-btn.active { background: var(--primary); color: #fff; }
.bk-view-btn:hover:not(.active) { background: var(--primary-light); color: var(--primary); }

/* ── Hotel Grid ── */
.bk-hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── Hotel Card ── */
.bk-hotel-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.25s, border-color 0.25s; display: flex; flex-direction: column; }
.bk-hotel-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-soft); }
.bk-card-img-wrap { position: relative; width: 100%; padding-top: 65%; overflow: hidden; }
.bk-card-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bk-hotel-card:hover .bk-card-img-wrap img { transform: scale(1.04); }
.bk-card-heart { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-tertiary); font-size: 15px; z-index: 2; transition: color 0.2s, transform 0.2s; }
.bk-card-heart:hover { color: var(--danger); transform: scale(1.1); }
.bk-card-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.bk-card-compare { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.bk-card-compare input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; }
.bk-card-compare label { font-size: 12px; color: var(--text-tertiary); cursor: pointer; }
.bk-card-name { font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; line-height: 1.3; margin-bottom: 4px; }
.bk-card-name:hover { text-decoration: underline; }
.bk-card-name .featured-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 6px; border: 1px solid var(--border); border-radius: 4px; color: var(--text-tertiary); margin-left: 6px; vertical-align: middle; }
.bk-card-location { font-size: 12px; color: var(--text-tertiary); margin-bottom: 6px; }
.bk-card-location a { color: var(--primary); text-decoration: none; }
.bk-card-location a:hover { text-decoration: underline; }
.bk-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.bk-card-score { background: var(--primary); color: #fff; padding: 3px 7px; border-radius: 6px 6px 6px 0; font-size: 12px; font-weight: 700; }
.bk-card-score.green { background: var(--success); }
.bk-card-score-label { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.bk-card-reviews { font-size: 11px; color: var(--text-tertiary); }
.bk-card-location-score { font-size: 12px; color: var(--primary); font-weight: 600; }
.bk-card-distance { font-size: 12px; color: var(--text-tertiary); margin-bottom: 4px; }
.bk-card-metro { font-size: 12px; color: var(--text-tertiary); margin-bottom: 6px; }
.bk-card-metro i { color: var(--primary); margin-right: 3px; }
.bk-card-room-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.bk-card-room-desc { font-size: 12px; color: var(--text-tertiary); margin-bottom: 6px; }
.bk-card-breakfast { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 4px; }
.bk-card-prepay { font-size: 12px; color: var(--success); margin-bottom: 4px; }
.bk-card-prepay i { margin-right: 3px; }
.bk-card-urgency { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 6px; }
.bk-card-deal { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
.bk-card-deal.limited { background: #FEF3C7; color: #92400E; border: 1px solid var(--warning); }
.bk-card-deal.new { background: var(--primary-light); color: var(--primary-hover); border: 1px solid var(--primary-soft); }
.bk-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: auto; margin-bottom: 8px; }
.bk-card-tag { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; white-space: nowrap; }
.bk-card-tag.genius { background: var(--primary); color: #fff; }
.bk-card-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border-light); }
.bk-card-price-info { font-size: 11px; color: var(--text-tertiary); }
.bk-card-price { text-align: right; }
.bk-card-price .total { font-size: 17px; font-weight: 800; color: var(--text-primary); }
.bk-card-price .per-night { font-size: 11px; color: var(--text-tertiary); }
.bk-card-price .old { display: block; font-size: 12px; color: var(--text-tertiary); }
.bk-card-deal-chip { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #B45309, #D97706); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin: 4px 0; }
.bk-card-deal-chip i { font-size: 10px; }

/* List View */
.bk-hotels-list { display: flex; flex-direction: column; gap: 14px; }
.bk-hotel-card.list-view { flex-direction: row; height: auto; }
.bk-hotel-card.list-view .bk-card-img-wrap { width: 280px; min-width: 280px; padding-top: 0; height: 220px; border-radius: var(--radius) 0 0 var(--radius); }
.bk-hotel-card.list-view .bk-card-body { flex: 1; }

/* Pagination */
.bk-pagination { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.bk-pagi-btn { min-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--border); background: #fff; color: var(--text-primary); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.15s; }
.bk-pagi-btn:hover { border-color: var(--primary); color: var(--primary); }
.bk-pagi-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.bk-pagi-dots { color: var(--text-tertiary); font-size: 13px; }

/* ── Destination Dropdown ── */
.bk-dest-wrap { position: relative; }
.bk-dest-dropdown { background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 9999; position: absolute; top: calc(100% + 6px); left: 0; right: auto; max-height: 420px; overflow-y: auto; }
.bk-dest-input-wrap { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
.bk-dest-input-wrap i { color: #94a3b8; font-size: 14px; }
.bk-dest-input { flex: 1; border: none; outline: none; font-size: 14px; color: #1e293b; background: transparent; }
.bk-dest-input::placeholder { color: #94a3b8; }
.bk-dest-section { padding: 8px 0; }
.bk-dest-section-title { padding: 6px 16px 4px; font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.03em; }
.bk-dest-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; transition: background 0.12s; }
.bk-dest-item:hover { background: #f8fafc; }
.bk-dest-item-icon { width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 13px; flex-shrink: 0; }
.bk-dest-item-icon.location { background: #dbeafe; color: #2563eb; }
.bk-dest-item-icon.hotel { background: #fef3c7; color: #d97706; }
.bk-dest-item-icon.history { background: #f1f5f9; color: #64748b; }
.bk-dest-item-text { flex: 1; min-width: 0; }
.bk-dest-item-name { font-size: 14px; font-weight: 500; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-dest-item-sub { font-size: 12px; color: #94a3b8; }
.bk-dest-show-more { padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--primary, #0d9488); cursor: pointer; border: none; background: none; }
.bk-dest-show-more:hover { text-decoration: underline; }
.bk-dest-empty { padding: 24px 16px; text-align: center; color: #94a3b8; font-size: 13px; }
.rotate-180 { transform: rotate(180deg); }

/* ── Calendar Date Picker ── */
.bk-cal-dropdown { position: absolute; top: calc(100% + 6px); left: 0; width: 640px; max-width: 90vw; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 99999; overflow: hidden; }
.bk-cal-tabs { display: flex; border-bottom: 1px solid #e2e8f0; }
.bk-cal-tab { flex: 1; padding: 14px; text-align: center; font-size: 14px; font-weight: 600; color: #64748b; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.15s; background: none; border-top: none; border-left: none; border-right: none; }
.bk-cal-tab.active { color: #0d9488; border-bottom-color: #0d9488; }
.bk-cal-tab:hover { color: #0d9488; }
.bk-cal-body { padding: 16px 20px; }
.bk-cal-months { display: flex; gap: 24px; }
.bk-cal-month { flex: 1; }
.bk-cal-month-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bk-cal-month-title { font-size: 16px; font-weight: 700; color: #1e293b; }
.bk-cal-nav { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #e2e8f0; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #475569; font-size: 12px; transition: all 0.15s; }
.bk-cal-nav:hover { border-color: #0d9488; color: #0d9488; }
.bk-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.bk-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 4px; }
.bk-cal-weekday { font-size: 12px; font-weight: 600; color: #94a3b8; padding: 4px 0; }
.bk-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; }
.bk-cal-day { text-align: center; padding: 8px 0; font-size: 14px; color: #1e293b; cursor: pointer; border-radius: 8px; transition: background 0.1s; position: relative; }
.bk-cal-day:hover:not(.disabled):not(.empty) { background: #f1f5f9; }
.bk-cal-day.empty { cursor: default; }
.bk-cal-day.disabled { color: #cbd5e1; cursor: not-allowed; }
.bk-cal-day.today { font-weight: 700; }
.bk-cal-day.today::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #0d9488; }
.bk-cal-day.range-start { background: #0d9488 !important; color: #fff !important; border-radius: 8px 0 0 8px; }
.bk-cal-day.range-end { background: #0d9488 !important; color: #fff !important; border-radius: 0 8px 8px 0; }
.bk-cal-day.range-start.range-end { border-radius: 8px; }
.bk-cal-day.in-range { background: #e0f2fe; color: #1e293b; border-radius: 0; }
.bk-cal-day.range-start.in-range, .bk-cal-day.range-end.in-range { background: #0d9488; color: #fff; }
.bk-cal-flex { padding: 16px 20px; border-top: 1px solid #e2e8f0; }
.bk-cal-flex-title { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.bk-cal-flex-options { display: flex; gap: 8px; flex-wrap: wrap; }
.bk-cal-flex-btn { padding: 6px 14px; border-radius: 20px; border: 1px solid #e2e8f0; background: #fff; font-size: 13px; font-weight: 500; color: #475569; cursor: pointer; transition: all 0.15s; }
.bk-cal-flex-btn:hover { border-color: #0d9488; color: #0d9488; }
.bk-cal-flex-btn.active { background: #0d9488; color: #fff; border-color: #0d9488; }

/* ── Occupancy Dropdown ── */
.bk-occ-dropdown {
    position: absolute; top: calc(100% + 6px); left: auto; right: 0;
    width: 320px; max-width: 320px;
    background: #fff; border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15); border: 1px solid #e2e8f0;
    z-index: 100; margin-top: 4px; padding: 20px;
    box-sizing: border-box;
}
.bk-occ-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
}
.bk-occ-label { display: flex; flex-direction: column; gap: 2px; }
.bk-occ-label strong { font-size: 14px; color: #1e293b; font-weight: 600; }
.bk-occ-label span { font-size: 11px; color: #64748b; }
.bk-occ-counter { display: flex; align-items: center; gap: 0; border: 1px solid #0d9488; border-radius: 6px; overflow: hidden; }
.bk-occ-btn {
    width: 36px; height: 36px; border: none; border-right: 1px solid #0d9488;
    background: transparent; color: #0d9488; font-size: 14px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: all 0.15s; border-radius: 0;
}
.bk-occ-btn:last-child { border-right: none; border-left: 1px solid #0d9488; }
.bk-occ-btn:hover:not(:disabled) { background: #0d9488; color: white; }
.bk-occ-btn:disabled { border-color: #d1d5db; color: #d1d5db; cursor: not-allowed; background: #f5f5f5; }
.bk-occ-btn:disabled:hover { background: #f5f5f5; color: #d1d5db; }
.bk-occ-val { font-size: 16px; font-weight: 600; color: #1e293b; min-width: 36px; text-align: center; }
.bk-occ-divider { border-top: 1px solid #e2e8f0; margin: 4px 0 12px; }
.bk-occ-pets {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 0 0 16px;
}
.bk-occ-pets-info { display: flex; flex-direction: column; gap: 2px; }
.bk-occ-pets-info strong { font-size: 14px; color: #1e293b; font-weight: 600; }
.bk-occ-pets-note { font-size: 12px; color: #64748b; }
.bk-occ-pets-link { font-size: 12px; color: #0d9488; text-decoration: underline; margin-top: 2px; }
.bk-occ-pets-link:hover { color: #094B46; }
.bk-occ-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.bk-occ-toggle input { opacity: 0; width: 0; height: 0; }
.bk-occ-toggle-slider {
    position: absolute; inset: 0; background: #ccc; border-radius: 24px; cursor: pointer; transition: background 0.3s;
}
.bk-occ-toggle-slider::before {
    content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: white;
    bottom: 3px; left: 3px; transition: transform 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.bk-occ-toggle input:checked + .bk-occ-toggle-slider { background: #0d9488; }
.bk-occ-toggle input:checked + .bk-occ-toggle-slider::before { transform: translateX(20px); }
.bk-occ-done {
    width: 100%; padding: 12px; background: #0d9488; color: white; border: none; border-radius: 6px;
    font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.bk-occ-done:hover { background: #094B46; }

/* ── Skeleton Loading Animation ── */
@keyframes bk-shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.bk-skeleton-overlay {
    position: absolute;
    inset: 0;
    z-index: 30;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(2px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.bk-skeleton-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
.bk-skeleton-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.bk-skeleton-img {
    width: 100%;
    padding-top: 65%;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 37%, #e2e8f0 63%);
    background-size: 800px 100%;
    animation: bk-shimmer 1.6s ease-in-out infinite;
}
.bk-skeleton-body { padding: 14px; }
.bk-skeleton-line {
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 37%, #e2e8f0 63%);
    background-size: 800px 100%;
    animation: bk-shimmer 1.6s ease-in-out infinite;
    margin-bottom: 10px;
}
.bk-skeleton-line.w60 { width: 60%; }
.bk-skeleton-line.w80 { width: 80%; }
.bk-skeleton-line.w40 { width: 40%; height: 10px; }
.bk-skeleton-line.w50 { width: 50%; height: 16px; margin-bottom: 14px; }
.bk-skeleton-line.w30 { width: 30%; height: 10px; margin-bottom: 0; }

/* ── Pagination ── */
.bk-pagination { display: flex; justify-content: center; padding: 32px 0 8px; grid-column: 1 / -1; }
.bk-pagination nav { display: flex; align-items: center; gap: 4px; }
.bk-pagination .pagination { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.bk-pagination .pagination li { display: inline-flex; }
.bk-pagination .pagination li a,
.bk-pagination .pagination li span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-secondary); background: #fff; border: 1px solid var(--border-light); text-decoration: none; transition: all 0.2s; }
.bk-pagination .pagination li a:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.bk-pagination .pagination li.active span { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }
.bk-pagination .pagination li.disabled span { color: #cbd5e1; cursor: not-allowed; background: #f8fafc; }

@media (max-width: 1024px) {
    .bk-main { grid-template-columns: 1fr; padding: 28px 16px 48px; }
    .bk-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        z-index: 99999;
        background: #fff;
        box-shadow: 4px 0 30px rgba(0,0,0,0.25);
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bk-sidebar.mobile-open {
        transform: translateX(0);
    }
    .bk-hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .bk-skeleton-overlay { grid-template-columns: repeat(2, 1fr); }
    .tf-flight-path-wrap { display: none; }
    .tf-hero-grid { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 48px; }
    .tf-hero-right { width: 100%; justify-content: flex-start; }
    .tf-promo-card { width: 100%; max-width: 440px; }
}
.bk-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s;
}
.bk-mobile-filter-btn:hover { border-color: #0C5F58; color: #0C5F58; }
.bk-mobile-filter-btn i { font-size: 14px; color: #0C5F58; }
.bk-mobile-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s;
}
.bk-mobile-filter-overlay.visible { opacity: 1; }
@media (max-width: 1024px) {
    .bk-mobile-filter-btn { display: inline-flex; }
    .bk-mobile-filter-overlay.visible { display: block; }
    .bk-sidebar-mobile-close { display: block !important; }
    .bk-sidebar-mobile-apply { display: block !important; }
    .bk-results-header { flex-wrap: wrap; }
    .bk-results-title { width: 100%; }
}

@media (max-width: 992px) {
    .tf-sticky-search-bar {
        position: relative !important;
        top: auto !important;
        margin-top: -30px !important;
        padding: 10px 0 !important;
    }
    .tf-search-bar-card {
        flex-direction: column;
        align-items: stretch;
        border-radius: 14px;
        padding: 10px;
        gap: 0;
    }
    .tf-search-field {
        border-bottom: 1px solid var(--border-light, #f1f5f9);
        border-radius: 8px;
        padding: 12px 10px;
        border-left: none !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .tf-search-field:last-of-type {
        border-bottom: none;
    }
    .tf-search-btn {
        width: 100%;
        border-radius: 10px;
        margin-top: 8px;
        padding: 14px;
    }
    .sf-chevron {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .tf-sticky-search-bar {
        margin-top: 0 !important;
    }
    .tf-hotel-hero { min-height: auto; padding-top: 80px; }
    .tf-hero-title { font-size: 40px; }
    .tf-hero-script { font-size: 50px; }
    .tf-trust-badges { gap: 10px; }
    .tf-trust-card { padding: 8px 12px; }
    .tf-trust-info strong { font-size: 12px; }
    .tf-trust-info span { font-size: 11px; }
}

@media (max-width: 640px) {
    .tf-hero-title { font-size: 32px; }
    .tf-hero-script { font-size: 42px; }
    .tf-hero-desc { font-size: 14px; margin-bottom: 20px; }
    .tf-trust-badges { flex-direction: column; align-items: stretch; width: 100%; }
    .tf-trust-card { width: 100%; }
    .bk-results-header { margin-bottom: 14px; }
    .bk-results-title { font-size: 17px !important; margin-bottom: 6px; }
    .bk-results-actions { width: 100%; display: flex; align-items: center; gap: 8px; }
    .bk-mobile-filter-btn { flex: 1; justify-content: center; padding: 9px 12px; font-size: 13px; }
    .bk-sort-btn { flex: 1.2; justify-content: center; padding: 9px 10px; font-size: 12.5px; white-space: nowrap; }
    .bk-view-toggle { display: none; }
    .bk-hotels-grid { grid-template-columns: 1fr; }
    .bk-skeleton-overlay { grid-template-columns: 1fr; }
    .bk-hotel-card.list-view { flex-direction: column; }
    .bk-hotel-card.list-view .bk-card-img-wrap { width: 100%; min-width: 100%; height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
    .bk-cal-dropdown {
        min-width: 0 !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        max-height: min(80vh, 520px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .bk-cal-body {
        padding: 12px 10px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    .bk-cal-months {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .bk-cal-month {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }
    .bk-cal-month-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 8px !important;
        padding: 0 4px !important;
    }
    .bk-cal-weekdays {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        gap: 2px !important;
        width: 100% !important;
        margin-bottom: 4px !important;
    }
    .bk-cal-weekday {
        text-align: center !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        padding: 4px 0 !important;
    }
    .bk-cal-days {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        gap: 2px !important;
        width: 100% !important;
    }
    .bk-cal-day {
        aspect-ratio: 1 !important;
        max-height: 40px !important;
        font-size: 13px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        padding: 0 !important;
    }
}

/* ── Favorite Heart Button ── */
.bk-card-heart.active { color: #EF4444 !important; }
.bk-card-heart.active i { font-weight: 900; }
.bk-card-heart.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.12);
    z-index: -1;
}

/* ── Toast Notification ── */
.tf-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    background: #0F172A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.tf-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.tf-toast.success { background: #0C5F58; }
.tf-toast.removed { background: #475569; }
.tf-toast i { font-size: 16px; }

@media (max-width: 640px) {
    .tf-toast { bottom: 16px; right: 16px; left: 16px; font-size: 13px; }
}

/* ── Trust Badges System ── */
.lp-hotel-badges-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-left: 8px;
    vertical-align: middle;
}

.lp-hotel-card-top-rated-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.lp-hotel-card-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border: 1px solid #FCD34D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(217, 119, 6, 0.15);
}
.lp-hotel-card-featured-badge i {
    color: #D97706;
    font-size: 10px;
}

.lp-hotel-card-instant-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp-ranking-disclosure {
    margin-top: 24px;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.78125rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-ranking-disclosure i {
    color: #94a3b8;
    font-size: 15px;
}

/* ── Sticky Search Bar (Hotels Page) ── */
.tf-sticky-search-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    margin-top: -60px;
    padding: 20px 0;
}
.tf-sticky-search-bar .tf-search-bar-card {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 36px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.04);
}
.tf-sticky-search-bar .tf-search-field {
    background: #f8fafc;
    border-radius: 12px;
    color: inherit;
}
.tf-sticky-search-bar .tf-search-field + .tf-search-field {
    border-left: 1px solid #f1f5f9;
}
.tf-sticky-search-bar .tf-sf-icon {
    background: #e6f6f4;
    color: #0C5F58;
}
.tf-sticky-search-bar .tf-sf-label {
    color: #1e293b;
}
.tf-sticky-search-bar .tf-sf-value {
    color: #475569;
    font-weight: 500;
}
.tf-sticky-search-bar .tf-sf-value.placeholder {
    color: #94a3b8;
    font-weight: 400;
}
.tf-sticky-search-bar .sf-chevron {
    color: #94a3b8;
}



