@import url('https://fonts.googleapis.com/css2?family=Playball&family=Hermeneus+One&display=swap');

/* ─── Theme wrapper cleanup on single tour pages ────────── */
.tpp-tour-single-page .page-header,
.tpp-tour-single-page .entry-header,
.tpp-tour-single-page .page-title,
.tpp-tour-single-page .entry-title {
    display: none !important;
}

/* ─── Filter + Grid layout ──────────────────────────────── */
.tour-filter-layout { display: flex; gap: 30px; align-items: flex-start; }
.tour-filter-sidebar { width: 280px; flex-shrink: 0; }
.tour-grid-area { flex: 1; min-width: 0; }

/* ─── Tour Grid ─────────────────────────────────────────── */
.tour-grid { display: grid; gap: 20px; }

/* ─── Tour Card ─────────────────────────────────────────── */
.tour-card { background: #F9F9F9; border-radius: 10px; padding: 10px; overflow: hidden; color: #000; }
.tour-image { position: relative; }
.tour-image img { width: 100%; max-height: 200px; display: block; border-radius: 6px; }
.badge { position: absolute; top: 15px; left: 0; background: #FFC700; color: #fff; padding: 10px 22px; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.tour-content { padding: 20px 10px 0; }
.tour-title-text { font-family: 'Playball', cursive; font-size: 2rem; color: #00BBFE; line-height: 1.2; margin: 0 0 12px; }
.days { font-size: 1rem; color: #000; margin-bottom: 0; font-family: 'Hermeneus One', serif; }
.days strong { font-weight: 400; color: #000; }
.days span { color: #979797; font-weight: 400; }
.inquire-btn { display: block; background: #0A1016; text-align: center; padding: 16px; color: #fff; margin-top: 20px; text-decoration: none; font-family: 'Hermeneus One', serif; font-weight: 400; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.inquire-btn:hover { background: #00BBFE; }
.no-tours { color: #979797; font-size: 1rem; padding: 20px 0; font-family: 'Hermeneus One', serif; }

/* ─── Filter sidebar ────────────────────────────────────── */
#tpp-filter { background: #fff; padding: 10px; }
#tpp-filter .tpp-section { margin-bottom: 28px; }
.tpp-section-header { display: flex; align-items: center; margin-bottom: 14px; }
.tpp-section-title { font-family: 'Playball', cursive; font-size: 1.9rem; color: #00BBFE; font-weight: 400; margin: 0; padding: 2px 14px 2px 10px; border: 1px solid #ddd; background: #fff; white-space: nowrap; line-height: 1.3; flex-shrink: 0; }
.tpp-section-header::after { content: ''; flex: 1; height: 1px; background: #ddd; }
.tpp-checkbox-list { display: flex; flex-direction: column; gap: 8px; }
.tpp-checkbox-item { display: flex; align-items: center; border: 1px solid #e0e0e0; padding: 11px 14px; cursor: pointer; gap: 0; transition: border-color 0.2s; user-select: none; }
.tpp-checkbox-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.tpp-check-box { width: 18px; height: 18px; border: 1.5px solid #ccc; background: #fff; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.tpp-check-divider { width: 1px; height: 20px; background: #e0e0e0; margin: 0 14px; flex-shrink: 0; }
.tpp-check-label { font-size: 11px; letter-spacing: 1.5px; color: #999; font-weight: 600; text-transform: uppercase; transition: color 0.2s; }
.tpp-checkbox-item.is-checked { border-color: #00BBFE; }
.tpp-checkbox-item.is-checked .tpp-check-box { background: #00BBFE; border-color: #00BBFE; }
.tpp-checkbox-item.is-checked .tpp-check-label { color: #00BBFE; }
.tpp-days-track { position: relative; display: flex; justify-content: space-between; align-items: flex-start; padding: 0 14px; padding-top: 0; }
.tpp-days-line-bg, .tpp-days-line-fill { position: absolute; top: 14px; height: 3px; border-radius: 2px; }
.tpp-days-line-bg { left: 14px; right: 14px; background: #e0e0e0; z-index: 0; }
.tpp-days-line-fill { left: 14px; width: 0%; background: #00BBFE; z-index: 1; transition: width 0.25s ease; }
.tpp-days-step { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; position: relative; z-index: 2; }
.tpp-days-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #ccc; background: #fff; transition: background 0.2s, border-color 0.2s; }
.tpp-days-label { font-size: 11px; font-weight: 600; color: #999; letter-spacing: 0.5px; transition: color 0.2s; }
.tpp-days-step.active .tpp-days-dot { background: #00BBFE; border-color: #00BBFE; }
.tpp-days-step.active .tpp-days-label { color: #00BBFE; }
.tpp-days-selected {
    margin: 10px 14px 0;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Hermeneus One', serif;
}
#tpp-days-selected-value { color: #00BBFE; }

/* ─── Mobile filter toggle button (hidden on desktop) ───── */
.tpp-mobile-filter-btn { display: none; }

@media (max-width: 768px) {

    /* Stack sidebar above grid */
    .tour-filter-layout {
        flex-direction: column;
        gap: 0;
    }

    /* Grid always 1-column on mobile */
    .tour-grid {
        grid-template-columns: 1fr !important;
    }

    /* Toggle button */
    .tpp-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 13px 18px;
        background: #0A1016;
        color: #fff;
        border: none;
        font-family: 'Hermeneus One', serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        position: relative;
        margin-bottom: 0;
    }

    /* Active-filter count badge */
    .tpp-filter-badge {
        display: none;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 20px;
        padding: 0 5px;
        border-radius: 10px;
        background: #fff;
        color: #1a1a1a;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
    }
    .tpp-filter-badge.has-count { display: inline-flex; }

    /* Sidebar drawer — collapsed by default */
    .tour-filter-sidebar {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0;
    }
    .tour-filter-layout.tpp-filter-open .tour-filter-sidebar {
        max-height: 1200px; /* tall enough for all filters */
        padding-bottom: 16px;
    }

    /* Chevron rotation when open */
    .tpp-mobile-filter-btn::after {
        content: '▾';
        margin-left: auto;
        font-size: 14px;
        transition: transform 0.3s ease;
        display: block;
    }
    .tour-filter-layout.tpp-filter-open .tpp-mobile-filter-btn::after {
        transform: rotate(180deg);
    }

    /* Grid area fills full width */
    .tour-grid-area { width: 100%; }
}

/* ─── Tour Slider [tour_slider] ─────────────────────────── */
.tpp-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 48px; /* room for dots */
}
.tpp-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}
.tpp-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4px;
}
/* Arrow buttons */
.tpp-sl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 24px));
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.tpp-sl-btn:hover { opacity: 0.82; }
.tpp-sl-btn.is-hidden { opacity: 0; pointer-events: none; }
.tpp-sl-prev { left: 8px; }
.tpp-sl-next { right: 8px; }
/* Dot indicators */
.tpp-sl-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.tpp-sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.tpp-sl-dot.active {
    background: #00BBFE;
    transform: scale(1.35);
}

/* ═══════════════════════════════════════════════════════════
   SINGLE TOUR PAGE  (Figma: Playball + Hermeneus One)
═══════════════════════════════════════════════════════════ */

/* ─── Base shell ─────────────────────────────────────────── */
.tpp-single {
    background: #fff;
    color: #0A1016;
    font-family: 'Hermeneus One', serif;
}

/* Full-bleed: hero, breadcrumb, sticky-nav escape parent container width */
.tpp-hero,
.tpp-breadcrumb-bar,
.tpp-sticky-nav {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}

/* ─── Hero ─────────────────────────────────────────────── */
.tpp-hero {
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.tpp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.tpp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 60px;
    width: 100%;
}
.tpp-hero-title {
    font-family: 'Playball', cursive;
    font-size: 72px;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

/* ─── Breadcrumb ────────────────────────────────────────── */
.tpp-breadcrumb-bar {
    background: #0A1016;
    padding: 14px 80px;
}
.tpp-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-family: 'Hermeneus One', serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.tpp-breadcrumb-inner a {
    color: #979797;
    text-decoration: none;
    transition: color 0.2s;
}
.tpp-breadcrumb-inner a:hover { color: #fff; }
.tpp-breadcrumb-inner span { color: #00BBFE; }
.tpp-breadcrumb-sep {
    color: #555;
    font-size: 14px;
    line-height: 1;
}

/* ─── Sticky Nav ────────────────────────────────────────── */
.tpp-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #00BBFE;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.tpp-sticky-nav::-webkit-scrollbar { display: none; }
.tpp-nav-link {
    flex: 1;
    padding: 22px 10px;
    font-family: 'Hermeneus One', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    color: #979797;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.tpp-nav-link:hover,
.tpp-nav-link.active {
    color: #00BBFE;
    border-bottom-color: #00BBFE;
}

/* ─── Single page shell ─────────────────────────────────── */
.tpp-single {
    background: #fff;
    color: #0A1016;
    font-family: 'Hermeneus One', serif;
}

/* ─── Two-column layout ─────────────────────────────────── */
.tpp-content-wrap {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}
.tpp-content-main {
    flex: 1;
    min-width: 0;
}
.tpp-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    padding-top: 100px;
}

/* ─── Section ───────────────────────────────────────────── */
.tpp-single > .tpp-section { padding: 0; border-bottom: none; }
.tpp-single .tpp-section { padding: 60px 0; }
.tpp-section-heading {
    font-family: 'Playball', cursive;
    font-size: 66px;
    color: #00BBFE;
    margin: 0 0 20px;
    line-height: 50px;
    letter-spacing: 1.32px;
    font-weight: 400;
}
.tpp-section-intro {
    font-family: 'Hermeneus One', serif;
    color: #979797;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 40px;
    font-weight: 400;
}

/* ─── Overview ──────────────────────────────────────────── */
.tpp-overview-text {
    font-family: 'Hermeneus One', serif;
    font-size: 20px;
    color: #979797;
    line-height: 30px;
}

/* ─── Info box (sidebar) ────────────────────────────────── */
.tpp-info-box {
    border: 1px solid #A9CEDE;
    background: #fff;
    overflow: hidden;
}
.tpp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #F2FBFF;
    gap: 8px;
}
.tpp-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Hermeneus One', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #979797;
}
.tpp-info-label svg { color: #A9CEDE; flex-shrink: 0; }
.tpp-info-badge {
    font-family: 'Hermeneus One', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}
.tpp-info-badge.dest  { background: #FFF8E6; color: #c87a00; }
.tpp-info-badge.days  { background: #F2FBFF; color: #00BBFE; }
.tpp-info-badge.trip  { background: #e8fff3; color: #007a44; }
.tpp-info-badge.price { background: #F2FBFF; color: #0A1016; }

/* ─── Quote button ──────────────────────────────────────── */
.tpp-quote-btn {
    display: block;
    margin: 20px 20px;
    background: #FFC700;
    color: #0A1016;
    border: none;
    padding: 16px;
    width: calc(100% - 40px);
    font-family: 'Hermeneus One', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255,199,0,0.35);
}
.tpp-quote-btn:hover { background: #00BBFE; color: #fff; }

/* ─── Itinerary ─────────────────────────────────────────── */
.tpp-itinerary-list { display: flex; flex-direction: column; gap: 0; }
.tpp-day-row { position: relative; }

/* Collapsed row */
.tpp-day-collapsed {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
}
.tpp-day-collapsed:hover .tpp-day-collapsed-title { color: #00BBFE; }
.tpp-day-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #F9F9F9;
    flex-shrink: 0;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25), inset 0 4px 4px rgba(0,0,0,0.25);
}
.tpp-day-collapsed-label {
    font-family: 'Playball', cursive;
    font-size: 36px;
    color: #979797;
    letter-spacing: 0.72px;
    flex-shrink: 0;
}
.tpp-day-collapsed-title {
    font-family: 'Hermeneus One', serif;
    font-size: 24px;
    color: #979797;
    text-transform: uppercase;
    line-height: 30px;
    transition: color 0.2s;
}

/* Expanded panel */
.tpp-day-panel { display: none; padding: 10px 0 30px; }
.tpp-day-row.is-open .tpp-day-collapsed { display: none; }
.tpp-day-row.is-open .tpp-day-panel { display: block; }
.tpp-day-row:first-child .tpp-day-panel { display: block; }

.tpp-day-header-open { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.tpp-day-dot-wrap { padding-top: 2px; }
.tpp-day-dot-active {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00BBFE;
    border: 2px solid #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25), inset 0 4px 4px rgba(0,0,0,0.25);
    flex-shrink: 0;
}
.tpp-day-meta { display: flex; flex-direction: column; gap: 8px; }
.tpp-day-meta-row { display: flex; align-items: center; gap: 30px; white-space: nowrap; }
.tpp-day-num {
    font-family: 'Playball', cursive;
    font-size: 40px;
    color: #00BBFE;
    letter-spacing: 0.8px;
    line-height: 1;
}
.tpp-day-title {
    font-family: 'Hermeneus One', serif;
    font-size: 24px;
    color: #0A1016;
    text-transform: uppercase;
    line-height: 30px;
}
.tpp-day-location {
    font-family: 'Hermeneus One', serif;
    font-size: 22px;
    color: #979797;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 30px;
}
.tpp-day-location svg { color: #979797; }

.tpp-day-content { margin-left: 43px; border-left: 1px dashed #979797; padding-left: 29px; }
.tpp-day-desc {
    font-family: 'Hermeneus One', serif;
    font-size: 20px;
    color: #979797;
    line-height: 30px;
    margin: 0 0 20px;
}

.tpp-day-body { display: flex; gap: 30px; align-items: flex-start; }
.tpp-day-highlights-box {
    background: #F2FBFF;
    border: 1px solid rgba(0,187,254,0.1);
    padding: 20px 10px;
    border-radius: 5px;
    min-width: 250px;
    flex-shrink: 0;
}
.tpp-day-hl-heading {
    font-family: 'Hermeneus One', serif;
    font-size: 20px;
    font-weight: 400;
    color: #0A1016;
    text-transform: uppercase;
    margin: 0 0 25px;
    line-height: 30px;
}
.tpp-day-hl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.tpp-day-hl-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Hermeneus One', serif;
    font-size: 14px;
    color: #979797;
    line-height: 22px;
}
.tpp-day-hl-list li svg { color: #00BBFE; flex-shrink: 0; }
.tpp-day-map { flex: 1; min-width: 0; border-radius: 5px; overflow: hidden; }
.tpp-day-map iframe { display: block; }

/* ─── Accommodation ─────────────────────────────────────── */
.tpp-hotel-grid-wrap {
    position: relative;
}
.tpp-hotel-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tpp-hotel-card {
    background: #fff;
    border: 1px solid #A9CEDE;
    flex-shrink: 0;
    width: calc(33.33% - 8px);
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}
.tpp-hotel-img img.tpp-hotel-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.tpp-hotel-info { padding: 15px 0 5px; display: flex; flex-direction: column; gap: 15px; }
.tpp-hotel-name {
    font-family: 'Playball', cursive;
    font-size: 22px;
    color: #26486D;
    margin: 0;
    line-height: 1.1;
}
.tpp-hotel-loc {
    font-family: 'Hermeneus One', serif;
    font-size: 14px;
    color: #979797;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    line-height: 30px;
}
.tpp-hotel-loc svg { color: #979797; }
.tpp-stars { display: flex; gap: 2px; }
.tpp-star { font-size: 22px; color: #D9D9D9; }
.tpp-star.filled { color: #FFC700; }

/* Slider controls (if many hotels) */
.tpp-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.tpp-sdot { width: 12px; height: 12px; border-radius: 50%; background: #D9D9D9; border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.tpp-sdot.active { background: #00BBFE; }

/* ─── Highlights slider ─────────────────────────────────── */
.tpp-hl-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.tpp-hl-slider {
    display: flex;
    transition: transform 0.4s ease;
}
.tpp-hl-slide { flex-shrink: 0; width: 100%; }
.tpp-hl-img { width: 100%; height: 480px; object-fit: cover; display: block; border-radius: 5px; }
.tpp-hl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.tpp-hl-arrow:hover { background: rgba(0,187,254,0.6); }
.tpp-hl-prev { left: 16px; }
.tpp-hl-next { right: 16px; }

/* ─── Details & Policies ────────────────────────────────── */
.tpp-policy-box { background: #fff; }
.tpp-policy-tabs {
    display: flex;
    background: #F2FBFF;
    padding: 5px 10px;
    gap: 0;
    overflow-x: auto;
}
.tpp-ptab {
    padding: 20px 18px;
    font-family: 'Hermeneus One', serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(10,16,22,0.7);
    background: #F2FBFF;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    width: 140px;
    text-align: center;
    line-height: 30px;
}
.tpp-ptab.active { color: #fff; background: #00BBFE; }
.tpp-policy-panel { display: none; padding: 20px 10px; background: #F8FCFF; border: 1px solid #F2FBFF; border-radius: 10px; margin-top: 20px; }
.tpp-policy-panel.active { display: block; }
.tpp-policy-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.tpp-policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Hermeneus One', serif;
    font-size: 14px;
    color: #979797;
    line-height: 22px;
}
.tpp-policy-list li svg { flex-shrink: 0; margin-top: 2px; }
.tpp-policy-list:not(.tpp-exc) svg { color: #00BBFE; }
.tpp-exc svg { color: #FE0A00; }

/* ─── FAQs ──────────────────────────────────────────────── */
.tpp-faq-list { display: flex; flex-direction: column; gap: 0; }
.tpp-faq-item { border: 1px solid #A9CEDE; margin-bottom: -1px; }
.tpp-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: #fff;
    border: none;
    text-align: left;
    font-family: 'Hermeneus One', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
    color: #0A1016;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
}
.tpp-faq-item.is-open .tpp-faq-q { background: #00BBFE; color: #fff; }
.tpp-faq-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.tpp-faq-a {
    padding: 20px 22px;
    font-family: 'Hermeneus One', serif;
    font-size: 16px;
    color: #979797;
    line-height: 26px;
    border-top: 1px solid #F2FBFF;
}

/* ─── Quote Modal ───────────────────────────────────────── */
.tpp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.tpp-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.tpp-modal {
    background: #fff;
    color: #0A1016;
    padding: 36px 40px;
    max-width: 560px;
    width: 94%;
    position: relative;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}
.tpp-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #979797;
    line-height: 1;
}
.tpp-modal-close:hover { color: #0A1016; }
.tpp-modal-title { font-family: 'Playball', cursive; font-size: 2rem; color: #00BBFE; margin: 0 0 4px; }
.tpp-modal-sub { font-family: 'Hermeneus One', serif; font-size: 14px; color: #979797; margin: 0 0 20px; }
.tpp-quote-msg { font-size: 14px; padding: 10px 14px; border-radius: 3px; margin-bottom: 14px; display: none; font-family: 'Hermeneus One', serif; }
.tpp-quote-msg.success { background: #e9fdf0; color: #1a7a44; border: 1px solid #b2e8ca; display: block; }
.tpp-quote-msg.error   { background: #fdf0f0; color: #a00; border: 1px solid #f0c0c0; display: block; }
.tpp-quote-form { display: flex; flex-direction: column; gap: 12px; }
.tpp-form-row { display: flex; gap: 12px; }
.tpp-form-row input { flex: 1; min-width: 0; }
.tpp-quote-form input,
.tpp-quote-form textarea {
    border: 1px solid #A9CEDE;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Hermeneus One', serif;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
    color: #0A1016;
}
.tpp-quote-form input:focus,
.tpp-quote-form textarea:focus { border-color: #00BBFE; }
.tpp-quote-submit {
    background: #0A1016;
    color: #fff;
    border: none;
    padding: 16px;
    font-family: 'Hermeneus One', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    box-shadow: inset 0 4px 10px #5e5e5e;
}
.tpp-quote-submit:hover { background: #00BBFE; }

/* ═══════════════════════════════════════════════════════════
   SEARCH BAR  [tour_search_bar]
═══════════════════════════════════════════════════════════ */

.tsb-wrap {
    width: 100%;
    font-family: 'Hermeneus One', serif;
}

/* ── Bar shell ──────────────────────────────────────────── */
.tsb-bar {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* ── Individual field ───────────────────────────────────── */
.tsb-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 20px 14px;
    position: relative;
    min-width: 0;
}

.tsb-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.tsb-control {
    position: relative;
    display: flex;
    align-items: center;
}

.tsb-select {
    width: 100%;
    background: #fff;
    border: 1px solid #d8d8d8;
    padding: 10px 36px 10px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #767676;
    text-transform: uppercase;
    font-family: 'Hermeneus One', serif;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    box-sizing: border-box;
}

.tsb-select:focus { border-color: #00BBFE; color: #222; }
.tsb-select option { color: #222; text-transform: uppercase; font-size: 11px; }
.tsb-select option:first-child { color: #767676; }

/* Hide native select arrow on IE/Edge */
.tsb-select::-ms-expand { display: none; }

/* Make selected value appear dark */
.tsb-select.tsb-has-value { color: #222; }

.tsb-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00BBFE;
    pointer-events: none;
    display: flex;
    align-items: center;
}

/* ── Date field ─────────────────────────────────────────── */
.tsb-date-wrap { position: relative; }

.tsb-date-input {
    color: transparent; /* hide native text until value set */
}
.tsb-date-input:focus,
.tsb-date-input.tsb-has-value {
    color: #222;
}

.tsb-date-placeholder {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #767676;
    text-transform: uppercase;
    pointer-events: none;
    transition: opacity 0.15s;
}
.tsb-date-input.tsb-has-value ~ .tsb-date-placeholder,
.tsb-date-input:focus ~ .tsb-date-placeholder {
    opacity: 0;
}

/* ── Vertical divider ───────────────────────────────────── */
.tsb-divider {
    width: 1px;
    background: #e8e8e8;
    align-self: stretch;
    flex-shrink: 0;
}

/* ── Explore button ─────────────────────────────────────── */
.tsb-btn {
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    padding: 0 36px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    font-family: 'Hermeneus One', serif !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: background 0.2s !important;
    align-self: stretch !important;
}
.tsb-btn:hover { background: #00BBFE; }

/* ── Active Filters row ─────────────────────────────────── */
.tsb-active-filters {
    margin-top: 16px;
}

.tsb-tags-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tsb-tags-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    flex-shrink: 0;
}

.tsb-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.tsb-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #00BBFE;
    color: #1a7fa8;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tsb-tag-type {
    color: #aaa;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 2px;
}

.tsb-tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a7fa8;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    margin-left: 2px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.tsb-tag-remove:hover { color: #e05c5c; }

.tsb-clear-all {
    background: none;
    border: 1px solid #e0e0e0;
    color: #aaa;
    padding: 5px 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Hermeneus One', serif;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}
.tsb-clear-all:hover { border-color: #e05c5c; color: #e05c5c; }

/* ── Results ────────────────────────────────────────────── */
.tsb-results {
    margin-top: 28px;
}

.tsb-results-header {
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
}

.tsb-results-count {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
}

.tsb-grid { display: grid; gap: 20px; }

/* ── Loading spinner ────────────────────────────────────── */
.tsb-loading {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.tsb-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #00BBFE;
    border-radius: 50%;
    animation: tsb-spin 0.7s linear infinite;
}
@keyframes tsb-spin { to { transform: rotate(360deg); } }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .tsb-bar {
        flex-wrap: wrap;
    }
    .tsb-field {
        flex: 1 1 calc(50% - 1px);
        min-width: calc(50% - 1px);
        border-bottom: 1px solid #e8e8e8;
    }
    .tsb-divider { display: none; }
    .tsb-btn {
        flex: 1 1 100%;
        padding: 18px;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .tsb-field {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
    .tpp-content-wrap { padding: 0 30px; }
    .tpp-section-heading { font-size: 48px; line-height: 40px; }
    .tpp-hero-title { font-size: 52px; }
    .tpp-hero-content { padding: 0 30px 50px; }
    .tpp-breadcrumb-bar { padding: 14px 30px; }
}
@media (max-width: 900px) {
    .tpp-content-wrap { flex-direction: column; }
    .tpp-sidebar { width: 100%; position: static; padding-top: 0; order: -1; }
    .tpp-info-box { margin-bottom: 20px; }
    .tpp-hotel-card { width: calc(50% - 6px); }
    .tpp-day-body { flex-direction: column; }
    .tpp-nav-link { flex: none; padding: 18px 16px; font-size: 14px; }
    .tpp-day-meta-row { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 600px) {
    .tpp-hero { height: 280px; }
    .tpp-hero-title { font-size: 32px; }
    .tpp-hero-content { padding: 0 16px 30px; }
    .tpp-breadcrumb-bar { padding: 12px 16px; }
    .tpp-content-wrap { padding: 0 16px; }
    .tpp-section-heading { font-size: 36px; line-height: 32px; }
    .tpp-hotel-card { width: 100%; }
    .tpp-hl-img { height: 260px; }
    .tpp-form-row { flex-direction: column; }
    .tpp-modal { padding: 26px 20px; }
    .tour-filter-layout { flex-direction: column; }
    .tour-filter-sidebar { width: 100%; }
    .tpp-day-num { font-size: 28px; }
    .tpp-day-title { font-size: 18px; }
    .tpp-day-collapsed-label { font-size: 24px; }
    .tpp-day-collapsed-title { font-size: 16px; }
    .tpp-ptab { font-size: 14px; width: auto; padding: 14px 12px; }
}
