:root {
  --gtx-red: #b83735;
  --gtx-red-dark: #932826;
  --gtx-cream: #e8e3d2;
  --gtx-ink: #242424;
  --gtx-muted: #686868;
  --gtx-line: #dedede;
  --gtx-panel: #f7f7f7;
  --gtx-white: #fff;
  --gtx-shadow: 0 8px 24px rgba(20, 20, 20, .1);
  --gtx-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gtx-ink);
  background: var(--gtx-white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
button, input, select { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.25; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--gtx-red-dark);
  border-radius: var(--gtx-radius);
}
.skip-link:focus { top: .5rem; }
:focus-visible { outline: 3px solid #1769aa; outline-offset: 3px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gtx-shell { width: min(1140px, calc(100% - 32px)); margin-inline: auto; }

.gtx-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 62px;
  background: var(--gtx-cream);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.gtx-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.gtx-brand {
  color: var(--gtx-red-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.gtx-nav-actions { display: flex; align-items: center; gap: 2px; height: 100%; }
.gtx-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
}
.gtx-menu { position: relative; }
.gtx-menu summary {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.gtx-menu summary::-webkit-details-marker { display: none; }
.gtx-menu-panel {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 20;
  width: min(300px, calc(100vw - 32px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gtx-line);
  border-radius: var(--gtx-radius);
  box-shadow: var(--gtx-shadow);
}
.gtx-menu-panel strong, .gtx-menu-panel a { display: block; padding: 10px 16px; }
.gtx-menu-panel strong { border-bottom: 1px solid var(--gtx-line); }
.gtx-menu-panel a { font-size: 13px; text-decoration: none; }
.gtx-menu-panel a:hover, .gtx-menu-panel a:focus-visible { color: var(--gtx-red); background: #faf7f3; }
.gtx-menu-panel a[aria-current="true"]::after { content: " ✓"; color: #198754; font-weight: 700; }
.cart-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #222;
  text-decoration: none;
}

.store-home main, .product-page main { padding-top: 62px; }
.store-hero { display: block; width: 100%; background: #f39815; }
.store-hero img { width: 100%; aspect-ratio: 16 / 5; object-fit: cover; }
.attractions-section { min-height: 560px; padding: 62px 0 90px; }
.attractions-section > h1 { margin-bottom: 28px; font-size: clamp(28px, 3vw, 38px); }
.attraction-card {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  max-width: 840px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--gtx-radius);
  box-shadow: var(--gtx-shadow);
}
.attraction-image { min-height: 300px; overflow: hidden; }
.attraction-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.attraction-image:hover img { transform: scale(1.025); }
.attraction-card-body { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; }
.instant-badge { margin-bottom: 18px; color: #198754; font-size: 13px; font-weight: 600; }
.attraction-card-body h2 { margin-bottom: 10px; font-size: 26px; }
.attraction-card-body h2 a { text-decoration: none; }
.attraction-card-body p:not(.instant-badge) { color: var(--gtx-muted); }
.gtx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 21px;
  color: #fff;
  background: var(--gtx-red);
  border: 1px solid var(--gtx-red);
  border-radius: var(--gtx-radius);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.gtx-button:hover, .gtx-button:focus-visible { color: var(--gtx-red); background: #fff; }
.attraction-card-body .gtx-button { margin-top: auto; }
.local-note { max-width: 840px; margin: 22px 0 0; color: var(--gtx-muted); font-size: 12px; }

.product-shell { padding-top: 28px; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; margin: 0 0 16px; font-size: 13px; }
.breadcrumbs a { color: var(--gtx-red); text-decoration: none; }
.gallery { margin-bottom: 28px; }
.gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: 356px;
  overflow: hidden;
  background: #1a1a1a;
}
.gallery-backdrop {
  position: absolute;
  inset: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  object-fit: cover;
  filter: blur(14px) brightness(.45);
  transform: scale(1.04);
}
.gallery-main { position: relative; z-index: 1; width: auto; height: 100%; max-width: 74%; object-fit: contain; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 4px;
  color: #242424;
  background: rgba(255, 255, 255, .65);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-arrow:hover { background: #fff; }
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: #f5f5f5;
  scrollbar-color: var(--gtx-red) #ddd;
  scrollbar-width: thin;
}
.gallery-thumbs button {
  flex: 0 0 112px;
  height: 72px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--gtx-radius);
  cursor: pointer;
  opacity: .72;
}
.gallery-thumbs button:hover, .gallery-thumbs button.is-active { border-color: var(--gtx-red); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.product-heading p { margin-bottom: 2px; font-size: 13px; }
.product-heading h1 { margin: 0; font-size: clamp(28px, 3vw, 38px); }
.share-row { position: relative; display: flex; gap: 5px; align-items: center; }
.share-row a, .share-row button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: var(--gtx-red);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}
.share-row a:nth-child(2) { background: #249bd7; }
.share-row a:nth-child(3) { background: #13a315; }
.share-row button { background: #1769d2; }
.copy-status { position: absolute; top: 100%; right: 0; width: max-content; padding-top: 4px; color: var(--gtx-muted); font-size: 11px; }

.product-information { margin-bottom: 48px; }
.info-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; margin-bottom: 26px; }
.info-tabs button {
  min-height: 46px;
  padding: 8px;
  color: var(--gtx-red);
  background: #fff;
  border: 0;
  border-radius: var(--gtx-radius);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .13);
  cursor: pointer;
}
.info-tabs button.is-active { color: #fff; background: var(--gtx-red); }
.info-panel { padding: 0 16px 4px; }
.info-panel[hidden] { display: none; }
.info-panel h2 { position: relative; margin-bottom: 20px; font-size: 23px; }
.info-panel h2::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 42px; height: 4px; background: var(--gtx-red); border-radius: 2px; }
.info-panel p, .info-panel li { font-size: 14px; }
.feature-list { font-weight: 600; }
.info-divider { height: 1px; margin: 26px 0; background: #e6e6e6; }
.hours-list { max-width: 420px; }
.hours-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 5px 0; }
.hours-list dt { text-transform: uppercase; }
.hours-list dd { margin: 0; }
.info-panel address { font-style: normal; }
.text-link { color: var(--gtx-red); font-weight: 600; }

.booking-section { padding: 26px 0 70px; background: var(--gtx-panel); }
.section-title { display: flex; gap: 8px; align-items: center; margin: 0 0 16px; font-size: 23px; }
.section-title span { color: var(--gtx-red); font-size: 19px; }
.date-controls { display: flex; flex-wrap: wrap; gap: 5px; }
.date-picker-wrap { position: relative; }
.date-shortcut, .date-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--gtx-red);
  background: #fff;
  border: 2px solid var(--gtx-red);
  border-radius: var(--gtx-radius);
  cursor: pointer;
  font-weight: 700;
}
.date-shortcut.is-active { color: #fff; background: var(--gtx-red); }
.booking-custom-date[hidden] { display: none; }
.local-calendar {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  width: min(320px, calc(100vw - 24px));
  padding: 14px;
  background: #fff;
  border: 1px solid var(--gtx-line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
}
.local-calendar[hidden] { display: none; }
.calendar-header {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.calendar-header strong { text-align: center; }
.calendar-header button {
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  color: var(--gtx-red);
  background: #fff;
  border: 1px solid var(--gtx-red);
  border-radius: var(--gtx-radius);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.calendar-header button:disabled { color: #aaa; border-color: #ddd; cursor: not-allowed; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar-weekdays { margin-bottom: 4px; color: var(--gtx-muted); font-size: 10px; font-weight: 700; text-align: center; }
.calendar-day, .calendar-blank { aspect-ratio: 1; }
.calendar-day {
  display: grid;
  place-items: center;
  min-width: 34px;
  padding: 0;
  color: var(--gtx-ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}
.calendar-day:hover:not(:disabled), .calendar-day:focus-visible { color: var(--gtx-red); border-color: var(--gtx-red); }
.calendar-day.is-today { border-color: #d8a2a1; font-weight: 800; }
.calendar-day.is-selected { color: #fff; background: var(--gtx-red); border-color: var(--gtx-red); font-weight: 800; }
.calendar-day:disabled { color: #bbb; background: #fafafa; cursor: not-allowed; }
.selected-date { min-height: 24px; margin: 9px 0 30px; color: var(--gtx-muted); font-size: 13px; }
.ticket-options-title { margin-top: 8px; }
.ticket-card { overflow: hidden; margin: 0 16px; background: #fff; border-radius: var(--gtx-radius); box-shadow: var(--gtx-shadow); }
.ticket-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 36px; }
.ticket-summary h3 { margin-bottom: 14px; font-size: 18px; }
.ticket-summary p { margin: 0; }
.ticket-editor { padding: 4px 36px 28px; border-top: 1px solid var(--gtx-line); }
.ticket-editor[hidden], .ticket-details[hidden] { display: none; }
.time-picker-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0 14px; }
.time-picker-row label { font-weight: 700; }
.time-picker-row select { min-width: 190px; padding: 10px 35px 10px 12px; background: #fff; border: 1px solid #bbb; border-radius: var(--gtx-radius); }
.ticket-line { display: grid; grid-template-columns: 1fr 140px 150px; gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid #ececec; }
.ticket-line small { display: block; color: var(--gtx-muted); }
.line-price { font-weight: 700; text-align: right; }
.quantity { display: grid; grid-template-columns: 42px 48px 42px; justify-content: end; align-items: center; }
.quantity button { width: 42px; height: 42px; color: var(--gtx-red); background: #fff; border: 1px solid var(--gtx-red); cursor: pointer; font-size: 22px; }
.quantity output { display: grid; place-items: center; height: 42px; border-block: 1px solid #bbb; font-weight: 700; }
.ticket-total { display: flex; align-items: center; justify-content: flex-end; gap: 26px; padding-top: 24px; border-top: 1px solid #ececec; }
.ticket-total > div { display: grid; gap: 1px; text-align: right; }
.ticket-total span { color: var(--gtx-muted); font-size: 12px; }
.ticket-total strong { font-size: 20px; }
.checkout-note { margin: 14px 0 0; color: var(--gtx-muted); font-size: 11px; text-align: right; }
.details-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 58px; padding: 12px 36px; background: #fff; border: 0; border-top: 1px solid var(--gtx-line); cursor: pointer; text-align: left; }
.details-toggle[aria-expanded="true"] span:last-child { transform: rotate(180deg); }
.ticket-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 26px 36px 34px; border-top: 1px solid var(--gtx-line); }
.ticket-details > div { padding: 18px; background: #fbfbfb; border: 1px solid #eee; }
.ticket-details h4 { margin-bottom: 8px; }
.ticket-details p, .ticket-details ul { margin-bottom: 0; font-size: 13px; }

.gtx-footer { padding: 56px 0; background: var(--gtx-cream); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner p { margin: 0; font-size: 12px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; place-items: center; width: 32px; height: 32px; color: var(--gtx-red); background: #fff; border-radius: 50%; font-weight: 800; text-decoration: none; }

@media (max-width: 820px) {
  .gtx-shell { width: min(100% - 24px, 720px); }
  .store-hero img { aspect-ratio: 16 / 9; }
  .attractions-section { padding-top: 38px; }
  .attraction-card { grid-template-columns: 1fr; }
  .attraction-image { min-height: 0; aspect-ratio: 16 / 10; }
  .gallery-stage { height: auto; aspect-ratio: 16 / 9; }
  .gallery-main { max-width: 86%; }
  .gallery-arrow { width: 44px; height: 44px; font-size: 34px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .info-tabs { display: flex; padding: 4px; overflow-x: auto; }
  .info-tabs button { flex: 0 0 170px; }
  .ticket-line { grid-template-columns: 1fr auto; }
  .ticket-line .line-price { text-align: left; }
  .ticket-line .quantity { grid-column: 2; grid-row: 1 / span 2; }
  .ticket-details { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .gtx-brand { max-width: 88px; line-height: 1.15; }
  .gtx-menu summary { padding-inline: 8px; }
  .store-home main, .product-page main { padding-top: 58px; }
  .gtx-topbar, .gtx-nav-inner { height: 58px; }
  .product-shell { padding-top: 18px; }
  .breadcrumbs { margin-bottom: 12px; }
  .gallery { margin-inline: -12px; }
  .gallery-thumbs button { flex-basis: 86px; height: 58px; }
  .product-heading { align-items: flex-start; flex-direction: column; margin-bottom: 26px; }
  .share-row { align-self: flex-end; }
  .info-panel { padding-inline: 2px; }
  .booking-section { padding-bottom: 45px; }
  .ticket-card { margin-inline: 0; }
  .ticket-summary, .ticket-editor, .ticket-details { padding-inline: 18px; }
  .ticket-summary { padding-block: 22px; }
  .time-picker-row { align-items: stretch; flex-direction: column; }
  .time-picker-row select { width: 100%; }
  .ticket-line { gap: 8px 12px; }
  .quantity { grid-template-columns: 38px 42px 38px; }
  .quantity button { width: 38px; height: 40px; }
  .quantity output { height: 40px; }
  .ticket-total { align-items: stretch; flex-direction: column; }
  .ticket-total > div, .checkout-note { text-align: left; }
  .checkout-button { width: 100%; }
  .details-toggle { padding-inline: 18px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Local booking flow */
.cart-link { position: relative; font-size: 18px; }
.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: #fff;
  background: var(--gtx-red);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.cart-count[hidden] { display: none; }
.booking-ticket-card {
  overflow: hidden;
  margin: 0 16px;
  background: #fff;
  border-radius: var(--gtx-radius);
  box-shadow: var(--gtx-shadow);
}
.booking-ticket-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.booking-ticket-summary h3 { margin-bottom: 14px; font-size: 18px; }
.booking-ticket-summary p { margin: 0; }
.booking-ticket-toggle[aria-expanded="true"] {
  color: #aaa;
  background: #fff;
  border-color: #aaa;
}
.booking-ticket-editor { border-top: 1px solid var(--gtx-line); }
.booking-ticket-editor[hidden] { display: none; }
.booking-mobile-details { display: none; }
.booking-workspace {
  display: grid;
  grid-template-columns: minmax(270px, 322px) minmax(0, 1fr);
  gap: 30px;
  padding: 25px 20px 34px;
}
.booking-details-panel {
  position: relative;
  min-height: 600px;
  padding: 20px 24px 54px;
  overflow: hidden;
  background: #fbf5f5;
}
.booking-panel-kicker { margin-bottom: 28px; }
.booking-details-copy {
  max-height: 474px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
}
.booking-details-copy section + section { margin-top: 36px; }
.booking-details-copy h4 { margin-bottom: 14px; font-size: 14px; }
.booking-details-copy ul { margin: 0; padding-left: 21px; }
.booking-view-more {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  min-height: 48px;
  color: var(--gtx-red);
  background: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
.booking-picker-panel { min-width: 0; padding: 5px 5px 0 0; }
.booking-calendar-heading,
.booking-month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.booking-calendar-heading { margin: 0 0 18px; }
.booking-calendar-heading p { margin: 0; }
.availability-legend { display: flex; align-items: center; gap: 13px; font-size: 11px; }
.availability-legend span { display: inline-flex; align-items: center; gap: 7px; }
.available-dot, .sold-dot {
  width: 8px;
  height: 8px;
  background: #098a14;
  border-radius: 50%;
}
.sold-dot { background: #d81518; }
.booking-month-row { margin-bottom: 13px; }
.booking-month-row h3 { margin: 0; font-size: 17px; font-weight: 500; }
.booking-month-buttons { display: flex; }
.booking-month-buttons button,
.booking-square-button {
  display: grid;
  place-items: center;
  width: 33px;
  height: 34px;
  padding: 0 0 3px;
  color: #fff;
  background: var(--gtx-red);
  border: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.booking-month-buttons button:first-child,
.booking-square-button#booking-modal-prev { background: #d48280; border-radius: 4px 0 0 4px; }
.booking-square-button#booking-modal-next { border-radius: 0 4px 4px 0; }
.booking-month-buttons button:last-child { border-radius: 0 4px 4px 0; }
.booking-month-buttons button:disabled,
.booking-square-button:disabled { color: #eee; background: #ccc; cursor: not-allowed; }
.booking-weekdays,
.booking-availability-days,
.booking-modal-weekdays,
.booking-modal-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.booking-weekdays { margin-bottom: 6px; font-size: 11px; font-weight: 700; text-align: center; }
.booking-weekdays span { padding: 7px 2px; }
.booking-availability-days {
  min-height: 420px;
  background: #fafafa;
}
.booking-calendar-blank { min-height: 68px; background: #f7f7f7; }
.booking-availability-day {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 68px;
  padding: 8px;
  color: #353535;
  background: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.booking-availability-day::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: #098a14;
  border-radius: 50%;
}
.booking-availability-day:hover:not(:disabled),
.booking-availability-day:focus-visible { border-color: var(--gtx-red); }
.booking-availability-day.is-selected {
  color: var(--gtx-red);
  background: #f7dddd;
  border-color: var(--gtx-red);
  font-weight: 800;
}
.booking-availability-day:disabled { color: #bbb; background: #f7f7f7; cursor: not-allowed; }
.booking-availability-day:disabled::after { display: none; }
.booking-availability-day.is-sold-out:disabled::after { display: block; background: #d81518; }
.booking-time-section { margin-top: 22px; }
.booking-time-section h3,
.booking-quantity-section h3 { margin: 0 0 13px; font-size: 14px; font-weight: 500; }
.booking-time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
}
.booking-time-slot {
  min-height: 34px;
  color: #111;
  background: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.booking-time-slot:hover:not(:disabled),
.booking-time-slot:focus-visible { border-color: var(--gtx-red); }
.booking-time-slot.is-selected {
  color: var(--gtx-red);
  background: #f9e4e4;
  border-color: var(--gtx-red);
}
.booking-time-slot:disabled { color: #c9c9c9; background: #fafafa; cursor: not-allowed; }
.booking-no-times { grid-column: 1 / -1; margin: 8px 0; color: var(--gtx-muted); }
.booking-quantity-section { margin-top: 28px; }
.booking-ticket-line {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 120px 150px;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid #ececec;
}
.booking-ticket-line small { display: block; color: var(--gtx-muted); }
.booking-line-price { font-weight: 700; text-align: right; }
.booking-ticket-line .quantity button:disabled { color: #bbb; border-color: #ddd; cursor: not-allowed; }
.booking-ticket-line .quantity input {
  width: 48px;
  height: 42px;
  padding: 0 4px;
  border: 1px solid #bbb;
  border-inline: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
  -moz-appearance: textfield;
}
.booking-ticket-line .quantity input::-webkit-inner-spin-button,
.booking-ticket-line .quantity input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.booking-cart-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.booking-cart-row > div { display: grid; text-align: right; }
.booking-cart-row span { color: var(--gtx-muted); font-size: 12px; }
.booking-cart-row strong { font-size: 20px; }

.modal-open { overflow: hidden; }
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(0, 0, 0, .48);
}
.booking-modal-overlay[hidden] { display: none; }
.booking-date-dialog,
.booking-details-dialog,
.booking-message-dialog {
  position: relative;
  width: min(654px, 100%);
  max-height: calc(100vh - 48px);
  padding: 78px 32px 34px;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .25);
}
.booking-date-dialog::before,
.booking-details-dialog::before {
  content: "";
  position: absolute;
  inset: 55px 0 auto;
  height: 1px;
  background: #ddd;
}
.booking-modal-close {
  position: absolute;
  top: 5px;
  right: 7px;
  z-index: 2;
  width: 45px;
  height: 45px;
  padding: 0 0 3px;
  color: #888;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.booking-date-modal-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.booking-date-modal-header h2 { margin: 0; font-size: 20px; font-weight: 500; }
.booking-date-modal-header > div { display: flex; align-items: center; gap: 0; }
.booking-date-modal-header .booking-today-button { margin-right: 5px; }
.booking-today-button {
  min-height: 34px;
  padding: 5px 11px;
  color: #fff;
  background: var(--gtx-red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}
.booking-modal-weekdays { margin-bottom: 9px; color: #666; font-size: 12px; font-weight: 600; }
.booking-modal-weekdays span { padding: 7px 1px; text-align: left; }
.booking-modal-days { min-height: 390px; }
.booking-modal-blank { min-height: 64px; }
.booking-modal-day {
  min-height: 64px;
  color: #444;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}
.booking-modal-day:hover:not(:disabled), .booking-modal-day:focus-visible { border-color: var(--gtx-red); }
.booking-modal-day.is-selected { color: #fff; background: var(--gtx-red); font-weight: 800; }
.booking-modal-day:disabled { color: #bbb; cursor: not-allowed; }
.booking-details-dialog { width: min(720px, 100%); padding-top: 78px; }
.booking-details-merchant { margin-bottom: 4px; color: var(--gtx-muted); font-size: 12px; }
.booking-details-dialog h2 { margin-bottom: 26px; }
.booking-details-dialog .booking-details-copy { max-height: none; overflow: visible; }
.booking-details-dialog .booking-details-copy section + section { margin-top: 25px; }
.booking-message-dialog { width: min(500px, 100%); padding: 22px 16px 14px; border-radius: 12px; }
.booking-message-dialog h2 { margin-bottom: 18px; color: #d20a13; font-size: 15px; }
.booking-message-dialog p { min-height: 42px; margin-bottom: 12px; }
.booking-message-dialog button {
  display: block;
  min-width: 74px;
  margin: 0 auto;
  padding: 8px 16px;
  color: var(--gtx-red);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

/* Cart */
.cart-page main { min-height: calc(100vh - 150px); padding: 100px 0 74px; background: #fafafa; }
.cart-shell { width: min(900px, calc(100% - 32px)); margin-inline: auto; }
.cart-home-row { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.cart-home-link {
  padding: 6px 12px;
  color: #999;
  background: #fff;
  border: 2px solid #aaa;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}
.local-cart-card { max-width: 560px; margin: 0 auto; overflow: hidden; background: #fff; border-radius: 4px; box-shadow: var(--gtx-shadow); }
.local-cart-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--gtx-line); }
.local-cart-heading h1 { margin: 0; font-size: 15px; }
.cart-clear-button, .cart-remove-button { color: #e83035; background: transparent; border: 0; cursor: pointer; }
.cart-clear-button:disabled { color: #bbb; cursor: not-allowed; }
.cart-items { min-height: 144px; }
.cart-empty { display: grid; place-items: center; min-height: 144px; padding: 24px; color: var(--gtx-muted); text-align: center; }
.cart-empty a { color: var(--gtx-red); font-weight: 700; }
.cart-item { position: relative; padding: 22px 24px; border-bottom: 1px solid var(--gtx-line); }
.cart-item p { margin: 0; line-height: 1.55; }
.cart-item-title { font-weight: 700; }
.cart-item-meta { margin-top: 9px !important; }
.cart-item-warning { margin-top: 10px !important; color: #c61118; font-size: 12px; }
.cart-remove-button { position: absolute; top: 18px; right: 18px; font-size: 18px; }
.cart-promo { padding: 18px 16px 16px; border-bottom: 1px solid var(--gtx-line); }
.cart-promo label { display: block; margin-bottom: 10px; font-weight: 700; }
.cart-promo-controls { display: flex; }
.cart-promo input { min-width: 0; flex: 1; padding: 11px 12px; border: 1px solid #ccd3da; border-radius: 4px 0 0 4px; }
.cart-promo button { padding: 8px 15px; color: #fff; background: var(--gtx-red); border: 1px solid var(--gtx-red); border-radius: 0 4px 4px 0; cursor: pointer; font-weight: 700; }
.cart-promo input:disabled, .cart-promo button:disabled { opacity: .55; cursor: not-allowed; }
.cart-promo-status { min-height: 20px; margin: 7px 0 0; font-size: 12px; }
.cart-promo-status.is-error { color: #c61118; }
.cart-promo-status.is-success { color: #087b12; }
.cart-summary { padding: 20px 24px; }
.cart-summary-row { display: flex; justify-content: space-between; gap: 24px; font-weight: 700; }
.cart-discount-row { margin-bottom: 8px; color: #087b12; font-size: 13px; font-weight: 500; }
.cart-discount-row[hidden] { display: none; }
.cart-total-row { font-size: 17px; }
.cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 560px; margin: 16px auto 0; }
.cart-actions a, .cart-actions button { min-height: 45px; border: 0; border-radius: 4px; font-weight: 700; }
.cart-back { display: grid; place-items: center; color: #fff; background: #73aecb; text-decoration: none; }
.cart-proceed { color: #fff; background: var(--gtx-red); cursor: pointer; }
.cart-proceed:disabled { background: #bbb; cursor: not-allowed; }
.cart-local-note { max-width: 560px; margin: 12px auto 0; color: var(--gtx-muted); font-size: 11px; text-align: center; }
.cart-checkout-dialog { padding-top: 50px; }
.cart-checkout-dialog h2 { color: var(--gtx-ink); }

@media (max-width: 820px) {
  .booking-ticket-card { margin-inline: 0; }
  .booking-workspace { grid-template-columns: 1fr; }
  .booking-details-panel { display: none; }
  .booking-mobile-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 12px 20px;
    color: var(--gtx-ink);
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--gtx-line);
    cursor: pointer;
    text-align: left;
  }
  .booking-picker-panel { padding-right: 0; }
  .booking-availability-days { min-height: 350px; }
  .booking-calendar-blank, .booking-availability-day { min-height: 56px; }
}

@media (max-width: 560px) {
  .booking-ticket-summary { padding: 22px 18px; }
  .booking-workspace { gap: 20px; padding: 18px 12px 26px; }
  .booking-details-panel { padding-inline: 18px; }
  .booking-calendar-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .availability-legend { flex-wrap: wrap; }
  .booking-weekdays { font-size: 9px; }
  .booking-calendar-blank, .booking-availability-day { min-height: 47px; padding: 4px; }
  .booking-availability-day::after { width: 6px; height: 6px; margin-top: 5px; }
  .booking-time-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-ticket-line { grid-template-columns: 1fr auto; gap: 8px 12px; }
  .booking-ticket-line .booking-line-price { text-align: left; }
  .booking-ticket-line .quantity { grid-column: 2; grid-row: 1 / span 2; }
  .booking-ticket-line .quantity input { width: 42px; height: 40px; }
  .booking-cart-row { align-items: stretch; flex-direction: column; }
  .booking-cart-row > div { text-align: left; }
  .booking-modal-overlay { padding: 12px; }
  .booking-date-dialog, .booking-details-dialog { max-height: calc(100vh - 24px); padding: 68px 18px 24px; }
  .booking-date-dialog .booking-modal-close,
  .booking-details-dialog .booking-modal-close { position: sticky; top: 0; float: right; margin: -58px -12px 0 0; }
  .booking-date-dialog::before, .booking-details-dialog::before { top: 53px; }
  .booking-date-modal-header { align-items: flex-start; flex-direction: column; }
  .booking-modal-days { min-height: 315px; }
  .booking-modal-blank, .booking-modal-day { min-height: 45px; }
  .cart-page main { padding-top: 82px; }
  .cart-actions { gap: 14px; }
}
