/* ============================================
   HAIRRARI BUSHWICK — Booking flow CSS
   reservation.html + payment.html
   Inherits palette + tokens from style-2026.css
   ============================================ */

/* PAGE BACKGROUND TUNING */
body.page-booking {
  background: var(--color-bg);
  min-height: 100vh;
  padding-top: 64px;
}
body.page-booking .nav { background: rgba(13,14,18,0.85); border-bottom-color: var(--color-border); }

/* AMBIENT MESH BACKGROUND (subtle) */
.booking-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 80% 10%, rgba(228,130,79,0.10) 0%, transparent 60%),
    radial-gradient(45% 35% at 10% 90%, rgba(255,77,166,0.08) 0%, transparent 65%),
    var(--color-bg);
}

/* MAIN WRAPPER */
.booking-main {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem) 0 6rem;
}

/* ====== HERO BOOKING ====== */
.booking-hero {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0 1rem;
}
.booking-hero .eyebrow { margin-bottom: 1rem; }
.booking-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 1rem;
}
.booking-title em {
  font-style: italic;
  color: var(--color-accent);
}
.booking-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ====== STEPPER ====== */
.booking-stepper {
  padding: 2rem 0 1.5rem;
}
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.stepper .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  flex: 1;
  position: relative;
}
.stepper .step::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.stepper .step:last-child::after { display: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all .4s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}
.step.active .step-num {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}
.step.done .step-num {
  background: var(--color-bg-elevated);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.step.done .step-num::before {
  content: "";
  width: 14px; height: 8px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg) translate(1px, -1px);
  position: absolute;
}
.step.done .step-num span { display: none; }
.step.done::after { background: var(--color-accent); }
.step-label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.step.active .step-label { color: var(--color-text); }
.step.done .step-label { color: var(--color-accent); }

@media (max-width: 600px) {
  .stepper { gap: 0; }
  .step-label { font-size: .65rem; letter-spacing: .08em; }
  .stepper .step::after { left: calc(50% + 20px); right: calc(-50% + 20px); }
}

/* ====== LAYOUT GRID (2 cols) ====== */
.booking-form-section { padding: 2rem 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 980px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ====== FORM ====== */
.booking-form {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-2);
}
.bf-step {
  border: 0;
  padding: 0;
  margin: 0 0 2.5rem;
}
.bf-step:last-of-type { margin-bottom: 1rem; }
.bf-step-title {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}
.bf-step-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--color-accent);
  background: rgba(228,130,79,0.12);
  padding: .25rem .5rem;
  border-radius: var(--radius-sm);
}
.bf-step-hint {
  color: var(--color-text-muted);
  font-size: .9rem;
  margin: -.5rem 0 1.25rem;
}

/* INPUT GROUPS */
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bf-row--single { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .bf-row { grid-template-columns: 1fr; }
}
.bf-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.bf-field label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.bf-field input,
.bf-field textarea,
.bf-field select {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  color: var(--color-text);
  font: inherit;
  font-size: .98rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.bf-field input:focus,
.bf-field textarea:focus,
.bf-field select:focus {
  border-color: var(--color-accent);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(228,130,79,0.18);
}
.bf-field input::placeholder,
.bf-field textarea::placeholder { color: var(--color-text-muted); opacity: .7; }
.bf-field input:invalid:not(:placeholder-shown),
.bf-field input.is-error,
.bf-field textarea.is-error {
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 3px rgba(255,77,166,0.15);
}
.bf-field textarea { min-height: 96px; resize: vertical; }
.bf-error {
  font-size: .78rem;
  color: var(--color-accent-2);
  margin-top: .25rem;
  display: none;
}
.bf-field.is-error .bf-error { display: block; }

/* CATEGORY GRID (services) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.cat-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all .3s var(--ease-out-expo);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(228,130,79,0.4);
  box-shadow: var(--shadow-1);
}
.cat-card.active {
  border-color: var(--color-accent);
  background: rgba(228,130,79,0.06);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-glow);
}
.cat-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}
.cat-card-meta {
  font-size: .78rem;
  color: var(--color-text-muted);
  letter-spacing: .04em;
}

/* SERVICE LIST */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .5rem;
}
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: all .25s var(--ease-out-expo);
}
.svc-row:hover { border-color: rgba(228,130,79,0.35); }
.svc-row.selected {
  border-color: var(--color-accent);
  background: rgba(228,130,79,0.06);
}
.svc-row__info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.svc-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.2;
}
.svc-row__sub { font-size: .82rem; color: var(--color-text-muted); }
.svc-row__price {
  font-weight: 700;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  font-size: .98rem;
  white-space: nowrap;
}
.svc-row input[type="radio"],
.svc-row input[type="checkbox"] { display: none; }

.svc-section-title {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 1.25rem 0 .5rem;
}

/* STYLIST GRID */
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .75rem;
}
.stylist-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all .3s var(--ease-out-expo);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stylist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228,130,79,0.4);
  box-shadow: var(--shadow-2);
}
.stylist-card.active {
  border-color: var(--color-accent);
  background: rgba(228,130,79,0.06);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-glow);
}
.stylist-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}
.stylist-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter .3s, transform .5s var(--ease-out-expo);
}
.stylist-card:hover .stylist-card__media img,
.stylist-card.active .stylist-card__media img {
  filter: grayscale(0);
  transform: scale(1.04);
}
.stylist-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--color-text);
}
.stylist-card__name em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: .78rem;
  margin-left: .25rem;
}
.stylist-card__spec {
  font-size: .78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.stylist-card__bio {
  font-size: .78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.stylist-card input[type="radio"] { display: none; }

/* DATE PICKER */
.date-row {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  margin: 0 -.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}
.date-row::-webkit-scrollbar { height: 6px; }
.date-row::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }
.date-card {
  flex: 0 0 auto;
  width: 78px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .75rem .5rem;
  text-align: center;
  cursor: pointer;
  transition: all .25s var(--ease-out-expo);
}
.date-card:hover {
  border-color: rgba(228,130,79,0.4);
  transform: translateY(-2px);
}
.date-card.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}
.date-card__dow {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-muted);
}
.date-card.active .date-card__dow { color: var(--color-bg); opacity: .8; }
.date-card__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--color-text);
  margin: .15rem 0;
}
.date-card.active .date-card__day { color: var(--color-bg); }
.date-card__mon {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.date-card.active .date-card__mon { color: var(--color-bg); opacity: .8; }

/* SLOTS GRID */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  gap: .5rem;
  margin-top: 1rem;
}
.slot {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .65rem .5rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: all .2s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(8px);
  animation: slotIn .4s var(--ease-out-expo) forwards;
}
.slot:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow);
}
.slot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}
.slot.disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot.disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-border);
}
@keyframes slotIn {
  to { opacity: 1; transform: translateY(0); }
}

/* CHECKBOX */
.bf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--color-text);
  cursor: pointer;
  padding: .5rem 0;
}
.bf-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .2s;
}
.bf-checkbox input:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.bf-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--color-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.bf-checkbox a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }

/* ACTIONS */
.bf-actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.bf-disclaimer {
  font-size: .78rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ====== SUMMARY ====== */
.booking-summary {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-2);
}
@media (max-width: 980px) {
  .booking-summary { position: static; }
}
.bs-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.bs-block {
  padding: .75rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.bs-block:last-of-type { border-bottom: 0; }
.bs-block-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: .25rem;
}
.bs-block-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4;
}
.bs-block-value em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: .82rem;
  margin-left: .35rem;
}
.bs-block.empty .bs-block-value {
  color: var(--color-text-muted);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .9rem;
}
.bs-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .92rem;
  padding: .2rem 0;
  color: var(--color-text);
}
.bs-line__label { color: var(--color-text-muted); }
.bs-line__value { font-variant-numeric: tabular-nums; font-weight: 500; }
.bs-divider {
  height: 1px;
  background: var(--color-border);
  margin: 1rem 0;
}
.bs-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: .75rem;
  border-top: 1px solid var(--color-border);
  margin-top: .5rem;
}
.bs-total__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.bs-total__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.bs-note {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: .85rem;
  line-height: 1.5;
  padding-top: .85rem;
  border-top: 1px dashed var(--color-border);
}
.bs-note strong { color: var(--color-text); }

/* TRUST STRIP */
.booking-trust {
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.trust-item__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: rgba(228,130,79,0.08);
  border-radius: 50%;
}
.trust-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.trust-item__sub {
  font-size: .85rem;
  color: var(--color-text-muted);
  max-width: 220px;
}

/* ====== PAYMENT PAGE ====== */

/* Credit card visual */
.cc-visual {
  position: relative;
  aspect-ratio: 1.586 / 1;
  max-width: 380px;
  margin: 0 auto 1.5rem;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,77,166,0.25), transparent 50%),
    linear-gradient(135deg, #1B1A1F 0%, #16151A 50%, #0D0E12 100%);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cc-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 100% 100%, rgba(228,130,79,0.18), transparent 60%);
  pointer-events: none;
}
.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.cc-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.cc-chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #d6a86a, #8a6433);
  border-radius: 5px;
  position: relative;
}
.cc-chip::before, .cc-chip::after {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.2);
}
.cc-chip::before {
  top: 7px; left: 4px; right: 4px;
  height: 1px;
}
.cc-chip::after {
  top: 14px; left: 4px; right: 4px;
  height: 1px;
}
.cc-number {
  font-family: 'Courier New', monospace;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: .08em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  position: relative;
  margin-top: .5rem;
}
.cc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  gap: 1rem;
}
.cc-bottom > div { display: flex; flex-direction: column; gap: .15rem; }
.cc-label {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.cc-val {
  font-family: 'Courier New', monospace;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-text);
  text-transform: uppercase;
}

/* CC brand logos row */
.cc-brands {
  display: flex;
  gap: .5rem;
  margin: .5rem 0 1rem;
  align-items: center;
}
.cc-brands img,
.cc-brands svg {
  height: 22px;
  opacity: .9;
}

/* Payment methods */
.pm-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.pm-tab {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .85rem .5rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: .82rem;
  color: var(--color-text);
  transition: all .2s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.pm-tab:hover { border-color: rgba(228,130,79,0.4); }
.pm-tab.active {
  border-color: var(--color-accent);
  background: rgba(228,130,79,0.06);
  color: var(--color-accent);
}
.pm-tab svg { width: 18px; height: 18px; }

/* Big primary pay button */
.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  padding: 1.15rem 1.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #f29c6c 100%);
  color: var(--color-bg);
  border: 0;
  border-radius: var(--radius-full);
  font: inherit;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s, background-position .5s;
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: var(--shadow-glow), var(--shadow-2);
}
.btn-pay:hover {
  transform: translateY(-2px) scale(1.02);
  background-position: 100% 50%;
  box-shadow: 0 0 48px rgba(228,130,79,0.4), var(--shadow-3);
}
.btn-pay:active { transform: translateY(0) scale(1); }
.btn-pay svg { width: 18px; height: 18px; }

.pay-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .85rem;
  font-size: .8rem;
  color: var(--color-text-muted);
}
.pay-secure svg { width: 14px; height: 14px; color: var(--color-accent); }

/* SUCCESS MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,14,18,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out-expo);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform .5s var(--ease-out-expo);
  box-shadow: var(--shadow-3), var(--shadow-glow);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal-check {
  width: 76px; height: 76px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(228,130,79,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  position: relative;
}
.modal-check svg {
  width: 38px; height: 38px;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck .8s var(--ease-out-expo) forwards .2s;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}
.modal-title em { font-style: italic; color: var(--color-accent); }
.modal-body {
  color: var(--color-text-muted);
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.modal-meta {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.modal-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
}
.modal-meta-row__label {
  color: var(--color-text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
}
.modal-meta-row__value { color: var(--color-text); font-weight: 500; }
.modal-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-actions .btn { flex: 1; min-width: 140px; }
.modal-demo-note {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: var(--color-text-muted);
  font-style: italic;
  opacity: .8;
}

/* CONFETTI (subtle SVG sparkles) */
.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.confetti span {
  position: absolute;
  display: block;
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: confettiDrop 1.6s ease-out forwards;
}
.confetti span:nth-child(2n) { background: var(--color-accent-2); width: 4px; height: 4px; }
.confetti span:nth-child(3n) { background: var(--color-text); width: 3px; height: 3px; }
@keyframes confettiDrop {
  0% { transform: translate(0, -10px) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(var(--dx, 30px), 120px) rotate(360deg); opacity: 0; }
}

/* Payment page hero compact */
.pay-hero {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0 .5rem;
}
.pay-hero .booking-title { font-size: clamp(1.85rem, 4.5vw, 3rem); }

/* Footer mini for booking pages */
.booking-footer-mini {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  padding: 2rem 0;
}
.booking-footer-mini .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
  color: var(--color-text-muted);
}
.booking-footer-mini a { color: var(--color-text); transition: color .2s; }
.booking-footer-mini a:hover { color: var(--color-accent); }
.bfm-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .booking-footer-mini .container { flex-direction: column; text-align: center; }
}

/* MOTION REDUCE */
@media (prefers-reduced-motion: reduce) {
  .slot, .modal, .modal-check svg, .confetti span { animation: none !important; }
}
