/* TripVina catalog/detail refinement — Phase 3 */
.tv-catalog-list { padding: 52px 0 68px; background: var(--tv-color-surface-alt); }
.tv-catalog-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.tv-catalog-toolbar h2 { margin: 10px 0 0; color: var(--tv-color-heading); font-size: clamp(24px, 3vw, 32px); font-weight: 800; }

.tour-card,
.lt-card { border-color: var(--tv-color-border); border-radius: var(--tv-radius-md); box-shadow: var(--tv-shadow-sm); }
.tour-card:hover,
.lt-card:hover { transform: translateY(-3px); box-shadow: var(--tv-shadow-md); }
.tour-card__img,
.lt-card__img { height: 220px; background: var(--tv-color-surface-alt); }
.tour-card__body,
.lt-card__body { padding: 18px; }
.tour-card__title,
.lt-card__title { min-height: 45px; font-size: 16px; line-height: 1.45; }
.tour-card__title a,
.lt-card__title a { color: var(--tv-color-heading); }
.tour-card__title a:hover,
.lt-card__title a:hover { color: var(--tv-color-primary); }
.tour-card__foot,
.lt-card__foot { min-height: 56px; border-top: 1px solid var(--tv-color-border); }
.tour-card__btn,
.lt-card__btn { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: 999px; background: var(--tv-color-primary); color: #fff; }
.tour-card__btn:hover,
.lt-card__btn:hover { background: var(--tv-color-primary-dark); color: #fff; }
.tour-card__price .curr,
.lt-card__price { color: var(--tv-color-danger); }

.lt-topbar { min-height: 54px; padding: 8px 12px; border: 1px solid var(--tv-color-border); border-radius: var(--tv-radius-md); background: #fff; box-shadow: var(--tv-shadow-sm); }
.lt-sort-select { min-height: 40px; border-color: var(--tv-color-border); border-radius: var(--tv-radius-sm); }
.lt-view-toggle button { width: 40px; height: 40px; }
.lt-filter-panel { top: 94px; border-color: var(--tv-color-border); box-shadow: var(--tv-shadow-sm); }
.lt-filter-mob-btn { min-height: 44px; background: var(--tv-color-primary); }

.tv-empty-state { max-width: 680px; margin: 20px auto; padding: 54px 24px; text-align: center; border: 1px dashed #cbd5e1; border-radius: var(--tv-radius-lg); background: #fff; }
.tv-empty-state__icon { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--tv-color-primary-soft); color: var(--tv-color-primary); font-size: 28px; }
.tv-empty-state h3 { color: var(--tv-color-heading); font-size: 22px; font-weight: 800; }
.tv-empty-state p { margin-bottom: 22px; color: var(--tv-color-muted); }

.td2-nav,
.lt2-nav { top: 78px; z-index: 110; }
.td2-book,
.lt2-side { top: 150px; border-color: var(--tv-color-border); box-shadow: var(--tv-shadow-md); }
.td2-section,
.lt2-section { border-color: var(--tv-color-border); border-radius: var(--tv-radius-md); box-shadow: var(--tv-shadow-sm); }
.td2-gallery__main,
.lt2-gallery__main { border-radius: var(--tv-radius-md); overflow: hidden; background: var(--tv-color-surface-alt); }
.td2-book__cta,
.lt2-side__book-btn { min-height: 46px; display: flex; align-items: center; justify-content: center; border-radius: var(--tv-radius-sm); }

.tv-mobile-booking { display: none; }

@media (max-width: 991px) {
    .tv-catalog-list { padding: 34px 0 56px; }
    .tv-catalog-toolbar { align-items: flex-start; }
    .td2-nav,
    .lt2-nav { top: 68px; }
    .td2-book,
    .lt2-side { position: static; }
}

@media (max-width: 767px) {
    body.has-tv-mobile-booking { padding-bottom: 74px; }
    .tv-catalog-toolbar { display: grid; grid-template-columns: 1fr; margin-bottom: 20px; }
    .tv-catalog-toolbar .tv-btn { width: 100%; }
    .tour-card__img,
    .lt-card__img { height: 205px; }
    .tv-empty-state { padding: 40px 20px; }
    .td2-nav,
    .lt2-nav { top: 68px; overflow-x: auto; }
    .tv-mobile-booking {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9000;
        min-height: 70px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 9px max(14px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        border-top: 1px solid var(--tv-color-border);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 -8px 24px rgba(2, 48, 71, .14);
        backdrop-filter: blur(10px);
    }
    .tv-mobile-booking__price { min-width: 0; line-height: 1.15; }
    .tv-mobile-booking__price small { display: block; margin-bottom: 4px; color: var(--tv-color-muted); font-size: 11px; }
    .tv-mobile-booking__price strong { display: block; overflow: hidden; color: var(--tv-color-danger); font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
    .tv-mobile-booking__button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--tv-color-primary); color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; }
    .tv-mobile-booking__button:disabled { background: #9aa3af; }
}

@media (max-width: 380px) {
    .tv-mobile-booking__button { padding: 10px 14px; font-size: 13px; }
    .tv-mobile-booking__price strong { font-size: 16px; }
}
