﻿/* ═══════════════════════════════════════════════════════
   Tour List Page
   ═══════════════════════════════════════════════════════ */

.tours-list { display: grid; gap: 14px; }

/* ══════════════════════════════════════════════════════════
   TOUR CARD — 3-column: Image / Content / Price
   Palette: warm neutrals + brand red sparsely
   ══════════════════════════════════════════════════════════ */

.tour-card {
    display: flex !important;
    flex-direction: row !important;
    border: 1px solid #E8E4DF !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 3px rgba(28,18,10,.04) !important;
    cursor: pointer;
    transition: box-shadow .28s ease, transform .22s ease, border-color .22s ease;
    overflow: hidden !important;
    position: relative !important;
    width: 100%;
    min-height: 220px;
}
.tour-card:hover {
    box-shadow: 0 10px 40px rgba(28,18,10,.1) !important;
    border-color: #D4CFC9 !important;
}
.tour-card.tc-hidden { display: none !important; }

/* ─── Görsel Paneli ─── */
.tc-img-panel {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background: #EDE8E3;
    align-self: stretch;
    /* Görselin layout akışını etkilememesi için min-height sabitleniyor */
    min-height: 180px;
}
.tc-img-panel img {
    /* Absolutely positioned: kartın yüksekliğini asla etkilemez */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.tour-card:hover .tc-img-panel img { transform: scale(1.05); }

.tc-img-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,18,10,.22) 0%, transparent 48%);
    pointer-events: none;
}

.tc-overlays-tl {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.tc-type-pill {
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: rgba(255,254,249,.9);
    color: #44403C;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.tc-campaign-badge-img,
.tc-campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 99px;
    letter-spacing: .04em;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.tc-fav-btn {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 5;
}
.tour-card-discount {
    position: absolute;
    bottom: 12px; left: 0;
    z-index: 5;
    background: #57534E;
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    padding: 4px 12px 4px 10px;
    border-radius: 0 4px 4px 0;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ─── Orta: Ana İçerik ─── */
.tc-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 20px 22px;
}

.tc-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
}
.tc-type-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #78716C;
}
.tc-header-sep {
    width: 1px; height: 10px;
    background: #D4CFC9;
}
.tc-urgency-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #C05621;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.tc-urgency-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #BA1B21;
    flex-shrink: 0;
    animation: urgPulse 2.2s infinite;
}
@keyframes urgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.8); }
}

.tc-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1C1917;
    letter-spacing: -.02em;
    line-height: 1.35;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tc-desc {
    font-size: .875rem;
    color: #78716C;
    line-height: 1.6;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tc-divider { height: 1px; background: #F0EDE8; margin-bottom: 10px; }

.tc-info-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 6px;
}
.tc-info-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    color: #44403C;
    font-weight: 500;
    white-space: nowrap;
}
.tc-info-item i { font-size: .78rem; color: #78716C; }
.tc-info-sep {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #D4CFC9;
    margin: 0 10px;
    flex-shrink: 0;
}

.tc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 8px;
}
.tc-tag {
    font-size: .68rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 99px;
    letter-spacing: .01em;
    transition: background .14s, border-color .14s, color .14s;
}
.tc-tag:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}
.tc-tag-more {
    font-size: .68rem;
    font-weight: 600;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    transition: background .14s;
}
.tc-tag-more:hover { background: #f1f5f9; color: #64748b; }
/* tooltip is rendered via JS into body to escape overflow:hidden */
#tc-tag-tooltip {
    position: fixed;
    background: #292524;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: .66rem;
    z-index: 9999;
    white-space: pre;
    line-height: 1.6;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    min-width: 90px;
    text-align: left;
    pointer-events: none;
    display: none;
}

/* ─── Sağ: Fiyat & CTA Kolonu ─── */
.tc-right {
    display: flex;
    flex-direction: column;
    width: 168px;
    flex-shrink: 0;
    padding: 20px 18px;
    border-left: 1px solid #EDE8E2;
    background: #FAF8F4;
    align-items: flex-start;
}

/* Kampanya badge'leri sağ kolonda — artık görselde gösteriliyor, burada gizli */
.tc-right-badges { display: none; }
.tc-right-badge  { display: none; }

/* İndirim bilgisi */
.tc-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 700;
    color: #C05621;
    background: #FFF8F0;
    border: 1px solid #FDDCB5;
    padding: 4px 9px;
    border-radius: 4px;
}

/* Fiyat bloğu */
.tc-orig-price {
    font-size: .72rem;
    color: #A8A29E;
    text-decoration: line-through;
    line-height: 1;
}
.tc-price-from-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.tc-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
    width: 100%;
}
.tc-price-from {
    font-size: .68rem;
    color: #A8A29E;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
    margin-top: 1px;
}
.tc-price-amount {
    font-size: 1.18rem;
    font-weight: 800;
    color: #BA1B21;
    letter-spacing: -.03em;
    line-height: 1.1;
    white-space: nowrap;
}
/* Taksit rozeti — fiyatın hemen altında, fiyatla yarışmayan ağırlıkta.
   Metin yalnız "N taksite kadar"dır; tutar YAZILMAZ (bkz. InstallmentDisplay). */
.tc-installment {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 600;
    color: #57534E;
    background: #F5F5F4;
    border: 1px solid #E7E5E4;
    border-radius: 999px;
    padding: 2px 8px;
    margin-top: 4px;
    width: fit-content;
    white-space: nowrap;
    line-height: 1.5;
}
.tc-installment i { font-size: .72rem; opacity: .75; }

.tc-price-note {
    font-size: .72rem;
    color: #A8A29E;
    margin-top: 3px;
    line-height: 1.4;
}
.tc-price-amount.price-nodata,
.tc-mob-amount.price-nodata {
    font-size: .8rem;
    font-weight: 600;
    color: #A8A29E;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.3;
}

/* CTA butonu */
.tc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: .82rem;
    font-weight: 600;
    color: #1C1917;
    background: transparent;
    border: 1.5px solid #D4CFC9;
    padding: 10px 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
    font-family: inherit;
    margin-top: 14px;
    white-space: nowrap;
}
.tc-cta:hover {
    border-color: #1C1917;
    background: #1C1917;
    color: #FFFEF9;
}
.tc-cta i {
    font-size: .78rem;
    transition: transform .2s ease;
    flex-shrink: 0;
}
.tc-cta:hover i { transform: translateX(3px); }

/* Drawer açıkken filter-col görünür olmalı
   (display:none parent, fixed child'ı da gizler) */
body.filter-drawer-open .filter-col {
    display: block !important;
}

/* ══════════════════════════════════════════
   TABLET (≤900px): sağ panel gizle, footer göster
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .tc-right { display: none; }
    .tc-content { padding-bottom: 0; }
    .tc-mobile-footer { display: flex !important; }
}
@media (min-width: 901px) {
    .tc-mobile-footer { display: none !important; }
    .mob-quick-strip   { display: none !important; }
}

/* ══════════════════════════════════════════
   TABLET PORTRE (768–991): filtre inline sidebar yerine
   çekmece (drawer) + tam genişlik sonuç listesi.
   iPad portre'de 168px'e sıkışan filtre sorununu çözer.
   ══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .filter-col { display: none !important; }          /* inline sidebar gizle */
    body.filter-drawer-open .filter-col { display: block !important; }
    .mob-quick-strip { display: flex !important; }      /* sticky filtre tetikleyici şerit */
    #filterSidebar {
        position: fixed !important; top: 0; left: 0; bottom: 0;
        width: min(70vw, 360px); z-index: 1050; max-height: 100vh; overflow-y: auto;
        border-radius: 0 20px 20px 0 !important;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        box-shadow: 16px 0 56px rgba(0,0,0,.16);
    }
    #filterSidebar.drawer-open { transform: translateX(0); }
    .fsb-mobile-close { display: flex !important; }     /* çekmece kapat butonu */
    .mobile-filter-btn { display: none !important; }    /* çift tetikleyiciyi engelle */

    /* Hızlı filtre şeridi: tam-genişlik bleed + gölge kaldırıldı; kart kolonuyla
       birebir hizalı (satır px-4 girintisi = 24px). Temiz toolbar görünümü. */
    #mobQuickStrip.mob-quick-strip {
        margin-left: 24px; margin-right: 24px;
        padding-left: 0 !important; padding-right: 0 !important;
        box-shadow: none;
        background: #fff;
        -webkit-backdrop-filter: none; backdrop-filter: none;
        border-bottom: 1px solid #ECE7E1;
    }

    /* Tur kartı: tablet portre'de daha derli toplu, profesyonel oran */
    .tour-card { min-height: 200px; }
    .tc-img-panel { width: 236px; }
    .tc-content { padding: 16px 18px 0; }
    .tc-title { font-size: 1.04rem; margin-bottom: 5px; }
    .tc-desc { margin-bottom: 10px; }
    .tc-divider { margin-bottom: 9px; }
    .tc-tags { display: none; }                          /* ikincil çip kalabalığını azalt */
    .tc-nearest-date { margin-top: 6px; }
    .tc-mobile-footer { padding: 14px 0 16px; }          /* içerik kenarıyla hizalı */
}

/* ── Mobile footer elemanları ── */
.tc-mobile-footer {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 18px;
    margin-top: auto;
    border-top: 1px solid #F0EDE8;
}
.tc-mob-price { display: flex; flex-direction: column; gap: 1px; }
.tc-mob-from  { font-size: .6rem; color: #A8A29E; font-weight: 500; letter-spacing: .02em; }
.tc-mob-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #BA1B21;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.tc-mob-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #BA1B21;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-size: .86rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s, transform .12s;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .01em;
}
.tc-mob-cta:hover  { background: #9e1519; }
.tc-mob-cta:active { transform: scale(.96); }
.tc-mob-cta i      { font-size: 1.15rem; }

/* ── Mobil hızlı filtre şeridi ── */
.mob-quick-strip {
    display: none;
    align-items: center;
    gap: 0;
    padding: 10px 0 12px;
    overflow: hidden;
    /* Sticky: top değeri JS tarafından navbar yüksekliğine göre set edilir */
    position: sticky;
    top: 0;   /* JS override eder */
    z-index: 400;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 2px 12px rgba(28,18,10,.06);
}
.mob-filter-open {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1C1917;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 14px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .18s;
    position: relative;
}
.mob-filter-open:active { background: #292524; }
.mob-filter-open i { font-size: .9rem; }
.mob-filter-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #BA1B21;
    color: #fff;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 800;
    width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #fff;
}
.mob-strip-divider {
    width: 1px;
    height: 24px;
    background: #E8E4DF;
    margin: 0 10px;
    flex-shrink: 0;
}
.mob-strip-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    flex: 1;
}
.mob-strip-scroll::-webkit-scrollbar { display: none; }
.mob-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: #44403C;
    border: 1.5px solid #E0DBD5;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, border-color .15s, color .15s;
}
.mob-chip i { font-size: .78rem; }
.mob-chip.active {
    background: #BA1B21;
    border-color: #BA1B21;
    color: #fff;
}
.mob-chip:active { transform: scale(.96); }
.mob-chip-cnt {
    font-size: .65rem;
    font-weight: 700;
    opacity: .65;
    margin-left: 2px;
}
.mob-chip-empty {
    opacity: .38;
    pointer-events: none;
}

/* ══════════════════════════════════════════
   PHONE (≤767px) — PREMIUM MOBIL DENEYIM
   ══════════════════════════════════════════ */
@media (max-width: 767px) {

    /* ── Filter drawer ── */
    .filter-col { display: none !important; }
    .mobile-filter-btn { display: none; }
    .mob-quick-strip { display: flex; }
    #filterSidebar {
        position: fixed !important; top: 0; left: 0; bottom: 0;
        width: min(88vw, 340px); z-index: 1050; max-height: 100vh;
        border-radius: 0 20px 20px 0 !important;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        box-shadow: 16px 0 56px rgba(0,0,0,.16);
    }
    #filterSidebar.drawer-open { transform: translateX(0); }
    .fsb-mobile-close { display: flex !important; }

    /* ── Liste boşluğu ── */
    .tours-list { gap: 16px; }

    /* ════════════════════════════════════════════
       PREMIUM KART — Temiz, tutarlı, güven veren
    ════════════════════════════════════════════ */
    .tour-card {
        flex-direction: column !important;
        height: auto;
        border: 1px solid #ede8e3 !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(15,10,5,.06), 0 8px 24px rgba(15,10,5,.05) !important;
        overflow: hidden !important;
        transition: box-shadow .25s ease !important;
    }
    .tour-card:active {
        box-shadow: 0 1px 4px rgba(15,10,5,.05) !important;
    }

    /* ── Görsel ── */
    .tc-img-panel {
        width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
        min-height: unset !important;
        align-self: auto !important;
        border-radius: 0;
        overflow: hidden;
        flex-shrink: 0;
    }
    .tc-img-panel::after {
        background: linear-gradient(
            to top,
            rgba(10,6,3,.50) 0%,
            rgba(10,6,3,.10) 40%,
            transparent 70%
        ) !important;
    }
    .tc-img-panel img {
        transition: none !important; /* transform yok — flicker engeli */
    }

    /* ── Görsel üstü elementler ── */
    .tc-overlays-tl { top: 10px; left: 10px; gap: 4px; }
    .tc-campaign-badge, .tc-campaign-badge-img {
        font-size: .62rem;
        padding: 4px 10px;
        border-radius: 6px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        letter-spacing: .02em;
    }
    /* Görsel üstündeki tur tipi chip'i — gizle, içerikte göster */
    .tc-type-pill { display: none !important; }
    .tc-fav-btn {
        top: 10px; right: 10px;
        width: 34px; height: 34px;
        background: rgba(255,255,255,.88) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    /* ── İçerik alanı ── */
    .tc-content { padding: 16px 16px 0; }

    /* Tür + aciliyet satırı */
    .tc-header-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 7px;
    }
    .tc-type-label {
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: #78716c;
        padding: 0;
        background: none;
        border-radius: 0;
    }
    .tc-header-sep {
        width: 3px; height: 3px;
        background: #c7c3be;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .tc-urgency-label {
        font-size: .62rem;
        font-weight: 600;
        color: #b45309;
        background: none;
        padding: 0;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .tc-urgency-dot {
        width: 5px; height: 5px;
        background: #ef4444;
        border-radius: 50%;
        flex-shrink: 0;
        animation: urgPulse 2.2s infinite;
    }

    /* Başlık */
    .tc-title {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.3;
        color: #1c1210;
        letter-spacing: -.01em;
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
    }

    /* Açıklama: gizle */
    .tc-desc { display: none !important; }

    /* Ayırıcı */
    .tc-divider { margin-bottom: 8px; border-color: #f0ece8; }

    /* Info satırı */
    .tc-info-row {
        margin-bottom: 6px;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 0;
    }
    .tc-info-item {
        font-size: .78rem;
        color: #78716c;
        display: flex;
        align-items: center;
        gap: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 50%;
    }
    .tc-info-item i { color: #a8a29e; font-size: .8rem; flex-shrink: 0; }
    .tc-info-sep {
        width: 1px; height: 11px;
        background: #e2ddd8;
        margin: 0 8px;
        flex-shrink: 0;
    }

    /* Tarih */
    .tc-nearest-date {
        font-size: .72rem;
        font-weight: 600;
        color: #57534e;
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .tc-nearest-date i { color: #a8a29e; }

    /* Etiketler: gizle */
    .tc-tags { display: none !important; }

    /* ── Footer ── */
    .tc-mobile-footer {
        padding: 12px 16px 16px;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px;
        border-top: 1px solid #f0ece8;
        margin-top: 10px;
    }

    /* Fiyat */
    .tc-mob-price { flex: 1; display: flex; flex-direction: column; gap: 0; }
    .tc-orig-price { font-size: .7rem; color: #a8a29e; text-decoration: line-through; }
    .tc-price-from-row { display: flex; align-items: baseline; gap: 4px; }
    .tc-mob-amount {
        font-size: 1.35rem;
        font-weight: 800;
        color: #1c1210;
        letter-spacing: -.03em;
        line-height: 1;
    }
    .tc-mob-from { font-size: .65rem; color: #a8a29e; white-space: nowrap; }

    /* CTA */
    .tc-mob-cta {
        flex-shrink: 0;
        padding: 11px 20px;
        font-size: .86rem;
        font-weight: 700;
        border-radius: 12px;
        background: #BA1B21 !important;
        color: #fff !important;
        gap: 5px;
        letter-spacing: .01em;
        transition: background .15s;
        white-space: nowrap;
    }
    .tc-mob-cta:hover  { background: #9e1519 !important; }
    .tc-mob-cta:active { opacity: .9; transform: none; }
    .tc-mob-cta i { font-size: 1rem; }

    /* ── Pagination ── */
    #paginationNav .page-item .page-link {
        padding: 8px 11px;
        font-size: .78rem;
        min-width: 34px;
    }

    /* ── No results ── */
    .no-tours { padding: 40px 20px; }
    .explore-btn { font-size: .82rem; padding: 10px 18px; }
}

/* ══════════════════════════════════════════
   FILTER & UI
   ══════════════════════════════════════════ */

.mobile-filter-btn {
    display: none; align-items: center; justify-content: center; gap: 8px;
    background: #FFFEF9; border: 1px solid #E8E4DF; border-radius: 8px;
    padding: 11px 16px; font-size: .83rem; font-weight: 600; color: #57534E;
    cursor: pointer; width: 100%; margin-bottom: 12px;
    transition: border-color .2s, color .2s; font-family: inherit;
}
.mobile-filter-btn:hover { border-color: #57534E; color: #1C1917; }

.mobile-filter-count {
    background: #BA1B21; color: #fff; border-radius: 999px;
    font-size: .65rem; font-weight: 700; padding: 1px 7px;
    min-width: 20px; text-align: center; display: none;
}
.mobile-filter-count.show { display: inline-block; }

.filter-drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(28,18,10,.4); z-index: 1049;
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.filter-drawer-overlay.show { display: block; animation: overlayIn .22s ease; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.fsb-mobile-close {
    display: none; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; background: #F5F2EE;
    border: 1px solid #E8E4DF; color: #57534E; cursor: pointer;
    font-size: 12px; flex-shrink: 0; transition: all .2s;
}
.fsb-mobile-close:hover { background: #1C1917; border-color: #1C1917; color: #fff; }

#paginationNav .pagination { gap: 4px; flex-wrap: wrap; }
#paginationNav .page-item .page-link {
    border-radius: 8px !important; border: 1px solid #E8E4DF;
    color: #57534E; font-weight: 600; font-size: .82rem;
    padding: 7px 14px; transition: all .2s; background: #FFFEF9;
    min-width: 36px; text-align: center;
}
#paginationNav .page-item .page-link:hover { border-color: #78716C; color: #1C1917; background: #F5F2EE; }
#paginationNav .page-item.active .page-link { background: #1C1917; border-color: #1C1917; color: #fff; }
#paginationNav .page-item.disabled .page-link { opacity: .35; pointer-events: none; }

.no-tours {
    text-align: center; padding: 48px 32px; background: #FAF8F4;
    border-radius: 12px; border: 1px solid #E8E4DF;
    margin-top: 20px; animation: fadeIn .5s ease;
}
.empty-image { width: 80px; height: auto; margin-bottom: 16px; opacity: .4; filter: sepia(.3); }
.explore-btn {
    background: #1C1917; color: #FFFEF9; padding: 11px 22px;
    border-radius: 8px; border: none; cursor: pointer;
    font-size: .85rem; font-weight: 600;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: 7px;
}
.explore-btn:hover { background: #292524; transform: translateY(-1px); }


@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
