/* =============================================
   BOOKING FLOW — Premium UX
   Two-column desktop · Cart sidebar · Multi-select
   ============================================= */

/* ----- Page Layout ----- */
.booking-page {
  min-height: 100vh;
  padding-top: 60px;
  background: var(--warm-white);
}
.booking-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 4px;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2px;
  text-align: center;
}
.booking-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2px;
  line-height: 1.4;
}

/* Two-column body */
.booking-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 32px;
}
.booking-main {
  min-width: 0;
}

@media (min-width: 768px) {
  .booking-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .booking-body {
    grid-template-columns: 1fr 300px;
    gap: 36px;
  }
}

/* When no slots, single column so waitlist is full width */
.booking-body.no-slots-available {
  display: block;
}

/* Legacy container for success/manage pages */
.booking-container {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Visual Stepper ----- */
.booking-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
  padding: 0 12px;
}
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.stepper-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-light);
  background: var(--warm-white);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.stepper-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.stepper-line {
  flex: 1;
  height: 1.5px;
  background: var(--cream-dark);
  margin-top: 14px;
  min-width: 28px;
  max-width: 72px;
  transition: background 0.5s ease;
}

.stepper-step.active .stepper-circle {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.stepper-step.active .stepper-label {
  color: var(--charcoal);
  font-weight: 500;
}
.stepper-step.completed .stepper-circle {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}
.stepper-step.completed .stepper-label { color: var(--forest); }
.stepper-line.completed { background: var(--forest); }
.stepper-step.completed .stepper-circle::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--cream);
  border-bottom: 1.5px solid var(--cream);
  transform: rotate(-45deg) translateY(-1px);
}
.stepper-step.completed .stepper-circle .stepper-num { display: none; }

/* ----- Step Transitions ----- */
.booking-step {
  display: none;
  opacity: 0;
  padding: 0;
}
.booking-step.active {
  display: block;
  padding: 0;
  animation: stepReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes stepReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Step 1: Type Cards ----- */
.booking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.booking-card {
  font-family: var(--sans);
  text-align: left;
  padding: 28px 24px;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.booking-card:hover {
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.booking-card:hover::before { transform: scaleX(1); }
.booking-card.selected {
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(30, 58, 43, 0.12);
}
.booking-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(107, 143, 113, 0.1);
  padding: 3px 10px;
  border-radius: 1px;
  margin-bottom: 14px;
}
.booking-card h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.booking-card p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.booking-card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.booking-card-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
}
.booking-card-duration {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-light);
}
.booking-card-bundle {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--gold-dim);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--cream-dark);
}

/* ----- Step 2: Timezone Picker ----- */
.booking-tz-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.booking-tz-row .tz-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.tz-picker {
  position: relative;
  flex: 1;
  max-width: 320px;
}
.tz-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.tz-display:hover,
.tz-display:focus { border-color: var(--sage-light); outline: none; }
.tz-arrow { font-size: 0.7rem; color: var(--text-light); transition: transform 0.3s; }
.tz-picker.open .tz-arrow { transform: rotate(180deg); }
.tz-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: none;
  max-height: 260px;
  overflow: hidden;
  flex-direction: column;
}
.tz-picker.open .tz-dropdown { display: flex; }
.tz-search {
  padding: 9px 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  background: transparent;
  color: var(--charcoal);
  outline: none;
  flex-shrink: 0;
}
.tz-search::placeholder { color: var(--text-light); }
.tz-options { overflow-y: auto; flex: 1; }
.tz-option {
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}
.tz-option:hover { background: var(--cream); }
.tz-option.active {
  color: var(--forest);
  font-weight: 500;
  background: rgba(107, 143, 113, 0.06);
}

/* ----- Step 2: Slot List ----- */
.slots-wrap { position: relative; }
.slot-days {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Month accordion */
.month-accordion {
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--warm-white);
}
.month-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: background 0.2s;
}
.month-accordion-header:hover {
  background: rgba(107, 143, 113, 0.08);
}
.month-accordion-title {
  flex: 1;
}
.month-accordion-count {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}
.month-accordion-chevron {
  font-size: 0.65rem;
  color: var(--text-light);
  transition: transform 0.25s ease;
}
.month-accordion.open .month-accordion-chevron {
  transform: rotate(180deg);
}
.month-accordion-body {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 12px 16px;
  border-top: 1px solid var(--cream-dark);
}
.month-accordion.open .month-accordion-body {
  display: flex;
}

.day-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.day-card:hover { border-color: rgba(107, 143, 113, 0.25); }
.day-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.day-card-date {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.day-card-relative {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(201, 169, 110, 0.12);
  padding: 2px 8px;
  border-radius: 100px;
}
.day-card-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 16px;
}
.slot-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.25s ease;
  position: relative;
}
.slot-card:hover {
  border-color: var(--sage-light);
  background: rgba(107, 143, 113, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.slot-card.selected {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(30, 58, 43, 0.18);
  transform: translateY(-1px);
}
.slot-card.selected .slot-check {
  display: inline-flex;
}
.slot-check {
  display: none;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 0.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.slot-card-time {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.slot-card-end {
  font-size: 0.75rem;
  color: var(--text-light);
}
.slot-card-dur {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.slot-card.selected .slot-card-time,
.slot-card.selected .slot-card-end,
.slot-card.selected .slot-card-dur { color: var(--cream); }

/* Inline slot count hint */
.slot-count-hint {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.slot-count-hint strong { color: var(--forest); font-weight: 500; }

/* Continue + back (inline on step 2) */
.booking-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 16px;
}
.booking-step-actions .btn { min-width: 180px; }

/* ----- Cart Sidebar ----- */
.booking-sidebar {
  display: none;
}
@media (min-width: 768px) {
  .booking-sidebar {
    display: block;
    position: sticky;
    top: 80px;
    transition: opacity 0.4s ease;
  }
}

.cart {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}
.cart-header {
  padding: 14px 18px 0;
}
.cart-header h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}
.cart-body {
  padding: 10px 18px 14px;
}
.cart-empty {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 6px 0;
}
.cart-type-row { margin-bottom: 10px; }
.cart-type-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.cart-type-detail {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-light);
}
.cart-slots-list { margin-bottom: 4px; }
.cart-slot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--charcoal);
}
.cart-slot-check {
  color: var(--forest);
  font-size: 0.72rem;
  flex-shrink: 0;
}
.cart-slot-empty {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  padding: 4px 0;
}
.cart-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 10px 0;
}
.cart-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 6px;
}
.cart-line .was {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.78rem;
  margin-left: 6px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--charcoal);
}
.cart-total {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
}
.cart-savings {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--forest);
  text-align: right;
  margin-top: 3px;
  font-weight: 500;
}
.cart-continue-btn {
  width: calc(100% - 44px);
  margin: 14px 22px 18px;
  padding: 12px 20px;
  text-align: center;
}

/* Bundle nudge */
.cart-nudge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  margin: 0 22px;
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 6px;
  animation: nudgeFadeIn 0.4s ease-out;
}
.cart-nudge.applied {
  background: rgba(107, 143, 113, 0.08);
  border-color: rgba(107, 143, 113, 0.3);
}
@keyframes nudgeFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nudge-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}
.cart-nudge.applied .nudge-icon { color: var(--forest); }
.nudge-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.5;
}
.nudge-text strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 2px;
}
.nudge-text span { color: var(--text-light); font-size: 0.78rem; }

/* ----- Mobile Cart Bar ----- */
.mobile-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "count  ."
    "nudge  btn"
    "price  .";
  gap: 2px 12px;
  align-items: center;
  padding: 12px 20px;
  background: var(--forest-deep);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-cart.visible { transform: translateY(0); }
.mobile-cart-count {
  grid-area: count;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.65);
}
.mobile-cart-nudge {
  grid-area: nudge;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.mobile-cart-nudge:not(:empty) {
  padding: 0 10px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 4px;
}
.mobile-cart-price {
  grid-area: price;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
}
.mobile-cart .btn {
  grid-area: btn;
  padding: 10px 24px;
  font-size: 0.82rem;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .mobile-cart { display: none !important; }
}

/* ----- Step 3: Review Card ----- */
.booking-review-card {
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 20px;
}
.review-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.review-type {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.review-change {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--gold-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
  flex-shrink: 0;
}
.review-change:hover { color: var(--forest); }
.review-sessions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-session {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
  padding: 4px 0;
}
.review-session-check {
  color: var(--forest);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ----- Step 4: Payment ----- */
.payment-wrap { margin-bottom: 16px; }
.payment-review {
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 20px;
}
.payment-review .review-type { margin-bottom: 4px; }
.payment-total {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-top: 8px;
}
.payment-form { margin-bottom: 16px; }
.payment-element {
  margin-bottom: 20px;
  min-height: 100px;
}
.payment-form .btn { width: 100%; }

/* ----- Form ----- */
.booking-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 5px;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.booking-form label:first-of-type { margin-top: 0; }
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}
.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-form .form-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 3px;
}
.booking-form button[type="submit"] {
  margin-top: 20px;
  width: 100%;
}
.booking-form .form-optional {
  font-weight: 300;
  color: var(--text-light);
}
.booking-form .contact-preference-fieldset {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.booking-form .contact-preference-fieldset legend,
.booking-form .contact-preference-fieldset .sr-only {
  width: 100%;
  margin-bottom: 6px;
}
.booking-form .contact-preference-fieldset legend {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.booking-form .contact-preference-fieldset .contact-pref-option {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  align-items: stretch;
}
.booking-form .contact-preference-fieldset .contact-pref-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.booking-form .contact-preference-fieldset .contact-pref-option span {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: var(--warm-white, #faf8f5);
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
}
.booking-form .contact-preference-fieldset .contact-pref-option:first-of-type span {
  border-radius: 6px 0 0 6px;
  border-right-width: 0;
}
.booking-form .contact-preference-fieldset .contact-pref-option:last-of-type span {
  border-radius: 0 6px 6px 0;
}
.booking-form .contact-preference-fieldset .contact-pref-option input:checked + span {
  background: var(--forest, #1e3a2b);
  color: #f5f0e8;
  border-color: var(--forest, #1e3a2b);
}
.booking-form .contact-preference-fieldset .contact-pref-option:hover span {
  background: rgba(201, 169, 110, 0.15);
}
.booking-form .contact-preference-fieldset .contact-pref-option input:checked:hover + span {
  background: var(--forest, #1e3a2b);
}
.booking-form .client-phone-wrap {
  margin-top: 14px;
}
.booking-form .client-phone-wrap label { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ----- Buttons ----- */
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  letter-spacing: 0.02em;
}
.booking-back:hover { color: var(--forest); }
.booking-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ----- Loading Spinner ----- */
.booking-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 16px;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-loading p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
}

/* ----- Toast ----- */
.booking-toast {
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 500;
  min-width: 240px;
  max-width: 360px;
  padding: 14px 18px;
  background: var(--forest-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.45;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.booking-toast.visible {
  transform: translateX(0);
  pointer-events: auto;
}
.booking-toast.error { border-left-color: #c85050; }

/* ----- Success Page ----- */
.success-wrapper {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.success-check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.success-check-circle svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s 0.35s ease forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.success-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.6;
}
.success-card {
  text-align: left;
  padding: 24px;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 24px;
}
.success-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.success-card-row:last-child { margin-bottom: 0; }
.success-card-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold);
}
.success-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.success-card-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.success-card-value {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.success-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ----- Manage Page ----- */
.manage-wrapper { max-width: 560px; margin: 0 auto; }
.manage-status {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.manage-status.confirmed { color: var(--forest); background: rgba(107,143,113,0.1); }
.manage-status.cancelled { color: #8b2a2a; background: rgba(200,80,80,0.1); }
.manage-card {
  padding: 24px;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 24px;
}
.manage-card-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.manage-card-row:last-child { margin-bottom: 0; }
.manage-card-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold);
}
.manage-card-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.manage-card-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.manage-card-value {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.manage-card-value a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.3s;
}
.manage-card-value a:hover { color: var(--gold); }
.manage-card-notes {
  white-space: pre-wrap;
  word-break: break-word;
}
.manage-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.manage-divider { height: 1px; background: var(--cream-dark); margin: 28px 0; }
.manage-reschedule-section h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.manage-reschedule-section > p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 14px;
}
.manage-policy {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 14px 18px;
  background: rgba(201,169,110,0.06);
  border-radius: 2px;
  margin-top: 24px;
}
.manage-data-section { margin-top: 8px; }
.manage-data-section h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.manage-data-intro {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 12px;
}
.manage-data-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.manage-result { text-align: center; padding: 40px 0; }
.manage-result p {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.manage-result .btn { margin-top: 8px; }
.manage-result-datetime {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 14px 0;
}

/* ----- Button overrides ----- */
.booking-page .btn-ghost {
  color: var(--forest);
  border-color: var(--cream-dark);
}
.booking-page .btn-ghost:hover {
  border-color: var(--forest);
  color: var(--forest-deep);
}
.booking-page .btn-danger {
  color: #8b2a2a;
  border-color: rgba(200,80,80,0.3);
}
.booking-page .btn-danger:hover {
  color: #6a1a1a;
  border-color: rgba(200,80,80,0.5);
  background: rgba(200,80,80,0.04);
}

/* ----- Error ----- */
.booking-error {
  padding: 12px 16px;
  background: rgba(200,80,80,0.08);
  border: 1px solid rgba(200,80,80,0.2);
  border-radius: 2px;
  color: #7a2020;
  font-family: var(--sans);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ----- No Availability ----- */
.no-availability {
  text-align: center;
  padding: 36px 32px;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  background: var(--cream, #f5f0e8);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 8px;
}
.no-availability strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.no-availability-p {
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.55;
  font-size: 0.84rem;
}
.waitlist-form-wrap {
  margin-top: 0;
  text-align: left;
}
.no-availability .waitlist-form {
  margin-left: 0;
  margin-right: 0;
  gap: 14px;
}
.no-availability .waitlist-form .waitlist-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 5px;
}
.no-availability .waitlist-form .btn {
  margin-top: 6px;
  padding: 12px 20px;
  font-size: 0.9rem;
  align-self: center;
}
@media (min-width: 480px) {
  .no-availability .waitlist-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .no-availability .waitlist-form-row .waitlist-pref {
    margin-top: 0;
  }
}

/* When slots exist but don't suit */
.slots-not-suitable-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark, #e8e2d9);
}
.slots-not-suitable-intro {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 16px;
}
.waitlist-feedback-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 6px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 72px;
  box-sizing: border-box;
}
.waitlist-feedback-form textarea::placeholder {
  color: var(--text-light);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  margin: 0 0 12px;
  max-width: 100%;
}
.waitlist-form .waitlist-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.waitlist-form .waitlist-pref {
  margin: 4px 0 0;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.waitlist-form .waitlist-pref .sr-only,
.waitlist-form .waitlist-pref-legend {
  width: 100%;
  margin-bottom: 6px;
}
.waitlist-form .waitlist-pref-legend {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.waitlist-form .waitlist-pref-option {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  align-items: stretch;
}
.waitlist-form .waitlist-pref-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.waitlist-form .waitlist-pref-option span {
  display: block;
  width: 100%;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: var(--warm-white, #faf8f5);
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
}
.waitlist-form .waitlist-pref-option:first-of-type span {
  border-radius: 6px 0 0 6px;
  border-right-width: 0;
}
.waitlist-form .waitlist-pref-option:last-of-type span {
  border-radius: 0 6px 6px 0;
}
.waitlist-form .waitlist-pref-option input:checked + span {
  background: var(--forest, #1e3a2b);
  color: #f5f0e8;
  border-color: var(--forest, #1e3a2b);
}
.waitlist-form .waitlist-pref-option:hover span {
  background: rgba(201, 169, 110, 0.15);
}
.waitlist-form .waitlist-pref-option input:checked:hover + span {
  background: var(--forest, #1e3a2b);
}
.waitlist-form .waitlist-phone-wrap { margin-top: 4px; }
.waitlist-form .waitlist-phone-wrap .waitlist-label { margin-bottom: 4px; }
.waitlist-form input[type="email"],
.waitlist-form input[type="tel"] {
  min-width: 0;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 6px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.9rem;
  box-sizing: border-box;
}
.waitlist-form input[type="email"]::placeholder,
.waitlist-form input[type="tel"]::placeholder {
  color: var(--text-light);
}
.waitlist-form .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  margin-top: 4px;
}
.waitlist-success {
  margin: 0;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 500;
}
.waitlist-error {
  margin: 0;
  color: #c44;
  font-size: 0.82rem;
}

/* ----- Footer ----- */
.booking-footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(107,143,113,0.15);
  padding: 32px 24px;
}
.booking-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.booking-footer-brand {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: rgba(245,240,232,0.4);
}
.booking-footer-links { display: flex; gap: 18px; }
.booking-footer-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.booking-footer-links a:hover { color: var(--gold); }

/* ----- Responsive ----- */
@media (max-width: 767px) {
  .booking-sidebar { display: none !important; }
  .booking-body { padding-bottom: 80px; }
}

@media (max-width: 640px) {
  .booking-page { padding-top: 64px; }
  .booking-header { padding: 0 16px 8px; }
  .booking-body { padding: 0 16px 80px; }
  .booking-cards { grid-template-columns: 1fr; }
  .stepper-label { display: none; }
  .stepper-line { min-width: 20px; }
  .booking-review-card { padding: 14px 16px; }
  .booking-tz-row {
    flex-direction: column;
    align-items: stretch;
  }
  .tz-picker { max-width: none; }
  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .success-actions .btn { text-align: center; }
  .manage-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .manage-actions .btn { text-align: center; }
  .booking-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .booking-toast {
    right: 12px;
    left: 12px;
    min-width: 0;
    max-width: none;
  }
  .booking-step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-step-actions .btn { min-width: 0; }
}

@media (max-width: 400px) {
  .stepper-circle { width: 24px; height: 24px; font-size: 0.65rem; }
  .stepper-line { margin-top: 12px; }
  .booking-card { padding: 18px 16px; }
  .slot-card { padding: 7px 12px; }
  .day-card-slots { gap: 5px; padding: 8px 12px; }
}
