.booking-section {
  display: grid;
  gap: 22px;
}

.booking-hero-section {
  padding-bottom: 18px;
}

.booking-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 243, 247, 0.94));
  border: 1px solid rgba(62, 92, 92, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.booking-hero--compact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.booking-hero__title,
.booking-core-title,
.booking-step-panel__head h3,
.booking-guidance-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 10px;
}

.booking-hero__title {
  font-size: clamp(38px, 4.5vw, 56px);
}

.booking-core-title {
  font-size: clamp(28px, 3.2vw, 38px);
}

.booking-step-panel__head h3,
.booking-guidance-card h4 {
  font-size: clamp(22px, 2.3vw, 30px);
}

.booking-hero__copy p,
.booking-multistep__head p,
.booking-step-panel__head p,
.booking-option__summary,
.booking-guidance-card h4 {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.booking-guidance-card p {
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 38ch;
}


.booking-hero__copy {
  display: grid;
  align-content: center;
}

.booking-hero__copy p {
  max-width: 720px;
  color: #667880;
}

.booking-hero__aside {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.booking-hero__card {
  max-width: 300px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(62, 92, 92, 0.1);
  color: #607789;
}

.booking-hero__card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.booking-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.booking-multistep-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 247, 0.94));
  border: 1px solid rgba(62, 92, 92, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 24px;
  display: grid;
  gap: 22px;
}

.booking-multistep__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}


.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-step {
  border: 1px solid rgba(62, 92, 92, 0.1);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: 0.22s ease;
}

.booking-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 45, 78, 0.08);
}

.booking-step.is-active {
  border-color: rgba(20, 159, 211, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 251, 0.96));
}

.booking-step__number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(62, 92, 92, 0.12);
  color: var(--ink);
  font-weight: 800;
  flex: 0 0 34px;
}

.booking-step.is-active .booking-step__number {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-color: transparent;
}

.booking-step__text {
  color: var(--ink);
  font-weight: 800;
}

.booking-multistep-form {
  display: grid;
  gap: 18px;
}

.booking-selected-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(62, 92, 92, 0.1);
}

.booking-selected-strip__label {
  color: #6f8088;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-selected-strip__title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.booking-selected-strip__meta,
.booking-selected-strip__focus {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(62, 92, 92, 0.1);
  color: #607789;
  font-size: 12px;
  font-weight: 700;
}

.booking-selected-strip__focus {
  text-align: center;
}

.booking-step-panels {
  display: grid;
}

.booking-step-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(62, 92, 92, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.booking-step-panel__head {
  margin-bottom: 18px;
}

.booking-option-list {
  display: grid;
  gap: 14px;
}

.booking-option {
  border: 1px solid rgba(62, 92, 92, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.booking-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 45, 78, 0.08);
}

.booking-option.is-active {
  border-color: rgba(20, 159, 211, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 251, 0.96));
  box-shadow: 0 18px 36px rgba(16, 45, 78, 0.1);
}

.booking-option__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.booking-option__copy h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 0.98;
  font-family: 'Montserrat', sans-serif;
}

.booking-option__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.booking-option__button {
  min-width: 118px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(62, 92, 92, 0.12);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: 0.22s ease;
}

.booking-option.is-active .booking-option__button {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(15, 78, 134, 0.16);
}

.booking-option__button-label--active {
  display: none;
}

.booking-option.is-active .booking-option__button-label--default {
  display: none;
}

.booking-option.is-active .booking-option__button-label--active {
  display: inline;
}

.booking-option__summary {
  color: #5d7384;
}

.booking-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-fields-grid .field.full {
  grid-column: 1 / -1;
}

.booking-fields-grid .field input,
.booking-fields-grid .field select,
.booking-fields-grid .field textarea {
  background: rgba(255, 255, 255, 0.88);
}


.booking-calendar-field {
  display: grid;
  gap: 10px;
}

.booking-calendar {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(62, 92, 92, 0.1);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-calendar__month {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.booking-calendar__nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(62, 92, 92, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  transition: 0.22s ease;
}

.booking-calendar__nav:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(16, 45, 78, 0.08);
}

.booking-calendar__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-calendar__weekdays span {
  text-align: center;
  color: #7a8c92;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-calendar__day {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(62, 92, 92, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.booking-calendar__day.is-available:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 159, 211, 0.25);
  box-shadow: 0 12px 24px rgba(16, 45, 78, 0.08);
}

.booking-calendar__day.is-selected {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(15, 78, 134, 0.16);
}

.booking-calendar__day.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(240, 240, 240, 0.6);
}

.booking-calendar__day--empty {
  min-height: 48px;
}

.booking-calendar__selection {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(62, 92, 92, 0.1);
  color: #607789;
  font-size: 13px;
  font-weight: 700;
}

.booking-step-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.booking-step-actions--end {
  justify-content: flex-end;
}

.booking-guidance-grid,
.booking-guidance-grid--compact {
  display: grid;
  gap: 18px;
}

.booking-guidance-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-guidance-card {
  --guide-accent: rgba(20, 159, 211, 0.95);
  --guide-soft: rgba(20, 159, 211, 0.08);
  display: grid;
  gap: 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(62, 92, 92, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 45, 78, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.booking-guidance-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--guide-accent);
}

.booking-guidance-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -48px;
  top: -56px;
  background: var(--guide-soft);
  pointer-events: none;
}

.booking-guidance-card--flow {
  --guide-accent: #0f4e86;
  --guide-soft: rgba(15, 78, 134, 0.08);
}

.booking-guidance-card--hours {
  --guide-accent: #149fd3;
  --guide-soft: rgba(20, 159, 211, 0.08);
}

.booking-guidance-card--checkout {
  --guide-accent: #d39b37;
  --guide-soft: rgba(211, 155, 55, 0.10);
}

.booking-guidance-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.booking-guidance-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--guide-accent) 14%, white), color-mix(in srgb, var(--guide-accent) 8%, white));
  color: var(--guide-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--guide-accent) 12%, white);
  flex: 0 0 54px;
}

.booking-guidance-card__icon svg {
  width: 24px;
  height: 24px;
}

.booking-guidance-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(62, 92, 92, 0.08);
  color: #6a7d88;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-guidance-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.12;
  position: relative;
  z-index: 1;
}

.booking-guidance-card p {
  margin: 0;
  color: #5e7282;
  font-size: 15px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.booking-guidance-card__link {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 800;
  color: var(--teal-dark);
}

@media (max-width: 1200px) {
  .booking-hero--compact,
  .booking-multistep__head {
    grid-template-columns: 1fr;
  }

  
.booking-hero__copy {
  display: grid;
  align-content: center;
}

.booking-hero__copy p {
  max-width: 720px;
  color: #667880;
}

.booking-hero__aside {
    justify-items: start;
  }

  .booking-hero__chips {
    justify-content: flex-start;
  }

  .booking-guidance-grid,
  .booking-guidance-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .booking-hero--compact,
  .booking-multistep-shell,
  .booking-step-panel,
  .booking-guidance-card {
    padding: 18px;
  }

  .booking-guidance-card__top {
    align-items: flex-start;
  }

  .booking-guidance-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .booking-steps,
  .booking-fields-grid,
  .booking-guidance-grid,
  .booking-guidance-grid--compact {
    grid-template-columns: 1fr;
  }

  .booking-calendar__weekdays,
  .booking-calendar__grid {
    gap: 6px;
  }

  .booking-calendar__day,
  .booking-calendar__day--empty {
    min-height: 42px;
  }

  .booking-option__row {
    grid-template-columns: 1fr;
  }

  .booking-option__button,
  .booking-step-actions .btn {
    width: 100%;
  }

  .booking-step-actions,
  .booking-step-actions--end {
    justify-content: stretch;
    flex-direction: column;
  }
}

.booking-multistep__head--simple {
  align-items: end;
}

.booking-notice {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(62, 92, 92, 0.12);
}

.booking-notice strong {
  color: var(--ink);
}

.booking-notice ul {
  margin: 0;
  padding-left: 18px;
}

.booking-notice--success {
  background: rgba(237, 250, 244, 0.95);
  border-color: rgba(48, 142, 96, 0.2);
}

.booking-notice--error {
  background: rgba(255, 245, 245, 0.96);
  border-color: rgba(188, 84, 84, 0.22);
}

.booking-option__button {
  align-self: start;
}


.field-help {
  color: #7a8c92;
  font-size: 12px;
  line-height: 1.5;
}

#stbw-booking-time:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


.booking-stage {
  display: grid;
  gap: 18px;
}

.booking-stage__head {
  display: grid;
  gap: 6px;
}

.booking-stage__head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.booking-stage__head p {
  margin: 0;
  color: #667880;
}

.booking-stage__head--time {
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px;
}

.booking-stage__date-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(62, 92, 92, 0.1);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.booking-time-picker {
  display: grid;
  gap: 12px;
}

.booking-time-picker__label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking-time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.booking-time-slot {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(62, 92, 92, 0.12);
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
  padding: 0 14px;
}

.booking-time-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16,45,78,.08);
}

.booking-time-slot.is-selected {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(15,78,134,.18);
}

.booking-fields-grid--compact {
  margin-top: 6px;
}

.booking-step-actions--split {
  justify-content: space-between;
}

@media (max-width: 767px) {
  .booking-stage__head--time {
    grid-template-columns: 1fr;
  }

  .booking-stage__date-chip {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 12px 14px;
  }

  .booking-time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.booking-multistep__head--simple .section-label{display:none;}
.booking-multistep__head--simple p{max-width:780px;margin:0;color:#667880;}
.booking-step-panel__head h3{margin-bottom:4px;}
.booking-step-panel__head p,.booking-stage__head p{margin:0;color:#667880;}
.booking-stage__head h4,.booking-stage__head--time h4{font-size:clamp(20px,2.1vw,28px);margin:0 0 4px;font-family:'Montserrat',sans-serif;color:var(--ink);line-height:1;}
.booking-calendar__selection{margin-top:8px;}


.booking-section {
  gap: 18px;
}

.booking-multistep-shell {
  background: #fff;
  border: 1px solid rgba(20, 32, 58, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(16, 45, 78, 0.06);
  padding: 28px;
  gap: 18px;
}

.booking-multistep__head--simple {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.booking-head-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(62, 92, 92, 0.12);
  background: #f7fafb;
  color: #667880;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.booking-core-title {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.02;
  margin-bottom: 8px;
}

.booking-quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-quick-point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid rgba(62, 92, 92, 0.1);
  color: var(--ink);
  font-weight: 700;
}

.booking-quick-point strong {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 78, 134, 0.1);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 28px;
}

.booking-steps {
  gap: 10px;
}

.booking-step {
  min-height: 62px;
  border-radius: 16px;
  padding: 12px 14px;
  background: #f9fbfc;
  box-shadow: none;
}

.booking-step:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(15, 78, 134, 0.16);
}

.booking-step.is-active {
  background: #eef6fb;
  border-color: rgba(15, 78, 134, 0.18);
}

.booking-step__number {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.booking-step__text {
  font-size: 15px;
}

.booking-selected-strip {
  padding: 12px 14px;
  border-radius: 16px;
  background: #f9fbfc;
  border: 1px solid rgba(62, 92, 92, 0.1);
  gap: 8px;
}

.booking-selected-strip__title {
  font-size: 17px;
}

.booking-selected-strip__meta,
.booking-selected-strip__focus {
  min-height: 32px;
  font-size: 12px;
  background: #fff;
}

.booking-step-panel {
  background: #fff;
  border: 1px solid rgba(20, 32, 58, 0.08);
  border-radius: 20px;
  padding: 20px;
}

.booking-step-panel__head {
  margin-bottom: 16px;
}

.booking-step-panel__head h3,
.booking-stage__head h4 {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.08;
}

.booking-option-list {
  gap: 12px;
}

.booking-option {
  border-radius: 18px;
  background: #f9fbfc;
  padding: 16px;
  box-shadow: none;
}

.booking-option:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(15, 78, 134, 0.18);
}

.booking-option.is-active {
  background: #eef6fb;
  border-color: rgba(15, 78, 134, 0.2);
  box-shadow: none;
}

.booking-option__copy h4 {
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.04;
  margin-bottom: 8px;
}

.booking-option__summary {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.booking-option__button {
  min-width: 104px;
  min-height: 44px;
  border-radius: 12px;
}

.booking-fields-grid {
  gap: 12px;
}

.booking-calendar,
.booking-calendar__selection,
.booking-stage__date-chip,
.booking-time-slot,
.booking-fields-grid .field input,
.booking-fields-grid .field select,
.booking-fields-grid .field textarea {
  border-radius: 16px;
}

.booking-calendar {
  padding: 14px;
  background: #f9fbfc;
}

.booking-calendar__nav,
.booking-calendar__selection,
.booking-stage__date-chip,
.booking-time-slot {
  background: #fff;
}

.booking-time-slot.is-selected,
.booking-step.is-active .booking-step__number,
.booking-option.is-active .booking-option__button {
  background: var(--teal-dark);
}

.booking-guidance-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-guidance-card {
  min-height: 100%;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: none;
  background: #fff;
}

.booking-guidance-card::before {
  width: 4px;
}

.booking-guidance-card::after {
  display: none;
}

.booking-guidance-card__icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-radius: 14px;
  box-shadow: none;
}

.booking-guidance-card__eyebrow {
  min-height: 30px;
}

.booking-guidance-card h4 {
  font-size: 20px;
}

.booking-guidance-card p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .booking-quick-points,
  .booking-guidance-grid--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .booking-multistep-shell {
    padding: 18px;
  }

  .booking-quick-point {
    min-height: 48px;
  }

  .booking-step {
    min-height: 56px;
  }
}


/* Booking simplification v119 */
.booking-multistep-shell {
  background: #ffffff;
  border: 1px solid rgba(62, 92, 92, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(16, 45, 78, 0.08);
  padding: 22px;
  gap: 18px;
}

.booking-multistep__head--simple {
  gap: 8px;
}

.booking-multistep__head--simple > div {
  max-width: 760px;
}

.booking-core-title {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 6px;
}

.booking-multistep__head--simple p {
  max-width: 54ch;
  margin: 0;
  color: #667880;
}

.booking-steps {
  gap: 10px;
}

.booking-step {
  min-height: 62px;
  border-radius: 16px;
  padding: 12px 14px;
  background: #f8fafb;
}

.booking-step__number {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 13px;
}

.booking-step__text {
  font-size: 14px;
}

.booking-selected-strip {
  border-radius: 16px;
  padding: 12px 14px;
  background: #f8fafb;
  gap: 8px;
}

.booking-selected-strip__label {
  margin-right: 4px;
}

.booking-selected-strip__title {
  font-size: 16px;
}

.booking-selected-strip__meta,
.booking-selected-strip__focus {
  min-height: 32px;
  font-size: 12px;
  background: #fff;
}

.booking-step-panel {
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
}

.booking-step-panel__head {
  margin-bottom: 14px;
}

.booking-step-panel__head h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 4px;
}

.booking-step-panel__head--service p {
  max-width: 48ch;
}

.booking-option-list {
  gap: 12px;
}

.booking-option {
  border-radius: 18px;
  padding: 16px 18px;
  background: #fbfcfd;
}

.booking-option__row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.booking-option__copy h4 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.08;
}

.booking-option__meta {
  margin-bottom: 8px;
}

.booking-option__summary {
  margin: 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.65;
}

.booking-option__button {
  min-width: 108px;
  min-height: 44px;
  border-radius: 999px;
}

.booking-option.is-active {
  border-color: rgba(15, 78, 134, 0.22);
  box-shadow: 0 14px 28px rgba(16, 45, 78, 0.08);
}

@media (max-width: 860px) {
  .booking-step {
    justify-content: flex-start;
  }

  .booking-option__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-option__button {
    width: 100%;
  }
}


/* Booking redesign v120 */
.booking-multistep-shell--simple {
  padding: 26px;
  gap: 20px;
}

.booking-step-panels--simple {
  gap: 0;
}

.booking-step-panel--service,
.booking-step-panel--details {
  padding: 22px;
}

.booking-step-panel__head--service-simple h3,
.booking-step-panel__head--details-simple h3 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin-bottom: 6px;
}

.booking-step-panel__head--service-simple p,
.booking-step-panel__head--details-simple p {
  color: #667880;
  margin: 0;
}

.booking-option-list--simple {
  display: grid;
  gap: 14px;
}

.booking-option--simple {
  border-radius: 18px;
  background: #f8fafb;
  border: 1px solid rgba(20, 32, 58, 0.08);
  padding: 18px 20px;
}

.booking-option__row--simple {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.booking-option__copy--simple h4 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 8px;
}

.booking-option__copy--simple .booking-option__summary {
  margin: 0;
  max-width: 58ch;
}

.booking-option__aside {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.booking-option--simple .booking-option__meta {
  justify-content: flex-end;
  margin-bottom: 0;
}

.booking-inline-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #f8fafb;
  border: 1px solid rgba(20, 32, 58, 0.08);
}

.booking-inline-summary__label {
  color: #667880;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-inline-summary__title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.booking-inline-summary__meta {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(20, 32, 58, 0.08);
  color: #5f7484;
  font-size: 12px;
  font-weight: 700;
}

.booking-final-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
}

.booking-final-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.booking-final-column--details {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafb;
  border: 1px solid rgba(20, 32, 58, 0.08);
}

.booking-fields-grid--simple {
  grid-template-columns: 1fr;
  gap: 14px;
}

.booking-hours-note {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f8fafb;
  border: 1px solid rgba(20, 32, 58, 0.08);
  color: #5d7384;
  font-size: 13px;
  line-height: 1.5;
}

.booking-step-actions--between {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.booking-step-actions__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.booking-stage--time[hidden],
.booking-step-panel[hidden] {
  display: none !important;
}

.booking-stage--time {
  margin-top: 4px;
}

.booking-calendar__selection {
  width: 100%;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .booking-final-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .booking-multistep-shell--simple,
  .booking-step-panel--service,
  .booking-step-panel--details {
    padding: 18px;
  }

  .booking-option__row--simple {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-option__aside,
  .booking-option--simple .booking-option__meta {
    justify-items: start;
    justify-content: flex-start;
  }

  .booking-step-actions--between,
  .booking-step-actions__right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .booking-step-actions__right .btn,
  .booking-step-actions--between > .btn {
    width: 100%;
  }
}


/* Booking page cleanup v157 */
.booking-section--tight {
  padding-top: 38px;
  padding-bottom: 72px;
}

.booking-multistep-shell--simple {
  padding: 24px;
}

.booking-step-panel--service,
.booking-step-panel--details {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.booking-step-panel--details {
  padding-top: 4px;
}

.booking-final-column--details {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.booking-inline-summary {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .booking-section--tight {
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .booking-multistep-shell--simple {
    padding: 18px;
  }
}


.booking-embed-main {
  width: 100%;
  margin: 0;
  background: #ffffff;
}

.booking-embed-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #ffffff;
}

.booking-embed-shell {
  position: relative;
  width: 100%;
  min-height: 1850px;
  margin: 0;
  background: #ffffff;
  overflow: hidden;
  line-height: 0;
}

.booking-embed-frame {
  display: block;
  width: calc(100% + 24px);
  min-height: 1850px;
  height: 1850px;
  margin: 0 -24px 0 0;
  border: 0;
  background: #ffffff;
}

@media (max-width: 1199px) {
  .booking-embed-shell {
    min-height: 2100px;
  }

  .booking-embed-frame {
    min-height: 2100px;
    height: 2100px;
  }
}

@media (max-width: 767px) {
  .booking-embed-section {
    padding: 0;
  }

  .booking-embed-shell {
    min-height: 2400px;
    border-radius: 0;
  }

  .booking-embed-frame {
    width: calc(100% + 18px);
    min-height: 2400px;
    height: 2400px;
    margin-right: -18px;
  }
}
