/* ═══════════════════════════════════════════════════════════
   TOUR PAGE — Compact split-view layout v1
   ═══════════════════════════════════════════════════════════ */

/* ── Grid ──────────────────────────────────────────────── */
.tour-wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100vh;
}

/* ── Image column ──────────────────────────────────────── */
.tour-img-col {
  position: relative;
  overflow: hidden;
}

.tour-img-col::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
  z-index: 1;
}

#tourMainImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 180ms ease;
}

.tour-thumb-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 48px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tour-thumb-strip::-webkit-scrollbar { display: none; }

.tour-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 150ms, opacity 150ms;
  opacity: 0.62;
}
.tour-thumb:hover  { opacity: 0.88; }
.tour-thumb.active { border-color: #b59356; opacity: 1; }

/* ── Info column ───────────────────────────────────────── */
.tour-info-col {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: #0d0d0d;
}

/* ── Head ──────────────────────────────────────────────── */
.tour-info-head {
  padding: 78px 36px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.tour-info-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b59356;
  margin: 0 0 7px;
}

.tour-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: 0.03em;
  color: #f5f0e7;
  margin: 0 0 3px;
  line-height: 1.05;
}

.tour-info-script {
  font-family: 'Satisfy', cursive;
  color: #b59356;
  font-size: 16px;
  margin: 0 0 16px;
  display: block;
}

.tour-info-stats {
  display: flex;
  gap: 0;
}

.tour-info-stat {
  flex: 1;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.tour-info-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.tour-info-stat span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,231,0.36);
  margin-bottom: 4px;
}
.tour-info-stat strong {
  font-size: 13px;
  font-weight: 600;
  color: #f5f0e7;
}

/* ── Tabs nav ──────────────────────────────────────────── */
.tour-tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  padding: 0 36px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tour-tabs-nav::-webkit-scrollbar { display: none; }

.tour-tab-btn {
  padding: 13px 0;
  margin-right: 26px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,231,0.35);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
  flex-shrink: 0;
}
.tour-tab-btn:last-child { margin-right: 0; }
.tour-tab-btn.active { color: #b59356; border-bottom-color: #b59356; }
.tour-tab-btn:hover  { color: rgba(245,240,231,0.7); }

/* ── Tab body (scrollable) ─────────────────────────────── */
.tour-tabs-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 36px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(181,147,86,0.28) transparent;
}
.tour-tabs-body::-webkit-scrollbar { width: 3px; }
.tour-tabs-body::-webkit-scrollbar-thumb { background: rgba(181,147,86,0.28); border-radius: 3px; }

.tour-tab-panel          { display: none; }
.tour-tab-panel.is-active{ display: block; }

/* ── Overview tab ──────────────────────────────────────── */
.tour-hl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
}
.tour-hl-list li {
  font-size: 12.5px;
  color: rgba(245,240,231,0.75);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.tour-hl-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #b59356;
  font-size: 7px;
  top: 4px;
}

.tour-desc p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(245,240,231,0.68);
  margin: 0 0 10px;
}
.tour-desc p:last-child { margin-bottom: 0; }

/* ── Inclusions tab ────────────────────────────────────── */
.tour-incl-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.tour-incl-block { }
.tour-incl-block + .tour-incl-block { }

.tour-incl-block h3 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,231,0.32);
  margin: 0 0 10px;
}
.tour-incl-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tour-incl-block li {
  font-size: 13px;
  color: rgba(245,240,231,0.78);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.tour-incl-block li:last-child { border-bottom: none; }

.tour-incl-block.included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b59356;
  font-size: 11px;
  font-weight: 700;
}
.tour-incl-block.excluded li {
  color: rgba(245,240,231,0.38);
}
.tour-incl-block.excluded li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(245,240,231,0.22);
  font-size: 10px;
}

/* ── Itinerary tab ─────────────────────────────────────── */
.tour-itin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: itin;
}
.tour-itin-list li {
  counter-increment: itin;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(245,240,231,0.78);
  align-items: start;
}
.tour-itin-list li:last-child { border-bottom: none; }
.tour-itin-list li::before {
  content: counter(itin, decimal-leading-zero);
  font-size: 10px;
  font-weight: 700;
  color: #b59356;
  padding-top: 2px;
}

/* ── Details tab ───────────────────────────────────────── */
.tour-details-dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 16px;
  align-items: start;
}
.tour-details-dl dt {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,231,0.36);
  padding-top: 3px;
}
.tour-details-dl dd {
  font-size: 13px;
  color: rgba(245,240,231,0.78);
  margin: 0;
  line-height: 1.62;
}

/* ── Footer / Book Now ─────────────────────────────────── */
.tour-info-foot {
  padding: 14px 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tour-price-hint { flex: 1; }
.tour-price-hint span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,231,0.35);
  margin-bottom: 3px;
}
.tour-price-hint strong {
  font-size: 18px;
  color: #b59356;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — tablet / mobile
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .tour-wrap {
    grid-template-columns: 1fr;
    height: auto;
  }

  .tour-img-col {
    height: 56vw;
    min-height: 260px;
    max-height: 400px;
  }

  .tour-info-col {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .tour-tabs-body {
    overflow: visible;
    height: auto;
    max-height: none;
    padding-bottom: 90px;
  }

  .tour-info-head { padding: 22px 20px 16px; }
  .tour-tabs-nav  { padding: 0 20px; }
  .tour-tabs-body { padding: 18px 20px 90px; }

  .tour-info-foot {
    padding: 12px 20px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 48;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .tour-incl-wrap { grid-template-columns: 1fr; gap: 20px 0; }
  .tour-hl-list   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .tour-info-head { padding: 18px 16px 14px; }
  .tour-tabs-nav  { padding: 0 16px; }
  .tour-tabs-body { padding: 16px 16px 90px; }
  .tour-info-foot { padding: 10px 16px; }
  .tour-details-dl { grid-template-columns: 80px 1fr; }
}

/* ── Shared tab script ─────────────────────────────────── */
/* JS is inlined per-page; this just ensures no FOUC */
.tour-tab-panel { display: none; }
.tour-tab-panel.is-active { display: block; }
