.tv-page { background: #f7f5f0; }
.tv-hero {
  padding: 110px 0 56px;
  background: linear-gradient(135deg, #0f1b33 0%, #1a2b4a 55%, #243b66 100%);
  color: #fff;
}
.tv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f3df9a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.tv-hero h1 { color: #fff; max-width: 760px; margin-bottom: 14px; }
.tv-hero-desc { color: rgba(255,255,255,.82); max-width: 680px; margin-bottom: 18px; }
.tv-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tv-pill {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.tv-pill:hover { background: rgba(212, 175, 55, 0.25); border-color: rgba(212, 175, 55, 0.5); }

.tv-section { padding: 48px 0; }
.tv-section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.tv-section-desc { color: #64748b; max-width: 560px; margin: 0; }

.tv-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.tv-cat-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.tv-cat-card i { font-size: 1.5rem; color: #b8860b; }
.tv-cat-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,27,51,.08); }

.tv-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.tv-dest-card {
  border: none;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,27,51,.06);
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.tv-dest-img {
  height: 110px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  background-size: cover;
  background-position: center;
}
.tv-dest-card span { display: block; padding: 10px 12px 0; font-weight: 700; color: #0f172a; }
.tv-dest-card small { display: block; padding: 0 12px 12px; color: #64748b; font-size: 12px; }

.tv-search-section { padding-top: 0; }
.tv-search-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(15,27,51,.08);
  border: 1px solid #e2e8f0;
}
.tv-search-card h3 { margin-bottom: 18px; font-size: 1.2rem; }
.tv-search-form-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.tv-search-field {
  flex: 0 0 auto;
  min-width: 132px;
  max-width: 155px;
}
.tv-search-field-grow {
  flex: 1 1 160px;
  min-width: 160px;
  max-width: 240px;
}
.tv-search-field-btn {
  min-width: auto;
  max-width: none;
}
.tv-search-field label,
.tv-search-label-hidden {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
  display: block;
  white-space: nowrap;
}
.tv-search-label-hidden { visibility: hidden; height: 17px; margin-bottom: 6px; }
.tv-search-field .form-select,
.tv-search-field .form-control {
  font-size: 13px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.tv-search-btn { white-space: nowrap; padding-left: 16px; padding-right: 16px; margin: 0; }
@media (max-width: 991px) {
  .tv-search-form-row { flex-wrap: wrap; overflow-x: visible; }
  .tv-search-field { min-width: calc(50% - 8px); max-width: none; flex: 1 1 calc(50% - 8px); }
  .tv-search-field-grow { flex: 1 1 100%; max-width: none; }
  .tv-search-field-btn { flex: 0 0 auto; }
  .tv-search-label-hidden { display: none; }
}

.tv-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.tv-tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,27,51,.07);
  border: 1px solid #e2e8f0;
  height: 100%;
}
.tv-tour-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.tv-tour-img {
  height: 180px;
  background: linear-gradient(135deg, #1a2b4a, #64748b);
  background-size: cover;
  background-position: center;
}
.tv-tour-body { padding: 16px; }
.tv-tour-scope {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #b8860b;
  margin-bottom: 8px;
}
.tv-tour-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tv-tour-loc, .tv-tour-meta { font-size: 13px; color: #64748b; margin-bottom: 6px; }
.tv-tour-price { font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.tv-tour-cta { font-size: 13px; font-weight: 700; color: #4338ca; }
.tv-empty, .tv-loading { text-align: center; color: #64748b; padding: 32px 0; }
.tv-empty i { font-size: 2rem; display: block; margin-bottom: 10px; color: #94a3b8; }

.tv-cta {
  padding: 56px 0;
  background: linear-gradient(135deg, #0f1b33, #1a2b4a);
  color: #fff;
  text-align: center;
}
.tv-cta h2 { color: #fff; margin-bottom: 10px; }
.tv-cta p { color: rgba(255,255,255,.8); margin-bottom: 18px; }
.tv-cta .btn { margin: 6px; }

.tv-detail-hero { padding: 40px 0 24px; background: #fff; border-bottom: 1px solid #e2e8f0; }
.tv-detail-tag {
  display: inline-block;
  background: rgba(184, 134, 11, 0.12);
  color: #92670a;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tv-detail-location { color: #64748b; }
.tv-detail-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; color: #475569; margin: 12px 0; }
.tv-detail-price { font-size: 1.35rem; font-weight: 800; color: #0f172a; }
.tv-detail-image {
  min-height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2b4a, #64748b);
  background-size: cover;
  background-position: center;
}
.tv-lead { font-size: 1.1rem; color: #334155; }
.tv-prose { color: #475569; line-height: 1.7; white-space: pre-wrap; }
.tv-block-title { margin-top: 28px; margin-bottom: 14px; }
.tv-variants { display: grid; gap: 16px; }
.tv-variant-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  background: #f8fafc;
}
.tv-variant-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.tv-variant-price { color: #0f172a; font-size: 1.05rem; }
.tv-room-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.tv-room-filter-label { font-weight: 700; color: #334155; font-size: 14px; }
.tv-room-filter-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.tv-room-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.tv-room-btn.active { background: #0f172a; border-color: #0f172a; color: #fff; }
.tv-room-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.tv-room-price-cell {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  text-align: center;
}
.tv-room-price-cell.is-active { border-color: #0f172a; box-shadow: 0 0 0 1px #0f172a; }
.tv-room-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: #64748b; margin-bottom: 4px; }
.tv-room-price-value { font-size: 14px; color: #0f172a; }
@media (max-width: 768px) {
  .tv-room-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tv-stays-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.tv-stay-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
}
.tv-stay-card img { width: 100%; height: 90px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.tv-side-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  position: sticky;
  top: 100px;
}
.tv-side-list { padding-left: 18px; color: #475569; font-size: 14px; }
.tv-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tv-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .tv-hero { padding-top: 92px; }
  .tv-side-card { position: static; }
}
