.booking-shell {
  width: min(100%, 808px);
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.booking-shell--confirmation {
  width: min(100%, 688px);
  padding-top: 52px;
  text-align: center;
}

.booking-progress { margin-bottom: 24px; }
.booking-progress__summary {
  margin: 0 0 12px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  font-weight: 600;
}
.booking-progress__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.booking-progress__step {
  position: relative;
  min-width: 0;
  color: var(--md-sys-color-outline);
  font-size: 12px;
  text-align: center;
}
.booking-progress__link,
.booking-progress__content {
  position: relative;
  z-index: 1;
  display: grid;
  width: fit-content;
  min-width: 68px;
  margin: 0 auto;
  padding: 2px 6px;
  justify-items: center;
  gap: 7px;
  border-radius: 10px;
  color: inherit;
}
.booking-progress__link {
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.booking-progress__link:hover {
  background: color-mix(in srgb, var(--md-sys-color-primary) 7%, transparent);
  color: var(--md-sys-color-primary);
}
.booking-progress__link:focus-visible {
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 2px;
}
.booking-progress__step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 18px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: var(--md-sys-color-outline-variant);
  content: '';
}
.booking-progress__step--complete:not(:last-child)::after { background: var(--md-sys-color-primary); }
.booking-progress__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 50%;
  background: var(--md-sys-color-background);
}
.booking-progress__marker .material-symbols-outlined { font-size: 19px; }
.booking-progress__step--complete .booking-progress__marker,
.booking-progress__step--current .booking-progress__marker {
  border-color: var(--md-sys-color-primary);
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.booking-progress__step--current {
  color: var(--md-sys-color-on-surface);
  font-weight: 700;
}
.booking-progress__step--complete { color: var(--md-sys-color-on-surface-variant); }

.booking-card {
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: var(--pub-radius-lg);
  background: #fff;
}
.booking-card__header { padding: 28px 32px 0; }
.booking-card__body { padding: 28px 32px 32px; }
.booking-title {
  margin: 0 0 8px;
  color: var(--md-sys-color-on-surface);
  font-size: clamp(23px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.booking-lede {
  max-width: 66ch;
  margin: 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 15px;
  line-height: 1.55;
}

.booking-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 24px;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--md-sys-color-primary) 25%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--md-sys-color-primary) 6%, #fff);
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  line-height: 1.5;
}
.booking-note--warning {
  border-color: #e8c269;
  background: #fff8e6;
  color: #5f4311;
}
.booking-note--neutral {
  border-color: var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface-container-low);
}
.booking-note .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--md-sys-color-primary);
  font-size: 20px;
}
.booking-note--warning .material-symbols-outlined { color: #8a5a00; }
.booking-note__title {
  display: block;
  margin-bottom: 2px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
}
.booking-note--warning .booking-note__title { color: #684500; }

.booking-form { display: grid; gap: 28px; }
.booking-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.booking-fieldset__legend,
.booking-label {
  display: block;
  margin: 0 0 8px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}
.booking-label__meta { color: var(--md-sys-color-on-surface-variant); font-weight: 400; }
.booking-required { color: var(--md-sys-color-error); }
.booking-help {
  margin: 7px 0 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  line-height: 1.45;
}
.booking-help--selection { margin: -2px 0 18px; }
.booking-field,
.booking-select,
.booking-textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--md-sys-color-outline);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--md-sys-color-on-surface);
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.booking-textarea { min-height: 112px; resize: vertical; }
.booking-field::placeholder,
.booking-textarea::placeholder { color: #625d67; opacity: 1; }
.booking-field:hover,
.booking-select:hover,
.booking-textarea:hover { border-color: var(--md-sys-color-on-surface-variant); }
.booking-field:focus-visible,
.booking-select:focus-visible,
.booking-textarea:focus-visible {
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--md-sys-color-primary) 20%, transparent);
}
.booking-field:user-invalid,
.booking-select:user-invalid,
.booking-textarea:user-invalid { border-color: var(--md-sys-color-error); }

.booking-grid { display: grid; gap: 20px; }
.booking-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking-birthdate__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}
.booking-birthdate__fields {
  display: grid;
  grid-template-columns: minmax(130px, 1.3fr) minmax(76px, .65fr) minmax(100px, .8fr);
  gap: 10px;
  min-width: 0;
}
.booking-birthdate__fields > div { min-width: 0; }
.booking-birthdate__part-label {
  display: block;
  margin: 0 0 6px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.booking-birthdate__age {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: center;
  gap: 1px 5px;
  min-width: 112px;
  min-height: 48px;
  padding: 7px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--md-sys-color-primary) 8%, #fff);
  color: var(--md-sys-color-on-surface);
  text-align: center;
}
.booking-birthdate__age-label {
  grid-column: 1 / -1;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.booking-birthdate__age-value {
  color: var(--md-sys-color-primary);
  font-size: 22px;
  font-weight: 750;
  line-height: 1;
}
.booking-birthdate__age-unit {
  max-width: 42px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 10px;
  line-height: 1.1;
  text-align: left;
}
.booking-field-error {
  margin: 7px 0 0;
  color: var(--md-sys-color-error);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.booking-field-feedback {
  min-height: 17px;
  margin: 6px 0 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.booking-field-feedback--valid { color: #176b52; }
.booking-field-feedback--invalid { color: var(--md-sys-color-error); }
.booking-purpose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.booking-purpose {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s ease, background-color .15s ease;
}
.booking-purpose:hover,
.booking-purpose:has(input:checked) { border-color: var(--md-sys-color-primary); }
.booking-purpose:has(input:checked) { background: color-mix(in srgb, var(--md-sys-color-primary) 5%, #fff); }
.booking-purpose__choice,
.booking-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.booking-purpose__choice input,
.booking-consent__label input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--md-sys-color-primary);
}
.booking-purpose__detail { margin-top: 10px; }

.booking-picker {
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline);
  border-radius: 10px;
  background: #fff;
}
.booking-picker:focus-within {
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--md-sys-color-primary) 20%, transparent);
}
.booking-filter {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 13px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface-container-low);
}
.booking-filter .material-symbols-outlined { color: var(--md-sys-color-on-surface-variant); font-size: 18px; }
.booking-filter__input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--md-sys-color-on-surface);
  font: inherit;
  font-size: 14px;
}
.booking-filter__clear {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--md-sys-color-on-surface-variant);
  cursor: pointer;
}
.booking-filter__clear:hover { background: var(--md-sys-color-surface-container); }
.booking-picker .booking-select { border: 0; border-radius: 0; box-shadow: none; }

.booking-availability { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.booking-availability__slot,
.booking-alternative {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  background: #fff;
  color: var(--md-sys-color-on-surface);
  font-size: 12px;
  line-height: 1.3;
}
.booking-alternative {
  min-height: 44px;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  text-decoration: none;
}
.booking-alternative:hover { border-color: var(--md-sys-color-primary); text-decoration: none; }
.booking-alternatives__title {
  margin: 0 0 8px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  font-weight: 650;
}

.booking-shell--calendar { width: min(100%, 1120px); }
.booking-calendar {
  display: grid;
  gap: 20px;
}
.booking-calendar__heading,
.booking-calendar__week-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.booking-calendar__heading h2,
.booking-calendar__week-heading h3 {
  margin: 0;
  color: var(--md-sys-color-on-surface);
  font-weight: 700;
}
.booking-calendar__heading h2 { font-size: 18px; }
.booking-calendar__heading p {
  max-width: 65ch;
  margin: 5px 0 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  line-height: 1.45;
}
.booking-calendar__legend {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
}
.booking-calendar__legend span { display: inline-flex; align-items: center; gap: 6px; }
.booking-calendar__key {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 3px;
}
.booking-calendar__key--available {
  border-color: color-mix(in srgb, var(--md-sys-color-primary) 42%, transparent);
  background: color-mix(in srgb, var(--md-sys-color-primary) 13%, #fff);
}
.booking-calendar__key--unavailable { background: var(--md-sys-color-surface-container); }
.booking-calendar__weeks { display: grid; gap: 24px; }
.booking-calendar__week { min-width: 0; }
.booking-calendar__week-heading {
  margin-bottom: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.booking-calendar__week-heading h3 { font-size: 14px; }
.booking-calendar__week-heading span {
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
}
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.booking-calendar__day {
  position: relative;
  min-width: 0;
  min-height: 196px;
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  background: #fff;
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}
.booking-calendar__day--available:hover {
  border-color: color-mix(in srgb, var(--md-sys-color-primary) 52%, transparent);
  transform: translateY(-1px);
}
.booking-calendar__day--unavailable {
  background: color-mix(in srgb, var(--md-sys-color-surface-container-low) 78%, #fff);
  color: var(--md-sys-color-on-surface-variant);
}
.booking-calendar__day--selected {
  border-color: var(--md-sys-color-primary);
  background: color-mix(in srgb, var(--md-sys-color-primary) 6%, #fff);
  box-shadow: inset 0 0 0 1px var(--md-sys-color-primary);
}
.booking-calendar__date {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0 4px;
  padding: 11px 12px 10px;
  border: 0;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  outline: 0;
  background: var(--md-sys-color-surface-container-low);
  color: var(--md-sys-color-on-surface);
  font: inherit;
  text-align: left;
}
.booking-calendar__date:not(:disabled) { cursor: pointer; }
.booking-calendar__date:disabled { color: var(--md-sys-color-on-surface-variant); cursor: not-allowed; }
.booking-calendar__day--today .booking-calendar__date {
  background: color-mix(in srgb, var(--md-sys-color-primary) 9%, #fff);
}
.booking-calendar__date:focus-visible,
.booking-calendar__more:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--md-sys-color-primary) 34%, transparent);
  outline-offset: -3px;
}
.booking-calendar__day-name {
  align-self: start;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.booking-calendar__day-number {
  align-self: end;
  color: inherit;
  font-size: 24px;
  font-weight: 750;
  line-height: 1;
}
.booking-calendar__month {
  align-self: end;
  padding-bottom: 1px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 11px;
}
.booking-calendar__today {
  position: absolute;
  top: 9px;
  right: 10px;
  color: var(--md-sys-color-primary);
  font-size: 10px;
  font-weight: 700;
}
.booking-calendar__selected-icon {
  position: absolute;
  right: 9px;
  bottom: 8px;
  color: var(--md-sys-color-primary);
  font-size: 18px;
}
.booking-calendar__times {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 9px;
  list-style: none;
}
.booking-calendar__time {
  min-width: 0;
  padding: 6px 7px;
  overflow: hidden;
  border-radius: 7px;
  background: color-mix(in srgb, var(--md-sys-color-primary) 8%, #fff);
  color: var(--md-sys-color-on-surface);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.booking-calendar__time--flexible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  padding: 7px 8px;
  text-align: left;
  white-space: normal;
}
.booking-calendar__time-action {
  min-height: 32px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: var(--md-sys-color-primary);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.booking-calendar__time-action:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 2px;
}
.booking-calendar__more {
  display: block;
  width: calc(100% - 18px);
  min-height: 38px;
  margin: -3px 9px 7px;
  padding: 6px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--md-sys-color-primary);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.booking-calendar__more:hover { background: color-mix(in srgb, var(--md-sys-color-primary) 7%, transparent); }
.booking-calendar__unavailable {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 7px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}
.booking-calendar__unavailable .material-symbols-outlined { font-size: 16px; }
.booking-schedule-fields {
  padding-top: 22px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}
.booking-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.booking-actions--end { justify-content: flex-end; }
.booking-button,
.booking-back,
.booking-edit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.booking-button {
  padding: 11px 24px;
  border: 1px solid var(--md-sys-color-primary);
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.booking-button:hover { filter: brightness(.94); text-decoration: none; }
.booking-button:focus-visible,
.booking-back:focus-visible,
.booking-edit:focus-visible,
.booking-filter__clear:focus-visible,
.booking-purpose__choice:has(input:focus-visible),
.booking-consent__label:has(input:focus-visible) {
  outline: 3px solid color-mix(in srgb, var(--md-sys-color-primary) 35%, transparent);
  outline-offset: 3px;
}
.booking-button .material-symbols-outlined,
.booking-back .material-symbols-outlined { font-size: 19px; }
.booking-back { padding: 9px 4px; color: var(--md-sys-color-on-surface-variant); }
.booking-back:hover { color: var(--md-sys-color-on-surface); text-decoration: none; }
.booking-browse {
  margin: 20px 0 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.booking-review { display: grid; gap: 0; }
.booking-review__section {
  padding: 22px 0;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}
.booking-review__section:first-child { padding-top: 0; border-top: 0; }
.booking-review__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.booking-review__heading h2 {
  margin: 0;
  color: var(--md-sys-color-on-surface);
  font-size: 16px;
  font-weight: 700;
}
.booking-edit {
  min-height: 40px;
  padding: 7px 10px;
  color: var(--md-sys-color-primary);
  font-size: 13px;
}
.booking-edit:hover {
  background: color-mix(in srgb, var(--md-sys-color-primary) 7%, transparent);
  text-decoration: none;
}
.booking-summary {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 9px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.booking-summary dt { color: var(--md-sys-color-on-surface-variant); }
.booking-summary dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--md-sys-color-on-surface);
}
.booking-summary dd strong { font-weight: 650; }
.booking-consent {
  margin: 2px 0 20px;
  padding: 16px;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  background: var(--md-sys-color-surface-container-low);
}
.booking-error { margin: 8px 0 0 30px; color: var(--md-sys-color-error); font-size: 13px; }
.booking-legal-note {
  margin: 14px auto 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.booking-success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--md-sys-color-primary) 10%, #fff);
  color: var(--md-sys-color-primary);
}
.booking-success-icon .material-symbols-outlined { font-size: 40px; }
.booking-confirmation-lede {
  max-width: 60ch;
  margin: 0 auto 26px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 16px;
  line-height: 1.6;
}
.booking-confirmation-card { margin-bottom: 20px; padding: 24px 26px; text-align: left; }
.booking-reference-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.booking-reference__label {
  margin-bottom: 4px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  font-weight: 650;
}
.booking-reference__value {
  color: var(--md-sys-color-primary);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.booking-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fff3d6;
  color: #6b4700;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.booking-status .material-symbols-outlined { font-size: 16px; }
.booking-status-link {
  display: block;
  margin-bottom: 26px;
  padding: 17px 18px;
  border: 1px solid color-mix(in srgb, var(--md-sys-color-primary) 22%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--md-sys-color-primary) 5%, #fff);
  text-align: left;
}
.booking-status-link__title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  font-weight: 700;
}
.booking-status-link__title .material-symbols-outlined { color: var(--md-sys-color-primary); font-size: 18px; }
.booking-status-link p {
  margin: 0 0 9px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  line-height: 1.45;
}
.booking-status-link a { font-size: 13px; overflow-wrap: anywhere; }
.booking-confirmation-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.booking-button--secondary { background: #fff; color: var(--md-sys-color-primary); }

[hidden] { display: none !important; }

@media (max-width: 640px) {
  .booking-shell,
  .booking-shell--confirmation { padding: 24px 16px 52px; }
  .booking-progress { margin-bottom: 20px; }
  .booking-progress__summary { margin-bottom: 10px; }
  .booking-progress__step { gap: 6px; font-size: 11px; }
  .booking-progress__step:not(:last-child)::after {
    left: calc(50% + 20px);
    width: calc(100% - 40px);
  }
  .booking-card__header { padding: 22px 20px 0; }
  .booking-card__body { padding: 24px 20px; }
  .booking-form { gap: 24px; }
  .booking-grid--2,
  .booking-grid--3,
  .booking-purpose-list { grid-template-columns: 1fr; }
  .booking-birthdate__layout { grid-template-columns: 1fr; align-items: stretch; gap: 12px; }
  .booking-birthdate__fields {
    grid-template-columns: minmax(0, 1.3fr) minmax(68px, .65fr) minmax(84px, .8fr);
    gap: 8px;
  }
  .booking-birthdate .booking-select { padding-inline: 9px; font-size: 16px; }
  .booking-birthdate__age {
    grid-template-columns: auto auto auto;
    justify-content: start;
    min-width: 0;
    min-height: 44px;
    padding-inline: 12px;
  }
  .booking-birthdate__age-label { grid-column: auto; margin-right: 4px; }
  .booking-birthdate__age-unit { max-width: none; font-size: 11px; }
  .booking-actions,
  .booking-actions--end {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-button,
  .booking-back { width: 100%; }
  .booking-summary { grid-template-columns: 1fr; gap: 3px; }
  .booking-summary dd + dt { margin-top: 9px; }
  .booking-reference-row { align-items: stretch; flex-direction: column; }
  .booking-status { align-self: flex-start; }
  .booking-confirmation-card { padding: 21px 20px; }
  .booking-confirmation-actions { align-items: stretch; flex-direction: column; }
  .booking-calendar__heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .booking-calendar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-calendar__day { min-height: 176px; }
  .booking-calendar__time { font-size: 11px; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .booking-calendar__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .booking-field,
  .booking-select,
  .booking-textarea,
  .booking-purpose,
  .booking-calendar__day { transition: none; }
}
