/* ===================================================================
   BOOKING PAGE
=================================================================== */
.booking-page { padding: var(--space-5) 0 var(--space-7); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-5);
  align-items: start;
}

.booking-head h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 6px;
}
.booking-head p { color: var(--text-secondary); margin-bottom: var(--space-4); }

/* Progress rail */
.progress-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: var(--space-4);
}
.progress-rail li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.progress-rail li.is-active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.progress-rail li.is-done { color: var(--accent); border-color: var(--accent); background: transparent; }

/* Step panel */
.step-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}
.step__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: var(--space-1);
}
.step__lede { color: var(--text-secondary); margin-bottom: var(--space-3); }
.booking-legal-note { color: var(--text-muted); font-size: 12.5px; margin-top: var(--space-3); text-align: center; }
.step__nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-soft);
}
.muted { color: var(--text-muted); }

/* Option grids (service / vehicle) */
.option-grid { display: grid; gap: 12px; }
.option-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.option-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 640px) { .option-grid--2, .option-grid--3 { grid-template-columns: 1fr 1fr; } }

.option-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 44px;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.option-card:hover { border-color: var(--accent); }
.option-card.is-selected { border-color: var(--accent); background: rgba(158,255,26,0.08); box-shadow: inset 0 0 0 1px var(--accent); }
.option-card strong { font-size: 16px; }
.option-card small { color: var(--text-secondary); font-size: 13px; }
.option-card.is-disabled { opacity: 0.45; cursor: not-allowed; }

/* Option list (package / addons — single column with price on the right) */
.option-list { display: flex; flex-direction: column; gap: 10px; }
.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  min-height: 44px;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.option-row:hover { border-color: var(--accent); }
.option-row.is-selected { border-color: var(--accent); background: rgba(158,255,26,0.08); }
.option-row__label strong { display: block; font-size: 15px; }
.option-row__label small { color: var(--text-secondary); font-size: 13px; }
.option-row__price { font-weight: 800; color: var(--accent); white-space: nowrap; }
.option-row__price--muted { color: var(--text-muted); font-weight: 600; font-size: 13px; }
.option-row input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--accent); flex-shrink: 0; }

.window-qty { display: flex; align-items: center; gap: var(--space-2); margin-top: var(--space-3); }
.stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; }
.stepper button { width: 40px; height: 40px; background: var(--bg-elevated); font-size: 18px; font-weight: 700; }
.stepper button:hover { color: var(--accent); }
.stepper input { width: 48px; text-align: center; background: transparent; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); height: 40px; }

/* Film cards */
.film-list { display: flex; flex-direction: column; gap: 14px; }
.film-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: left;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.film-card:hover { border-color: var(--accent); }
.film-card.is-selected { border-color: var(--accent); background: rgba(158,255,26,0.08); box-shadow: inset 0 0 0 1px var(--accent); }
.film-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); margin-bottom: 4px; }
.film-card__tier { font-family: var(--font-display); text-transform: uppercase; color: var(--accent); font-size: 13px; letter-spacing: 0.08em; }
.film-card__product { font-size: 17px; font-weight: 700; }
.film-card__desc { color: var(--text-secondary); font-size: 14px; margin-bottom: 6px; }
.film-card__warranty { color: var(--text-muted); font-size: 12.5px; font-style: italic; }

/* Price result */
.price-result { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); }
.price-result__total { font-family: var(--font-display); font-size: clamp(36px, 6vw, 52px); color: var(--accent); text-shadow: 0 0 24px rgba(158,255,26,0.3); margin-bottom: 4px; }
.price-result__duration { color: var(--text-secondary); font-size: 14px; margin-bottom: var(--space-2); }
.price-result__breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-2); padding-top: var(--space-2); border-top: 1px solid var(--border-soft); }
.price-result__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-secondary); }
.price-result__disclaimer { color: var(--text-muted); font-size: 12.5px; }

/* Forms shared by lead + customer info steps */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-3); }
.form-row--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.divider { border: none; border-top: 1px solid var(--border-soft); margin: var(--space-2) 0 0; }
.subhead { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; color: var(--text-secondary); margin-top: var(--space-2); }

.lead-confirm { text-align: center; padding: var(--space-4) 0; }
.lead-confirm .icon--lg { color: var(--accent); width: 48px; height: 48px; margin-bottom: var(--space-2); }
.lead-confirm h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; margin-bottom: 8px; }
.lead-confirm p { color: var(--text-secondary); max-width: 420px; margin: 0 auto var(--space-3); }

/* Scheduling */
.slots-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-bottom: var(--space-2); }
@media (max-width: 640px) { .slots-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.slot-btn {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  min-height: 44px;
  font-size: 13.5px;
  font-weight: 600;
}
.slot-btn:hover { border-color: var(--accent); }
.slot-btn.is-selected { border-color: var(--accent); background: rgba(158,255,26,0.08); color: var(--accent); }
.slot-btn__date { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }

/* Review */
.review-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); margin-bottom: var(--space-4); display: flex; flex-direction: column; gap: 10px; }
.review-card__row { display: flex; justify-content: space-between; gap: var(--space-2); font-size: 14.5px; padding-bottom: 8px; border-bottom: 1px solid var(--border-soft); }
.review-card__row:last-child { border-bottom: none; padding-bottom: 0; }
.review-card__row span:first-child { color: var(--text-secondary); }
.review-card__row span:last-child { font-weight: 700; text-align: right; }

.balance-choice { margin-bottom: var(--space-4); }
.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  margin-top: 10px;
  cursor: pointer;
}
.radio-card:has(input:checked) { border-color: var(--accent); background: rgba(158,255,26,0.08); }
.radio-card input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.radio-card strong { display: block; font-size: 14.5px; }
.radio-card small { color: var(--text-secondary); font-size: 13px; }

.payment-block { margin-bottom: var(--space-2); }
.payment-test-mode {
  background: rgba(255, 200, 0, 0.08);
  border: 1px dashed #cba300;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  color: #e0c34a;
  font-size: 13.5px;
}
.payment-test-mode strong { display: block; margin-bottom: 4px; color: #f0d878; }

.confirmation { text-align: center; padding: var(--space-5) 0; }
.confirmation .icon--lg { color: var(--accent); width: 56px; height: 56px; margin-bottom: var(--space-2); }
.confirmation h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 34px; margin-bottom: 10px; }
.confirmation p { color: var(--text-secondary); max-width: 460px; margin: 0 auto var(--space-3); }
.review-teaser {
  background: rgba(158,255,26,0.08);
  border: 1px solid rgba(158,255,26,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--accent) !important;
  font-size: 13.5px;
}

/* Summary sidebar */
.booking-summary {
  position: sticky;
  top: calc(var(--space-4) + 66px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}
.booking-summary h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.summary-body { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.summary-line { display: flex; justify-content: space-between; gap: 10px; }
.summary-line span:first-child { color: var(--text-secondary); }
.summary-line span:last-child { font-weight: 700; text-align: right; }
.summary-addons { display: flex; flex-direction: column; gap: 4px; }
.summary-addons-title { color: var(--text-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.summary-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-total span:first-child { font-weight: 700; text-transform: uppercase; font-size: 13px; color: var(--text-secondary); }
.summary-total span:last-child { font-family: var(--font-display); font-size: 26px; color: var(--accent); }
.summary-note { color: var(--text-muted); font-size: 12px; }

@media (max-width: 980px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; order: -1; }
}
