:root {
  --tbt-bg: #f7f4ef;
  --tbt-ink: #111111;
  --tbt-primary: #1479b8;
  --tbt-accent: #365c6c;
  --tbt-secondary: #e6ded2;
  /*--tbt-muted: #6b7a84;*/
  --tbt-muted: #4d5254;
  --tbt-border: #e0dbd3;
  --tbt-card: #ffffff;
  --tbt-amber: #d97706;
  --tbt-serif: "Cormorant Garamond", Georgia, serif;
  --tbt-sans: "Inter", Arial, sans-serif;
}

body.single-tbt_tour,
body.tbt-tour-show {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.tbt-v0-tour * {
  box-sizing: border-box;
}

.tbt-v0-tour {
  background: var(--tbt-bg);
}

.tbt-v0-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.tbt-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.tbt-v0-label {
  margin: 0 0 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  /* color: var(--tbt-muted); */
  color: var(--tbt-primary);
  font-weight: 500;
}

.tbt-v0-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tbt-v0-breadcrumb a,
.tbt-v0-breadcrumb em,
.tbt-v0-breadcrumb span {
  font-family: var(--tbt-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--tbt-muted);
  text-decoration: none;
}

.tbt-v0-breadcrumb span {
  opacity: 0.4;
}

.tbt-v0-breadcrumb a:hover {
  color: var(--tbt-ink);
}

.tbt-v0-hero {
  padding: 40px 0 0;
}

.tbt-v0-hero__text {
  padding-bottom: 28px;
}

.tbt-v0-hero__title {
  /* max-width: 768px; */
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--tbt-ink);
  text-wrap: balance;
}

/* Subtitle moved out of <h1> for SEO + a11y; sits as a paragraph
   under the title with the same visual weight as the old span. */
.tbt-v0-hero__subtitle {
  max-width: 768px;
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--tbt-ink);
  text-wrap: balance;
}

/* Legacy: in case the old span markup lingers on cached pages. */
.tbt-v0-hero__title span {
  display: block;
  font: inherit;
}

.tbt-v0-hero__hook {
  /* max-width: 672px; */
  margin: 0;
  font-family: var(--tbt-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--tbt-muted);
  line-height: 1.6;
}

.tbt-v0-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 62vh;
  min-height: 380px;
  gap: 6px;
}

.tbt-v0-gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.tbt-v0-gallery__item.is-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.tbt-v0-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tbt-v0-gallery__item:hover img {
  transform: scale(1.025);
}

.tbt-v0-gallery__chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.58);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tbt-v0-gallery__chip svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.tbt-v0-gallery__chip rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.tbt-v0-gallery__chip:hover {
  background: rgba(17, 17, 17, 0.72);
}

.tbt-v0-gallery__chip span {
  display: inline-flex;
  align-items: center;
}

.tbt-v0-facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-v0-facts__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 10px; /* Metin ile çizgi arasında 10px boşluk */
  box-shadow: inset 0 -1px 0 var(--tbt-primary);
}

.tbt-v0-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tbt-ink);
  font-size: 13px;
  font-weight: 300;
}

.tbt-v0-fact svg {
  color: var(--tbt-muted);
  width: 13px;
  height: 13px;
}

.tbt-v0-fact strong {
  display: inline-block;
  padding-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  font-weight: 900;
}

.tbt-v0-fact b {
  font-weight: 500;
}

.tbt-v0-facts__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tbt-v0-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--tbt-border);
  background: transparent;
  color: var(--tbt-ink);
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 200ms ease;
  border-radius: 2px;
}

.tbt-v0-btn--primary {
  background: var(--tbt-primary);
  border-color: var(--tbt-primary);
  color: #fff;
}

.tbt-v0-btn--primary:hover {
  background: var(--tbt-accent);
  border-color: var(--tbt-accent);
  color: #fff;
}

.tbt-v0-btn--secondary:hover {
  background: var(--tbt-secondary);
}

.tbt-v0-btn--dark {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.tbt-v0-btn--dark:hover {
  border-color: #fff;
}

.tbt-v0-btn--full {
  width: 100%;
}

.tbt-v0-btn--small {
  min-height: 38px;
  padding: 10px 20px;
}

.tbt-v0-trust {
  background: #fff;
  border-bottom: 1px solid var(--tbt-border);
}

/* Tour-page hero trust strip — matches homepage / destinations strips
   for visual consistency: 4-column grid with a small primary-color
   bullet (::before) instead of inline text separators. */
.tbt-v0-trust__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.tbt-v0-trust__inner span {
  position: relative;
  padding-left: 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  white-space: nowrap;
}

.tbt-v0-trust__inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--tbt-primary);
}

@media (max-width: 900px) {
  .tbt-v0-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
    gap: 14px 24px;
  }
  .tbt-v0-trust__inner span { white-space: normal; }
}

@media (max-width: 540px) {
  .tbt-v0-trust__inner { grid-template-columns: 1fr; }
}

.tbt-v0-nav {
  position: sticky;
  top: 57px;
  z-index: 39;
  background: #fff;
  border-bottom: 1px solid var(--tbt-border);
  display: none;
}

.tbt-v0-nav.is-visible,
.tbt-v0-nav[aria-hidden="false"] {
  display: block;
}

.tbt-v0-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.tbt-v0-nav__inner::-webkit-scrollbar {
  display: none;
}

.tbt-v0-nav a {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--tbt-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-nav a:hover,
.tbt-v0-nav a.is-active {
  color: var(--tbt-ink);
  border-bottom-color: var(--tbt-primary);
}

.tbt-v0-nav__book {
  margin-left: auto;
  background: var(--tbt-primary);
  color: #fff !important;
  border-bottom: 0 !important;
  padding: 12px 22px !important;
}

.tbt-v0-nav__book:hover {
  background: var(--tbt-accent);
}

.tbt-v0-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  padding-top: 20px;
}

.tbt-v0-section {
  padding: 20px 0;
  border-top: 1px solid var(--tbt-border);
  scroll-margin-top: 110px;
}

.tbt-v0-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.tbt-v0-section__title {
  max-width: 576px;
  margin: 0 0 10px;
  font-family: var(--tbt-serif);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--tbt-ink);
  text-wrap: balance;
}

.tbt-v0-intro,
.tbt-v0-body p {
  margin: 0 0 8px;
  color: var(--tbt-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.tbt-v0-body {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tbt-v0-body > :last-child {
  margin-bottom: 0;
}

.tbt-v0-body img,
.tbt-v0-body video,
.tbt-v0-body iframe,
.tbt-v0-body table {
  max-width: 100%;
}

.tbt-v0-body img,
.tbt-v0-body video,
.tbt-v0-body iframe {
  height: auto;
}

.tbt-v0-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.tbt-v0-why {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--tbt-border);
}

.tbt-v0-why__card {
  background: var(--tbt-bg);
  padding: 10px;
  transition: background 200ms ease;
}

.tbt-v0-why__card:hover {
  background: var(--tbt-secondary);
}

.tbt-v0-why__card span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--tbt-serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  color: var(--tbt-border);
}

.tbt-v0-why__card:hover span {
  color: var(--tbt-primary);
}

.tbt-v0-why__card h3 {
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
}

.tbt-v0-why__card p {
  margin: 0;
  color: var(--tbt-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.tbt-v0-route {
  position: relative;
  display: flex;
  margin-top: 56px;
}

.tbt-v0-route::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--tbt-border) 0, var(--tbt-border) 6px, transparent 6px, transparent 14px);
}

.tbt-v0-route__stop {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-right: 16px;
}

.tbt-v0-route__dot {
  width: 28px;
  height: 28px;
  border: 2px solid var(--tbt-primary);
  border-radius: 50%;
  background: var(--tbt-bg);
  color: var(--tbt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 600;
}

.tbt-v0-route__stop strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--tbt-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
}

.tbt-v0-route__stop span {
  display: block;
  margin-bottom: 8px;
  color: var(--tbt-primary);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-route__stop p {
  margin: 0;
  color: var(--tbt-muted);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 300;
}

.tbt-v0-route-note {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--tbt-border);
  max-width: 576px;
  color: var(--tbt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tbt-v0-snapshot {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tbt-v0-snapshot__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--tbt-border);
  padding: 24px;
  transition: border-color 200ms ease;
}

.tbt-v0-snapshot__card:hover {
  border-color: rgba(20,121,184,0.4);
}

.tbt-v0-snapshot__icon {
  width: 36px;
  height: 36px;
  background: var(--tbt-secondary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbt-primary);
  flex: 0 0 auto;
}

.tbt-v0-snapshot__icon svg {
  width: 16px;
  height: 16px;
}

.tbt-v0-snapshot__card em {
  display: block;
  margin-bottom: 4px;
  font-style: normal;
  color: var(--tbt-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbt-v0-snapshot__card strong {
  display: block;
  color: var(--tbt-ink);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.tbt-v0-feature-stay {
  margin-top: 10px;
}

.tbt-v0-feature-stay__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--tbt-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.tbt-v0-feature-stay__media {
  position: relative;
  min-width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(214, 199, 176, 0.35), rgba(180, 201, 215, 0.22));
}

.tbt-v0-feature-stay__carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.tbt-v0-feature-stay__viewport {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}

.tbt-v0-feature-stay__viewport::-webkit-scrollbar {
  display: none;
}

.tbt-v0-feature-stay__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.tbt-v0-feature-stay__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  background: linear-gradient(135deg, rgba(214, 199, 176, 0.35), rgba(180, 201, 215, 0.22));
}

.tbt-v0-feature-stay__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tbt-v0-feature-stay__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 17, 0.45);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 38%),
    linear-gradient(135deg, rgba(209, 196, 178, 0.8), rgba(232, 227, 220, 0.9));
}

.tbt-v0-feature-stay__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 233, 186, 0.92);
  color: #3b3427;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tbt-v0-feature-stay__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -20px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tbt-ink);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.tbt-v0-feature-stay__nav:hover {
  background: #fff;
}

.tbt-v0-feature-stay__nav--prev {
  left: 10px;
}

.tbt-v0-feature-stay__nav--next {
  right: 10px;
}

.tbt-v0-feature-stay__nav:disabled {
  cursor: default;
}

.tbt-v0-feature-stay__badge .tbt-icon {
  width: 14px;
  height: 14px;
}

.tbt-v0-feature-stay__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.tbt-v0-feature-stay__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.12);
}

.tbt-v0-feature-stay__dots span.is-active {
  background: #fff;
}

.tbt-v0-feature-stay__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px 28px;
  background: #2f2b36;
  color: #f7f3ee;
  overflow: hidden;
}

.tbt-v0-feature-stay__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbt-v0-feature-stay__title {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tbt-v0-feature-stay__chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
}

.tbt-v0-feature-stay__copy {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.tbt-v0-feature-stay__copy p {
  margin: 0;
}

.tbt-v0-experience {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  gap: 10px;
}

.tbt-v0-experience__side ul {
  margin: 28px 0 0;
  padding: 24px 0 0 18px;
  border-top: 1px solid var(--tbt-border);
  color: var(--tbt-muted);
  font-size: 13px;
  line-height: 1.6;
}

.tbt-v0-experience__side li {
  margin-bottom: 12px;
}

.tbt-v0-quote {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--tbt-primary);
}

.tbt-v0-quote p {
  margin: 0 0 18px;
  font-family: var(--tbt-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--tbt-ink);
}

.tbt-v0-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-v0-itinerary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}

.tbt-v0-expand-all {
  border: 1px solid rgba(20,121,184,0.4);
  background: transparent;
  color: var(--tbt-primary);
  font-family: var(--tbt-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
}

.tbt-v0-expand-all:hover {
  border-color: rgba(54,92,108,0.4);
  color: var(--tbt-accent);
}

.tbt-v0-itinerary-groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tbt-v0-itinerary-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tbt-v0-itinerary-group__head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tbt-primary);
}

.tbt-v0-itinerary-group.is-slate .tbt-v0-itinerary-group__head span {
  background: var(--tbt-accent);
}

.tbt-v0-itinerary-group.is-ink .tbt-v0-itinerary-group__head span {
  background: var(--tbt-ink);
}

.tbt-v0-itinerary-group__head strong,
.tbt-v0-itinerary-group__head em {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

.tbt-v0-itinerary-group__head strong {
  font-weight: 500;
}

.tbt-v0-itinerary-group__head em {
  color: var(--tbt-muted);
}

.tbt-v0-itinerary-group__head i {
  height: 1px;
  flex: 1;
  background: var(--tbt-border);
}

.tbt-v0-accordion__item {
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-v0-accordion__item:hover {
  background: rgba(255,255,255,0.6);
}

.tbt-v0-accordion__head {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: baseline;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
}

.tbt-v0-accordion__day {
  width: 64px;
  flex-shrink: 0;
  color: var(--tbt-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 10px;
}

.tbt-v0-accordion__title {
  flex-shrink: 0;
  font-family: var(--tbt-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.tbt-v0-accordion__hook {
  margin-left: 16px;
  color: var(--tbt-primary);
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tbt-v0-accordion__chev {
  margin-left: auto;
  color: var(--tbt-muted);
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.tbt-v0-accordion__item.is-open {
  background: #fff;
}

.tbt-v0-accordion__item.is-open .tbt-v0-accordion__chev {
  transform: rotate(180deg);
}

.tbt-v0-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}

.tbt-v0-accordion__item.is-open .tbt-v0-accordion__content {
  max-height: 900px;
}

.tbt-v0-accordion__inner {
  padding: 0 0 32px 64px;
  display: grid;
  grid-template-columns: 10fr;
  gap: 32px;
}

.tbt-v0-day-hook {
  font-family: var(--tbt-serif) !important;
  font-size: 17px !important;
  font-style: italic;
  color: var(--tbt-primary) !important;
  font-weight: 300;
  line-height: 1.4 !important;
}

.tbt-v0-accordion__copy p {
  margin: 0 0 16px;
  color: var(--tbt-muted);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 300;
}

.tbt-v0-accordion__image {
  max-height: 280px;
  overflow: hidden;
}

.tbt-v0-accordion__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbt-v0-day-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--tbt-border);
}

.tbt-v0-day-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--tbt-muted);
  font-size: 12px;
}

.tbt-v0-day-meta strong {
  color: var(--tbt-ink);
  font-weight: 500;
}

.tbt-v0-itinerary-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--tbt-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.tbt-v0-itinerary-footer p {
  max-width: 448px;
  margin: 0;
  color: var(--tbt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tbt-v0-mid-cta {
  margin: 0 0 80px;
  padding: 40px;
  background: var(--tbt-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tbt-v0-mid-cta h2 {
  margin: 0 0 8px;
  font-family: var(--tbt-serif);
  font-size: 28px;
  font-weight: 300;
}

.tbt-v0-mid-cta p {
  margin: 0;
  color: var(--tbt-muted);
  font-size: 14px;
}

.tbt-v0-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.tbt-v0-inclusions h3 {
  margin: 0 0 24px;
  color: var(--tbt-primary);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-inclusions .is-excluded h3 {
  color: var(--tbt-red);
}

.tbt-v0-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tbt-v0-inclusions li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: var(--tbt-ink);
  font-size: 14px;
  line-height: 1.6;
}

.tbt-v0-inclusions li svg {
  color: var(--tbt-primary);
  width: 14px;
  height: 14px;
  margin-top: 4px;
}

.tbt-v0-inclusions .is-excluded li {
  color: var(--tbt-muted);
}

.tbt-v0-inclusions .is-excluded li svg {
  color: var(--tbt-red);
}

.tbt-v0-before-book__intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.tbt-v0-before-book__panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  border: 1px solid var(--tbt-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.tbt-v0-before-book__nav {
  display: flex;
  flex-direction: column;
  background: #f9f7f3;
}

.tbt-v0-before-book__tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid rgba(224, 219, 211, 0.8);
  background: transparent;
  color: var(--tbt-ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tbt-v0-before-book__tab:last-child {
  border-bottom: 0;
}

.tbt-v0-before-book__tab span {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  padding-top: 3px;
}

.tbt-v0-before-book__tab strong {
  display: block;
  font-family: var(--tbt-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.tbt-v0-before-book__tab:hover {
  background: rgba(20, 121, 184, 0.05);
}

.tbt-v0-before-book__tab.is-active {
  background: #fff;
  color: var(--tbt-primary);
  box-shadow: inset 3px 0 0 var(--tbt-primary);
}

.tbt-v0-before-book__tab.is-active span {
  color: var(--tbt-primary);
}

.tbt-v0-before-book__content {
  padding: 30px;
  background: #fff;
}

.tbt-v0-before-book__content-card {
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 6px 6px 6px 0;
}

.tbt-v0-before-book__eyebrow {
  margin: 0 0 10px;
  color: var(--tbt-primary);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-before-book__content-card h3 {
  margin: 0 0 16px;
  font-family: var(--tbt-serif);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--tbt-ink);
}

.tbt-v0-before-book__copy {
  max-width: 640px;
  color: var(--tbt-muted);
  font-size: 16px;
  line-height: 1.8;
  white-space: normal;
}

.tbt-v0-before-book__copy p {
  margin: 0;
  margin-bottom: 20px;
}

.tbt-v0-dates-section {
  background: #fff;
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.tbt-v0-pricing-head {
  max-width: 760px;
}

.tbt-v0-pricing-intro {
  margin: 16px 0 0;
  color: var(--tbt-muted);
  font-size: 15px;
  line-height: 1.8;
}

.tbt-v0-pricing-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--tbt-border);
  border-radius: 20px;
  background: #fbfaf7;
}

.tbt-v0-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tbt-v0-pricing-feature__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--tbt-primary);
  background: rgba(20, 121, 184, 0.08);
}

.tbt-v0-pricing-feature__icon svg {
  width: 18px;
  height: 18px;
}

.tbt-v0-pricing-feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tbt-text);
}

.tbt-v0-pricing-feature span {
  display: block;
  color: var(--tbt-muted);
  font-size: 13px;
  line-height: 1.6;
}

.tbt-v0-pricing-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.tbt-v0-pricing-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tbt-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbt-v0-pricing-legend__item i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.tbt-v0-pricing-legend__item--good {
  color: #4c9f2f;
}

.tbt-v0-pricing-legend__item--limited {
  color: #ed8a19;
}

.tbt-v0-pricing-legend__item--filling {
  color: #d44731;
}

.tbt-v0-pricing-legend__item--soldout {
  color: #a1a1aa;
}

.tbt-v0-date-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--tbt-border);
  padding-bottom: 12px;
}

.tbt-v0-date-year-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--tbt-border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--tbt-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tbt-v0-date-year-pill:hover {
  color: var(--tbt-primary, #0a3a5c);
  border-color: var(--tbt-primary, #0a3a5c);
}

.tbt-v0-date-year-pill.is-active {
  background: var(--tbt-primary, #0a3a5c);
  color: #fff;
  border-color: var(--tbt-primary, #0a3a5c);
}

.tbt-v0-date-year-group.is-hidden {
  display: none;
}

.tbt-v0-date-year-group + .tbt-v0-date-year-group {
  border-top: 1px solid var(--tbt-border);
}

.tbt-v0-date-year-label {
  padding: 20px 12px 12px;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-v0-dates {
  border: 1px solid var(--tbt-border);
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.tbt-v0-dates__header,
.tbt-v0-dates__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.tbt-v0-dates__header > span:last-child,
.tbt-v0-dates__row > div:last-child {
  display: flex;
  justify-content: flex-end;
}

.tbt-v0-dates__row .tbt-v0-btn--small {
  white-space: nowrap;
}

.tbt-v0-dates__header {
  padding: 12px 24px;
  background: var(--tbt-secondary);
  border-bottom: 1px solid var(--tbt-border);
  color: var(--tbt-muted);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-dates__row {
  padding: 20px 24px;
  border-bottom: 1px solid var(--tbt-border);
  background: #fff;
}

.tbt-v0-dates__row:last-child {
  border-bottom: 0;
}

.tbt-v0-dates__row:not(.is-soldout):hover {
  background: rgba(230,222,210,0.5);
}

.tbt-v0-dates__row.is-recommended {
  background: rgba(20,121,184,0.03);
  border-left: 2px solid var(--tbt-primary);
}

.tbt-v0-dates__row.is-soldout {
  opacity: 0.5;
  cursor: not-allowed;
}

.tbt-v0-dates__row strong {
  font-size: 14px;
  font-weight: 300;
}

.tbt-v0-dates__row em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  color: var(--tbt-muted);
  font-size: 11px;
}

.tbt-v0-dates__date {
  display: flex;
  flex-direction: column;
}

.tbt-v0-dates__date strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--tbt-serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.tbt-v0-dates__date strong span:first-child {
  font-size: 30px;
}

.tbt-v0-dates__date strong span:last-child {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tbt-v0-dates__date em {
  display: block;
  margin-top: 7px;
  font-style: normal;
  color: var(--tbt-muted);
  font-size: 11px;
}

.tbt-v0-dates__date span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tbt-muted);
}

.tbt-v0-dates__price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tbt-v0-dates__price strong {
  font-family: var(--tbt-sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.tbt-v0-dates__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--tbt-muted);
}

.tbt-v0-dates__price-row s {
  font-size: 15px;
  color: var(--tbt-muted);
}

.tbt-v0-dates__price-row em {
  margin: 0;
  font-size: 13px;
  color: var(--tbt-primary);
}

.tbt-v0-dates__price > span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--tbt-muted);
  font-family: var(--tbt-sans);
}

.tbt-v0-price-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 2px 4px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #e6edf5;
  color: var(--tbt-primary);
}

.tbt-v0-price-badge--launch_fare,
.tbt-v0-price-badge--early_booking {
  background: rgba(20, 121, 184, 0.08);
  color: var(--tbt-primary);
}

.tbt-v0-price-badge--standard_fare {
  background: rgba(0, 0, 0, 0.06);
  color: #4b5563;
}

.tbt-v0-price-badge--flash_sale {
  background: rgba(237, 137, 32, 0.12);
  color: #b45309;
}

.tbt-v0-price-badge--last_chance {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.tbt-v0-dates__availability {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tbt-v0-availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.tbt-v0-availability::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.tbt-v0-availability--good {
  color: #4c9f2f;
}

.tbt-v0-availability--limited {
  color: #ed8a19;
}

.tbt-v0-availability--filling {
  color: #d44731;
}

.tbt-v0-availability--soldout,
.tbt-v0-availability--hidden {
  color: #a1a1aa;
}

.tbt-v0-dates__availability strong {
  margin: 0;
  color: var(--tbt-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbt-v0-dates__action {
  display: flex;
  justify-content: flex-end;
}

.tbt-v0-recommended {
  display: inline-block !important;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid var(--tbt-primary);
  color: var(--tbt-primary) !important;
  font-size: 9px !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tbt-v0-status {
  font-size: 13px;
  font-weight: 300;
}

.tbt-v0-status--available,
.tbt-v0-status--guaranteed {
  color: var(--tbt-primary);
}

.tbt-v0-status--limited {
  color: var(--tbt-amber);
  font-weight: 500;
}

.tbt-v0-status--open {
  color: var(--tbt-primary);
}

.tbt-v0-status--cancelled {
  color: #9f1239;
  font-weight: 500;
}

.tbt-v0-status--soldout,
.tbt-v0-soldout {
  color: var(--tbt-muted);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tbt-v0-note {
  max-width: 672px;
  margin: 24px 0 0;
  color: var(--tbt-muted);
  font-size: 12px;
  line-height: 1.7;
}

.tbt-v0-reviews__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.tbt-v0-reviews__score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tbt-v0-reviews__score strong {
  font-family: var(--tbt-serif);
  font-size: 40px;
  font-weight: 300;
}

.tbt-v0-reviews__score span {
  display: flex;
  color: var(--tbt-primary);
}

.tbt-v0-reviews__score svg,
.tbt-v0-review-grid svg {
  width: 11px;
  height: 11px;
}

.tbt-v0-reviews__score em {
  font-style: normal;
  color: var(--tbt-muted);
  font-size: 12px;
}

.tbt-v0-review-grid {
  display: grid;
  gap: 1px;
  background: var(--tbt-border);
}

.tbt-v0-review-grid--1 {
  grid-template-columns: minmax(0, 1fr);
}

.tbt-v0-review-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tbt-v0-review-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tbt-v0-review-grid article {
  background: var(--tbt-bg);
  /* padding: 32px; */
}

.tbt-v0-review-media {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.tbt-v0-review-media__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tbt-v0-review-media__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  gap: 8px;
  align-items: start;
}

.tbt-v0-review-media__thumb {
  display: block;
  width: 64px;
  height: 64px;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(20, 121, 184, 0.08) inset;
}

.tbt-v0-review-media__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 121, 184, 0.58);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tbt-v0-review-stars {
  display: flex;
  gap: 3px;
  color: var(--tbt-primary);
  margin-bottom: 24px;
}

.tbt-v0-review-grid p {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  color: var(--tbt-ink);
}

.tbt-v0-review-grid strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.tbt-v0-review-grid em {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-style: normal;
  color: var(--tbt-muted);
}

.tbt-v0-optional {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.tbt-v0-optional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
  margin: 56px 0 28px;
}

.tbt-v0-optional-grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.tbt-v0-optional-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tbt-v0-optional-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tbt-v0-optional-grid__item {
  min-width: 0;
}

.tbt-v0-optional__card {
  background: #fff;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tbt-v0-optional__media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0 0 18px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 18px;
}

.tbt-v0-optional__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tbt-v0-optional__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.tbt-v0-optional__content h3 {
  margin: 0 0 16px;
  font-family: var(--tbt-serif);
  font-size: 20px;
  font-weight: 300;
}

.tbt-v0-optional__content p {
  margin: 0 0 22px;
  color: var(--tbt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tbt-v0-optional__content strong {
  color: var(--tbt-primary);
  font-size: 13px;
  font-weight: 500;
}

.tbt-v0-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.tbt-v0-faq__item {
  border-top: 1px solid var(--tbt-border);
}

.tbt-v0-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  color: var(--tbt-ink);
  font-size: 14px;
  font-weight: 300;
}

.tbt-v0-faq__question b {
  font-weight: 300;
  font-size: 18px;
}

.tbt-v0-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.tbt-v0-faq__item.is-open .tbt-v0-faq__answer {
  max-height: 300px;
}

.tbt-v0-faq__item.is-open .tbt-v0-faq__question b {
  transform: rotate(45deg);
}

.tbt-v0-faq__answer p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--tbt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tbt-v0-sidebar {
  width: 320px;
  position: sticky;
  top: 73px;
  transition: top 300ms ease;
  align-self: flex-start;
  max-height: calc(100vh - 73px);
  overflow-y: auto;
}

.tbt-v0-sidebar.is-lowered {
  top: 119px;
  max-height: calc(100vh - 119px);
}

.tbt-v0-map {
  border: 1px solid var(--tbt-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  max-height: 300px;
  opacity: 1;
  transition: max-height 500ms ease, opacity 500ms ease, margin 500ms ease;
  margin-bottom: 16px;
}

.tbt-v0-map.is-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
}

.tbt-v0-map img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.tbt-v0-booking {
  background: #fff;
  border: 1px solid var(--tbt-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 60px;
}

.tbt-v0-booking__price {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-v0-booking__price span,
.tbt-v0-booking__next span {
  display: block;
  margin-bottom: 4px;
  color: var(--tbt-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tbt-v0-booking__price strong {
  font-family: var(--tbt-serif);
  font-size: 36px;
  font-weight: 300;
}

.tbt-v0-booking__price em {
  margin-left: 8px;
  color: var(--tbt-muted);
  font-style: normal;
  font-size: 14px;
}

.tbt-v0-booking__price p {
  margin: 10px 0 0;
  color: var(--tbt-muted);
  font-size: 12px;
}

.tbt-v0-booking__price b {
  color: var(--tbt-ink);
  font-weight: 500;
}

.tbt-v0-booking__next {
  padding: 20px 28px;
  background: rgba(230,222,210,0.4);
  border-bottom: 1px solid var(--tbt-border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.tbt-v0-booking__next strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.tbt-v0-booking__next em {
  display: block;
  margin-top: 4px;
  color: var(--tbt-muted);
  font-size: 12px;
  font-style: normal;
}

.tbt-v0-booking__next b {
  height: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--tbt-primary);
  color: var(--tbt-primary);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.tbt-v0-booking__next b svg {
  width: 11px;
  height: 11px;
}

.tbt-v0-booking__meta {
  padding: 16px 28px;
  border-bottom: 1px solid var(--tbt-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.tbt-v0-booking__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tbt-ink);
  font-size: 13px;
}

.tbt-v0-booking__meta em {
  color: var(--tbt-amber);
  font-size: 11px;
  font-style: normal;
}

.tbt-v0-booking__actions {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tbt-v0-booking__actions .tbt-v0-btn {
  padding: 16px;
}

.tbt-v0-booking__rating {
  padding: 20px 28px;
  border-top: 1px solid var(--tbt-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbt-v0-booking__rating span {
  display: flex;
  gap: 2px;
  color: var(--tbt-primary);
}

.tbt-v0-booking__rating svg {
  width: 11px;
  height: 11px;
}

.tbt-v0-booking__rating strong {
  font-weight: 500;
  font-size: 13px;
}

.tbt-v0-booking__rating em {
  font-style: normal;
  color: var(--tbt-muted);
  font-size: 12px;
}

.tbt-v0-booking__trust {
  padding: 16px 28px;
  border-top: 1px solid var(--tbt-border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--tbt-muted);
  font-size: 11px;
  line-height: 1.4;
}

.tbt-v0-brochure {
  display: block;
  padding: 16px 28px;
  border-top: 1px solid var(--tbt-border);
  color: var(--tbt-primary);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.tbt-v0-bottom-cta {
  background: #050505;
  color: #fff;
  padding: 88px 0;
}

.tbt-v0-bottom-cta .tbt-v0-shell {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 72px;
  align-items: center;
}

.tbt-v0-bottom-cta p:first-child {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-v0-bottom-cta h2 {
  margin: 0 0 24px;
  max-width: 560px;
  font-family: var(--tbt-serif);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 300;
}

.tbt-v0-bottom-cta p {
  max-width: 560px;
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  line-height: 1.8;
}

.tbt-v0-bottom-cta .tbt-v0-shell > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tbt-v0-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.tbt-v0-lightbox[aria-hidden="false"] {
  display: flex;
}

.tbt-v0-lightbox img {
  max-width: 896px;
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
}

.tbt-v0-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  margin: 0;
  max-width: min(760px, 80vw);
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.tbt-v0-lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}

.tbt-v0-lightbox__close {
  top: 24px;
  right: 32px;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tbt-v0-lightbox__close:hover {
  color: #fff;
}

.tbt-v0-lightbox__prev,
.tbt-v0-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
}

.tbt-v0-lightbox__prev {
  left: 32px;
}

.tbt-v0-lightbox__next {
  right: 32px;
}

body.tbt-no-scroll {
  overflow: hidden;
}

.tbt-tour-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tbt-tour-inquiry-modal.is-open {
  display: flex;
}

.tbt-tour-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.68);
  backdrop-filter: blur(2px);
}

.tbt-tour-inquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--tbt-border);
  background: #fbf8f3;
  color: var(--tbt-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.tbt-tour-inquiry-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tbt-border);
  background: #fff;
  color: var(--tbt-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tbt-tour-inquiry-modal__form {
  display: grid;
  gap: 24px;
}

.tbt-tour-inquiry-modal__head {
  max-width: 720px;
  padding-right: 48px;
}

.tbt-tour-inquiry-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--tbt-primary);
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.tbt-tour-inquiry-modal__head h3 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 400;
}

.tbt-tour-inquiry-modal__lead {
  margin: 14px 0 0;
  color: var(--tbt-muted);
  font-size: 16px;
  line-height: 1.75;
}

.tbt-tour-inquiry-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tbt-tour-inquiry-field--full {
  grid-column: 1 / -1;
}

.tbt-tour-inquiry-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
  font-size: 13px;
  font-weight: 500;
}

.tbt-tour-inquiry-field input,
.tbt-tour-inquiry-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--tbt-border);
  background: #fff;
  color: var(--tbt-ink);
  font: inherit;
  box-sizing: border-box;
}

.tbt-tour-inquiry-field textarea {
  min-height: 170px;
  resize: vertical;
}

.tbt-tour-inquiry-field input:focus,
.tbt-tour-inquiry-field textarea:focus {
  outline: 2px solid rgba(20, 121, 184, 0.18);
  outline-offset: 1px;
  border-color: var(--tbt-primary);
}

.tbt-tour-inquiry-field__error {
  margin-top: 8px;
  color: #9d2f2a;
  font-size: 12px;
  line-height: 1.5;
}

.tbt-tour-inquiry-field.has-error input,
.tbt-tour-inquiry-field.has-error textarea {
  border-color: #9d2f2a;
}

.tbt-tour-inquiry-modal__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tbt-tour-inquiry-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.tbt-tour-inquiry-modal__actions .tbt-v0-btn {
  min-width: 160px;
}

.tbt-tour-inquiry-modal__status {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--tbt-border);
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.tbt-tour-inquiry-modal__status.is-success {
  border-color: rgba(20, 121, 184, 0.32);
  background: rgba(20, 121, 184, 0.08);
  color: #0f5f91;
}

.tbt-tour-inquiry-modal__status.is-error {
  border-color: rgba(157, 47, 42, 0.3);
  background: rgba(157, 47, 42, 0.08);
  color: #9d2f2a;
}

@media (max-width: 1023px) {
  .tbt-v0-layout {
    grid-template-columns: 1fr;
  }

  .tbt-v0-sidebar {
    display: none;
  }

  .tbt-v0-experience,
  .tbt-v0-faq,
  .tbt-v0-bottom-cta .tbt-v0-shell {
    grid-template-columns: 1fr;
  }

  .tbt-tour-inquiry-modal__dialog {
    width: min(100%, 760px);
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .tbt-v0-shell {
    padding: 0 20px;
  }

  .tbt-v0-gallery {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .tbt-v0-gallery__item {
    min-height: 190px;
  }

  .tbt-v0-gallery__item.is-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .tbt-v0-why,
  .tbt-v0-snapshot,
  .tbt-v0-feature-stay__card,
  .tbt-v0-inclusions,
  .tbt-v0-review-grid,
  .tbt-v0-optional-grid {
    gap: 1.5rem;
  }

  .tbt-v0-optional-grid,
  .tbt-v0-optional-grid--count-1,
  .tbt-v0-optional-grid--count-2,
  .tbt-v0-optional-grid--count-3 {
    grid-template-columns: 1fr;
  }

  .tbt-v0-route {
    display: block;
  }

  .tbt-v0-route::before {
    left: 13px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    right: auto;
    background: var(--tbt-border);
  }

  .tbt-v0-route__stop {
    display: grid;
    grid-template-columns: 40px 1fr;
    padding: 0 0 40px;
  }

  .tbt-v0-route__dot {
    margin-bottom: 0;
  }

  .tbt-v0-accordion__head {
    align-items: flex-start;
  }

  .tbt-v0-accordion__hook {
    display: none;
  }

  .tbt-v0-accordion__inner {
    padding-left: 0;
    grid-template-columns: 1fr;
  }

  .tbt-v0-feature-stay__card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .tbt-v0-feature-stay__media,
  .tbt-v0-feature-stay__fallback {
    min-height: 280px;
    height: 280px;
  }

  .tbt-v0-feature-stay__slide {
    min-height: 280px;
    height: 280px;
  }

  .tbt-v0-feature-stay__nav {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .tbt-v0-feature-stay__nav--prev {
    left: 10px;
  }

  .tbt-v0-feature-stay__nav--next {
    right: 10px;
  }

  .tbt-v0-feature-stay__content {
    padding: 28px 24px;
  }

  .tbt-v0-itinerary-head,
  .tbt-v0-itinerary-footer,
  .tbt-v0-mid-cta,
  .tbt-v0-reviews__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tbt-v0-dates__header {
    display: none;
  }

  .tbt-v0-dates__row {
    grid-template-columns: 1fr;
  }

  .tbt-v0-before-book__panel {
    grid-template-columns: 1fr;
  }

  .tbt-v0-before-book__tab {
    padding: 18px 18px;
  }

  .tbt-v0-before-book__content {
    padding: 22px 18px 24px;
  }

  .tbt-v0-dates-section,
  .tbt-v0-optional {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tbt-tour-inquiry-modal {
    padding: 16px;
  }

  .tbt-tour-inquiry-modal__dialog {
    max-height: calc(100vh - 32px);
    padding: 24px 18px 18px;
  }

  .tbt-tour-inquiry-modal__grid {
    grid-template-columns: 1fr;
  }

  .tbt-tour-inquiry-modal__head {
    padding-right: 40px;
  }

  .tbt-tour-inquiry-modal__actions {
    justify-content: stretch;
  }

  .tbt-tour-inquiry-modal__actions .tbt-v0-btn {
    width: 100%;
  }
}

.tbt-v0-sale{
    color: white !important;
  background: green;
  padding: 10px;
  border: 1px solid green;
  font-weight: bold;
  border-radius: 10px;
  display: initial !important;
}
