.booking-wizard-page {
  --bg:#fdf9e7; --card:#fffdf8;
  --ink:#333333; --ink-2:#4f4438;
  --mute:#716555; --mute-2:#9b907f;
  --line:#d9caa7; --soft:#fbf1e9;
  --accent:#6b542f;
  --accent-contrast:#ffffff;
  --accent-soft:rgba(var(--tenant-accent-rgb, 10,10,10), .08);
  --radius:16px; --radius-sm:12px; --tap:60px;
  min-height: calc(100svh - var(--termal-nav-total-h, 0px));
  padding: 18px 12px 120px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: 17px;
}
.booking-wizard-page * { box-sizing: border-box; }
.booking-wizard-page button,
.booking-wizard-page input { font: inherit; }
.booking-wizard-page button { cursor: pointer; }
.booking-wizard-shell {
  width: min(100%, 520px);
  margin: 0 auto;
}
.booking-wizard-app {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
}
.booking-wizard-top {
  padding: 20px 20px 12px;
}
.booking-wizard-brand {
  margin: 0 0 14px;
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 0 0 10px;
}
.booking-progress__seg {
  height: 8px;
  border-radius: 99px;
  background: var(--soft);
  transition: background .22s ease, transform .22s ease;
}
.booking-progress__seg.is-active {
  background: var(--accent);
}
.booking-progress__label {
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
}
.booking-step-viewport {
  min-height: 470px;
  padding: 18px 20px 12px;
}
.booking-step {
  display: none;
  animation: bookingSlide .28s ease both;
}
.booking-step.is-active {
  display: block;
}
.booking-question {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 6.5vw, 38px);
  font-weight: 500;
  line-height: 1.04;
}
.booking-lead {
  margin: -8px 0 22px;
  color: var(--mute);
  line-height: 1.55;
}
.booking-counter {
  display: grid;
  grid-template-columns: var(--tap) 1fr var(--tap);
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}
.booking-counter button {
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--card);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.booking-counter button:disabled {
  color: var(--mute-2);
  cursor: not-allowed;
  background: var(--soft);
}
.booking-counter__value {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
}
.booking-counter__value strong {
  display: block;
  color: var(--ink);
  font-size: clamp(54px, 15vw, 72px);
  line-height: .9;
}
.booking-counter__value span {
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
}
.booking-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-chips--duration {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}
.booking-chip,
.booking-day,
.booking-time,
.booking-edit {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink-2);
  background: var(--card);
  font-weight: 700;
}
.booking-chip--duration {
  min-height: 58px;
}
.booking-chip[aria-pressed="true"],
.booking-day[aria-pressed="true"],
.booking-time[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent-contrast);
  background: var(--accent);
}
.booking-help {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.45;
}
.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0;
}
.booking-month {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}
.booking-month-nav {
  display: inline-flex;
  gap: 8px;
}
.booking-month-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--card);
  font-size: 24px;
}
.booking-weekdays,
.booking-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}
.booking-weekdays span {
  color: var(--mute);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.booking-day {
  min-width: 0;
  min-height: 52px;
  border-radius: 14px;
  padding: 0;
}
.booking-day:disabled {
  color: var(--mute-2);
  cursor: not-allowed;
  background: var(--soft);
  opacity: .68;
}
.booking-day.is-placeholder {
  visibility: hidden;
}
.booking-loader {
  color: var(--mute);
  font-size: 14px;
}
.booking-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.booking-time {
  min-height: var(--tap);
  border-radius: var(--radius-sm);
  font-size: 18px;
}
.booking-time:disabled {
  color: var(--mute-2);
  cursor: not-allowed;
  background: var(--soft);
}
.booking-empty {
  margin: 24px 0 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--mute);
  background: var(--soft);
}
.booking-review {
  display: grid;
  gap: 10px;
}
.booking-review-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.booking-review-row span {
  display: block;
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
}
.booking-review-row strong {
  color: var(--ink);
  font-size: 19px;
}
.booking-edit {
  min-height: 40px;
  border-radius: var(--radius-sm);
  padding: 0 12px;
}
.booking-total {
  margin: 18px 0;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  background: #111;
}
.booking-total span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 700;
}
.booking-total strong {
  font-size: clamp(32px, 9vw, 44px);
  line-height: 1;
}
.booking-contact {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.booking-contact__title {
  margin: 14px 0 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}
.booking-contact__hint {
  margin: -2px 0 4px;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.45;
}
.booking-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.booking-contact label {
  display: grid;
  gap: 6px;
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
}
.booking-contact label.booking-field-full {
  grid-column: 1 / -1;
}
.booking-contact input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}
.booking-success {
  display: grid;
  min-height: 440px;
  place-items: center;
  text-align: center;
}
.booking-success__icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--accent-contrast);
  background: var(--accent);
  font-size: 42px;
}
.booking-success h2 {
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}
.booking-success p {
  margin: 0;
  color: var(--mute);
}
.booking-toast {
  position: fixed;
  left: 50%;
  bottom: calc(94px + env(safe-area-inset-bottom));
  z-index: 400;
  width: min(92vw, 460px);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #fff;
  background: #111;
  box-shadow: 0 18px 50px -24px rgba(0,0,0,.45);
  transform: translateX(-50%);
}
.booking-toast[hidden] { display: none; }
.booking-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px max(12px, env(safe-area-inset-left)) calc(12px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  box-shadow: 0 -16px 40px -28px rgba(0,0,0,.45);
}
.booking-bottom.is-confirm-step {
  grid-template-columns: minmax(84px, .72fr) minmax(0, 1.28fr);
}
.page-booking-wizard .termal-mobile-bar {
  display: none;
}
.booking-nav-btn,
.booking-submit {
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 800;
}
.booking-nav-btn {
  color: var(--ink);
  background: var(--soft);
}
.booking-nav-btn:disabled {
  color: var(--mute-2);
}
.booking-submit,
.booking-nav-btn--next {
  color: var(--accent-contrast);
  background: var(--accent);
}
.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booking-submit:disabled,
.booking-nav-btn--next:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.booking-bottom [hidden] {
  display: none;
}
.booking-error {
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 16px;
  color: #7f1d1d;
  background: #fef2f2;
}
@keyframes bookingSlide {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (min-width: 760px) {
  .booking-wizard-page {
    display: grid;
    place-items: center;
    padding: 32px 20px;
  }
  .booking-wizard-app {
    width: 540px;
    box-shadow: 0 30px 80px -40px rgba(0,0,0,.15);
  }
  .booking-bottom {
    position: static;
    border-top: 1px solid var(--line);
    padding: 14px 20px 20px;
    background: #fff;
  }
  .booking-toast {
    bottom: 28px;
  }
}
@media (max-width: 759px) {
  .booking-wizard-page {
    padding-bottom: calc(150px + env(safe-area-inset-bottom));
  }
  .booking-bottom {
    bottom: 0;
    padding-right: max(12px, env(safe-area-inset-right));
  }
  .booking-bottom.is-confirm-step {
    grid-template-columns: .82fr 1.18fr;
  }
  .page-booking-wizard .termal-floating-contact,
  .page-booking-wizard .floating-actions {
    display: none;
  }
  .booking-contact__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .booking-step-viewport { padding-inline: 14px; }
  .booking-wizard-top { padding-inline: 14px; }
  .booking-times { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-step { animation: none; }
  .booking-progress__seg,
  .booking-gallery-item__button img { transition: none; }
}
.booking-simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 5vw, 4rem);
  background: #fbf8f4;
  border-bottom: 1px solid rgba(36, 33, 31, .12);
}
.booking-simple-brand,
.booking-simple-back { color: #24211f; text-decoration: none; }
.booking-simple-brand { font-family: Georgia, 'Times New Roman', serif; font-size: 1.4rem; font-weight: 700; }
.booking-simple-back { font-size: .9rem; font-weight: 700; }
.booking-simple-footer { padding: 2rem 1.25rem; color: #5f554f; background: #fbf8f4; text-align: center; }
