/* Experience detail layout adapted from docs/reference/experience-detail/ExperienceDetailPage.tsx. */
.vx-experience-detail,
.vx-exp-itinerary {
  --font-serif: "Noto Serif", "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-sans: "Raleway", ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --vx-exp-page: #fcfdff;
  --vx-exp-surface: #ffffff;
  --vx-exp-surface-soft: #f8fafc;
  --vx-exp-surface-muted: #f3f6f9;
  --vx-exp-border: #e5ebf1;
  --vx-exp-divider: #dfe7ee;
  --vx-exp-muted: #68798f;
  --vx-exp-primary: #326595;
  --vx-exp-primary-hover: #29567f;
}

.vx-experience-detail {
  min-height: 100vh;
  padding-bottom: 2rem;
  color: hsl(var(--foreground, 222 47% 11%));
  background: linear-gradient(180deg, var(--vx-exp-page) 0, #fff 36rem);
  font-family: var(--font-sans);
}

.vx-experience-detail .text-muted-foreground {
  color: var(--vx-exp-muted);
}

.vx-exp-container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.vx-exp-topbar {
  position: sticky;
  top: 4rem;
  z-index: 30;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--vx-exp-border);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 1px 10px rgb(30 64 94 / 0.025);
  backdrop-filter: blur(14px);
}

.vx-exp-topbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 3.75rem;
}

.vx-exp-back,
.vx-exp-share {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  color: var(--vx-exp-muted);
  background: transparent;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.vx-exp-back:hover,
.vx-exp-share:hover {
  color: hsl(var(--foreground, 222 47% 11%));
  background: var(--vx-exp-surface-muted);
}

.vx-exp-share {
  justify-self: end;
  border-color: var(--vx-exp-border);
  background: var(--vx-exp-surface);
}

.vx-exp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
}

.vx-exp-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.vx-exp-breadcrumb a:hover {
  color: hsl(var(--foreground, 222 47% 11%));
}

.vx-exp-breadcrumb-current {
  max-width: 17.5rem;
  overflow: hidden;
  color: hsl(var(--foreground, 222 47% 11%));
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-exp-gallery-shell {
  padding-top: 1.5rem;
}

.vx-exp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  height: clamp(410px, 42vw, 500px);
  overflow: hidden;
  border-radius: 1rem;
  background: var(--vx-exp-surface-muted);
}

.vx-exp-gallery-main,
.vx-exp-gallery-thumb {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--vx-exp-surface-muted);
  cursor: pointer;
}

.vx-exp-gallery-main {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 0.75rem 0 0 0.75rem;
}

.vx-exp-gallery-grid.has-single-media .vx-exp-gallery-main {
  grid-column: 1 / -1;
  border-radius: 1rem;
}

.vx-exp-gallery-main img,
.vx-exp-gallery-thumb img,
.vx-exp-gallery-main video,
.vx-exp-gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.vx-exp-gallery-main:hover img,
.vx-exp-gallery-thumb:hover img {
  transform: scale(1.025);
}

.vx-exp-gallery-side {
  display: grid;
  grid-column: span 1;
  grid-row: span 2;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
}

.vx-exp-gallery-thumb:only-child {
  grid-row: span 2;
}

.vx-exp-gallery-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(2 6 23 / 0.34), transparent 48%);
  pointer-events: none;
}

.vx-exp-gallery-main:hover .vx-exp-gallery-shade,
.vx-exp-gallery-thumb:hover .vx-exp-gallery-shade {
  background-color: rgb(15 23 42 / 0.08);
}

.vx-exp-gallery-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vx-exp-gallery-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  background: var(--vx-exp-primary);
  box-shadow: 0 5px 14px rgb(15 23 42 / 0.14);
  font-size: 0.75rem;
  font-weight: 650;
}

.vx-exp-rating-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: #111827;
  background: rgb(255 255 255 / 0.95);
  box-shadow: 0 5px 14px rgb(15 23 42 / 0.14);
  font-size: 0.8rem;
}

.vx-exp-rating-chip :is(i, svg) {
  fill: #f5aa00;
  color: #f5aa00;
}

.vx-exp-gallery-count {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #fff;
  background: rgb(2 6 23 / 0.54);
  font-size: 0.875rem;
  font-weight: 650;
  pointer-events: none;
}

.vx-exp-mobile-photos {
  display: none;
}

.vx-exp-main-shell {
  padding-top: 2.5rem;
}

.vx-exp-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.vx-exp-layout > aside {
  align-self: stretch;
}

.vx-exp-content {
  min-width: 0;
}

.vx-exp-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
}

.vx-exp-meta-line a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.vx-exp-meta-line a:hover {
  color: var(--vx-exp-primary);
  text-decoration: underline;
}

.vx-exp-title {
  margin: 0 0 1.25rem !important;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.13;
}

.vx-exp-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
}

.vx-exp-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.vx-exp-stat > :is(i, svg) {
  color: var(--vx-exp-primary);
}

.vx-exp-stat-separator {
  color: var(--vx-exp-divider);
}

.vx-exp-difficulty {
  padding: 0.25rem 0.65rem;
  border: 1px solid #ecd9a5;
  border-radius: 999px;
  color: #9a6700;
  background: #fff9e8;
  font-weight: 600;
}

.vx-exp-difficulty.is-easy {
  border-color: #bfe5ce;
  color: #167044;
  background: #f0fbf5;
}

.vx-exp-difficulty.is-hard,
.vx-exp-difficulty.is-challenging {
  border-color: #f1c6c6;
  color: #b33a3a;
  background: #fff4f4;
}

.vx-exp-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--vx-exp-divider);
}

.vx-exp-section-title {
  margin: 0 0 1.25rem !important;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

.vx-exp-section-title.is-compact {
  margin-bottom: 0.75rem !important;
}

.vx-exp-copy,
.vx-exp-copy p,
.vx-exp-copy li {
  color: var(--vx-exp-muted);
  line-height: 1.75;
}

.vx-exp-copy > :first-child {
  margin-top: 0;
}

.vx-exp-copy > :last-child {
  margin-bottom: 0;
}

.vx-exp-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.vx-exp-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 3.5rem;
  padding: 0.85rem;
  border: 1px solid #e1eaf2;
  border-radius: 0.9rem;
  background: rgb(243 247 251 / 0.72);
  font-size: 0.875rem;
  line-height: 1.45;
}

.vx-exp-highlight > :is(i, svg) {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--vx-exp-primary);
}

.vx-exp-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.vx-exp-list-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.8rem !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.vx-exp-list-heading.is-included {
  color: #167044;
}

.vx-exp-list-heading.is-excluded {
  color: #b33a3a;
}

.vx-exp-check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vx-exp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.vx-exp-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.08rem;
  border-radius: 999px;
}

.vx-exp-list-icon.is-included {
  color: #168451;
  background: #e7f7ee;
}

.vx-exp-list-icon.is-excluded {
  color: #c44a4a;
  background: #fff0f0;
}

.vx-exp-list-icon :is(i, svg) {
  width: 0.75rem;
  height: 0.75rem;
}

.vx-exp-itinerary {
  font-family: var(--font-sans);
  color: var(--vx-exp-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* WordPress editor content: preserve the chosen semantic heading hierarchy. */
.vx-exp-itinerary :where(h1, h2, h3, h4, h5, h6) {
  margin: 0 0 0.55em;
  color: hsl(var(--foreground, 222 47% 11%));
  font-family: var(--font-sans, "Raleway", ui-sans-serif, system-ui, sans-serif);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.vx-exp-itinerary :where(h1):first-child,
.vx-exp-itinerary :where(h2):first-child,
.vx-exp-itinerary :where(h3):first-child,
.vx-exp-itinerary :where(h4):first-child,
.vx-exp-itinerary :where(h5):first-child,
.vx-exp-itinerary :where(h6):first-child {
  margin-top: 0;
}

.vx-exp-itinerary :where(h1) { font-size: clamp(1.45rem, 2.5vw, 1.75rem); }
.vx-exp-itinerary :where(h2) { font-size: clamp(1.3rem, 2vw, 1.55rem); }
.vx-exp-itinerary :where(h3) { font-size: clamp(1.15rem, 1.7vw, 1.3rem); }
.vx-exp-itinerary :where(h4) { font-size: 1.05rem; }
.vx-exp-itinerary :where(h5) { font-size: 0.95rem; }
.vx-exp-itinerary :where(h6) {
  font-size: 0.82rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.vx-exp-itinerary :where(p, ul, ol, blockquote) {
  margin: 0 0 1em;
}

.vx-exp-itinerary :where(ul, ol) {
  padding-left: 1.4rem;
}

.vx-exp-itinerary ul { list-style: disc; }
.vx-exp-itinerary ol { list-style: decimal; }
.vx-exp-itinerary li + li { margin-top: 0.35rem; }

.vx-exp-itinerary a {
  color: var(--vx-exp-primary, #326595);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.vx-exp-itinerary blockquote {
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--vx-exp-primary, #326595);
  color: #52677f;
  background: #f7f9fb;
}

.vx-exp-itinerary :where(img, video) {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.vx-exp-itinerary .vx-itinerary-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.vx-exp-itinerary .vx-itinerary-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1.1rem;
  min-height: 6.4rem;
}

.vx-exp-itinerary .vx-itinerary-step:not(:last-child)::after {
  position: absolute;
  top: 3.15rem;
  bottom: 0;
  left: 1.575rem;
  width: 2px;
  background: var(--vx-exp-divider);
  content: '';
  transform: translateX(-50%);
}

/* Defensive fallback when the server cannot normalize legacy editor markup. */
.vx-exp-itinerary > .vx-itinerary-timeline:has(+ .vx-itinerary-step) > .vx-itinerary-step:last-child::after {
  position: absolute;
  top: 3.15rem;
  bottom: 0;
  left: 1.575rem;
  width: 2px;
  background: var(--vx-exp-divider);
  content: '';
  transform: translateX(-50%);
}

.vx-exp-itinerary .vx-itinerary-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 3px solid var(--vx-exp-divider);
  border-radius: 999px;
  color: var(--vx-exp-muted);
  background: var(--vx-exp-surface);
  font-weight: 700;
  line-height: 1;
}

.vx-exp-itinerary .vx-itinerary-step.is-active .vx-itinerary-marker {
  border-color: var(--vx-exp-primary);
  color: #fff;
  background: var(--vx-exp-primary);
}

.vx-exp-itinerary .vx-itinerary-step-content {
  min-width: 0;
  padding: 0.4rem 0 1.8rem;
}

.vx-exp-itinerary .vx-itinerary-step-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.25rem;
}

.vx-exp-itinerary .vx-itinerary-step-heading h3 {
  margin: 0 !important;
  color: hsl(var(--foreground, 222 47% 11%));
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.vx-exp-itinerary .vx-itinerary-time {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  color: var(--vx-exp-primary);
  background: #edf2f7;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.vx-exp-itinerary .vx-itinerary-step-content p {
  margin: 0 !important;
  color: var(--vx-exp-muted);
  line-height: 1.6;
}

.vx-exp-itinerary table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--vx-exp-border);
  border-radius: 0.85rem;
  border-collapse: separate;
  border-spacing: 0;
}

.vx-exp-itinerary :is(th, td) {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--vx-exp-border);
  text-align: left;
}

.vx-exp-itinerary th {
  color: hsl(var(--foreground, 222 47% 11%));
  background: var(--vx-exp-surface-muted);
  font-weight: 650;
}

.vx-exp-itinerary tr:last-child td {
  border-bottom: 0;
}

.vx-exp-guide-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--vx-exp-border);
  border-radius: 1.1rem;
  background: rgb(248 250 252 / 0.72);
}

.vx-exp-guide-photo {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf0f5;
  box-shadow: 0 0 0 2px rgb(50 101 149 / 0.14);
}

.vx-exp-guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vx-exp-guide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--vx-exp-muted);
}

.vx-exp-guide-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.25rem !important;
  font-size: 1.05rem;
  font-weight: 650;
}

.vx-exp-guide-name a {
  color: inherit;
  text-decoration: none;
}

.vx-exp-guide-name a:hover {
  color: var(--vx-exp-primary);
}

.vx-exp-guide-bio {
  margin: 0 0 0.75rem !important;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.vx-exp-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vx-exp-specialty {
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--vx-exp-border);
  border-radius: 999px;
  color: var(--vx-exp-muted);
  background: #fff;
  font-size: 0.75rem;
}

.vx-exp-important-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border: 1px solid #f0ddb5;
  border-radius: 0.95rem;
  color: #805a13;
  background: #fffaf0;
}

.vx-exp-important-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.vx-exp-important-row > :is(i, svg) {
  flex: 0 0 auto;
  margin-top: 0.12rem;
  color: #b7791f;
}

.vx-exp-important-label {
  display: block;
  margin-bottom: 0.12rem;
  color: #684710;
  font-weight: 650;
}

.vx-exp-important-list {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
}

.vx-exp-important-list li {
  padding-left: 0.1rem;
}

.vx-exp-faq {
  display: grid;
  gap: 0.65rem;
}

.vx-exp-faq details {
  padding: 0.9rem 1rem;
  border: 1px solid var(--vx-exp-border);
  border-radius: 0.85rem;
  background: var(--vx-exp-surface-soft);
}

.vx-exp-faq summary {
  color: hsl(var(--foreground, 222 47% 11%));
  font-weight: 600;
  cursor: pointer;
}

.vx-exp-faq-answer {
  margin-top: 0.7rem;
  color: var(--vx-exp-muted);
  line-height: 1.65;
}

.vx-exp-sidebar {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
}

.vx-exp-booking-card,
.vx-exp-help-card {
  overflow: hidden;
  border: 1px solid var(--vx-exp-border);
  border-radius: 1.35rem;
  background: var(--vx-exp-surface);
}

.vx-exp-booking-card {
  box-shadow: 0 16px 34px rgb(30 64 94 / 0.09);
}

.vx-exp-price-header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--vx-exp-border);
  background: var(--vx-exp-surface-muted);
}

.vx-exp-price-eyebrow {
  margin: 0 0 0.25rem !important;
  color: var(--vx-exp-muted);
  font-size: 0.75rem;
}

.vx-exp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
}

.vx-exp-price {
  color: var(--vx-exp-primary);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 750;
  line-height: 1.1;
}

.vx-exp-price-unit {
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
}

.vx-exp-booking-body {
  padding: 1.5rem;
}

.vx-exp-book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.65rem;
  color: #fff;
  background: var(--vx-exp-primary);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.vx-exp-book-button:hover {
  color: #fff;
  background: var(--vx-exp-primary-hover);
}

.vx-exp-booking-note {
  margin: 0.7rem 0 0 !important;
  color: var(--vx-exp-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.vx-exp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.vx-exp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--vx-exp-muted);
  font-size: 0.65rem;
  line-height: 1.25;
  text-align: center;
}

.vx-exp-trust-item > :is(i, svg) {
  color: var(--vx-exp-primary);
}

.vx-exp-quick-facts {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--vx-exp-border);
  font-size: 0.875rem;
}

.vx-exp-fact {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.vx-exp-fact-label {
  color: var(--vx-exp-muted);
}

.vx-exp-fact-value {
  max-width: 58%;
  font-weight: 600;
  text-align: right;
}

.vx-exp-help-card {
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgb(30 64 94 / 0.03);
}

.vx-exp-help-title {
  margin: 0 0 0.65rem !important;
  font-size: 0.9rem;
  font-weight: 650;
}

.vx-exp-help-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem;
  border-radius: 0.65rem;
  color: var(--vx-exp-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.vx-exp-help-link:hover {
  color: hsl(var(--foreground, 222 47% 11%));
  background: var(--vx-exp-surface-muted);
}

.vx-exp-help-link > :is(i, svg) {
  color: var(--vx-exp-primary);
}

.vx-exp-mobile-cta {
  display: none;
}

.vx-exp-lightbox[hidden] {
  display: none;
}

.vx-exp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(2 6 23 / 0.96);
}

.vx-exp-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1120px, calc(100vw - 7rem));
  height: min(82vh, 760px);
  margin: 0;
}

.vx-exp-lightbox-stage :is(img, video) {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.75rem;
  object-fit: contain;
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.45);
}

.vx-exp-lightbox-close,
.vx-exp-lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  cursor: pointer;
}

.vx-exp-lightbox-close:hover,
.vx-exp-lightbox-arrow:hover {
  background: rgb(255 255 255 / 0.2);
}

.vx-exp-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
}

.vx-exp-lightbox-arrow {
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
}

.vx-exp-lightbox-arrow.is-prev {
  left: 1rem;
}

.vx-exp-lightbox-arrow.is-next {
  right: 1rem;
}

.vx-exp-lightbox-thumbs {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  display: flex;
  gap: 0.45rem;
  max-width: calc(100vw - 2rem);
  overflow-x: auto;
  padding: 0.25rem;
  transform: translateX(-50%);
}

.vx-exp-lightbox-thumbs button {
  width: 3.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgb(255 255 255 / 0.3);
  border-radius: 0.4rem;
  color: #fff;
  background: rgb(255 255 255 / 0.08);
  opacity: 0.58;
  cursor: pointer;
}

.vx-exp-lightbox-thumbs button.is-active {
  border-color: #fff;
  opacity: 1;
}

.vx-exp-lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.vx-exp-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .vx-experience-detail {
    padding-bottom: 5.5rem;
  }

  .vx-exp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vx-exp-sidebar {
    position: static;
  }

  .vx-exp-booking-card {
    display: none;
  }

  .vx-exp-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--vx-exp-border);
    background: rgb(255 255 255 / 0.96);
    box-shadow: 0 -8px 26px rgb(30 64 94 / 0.06);
    backdrop-filter: blur(14px);
  }

  .vx-exp-mobile-price {
    color: var(--vx-exp-primary);
    font-size: 1.2rem;
    font-weight: 750;
  }

  .vx-exp-mobile-unit {
    color: var(--vx-exp-muted);
    font-size: 0.72rem;
  }

  .vx-exp-mobile-cta .vx-exp-book-button {
    width: auto;
    min-width: 8.5rem;
    min-height: 2.75rem;
  }
}

@media (max-width: 767px) {
  .vx-exp-container {
    width: min(100% - 1.5rem, 80rem);
  }

  .vx-exp-topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .vx-exp-breadcrumb {
    display: none;
  }

  .vx-exp-back-label,
  .vx-exp-share-label {
    display: none;
  }

  .vx-exp-gallery-shell {
    padding-top: 1rem;
  }

  .vx-exp-gallery-grid {
    display: block;
    height: clamp(280px, 78vw, 410px);
    border-radius: 0.9rem;
  }

  .vx-exp-gallery-main {
    width: 100%;
    height: 100%;
    border-radius: 0.9rem;
  }

  .vx-exp-gallery-side {
    display: none;
  }

  .vx-exp-mobile-photos {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.55rem;
  }

  .vx-exp-mobile-photos button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--vx-exp-border);
    border-radius: 0.55rem;
    color: var(--vx-exp-muted);
    background: var(--vx-exp-surface);
    font-size: 0.8rem;
    cursor: pointer;
  }

  .vx-exp-main-shell {
    padding-top: 1.75rem;
  }

  .vx-exp-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .vx-exp-stat-separator {
    display: none;
  }

  .vx-exp-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .vx-exp-highlights,
  .vx-exp-inclusions {
    grid-template-columns: 1fr;
  }

  .vx-exp-inclusions {
    gap: 1.5rem;
  }

  .vx-exp-itinerary .vx-itinerary-step {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.8rem;
    min-height: 6.5rem;
  }

  .vx-exp-itinerary .vx-itinerary-step:not(:last-child)::after,
  .vx-exp-itinerary > .vx-itinerary-timeline:has(+ .vx-itinerary-step) > .vx-itinerary-step:last-child::after {
    top: 2.5rem;
    left: 1.25rem;
  }

  .vx-exp-itinerary .vx-itinerary-marker {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 2px;
  }

  .vx-exp-itinerary .vx-itinerary-step-content {
    padding-top: 0.2rem;
  }

  .vx-exp-guide-card {
    gap: 1rem;
    padding: 1rem;
  }

  .vx-exp-lightbox-stage {
    width: calc(100vw - 2rem);
    height: 72vh;
  }

  .vx-exp-lightbox-arrow {
    top: auto;
    bottom: 5.6rem;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-experience-detail *,
  .vx-experience-detail *::before,
  .vx-experience-detail *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
