/* booking.css — Odyssey VR booking widget (modal popup)
   Manrope throughout. Mobbin-style hierarchy. Glassmorphism + gentle motion.
   Centred modal, dark overlay, bottom-sheet on mobile. */

.overlay, .policy-overlay {
  --paper:      #f4f2ee;
  --paper-2:    #eceae4;
  --card:       #ffffff;
  --ink:        #16151a;
  --ink-soft:   #3a3940;
  --ink-faint:  #57555d;
  --accent:     #5b4bff;
  --accent-ink: #ffffff;
  --line:       #e7e4dd;
  --ok:         #28784b;
  --warn:       #8b6221;
  --bad:        #c0392b;

  --glass-bg:    rgba(255,255,255,0.62);
  --glass-brd:   rgba(255,255,255,0.75);
  --glass-shadow:0 8px 40px rgba(22,21,26,0.10);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* strong custom curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* (site owns global body styles; widget body reset removed to avoid leaking
   its light theme onto the dark site. Modal surfaces below carry their own
   background/colour via the scoped tokens above.) */

/* ---------- Type ---------- */
.modal h1, .modal .h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.modal h2, .modal .h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
.modal h3, .modal .h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.modal h4, .modal .h4 { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; }
.modal .lead { font-size: clamp(16px, 2vw, 18px); color: var(--ink-soft); font-weight: 400; line-height: 1.55; }
.modal .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-faint); }
.modal .muted { color: var(--ink-soft); }

/* ---------- Demo host page ---------- */
.overlay .demo-host { min-height: 100dvh; display: grid; place-items: center; padding: 40px 24px; }
.overlay .demo-host-inner { max-width: 620px; text-align: center; }

/* ---------- Buttons ---------- */
.overlay .btn {
  font-family: inherit; font-size: 16px; font-weight: 600; border: none;
  border-radius: var(--r-pill); padding: 14px 26px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform 140ms var(--ease-out), box-shadow 140ms var(--ease-out), background 140ms var(--ease-out), opacity 140ms var(--ease-out);
}
.overlay .btn-lg { padding: 17px 38px; font-size: 17px; }
.overlay .btn-primary { background: var(--ink); color: var(--paper); }
.overlay .btn-accent { background: var(--accent); color: var(--accent-ink); }
.overlay .btn-ghost { background: var(--card); border: 1px solid var(--line); color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .overlay .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,21,26,0.28); }
  .overlay .btn-accent:hover  { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(91,75,255,0.4); }
  .overlay .btn-ghost:hover   { transform: translateY(-2px); background: #fff; }
}
.overlay .btn:active { transform: scale(0.97); }
.overlay .btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.overlay .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Overlay + modal ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(22,21,26,0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: grid; justify-items: center; align-items: flex-start; padding: 4vh 24px;
  opacity: 0; transition: opacity 220ms var(--ease-out);
}
.overlay.in { opacity: 1; }
.overlay[hidden] { display: none; }

.modal {
  position: relative;
  width: 100%; max-width: 860px; max-height: 90vh;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 90px rgba(22,21,26,0.30);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.96); opacity: 0;
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}
.overlay.in .modal { transform: scale(1); opacity: 1; }

.modal-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 56px 14px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  flex: 0 0 auto;
}
.modal-head .step-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.modal-back {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--card); cursor: pointer; font-size: 17px; color: var(--ink);
  display: grid; place-items: center; flex: 0 0 auto;
  transition: transform 140ms var(--ease-out), background 140ms var(--ease-out);
}
.modal-back:hover { background: var(--paper-2); }
.modal-back[hidden] { display: none; }
.modal-close {
  position: absolute; top: 14px; right: 16px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.05); cursor: pointer; font-size: 24px; line-height: 1;
  color: var(--ink-soft); display: grid; place-items: center;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}

.modal-close:hover { background: rgba(0,0,0,0.1); color: var(--ink); }

.modal-body { overflow-y: auto; padding: 24px; flex: 1 1 auto; -webkit-overflow-scrolling: touch; }

/* view transition inside modal */
.overlay .view { animation: fadeUp 240ms var(--ease-out) both; }
.overlay .stage-head { margin-bottom: 18px; }
.overlay .stage-head h2 { margin-bottom: 6px; }

/* ---------- Step 1: product cards (image-top, 4-up grid) ---------- */
.overlay .prod-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.overlay .prod-list.rooms { grid-template-columns: repeat(2, 1fr); gap: 14px; }
.overlay .prod-row {
  display: flex; flex-direction: column; align-items: stretch;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 0; cursor: pointer; text-align: left; width: 100%; font-family: inherit; overflow: hidden;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .overlay .prod-row:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(22,21,26,0.12); border-color: var(--accent); }
}
.overlay .prod-row:active { transform: scale(0.99); }

/* full-bleed photo, ratio locked so the layout never jumps */
.overlay .prod-photo { display: block; width: 100%; background: var(--paper-2); overflow: hidden; }
.overlay .prod-photo.sq { aspect-ratio: 1 / 1; }
.overlay .prod-photo.wide { aspect-ratio: 604 / 249; }
.overlay .prod-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 320ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .overlay .prod-row:hover .prod-photo img { transform: scale(1.04); } }
.overlay .prod-photo.fallback { display: block; }
/* Labelled placeholder text for products/games with no image yet. */
.overlay .prod-photo.fallback { display: flex; align-items: center; justify-content: center; }
.overlay .prod-photo.fallback .ph-label {
  color: rgba(255,255,255,0.92); font-weight: 800; font-size: 13px;
  letter-spacing: 0.02em; text-align: center; padding: 8px 12px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* text + cta sit below the photo, with the extra breathing room */
.overlay .prod-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 18px; min-width: 0; }
.overlay .prod-main { min-width: 0; width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.overlay .prod-main .name { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; line-height: 1.2; }
.overlay .prod-main .meta { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-top: 5px; line-height: 1.4; }
.overlay .prod-cta { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 6px; margin-top: auto; padding-top: 14px; }
.overlay .prod-cta .from { font-size: 14px; color: var(--ink-faint); font-weight: 700; white-space: nowrap; }
.overlay .prod-cta .from b { font-size: 18px; color: var(--ink); font-weight: 800; }
.overlay .prod-cta .chev { font-size: 18px; color: var(--accent); line-height: 1; }
.overlay .badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-pill); white-space: nowrap;
}
.overlay .badge.popular { background: rgba(91,75,255,0.12); color: var(--accent); }
.overlay .badge.value { background: rgba(46,139,87,0.12); color: var(--ok); }
.overlay .badge.plain { background: var(--paper-2); color: var(--ink-soft); }

/* social proof */
.overlay .rating { display: inline-flex; align-items: center; gap: 6px; margin-top: 7px; }
.overlay .rating .stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.overlay .rating .rcount { font-size: 12px; font-weight: 700; color: var(--ink-soft); }

.overlay .read-more {
  background: none; border: none; font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--accent); cursor: pointer; padding: 0; margin-top: 10px; align-self: flex-start;
}
.overlay .read-more:hover { text-decoration: underline; }

/* ---------- Detail panel ---------- */
.overlay .detail .det-hero { border-radius: var(--r-lg); padding: 26px; color: #fff; margin-bottom: 20px; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; background-size: cover; background-position: center; }
.overlay .detail .det-hero h2 { color: #fff; }
.overlay .detail .det-hero .tagline { font-size: 14px; opacity: 0.94; margin-top: 6px; }
.overlay .detail .det-hero .rating { margin-top: 10px; }
.overlay .detail .det-hero .rating .rcount { color: rgba(255,255,255,0.92); }
.overlay .det-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; margin-bottom: 20px; }
.overlay .det-facts .fact { background: var(--card); padding: 14px 16px; }
.overlay .det-facts .fact .k { font-size: 12px; color: var(--ink-faint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.overlay .det-facts .fact .v { font-size: 15px; font-weight: 700; margin-top: 3px; }
.overlay .det-section { margin-bottom: 22px; }
.overlay .det-section h4 { margin-bottom: 8px; }
.overlay .det-section p { font-size: 15px; color: var(--ink); line-height: 1.6; }
.overlay .det-section ul { list-style: none; margin-top: 6px; }
.overlay .det-section ul li { font-size: 15px; color: var(--ink); padding: 5px 0 5px 22px; position: relative; line-height: 1.5; }
.overlay .det-section ul li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.overlay .det-cancel { background: var(--paper-2); border-radius: var(--r-md); padding: 16px 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.overlay .detail .det-foot { position: sticky; bottom: -24px; background: linear-gradient(transparent, var(--paper) 30%); padding: 20px 0 4px; margin-top: 8px; }
.overlay .detail .det-foot .btn { width: 100%; }

/* ---------- Date strip ---------- */
.overlay .date-strip { display: flex; gap: 10px; overflow-x: auto; padding: 8px 2px 16px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--accent) var(--paper-2); }
/* Branded, slim scrollbar for the date strip (was the browser default). */
.overlay .date-strip::-webkit-scrollbar { height: 8px; }
.overlay .date-strip::-webkit-scrollbar-track { background: var(--paper-2); border-radius: var(--r-pill); margin: 0 2px; }
.overlay .date-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent), #9d4bff);
  border-radius: var(--r-pill);
}
.overlay .date-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.overlay .date-pill {
  flex: 0 0 auto; width: 72px; scroll-snap-align: start; border-radius: var(--r-md);
  background: var(--card); border: 1.5px solid var(--line); padding: 12px 0; text-align: center; cursor: pointer;
  font-family: inherit; display: block;
  transition: transform 140ms var(--ease-out), border-color 140ms var(--ease-out), box-shadow 140ms var(--ease-out);
}
/* same purple lift + glow the time slots use */
@media (hover: hover) and (pointer: fine) {
  .overlay .date-pill:hover:not(.closed) { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 8px 20px rgba(91,75,255,0.14); }
}
.overlay .date-pill:active:not(.closed) { transform: scale(0.98); }
.overlay .date-pill .dow { display: block; font-size: 11px; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; }
.overlay .date-pill .num { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; margin: 2px 0; }
.overlay .date-pill .mon { display: block; font-size: 11px; font-weight: 600; color: var(--ink-soft); }
.overlay .date-pill.sel { background: var(--accent); border-color: var(--accent); color: #fff; }
.overlay .date-pill.sel .dow, .overlay .date-pill.sel .mon { color: rgba(255,255,255,0.85); }
.overlay .date-pill.closed { opacity: 0.4; cursor: not-allowed; }
.overlay .date-pill.closed .num { text-decoration: line-through; }
.overlay .date-pill.today .mon::after { content: " ·"; }
.overlay .slots-hint { padding: 16px 2px; }

/* ---------- Month nav (date step) ---------- */
/* Arrows pinned to the row's edges with the month/year centred between
   them: the label is the flexible member, so it always centres in the
   remaining space regardless of how wide the two fixed-size arrows are. */
.overlay .month-nav { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 14px; }
.overlay .month-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--card); font-size: 16px; color: var(--ink); flex: 0 0 auto;
  display: grid; place-items: center; cursor: pointer; line-height: 1;
  transition: transform 140ms var(--ease-out), border-color 140ms var(--ease-out), color 140ms var(--ease-out);
}
.overlay .month-arrow:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.overlay .month-arrow:active:not(:disabled) { transform: scale(0.94); }
.overlay .month-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.overlay .month-label { flex: 1 1 auto; text-align: center; font-size: 15px; font-weight: 700; }

/* ---------- Time slots ---------- */
.overlay .slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 10px; margin-top: 18px; }
.overlay .slot-grid > .slot { min-width: 0; }
.overlay .slot {
  border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--card);
  padding: 13px 14px; cursor: pointer; text-align: left; font-family: inherit;
  transition: transform 140ms var(--ease-out), border-color 140ms var(--ease-out), box-shadow 140ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .overlay .slot:hover:not(:disabled) { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 8px 20px rgba(91,75,255,0.14); } }
.overlay .slot:active:not(:disabled) { transform: scale(0.98); }
.overlay .slot .time { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.overlay .slot .tag { font-size: 12px; font-weight: 600; margin-top: 3px; display: block; }
.overlay .slot .tag.peak { color: var(--warn); }
.overlay .slot .tag.spare { color: var(--accent); }
.overlay .slot .tag.off { color: var(--ink-faint); }
.overlay .slot.sel { background: var(--accent); border-color: var(--accent); color: #fff; }
.overlay .slot.sel .tag { color: rgba(255,255,255,0.85) !important; }
.overlay .slot:disabled { opacity: 0.5; cursor: not-allowed; }
.overlay .slot.full, .overlay .slot.past { background: var(--paper-2); }
.overlay .slot.full .time, .overlay .slot.past .time { text-decoration: line-through; color: var(--ink-faint); }

/* ---------- Group + private ---------- */
.overlay .group-row { display: grid; grid-template-columns: 2fr 3fr; gap: 16px; align-items: stretch; }
.overlay .group-row.two-col { grid-template-columns: 1fr 1fr; }
.overlay .group-row .panel { margin-top: 0; }
.overlay .group-row .panel + .panel { margin-top: 0; }
/* Group size / guests panel: centre everything */
.overlay .group-row .panel-group { display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; }
.overlay .group-row .panel-group .stepper { justify-content: center; }
.overlay .group-row .panel-group .hint { text-align: center; }
/* summary sitting in the right column beside group size (escape rooms / party) */
.overlay .summary.side { margin-top: 0; display: flex; flex-direction: column; justify-content: center; }
.overlay .panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; }
.overlay .panel + .panel { margin-top: 16px; }
.overlay .hint { font-size: 13px; margin-top: 12px; }
.overlay .stepper { display: flex; align-items: center; gap: 16px; }
.overlay .stepper button {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--card);
  font-size: 24px; font-weight: 600; cursor: pointer; color: var(--ink); display: grid; place-items: center; line-height: 1;
  transition: transform 140ms var(--ease-out), border-color 140ms var(--ease-out), color 140ms var(--ease-out);
}
.overlay .stepper button:hover:not(:disabled) { transform: scale(1.08); border-color: var(--accent); color: var(--accent); }
.overlay .stepper button:active:not(:disabled) { transform: scale(0.95); }
.overlay .stepper button:disabled { opacity: 0.3; cursor: not-allowed; }
.overlay .stepper .count { font-size: 36px; font-weight: 800; min-width: 52px; text-align: center; letter-spacing: -0.02em; }
.overlay .stepper .count small { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.overlay .seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--paper-2); border-radius: var(--r-md); padding: 6px; margin-top: 10px; }
.overlay .seg button { border: none; background: transparent; cursor: pointer; font-family: inherit; border-radius: 11px; padding: 13px 12px; text-align: left; transition: background 140ms var(--ease-out), box-shadow 140ms var(--ease-out); }
.overlay .seg button .t { font-size: 15px; font-weight: 700; display: block; }
.overlay .seg button .d { font-size: 12px; color: var(--ink-soft); display: block; margin-top: 2px; }
.overlay .seg button.on { background: #fff; box-shadow: 0 4px 14px rgba(22,21,26,0.10); }
.overlay .seg button.on .t { color: var(--accent); }
.overlay .dur-seg { margin-top: 0; margin-bottom: 16px; }
.overlay .dur-seg button .t { display: flex; align-items: center; gap: 7px; }
.overlay .dur-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--r-pill); background: rgba(46,139,87,0.14); color: var(--ok); }

/* ---------- Summary footer (inside modal) ---------- */
.overlay .summary { background: var(--glass-bg); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid var(--glass-brd); border-radius: var(--r-lg); padding: 16px 20px; margin-top: 12px; }
.overlay .summary .line { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.overlay .summary .line .k { color: var(--ink-soft); }
.overlay .summary .line .v { font-weight: 700; text-align: right; }
.overlay .summary .total { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.overlay .summary .total .k { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.overlay .summary .total .v { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.overlay .summary .total .hold-clock { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.overlay .summary .total .hold-clock .clock { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--accent); }
.overlay .summary .total.low .hold-clock .clock { color: var(--bad); }
/* Two-card summary: group/session in card 1, hold + price in card 2.
   The summary box is just a transparent container here, so the cards read as
   clean standalone panels (no grey panel-in-panel nesting). */
.overlay .summary.summary-cards {
  background: none; border: none; padding: 0; margin: 0;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.overlay .summary.side.summary-cards { display: block; }
.overlay .sum-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.overlay .sum-card {
  background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 18px;
}
.overlay .sum-card .line { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.overlay .sum-card .line .k { color: var(--ink-soft); }
.overlay .sum-card .line .v { font-weight: 700; text-align: right; }
.overlay .sum-card-total {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 8px;
}
.overlay .sum-card-total .hold-clock { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.overlay .sum-card-total .hold-clock .clock { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--accent); }
.overlay .sum-card-total.low .hold-clock .clock { color: var(--bad); }
.overlay .sum-card-total .v { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.overlay .tween { display: inline-block; transition: transform 140ms var(--ease-out); }
.overlay .tween.bump { transform: scale(1.1); }

.overlay .sticky-cta { position: sticky; bottom: -24px; background: linear-gradient(transparent, var(--paper) 26%); padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0px)); margin-top: 16px; }
.overlay .sticky-cta .btn { width: 100%; }

/* ---------- Payment (boxless, stands on modal bg) ---------- */
.overlay .pay-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.overlay .pay-head .amount { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.overlay .pay-head .amount small { font-size: 13px; color: var(--ink-soft); font-weight: 600; display: block; margin-bottom: 2px; letter-spacing: 0; }
.overlay .pay-head .total { border: none; padding: 0; margin: 0; }
.overlay .pay-head .hold-clock { font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.overlay .pay-head .hold-clock .clock { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--accent); }
.overlay .pay-head .total.low .hold-clock .clock { color: var(--bad); }

.overlay .wallet-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin: 4px 0 0; }
.overlay .wallet { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--r-sm); padding: 13px; border: 2px solid transparent; cursor: pointer; font-weight: 700; font-size: 14px; transition: transform 140ms var(--ease-out), box-shadow 140ms var(--ease-out), border-color 140ms var(--ease-out); }
.overlay .wallet svg { flex: 0 0 auto; }
.overlay .wallet:hover { transform: translateY(-2px); }
.overlay .wallet:active { transform: scale(0.97); }
.overlay .wallet.apple { background: #000; color: #fff; }
.overlay .wallet.google { background: #fff; color: #3c4043; border-color: var(--line); }
.overlay .wallet.link { background: #00d66f; color: #011e0f; }
.overlay .wallet.on { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,75,255,0.18); }
.overlay [hidden] { display: none !important; }

.overlay .divider { display: flex; align-items: center; gap: 12px; color: var(--ink-faint); font-size: 13px; margin: 14px 0; }
.overlay .divider::before, .overlay .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.overlay .field { margin-bottom: 11px; }
.overlay .field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 5px; }
.overlay .field input { width: 100%; font-family: inherit; font-size: 16px; padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--card); transition: border 140ms var(--ease-out), box-shadow 140ms var(--ease-out); }
.overlay .field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,75,255,0.14); }
.overlay .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.overlay .contact-row { grid-template-columns: 1fr 1fr 1fr; }

/* ---------- Confirmation ---------- */
.overlay .confirm-wrap { text-align: center; max-width: 540px; margin: 0 auto; }
.overlay .tick { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px; background: var(--ok); display: grid; place-items: center; animation: pop 460ms var(--ease-out) both; }
.overlay .tick svg { width: 38px; height: 38px; stroke: #fff; stroke-width: 3.5; fill: none; }
.overlay .confirm-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; margin-top: 22px; text-align: left; }
.overlay .confirm-card .line { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); }
.overlay .confirm-card .line:last-child { border-bottom: none; }
.overlay .confirm-card .line .k { color: var(--ink-soft); font-size: 14px; }
.overlay .confirm-card .line .v { font-weight: 700; text-align: right; }
.overlay .confirm-extra { font-size: 14px; color: var(--ink-soft); margin-top: 18px; line-height: 1.6; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.overlay .stagger > * { animation: fadeUp 240ms var(--ease-out) both; }
.overlay .stagger > *:nth-child(1) {animation-delay:30ms} .stagger > *:nth-child(2){animation-delay:70ms}
.overlay .stagger > *:nth-child(3) {animation-delay:110ms} .stagger > *:nth-child(4){animation-delay:150ms}
.overlay .stagger > *:nth-child(5) {animation-delay:190ms} .stagger > *:nth-child(6){animation-delay:230ms}
.overlay .stagger > *:nth-child(n+7) {animation-delay:260ms}

/* ---------- Responsive: 2-up on tablet / narrow windows ---------- */
@media (max-width: 820px) and (min-width: 561px) {
  .overlay .prod-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .overlay .prod-list.rooms { grid-template-columns: repeat(2, 1fr); }
  .overlay .prod-body { padding: 16px; }
}

/* ---------- Responsive: bottom sheet on mobile ---------- */
@media (max-width: 560px) {
  .overlay { padding: 0; align-items: flex-end; }
  .modal { max-width: 100%; height: 92dvh; max-height: 92dvh; border-radius: var(--r-xl) var(--r-xl) 0 0; transform: translateY(100%); opacity: 1; transition: transform 320ms var(--ease-drawer); }
  .overlay.in .modal { transform: translateY(0); }
  .modal-body { padding: 18px; }
  .modal-head { padding: 16px 52px 12px 18px; }
  /* Close button: nudged up to sit level with the step label text
     (the head's own line-height puts its optical centre higher than
     the button's old fixed 14px offset). */
  .modal-close { top: 8px; width: 32px; height: 32px; font-size: 20px; }
  /* Two-up experience cards, so picking an experience takes less scrolling. */
  .overlay .prod-list, .overlay .prod-list.rooms { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .overlay .prod-body { padding: 12px; }
  .overlay .prod-main .name { font-size: 14px; gap: 4px; }
  .overlay .prod-main .meta { font-size: 11px; margin-top: 3px; }
  .overlay .prod-cta { padding-top: 10px; }
  .overlay .prod-cta .from { font-size: 12px; }
  .overlay .prod-cta .chev { font-size: 15px; }
  .overlay .badge { font-size: 9px; padding: 2px 6px; }
  .overlay .read-more { font-size: 11px; margin-top: 6px; }
  /* Fixing the .two-col specificity below beats the desktop rule, so the
     group panel stacks above the summary instead of squeezing beside it. */
  .overlay .group-row, .overlay .group-row.two-col { grid-template-columns: 1fr; }
  .overlay .group-row > * { min-width: 0; }
  .overlay .sum-card { min-width: 0; }
  .overlay .slot-grid { grid-template-columns: repeat(2, 1fr); }
  /* Duration toggle (60/90 min) stays two-up; every other segmented
     control still collapses to one column. */
  .overlay .seg:not(.dur-seg) { grid-template-columns: 1fr; }
  .overlay .dur-seg button { padding: 12px 10px; }
  .overlay .dur-seg button .t { font-size: 13px; flex-wrap: wrap; row-gap: 2px; }
  .overlay .dur-seg button .d { font-size: 11px; }
  .overlay .dur-badge { font-size: 9px; padding: 2px 6px; }
  .overlay .field-row, .contact-row { grid-template-columns: 1fr; }
  .overlay .date-pill { width: 64px; }
  /* Confirmation: paired values were right-aligned in a narrow column,
     which reads oddly on a phone. Stack each pair's value under its
     label, left-aligned, and trim the card so it takes less height. */
  .overlay .line--pair .pair { flex-direction: column; align-items: flex-start; gap: 2px; }
  .overlay .confirm-card { padding: 16px; }
  .overlay .confirm-card .line { padding: 8px 0; }
  .overlay .confirm-card .line .k { font-size: 12px; }
  .overlay .confirm-card .line .v { font-size: 14px; text-align: left; }
  .overlay .tick { width: 38px; height: 38px; margin-bottom: 14px; }
  .overlay .tick svg { width: 19px; height: 19px; stroke-width: 4; }
}

@media (prefers-reduced-motion: reduce) {
  .overlay { transition: opacity 200ms ease; }
  .modal { transition: opacity 200ms ease; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .overlay .view, .stagger > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .overlay .tick { animation: none !important; }
}

/* ====================================================================
   Additions: progress, notices, reviews, party extras, gift card,
   form validation, checkboxes, focus states
   ==================================================================== */

/* ---------- Progress indicator ---------- */
.overlay .progress { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.overlay .pstep { display: inline-flex; align-items: center; gap: 8px; }
.overlay .pstep .pdot { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; background: var(--paper-2); color: var(--ink-faint); flex: 0 0 auto; }
.overlay .pstep .plab { font-size: 13px; font-weight: 700; color: var(--ink-faint); }
.overlay .pstep.now .pdot { background: var(--accent); color: #fff; }
.overlay .pstep.now .plab { color: var(--ink); }
.overlay .pstep.done .pdot { background: var(--ok); color: #fff; }
.overlay .pstep.done .plab { color: var(--ink-soft); }
.overlay .pbar { flex: 1 1 auto; height: 2px; background: var(--line); border-radius: 2px; min-width: 12px; }

/* ---------- Inline notice (e.g. hold expired) ---------- */
.overlay .notice { background: rgba(91,75,255,0.08); border: 1px solid rgba(91,75,255,0.25); color: var(--ink); border-radius: var(--r-md); padding: 12px 14px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }

/* ---------- Reviews (detail) ---------- */
.overlay .reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.overlay .review { background: var(--paper-2); border-radius: var(--r-md); padding: 14px 16px; }
.overlay .review .rstars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.overlay .review p { font-size: 14px; line-height: 1.5; margin: 6px 0; color: var(--ink); }
.overlay .review .rname { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.overlay .extras-list { list-style: none; }
.overlay .extras-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.overlay .extras-list li:last-child { border-bottom: none; }
.overlay .extras-list .ex-price { font-weight: 800; white-space: nowrap; }
.overlay .det-call { background: var(--paper-2); border-radius: var(--r-md); padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; }

/* ---------- VR Party extras ---------- */
.overlay .extras-panel { margin-top: 16px; }
.overlay .extras-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.overlay .extra { display: flex; align-items: center; gap: 12px; text-align: left; font-family: inherit; cursor: pointer;
  background: var(--paper-2); border: 1.5px solid transparent; border-radius: var(--r-md); padding: 13px 14px;
  transition: border-color 140ms var(--ease-out), background 140ms var(--ease-out), transform 120ms var(--ease-out); }
.overlay .extra:hover { transform: translateY(-2px); }
.overlay .extra .ex-check { width: 22px; height: 22px; flex: 0 0 auto; border-radius: 6px; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff; }
.overlay .extra .ex-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.overlay .extra .ex-name { font-size: 14px; font-weight: 700; }
.overlay .extra .ex-note { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.overlay .extra .ex-amt { font-size: 14px; font-weight: 800; white-space: nowrap; }
.overlay .extra .ex-per { font-size: 11px; font-weight: 600; color: var(--ink-soft); display: block; }
.overlay .extra.on { border-color: var(--accent); background: #fff; box-shadow: 0 4px 14px rgba(91,75,255,0.12); }
.overlay .extra.on .ex-check { background: var(--accent); border-color: var(--accent); }

/* ---------- Gift card ---------- */
.overlay .gift .panel { margin-top: 14px; }
.overlay .gift .panel:first-of-type { margin-top: 0; }
.overlay .gift h3 { margin-bottom: 4px; }
.overlay .amt-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.overlay .amt { font-family: inherit; font-size: 17px; font-weight: 800; cursor: pointer; padding: 16px 8px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--card); color: var(--ink);
  transition: border-color 140ms var(--ease-out), box-shadow 140ms var(--ease-out), transform 120ms var(--ease-out); }
.overlay .amt:hover { transform: translateY(-2px); border-color: var(--accent); }
.overlay .amt.on { border-color: var(--accent); background: rgba(91,75,255,0.06); box-shadow: 0 0 0 3px rgba(91,75,255,0.14); color: var(--accent); }
.overlay .custom-amt { margin-top: 12px; margin-bottom: 0; }

/* upload dropzone */
.overlay .dropzone { border: 2px dashed var(--line); border-radius: var(--r-md); background: var(--paper-2); cursor: pointer;
  min-height: 120px; display: grid; place-items: center; padding: 16px; transition: border-color 140ms var(--ease-out), background 140ms var(--ease-out); overflow: hidden; }
.overlay .dropzone:hover { border-color: var(--accent); background: rgba(91,75,255,0.04); }
.overlay .dz-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.overlay .dz-icon { font-size: 26px; color: var(--accent); font-weight: 700; line-height: 1; }
.overlay .dz-text { font-size: 14px; font-weight: 700; color: var(--ink); }
.overlay .dz-sub { font-size: 12px; color: var(--ink-soft); }
.overlay .dropzone.has-image { border-style: solid; padding: 12px; }
.overlay .dz-preview { width: 100%; max-width: 320px; aspect-ratio: 86 / 54; object-fit: cover; border-radius: var(--r-sm); display: block; box-shadow: 0 6px 18px rgba(22,21,26,0.12); }
.overlay .dz-change { margin-top: 10px; background: none; border: none; font-family: inherit; font-size: 13px; font-weight: 700; color: var(--accent); cursor: pointer; }
.overlay .dz-change:hover { text-decoration: underline; }

/* textarea + select to match inputs */
.overlay .field textarea { width: 100%; font-family: inherit; font-size: 16px; padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--card); resize: vertical; transition: border 140ms var(--ease-out), box-shadow 140ms var(--ease-out); }
.overlay .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,75,255,0.14); }
.overlay .field select { width: 100%; font-family: inherit; font-size: 16px; padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--card); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2357555d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.overlay .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,75,255,0.14); }
.overlay .pay-panel { margin-top: 14px; }

/* ---------- Checkboxes ---------- */
.overlay .check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); cursor: pointer; margin-top: 6px; line-height: 1.4; }
.overlay .check input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--accent); margin-top: 1px; cursor: pointer; }

/* ---------- Inline validation ---------- */
.overlay .err { display: block; font-size: 12px; font-weight: 600; color: var(--bad); margin-top: 5px; min-height: 0; }
.overlay .err:empty { display: none; }
.overlay .field input.bad, .overlay .field textarea.bad, .overlay input.bad { border-color: var(--bad) !important; box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important; }

/* ---------- Focus visibility (accessibility) ---------- */
.prod-row:focus-visible, .date-pill:focus-visible, .slot:focus-visible, .wallet:focus-visible,
.amt:focus-visible, .extra:focus-visible, .dropzone:focus-visible, .seg button:focus-visible,
.dur-seg button:focus-visible, .stepper button:focus-visible, .btn:focus-visible, .read-more:focus-visible,
.modal-back:focus-visible, .modal-close:focus-visible, .month-arrow:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.overlay .field input:focus-visible, .overlay .field textarea:focus-visible, .overlay .field select:focus-visible { outline: none; }

/* ---------- Products header with rating aside ---------- */
.overlay .stage-head.with-aside { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.overlay .stage-head.with-aside > div { min-width: 0; }
.overlay .head-rating { flex: 0 0 auto; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; padding-top: 2px; }
.overlay .head-rating .stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.overlay .head-rating .rcount { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
/* Booking meta on the "Who's coming?" step: pushed to the right, on one line
   beside the heading, with the heading taking the remaining space. */
.overlay .stage-head.with-aside .head-meta {
  flex: 0 1 auto; margin: 0; text-align: right; align-self: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: 13px; font-weight: 600;
}
@media (max-width: 560px) {
  .overlay .stage-head.with-aside .head-meta {
    flex-basis: 100%; text-align: left; white-space: normal; margin-top: 4px;
  }
}

/* ---------- Gift card pay button (not sticky) ---------- */
.overlay .gift-pay { width: 100%; margin-top: 18px; }

/* ---------- Secured payment line ---------- */
.overlay .secured { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin: 12px 0 4px; }
.overlay .secured svg { flex: 0 0 auto; color: var(--ok); }

/* ---------- Agreement checkbox + inline policy link ---------- */
.overlay .check.agree { margin-top: 14px; }
.overlay .link-btn { background: none; border: none; padding: 0; font: inherit; color: var(--accent); font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.overlay .link-btn:hover { color: var(--ink); }

/* ---------- Policy popup (layers above the booking modal) ---------- */
.overlay .policy-overlay { z-index: 1100; }
.overlay .policy-modal { max-width: 640px; }
.overlay .policy-page-link { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.overlay .policy-page-link:hover { color: var(--ink); }

/* ---------- Mobile grid overrides (placed last so they win source order) ---------- */
@media (max-width: 620px) {
  .overlay .extras-grid { grid-template-columns: 1fr; }
  .overlay .amt-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .overlay .head-rating { display: none; }
}

/* ---- Contact block on the group step ---- */
.overlay .contact-block { margin-top: 18px; }
.overlay .contact-block h3 { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ---- Checkbox: white box, accent tick (was rendering dark) ---- */
.overlay .check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px;
  border: 1.5px solid var(--line); border-radius: 6px;
  background: #fff; cursor: pointer; position: relative;
  transition: border-color 140ms var(--ease-out), background 140ms var(--ease-out);
}
.overlay .check input[type="checkbox"]:hover { border-color: var(--accent); }
.overlay .check input[type="checkbox"]:checked {
  background: var(--accent); border-color: var(--accent);
}
.overlay .check input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid #fff;
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.overlay .check input[type="checkbox"]:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(91,75,255,0.14);
}

/* ---- Confirmation: paired rows + helpful links ---- */
.overlay .line--pair { display: flex; gap: 16px; }
.overlay .line--pair .pair { flex: 1; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }

.overlay .confirm-links {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 18px;
}
.overlay .confirm-links .clink {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 10px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  background: var(--card); transition: border-color 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.overlay .confirm-links .clink:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.overlay .confirm-links .clink svg { flex: 0 0 auto; }

/* Arena note: explains that games are chosen on arrival, not at booking.
   Sits between the heading and the duration toggle on the date step. */
.overlay .arena-note {
  background: var(--accent-wash, rgba(124,92,255,0.10));
  border: 1px solid var(--accent-line, rgba(124,92,255,0.28));
  border-radius: var(--r-md, 12px);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.overlay .arena-note strong { color: var(--ink); display: block; margin-bottom: 2px; }

/* Confirmation: directions PDF + share row.
   The PDF button sits under the quick links; the share row is separated by a
   hairline so it reads as a distinct action rather than more of the same. */
.overlay .confirm-pdf {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
}
.overlay .confirm-share {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.overlay .cshare-label {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  margin-bottom: 12px;
}
.overlay .cshare-links {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.overlay .cshare {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  color: var(--ink-soft); font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.overlay .cshare:hover {
  border-color: var(--accent); color: var(--accent); transform: translateY(-1px);
}
.overlay .cshare svg { flex: 0 0 auto; }
@media (max-width: 480px) {
  .overlay .cshare { flex: 1 1 calc(50% - 5px); justify-content: center; }
}
