.booking-section,
.booking-hero {
  position: relative;
}

body[data-booking-lang]::before {
  display: none;
}

.booking-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-hero {
  padding: clamp(1.55rem, 3vw, 2.5rem) 0 clamp(0.9rem, 2vw, 1.35rem);
}

.container.booking-hero-inner {
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
}

body.booking-confirming .booking-hero {
  display: none;
}

body.booking-confirming .booking-section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.booking-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 3.75rem);
  line-height: 0.98;
}

.booking-section {
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.container.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  max-width: 720px;
}

.booking-layout.is-confirming {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 360px);
  max-width: 1120px;
}

.booking-layout:not(.is-confirming) .booking-aside {
  display: none;
}

.booking-card,
.booking-aside {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: none;
}

.booking-card {
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  overflow: visible;
  border: 1px solid rgba(94, 87, 77, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: none;
}

.booking-card .btn[data-slot="button"],
.booking-calendar-modal .btn[data-slot="button"] {
  min-height: 48px;
  height: auto;
  padding: 0.78rem 1.3rem;
  border-radius: var(--pill);
}

.stepper {
  display: flex;
  gap: 1.35rem;
  margin: 0 0 clamp(1.6rem, 3vw, 2.25rem);
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.booking-layout:not(.is-confirming) .stepper {
  display: none;
}

.stepper li {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  min-width: 0;
  margin-bottom: -1px;
  padding: 0 0 0.72rem;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.78rem;
}

.stepper li span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
}

.stepper li b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stepper li.is-active,
.stepper li.is-complete {
  border-color: var(--ink);
  color: var(--ink);
}

.stepper li.is-active span,
.stepper li.is-complete span {
  background: transparent;
  color: var(--ink);
}

.booking-step {
  display: none;
}
.booking-step.is-active {
  display: block;
  animation: booking-in 0.22s ease-out;
}

.booking-step[data-step="1"].is-active {
  display: flex;
  flex-direction: column;
}

.booking-step[data-step="1"] .booking-date-section {
  order: 1;
}

.booking-step[data-step="1"] #package-options {
  order: 2;
}

.booking-step[data-step="1"] #signature-options {
  order: 3;
}

.booking-step[data-step="1"] .selection-price {
  order: 4;
}

.booking-step[data-step="1"] .booking-contact {
  order: 5;
}

.booking-step[data-step="1"] > #check-availability {
  order: 6;
}

.booking-step[data-step="1"] > .reserve-note {
  order: 7;
}

@keyframes booking-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-heading {
  display: grid;
  gap: 0.22rem;
  margin-bottom: 1rem;
}

.step-heading p,
.aside-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-step .step-heading p {
  display: none;
}

.step-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  line-height: 1.02;
}

.selection-title {
  margin: 1.75rem 0 0.65rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.step-description {
  max-width: 640px;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 1rem;
  padding: 4px;
  border-radius: 14px;
  background: var(--bg);
}

.package-choice {
  position: relative;
  min-width: 0;
}

.package-choice input {
  position: absolute;
  opacity: 0;
}

.package-choice > span {
  display: grid;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.package-choice > span:hover {
  background: rgba(255, 255, 255, 0.62);
}

.package-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
}

.package-choice-media {
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #ddd4c8;
}

.package-choice-media img {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(0.88) brightness(1.06);
  opacity: 0.58;
  object-fit: contain;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.package-choice-body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 13px 14px 15px;
}

.package-heading strong {
  min-width: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
}

.package-heading b {
  white-space: nowrap;
}

.package-choice input:not(:checked) + span .package-heading {
  color: #6d665c;
}

.package-choice input:not(:checked) + span:hover .package-choice-media img {
  filter: grayscale(0.72) contrast(0.94) brightness(1.03);
  opacity: 0.78;
}

.package-choice small {
  color: var(--muted);
  line-height: 1.4;
}

.package-choice input:checked + span {
  padding: 0;
  border-color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--ink);
}

.package-choice input:checked + span .package-choice-media img {
  filter: none;
  opacity: 1;
}

.package-choice input:focus-visible + span {
  outline: 1px solid var(--ink);
  outline-offset: 1px;
}

.signature-options {
  display: block;
  margin-bottom: 0;
}

.signature-options[hidden] {
  display: none;
}

.address-fieldset {
  min-width: 0;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.address-fieldset {
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.address-fieldset legend {
  padding: 0 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.address-fieldset legend {
  padding: 0;
  color: var(--ink);
  font-size: 0.86rem;
}

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

.choice,
.consent {
  display: flex;
  min-width: 0;
  gap: 0.62rem;
  align-items: flex-start;
  border-radius: 10px;
  cursor: pointer;
}

.choice {
  padding: 10px 11px;
  border: 1px solid transparent;
  background: transparent;
}

.choice:has(input:checked) {
  border-color: rgba(94, 87, 77, 0.14);
  background: var(--bg);
}

.choice input,
.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-dark);
}

.choice span,
.choice strong,
.choice small {
  display: block;
  min-width: 0;
}
.choice small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.product-addon-list {
  display: grid;
  gap: 2px;
}

.product-addon-choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: transparent;
}

.product-addon-copy {
  display: grid;
  align-content: center;
  gap: 2px;
}

.product-addon-copy b {
  margin-top: 5px;
  font-size: 0.78rem;
}

.booking-contact {
  margin-top: 2rem;
}

.addon-choice {
  align-items: center;
}
.addon-choice b {
  margin-left: auto;
  white-space: nowrap;
}

.booking-fields {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.booking-fields.two-columns,
.first-step-fields,
.lead-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.first-step-fields .date-field {
  grid-column: 1 / -1;
}

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

.booking-fields label:not(.choice):not(.consent) {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.booking-fields input,
.booking-fields select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: var(--ds-control-height-field);
  padding: 0.76rem 0.85rem;
  border: 1px solid var(--ds-color-field-border);
  border-radius: var(--ds-radius-md);
  background: var(--ds-color-field-background);
  color: var(--ink);
  font: inherit;
}

.booking-fields input[type="date"] {
  inline-size: 100%;
  max-inline-size: 100%;
  min-inline-size: 0;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields input:user-invalid,
.booking-fields select:user-invalid,
.booking-fields input[aria-invalid="true"],
.booking-fields select[aria-invalid="true"] {
  border-color: var(--ds-color-field-border-active);
  outline: none;
  box-shadow: none;
}

.booking-fields .consent {
  width: auto;
  justify-self: start;
  align-items: center;
}

.booking-fields .consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
}

.rental-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.lead-fields {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.lead-privacy-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.lead-privacy-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-reminder-consent {
  margin-top: 0.75rem;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.lead-reminder-consent:has(input:checked) {
  color: var(--ink);
}

.calendar-period-bridge {
  display: none !important;
}

.custom-period-fields {
  margin-top: 0.9rem;
  padding: 0.9rem 0 0.1rem;
  border-top: 1px solid var(--line);
}

.custom-period-fields[hidden] {
  display: none;
}

.custom-period-help {
  display: none;
}

.selection-price {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
}

.selection-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.selection-price strong {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.wide-button {
  width: 100%;
  min-height: 48px;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: none;
}

.reserve-note {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.booking-date-section {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 0.5rem;
  margin: 0;
}

.booking-date-section.has-error {
  padding: 0.6rem;
  border: 1px solid var(--error);
  border-radius: 12px;
  outline: none;
}

.booking-date-label {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-date-picker {
  min-width: 0;
  max-width: 100%;
}

.context-note {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.context-note[hidden] {
  display: none;
}

.quiet-details {
  margin-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.quiet-details summary {
  padding: 0.8rem 0;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.quiet-details[open] summary {
  padding-bottom: 0.55rem;
}

.quiet-details p {
  margin: 0 0 0.8rem;
  line-height: 1.5;
}

.business-booking {
  margin-top: 1.2rem;
}

.business-booking a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.booking-alert {
  margin-bottom: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--ds-color-success-border);
  border-radius: 10px;
  background: var(--ds-color-success-surface);
  color: var(--success);
  font-size: 0.86rem;
}

.booking-alert.is-error {
  border-color: var(--ds-color-error-border);
  background: var(--ds-color-error-surface);
  color: var(--error);
}

.booking-decision {
  display: grid;
  gap: 0.28rem;
  margin: 0 0 0.85rem;
  padding: 13px 14px;
  border: 0;
  border-radius: 12px;
  background: rgba(201, 223, 205, 0.42);
  color: var(--ink);
}

.booking-decision.is-review {
  background: rgba(232, 221, 202, 0.55);
  color: var(--ink);
}

.booking-decision strong {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.2;
}

.booking-decision span {
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.45;
}

.form-section-title {
  margin: 1.25rem 0 0.75rem;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 780;
}

.legal-section-title {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.payment-method-note {
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.live-summary > .summary-control-row,
.aside-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 15px;
  align-items: start;
}

.legal-checks {
  display: grid;
  gap: 0;
  padding-top: 0;
}

.consent {
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.compact-consent {
  padding: 0;
}

.legal-detail {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.legal-detail summary {
  cursor: pointer;
  font-weight: 750;
}
.legal-detail p {
  margin: 0.5rem 0 0;
}

.legal-placeholder {
  margin: 1rem 0;
  padding: 14px;
  border: 1px solid rgba(183, 106, 99, 0.28);
  border-radius: 10px;
  background: #f6e3df;
}

.legal-placeholder p {
  margin: 0.3rem 0 0;
}

.booking-aside {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: none;
}

.booking-aside-card {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.aside-body {
  padding: 1.35rem;
}

.aside-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.aside-product-media {
  display: block;
  width: 112px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.aside-product-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.aside-product-copy strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.aside-product-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.live-summary {
  display: grid;
  gap: 0;
  margin-top: 0.35rem;
}

.live-summary > .summary-control-row {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
}

.summary-control-row[hidden] {
  display: none;
}

.summary-control-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.summary-control-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.summary-control-copy b {
  color: var(--ink);
  font-size: 0.83rem;
  line-height: 1.25;
}

.summary-control-copy strong {
  max-width: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 620;
  line-height: 1.42;
  text-align: left;
  overflow-wrap: anywhere;
}

.summary-edit-action[data-slot="button"] {
  min-height: 44px;
  padding: 0 12px;
  border-color: var(--line);
  border-radius: var(--pill);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
}

.summary-edit-action[data-slot="button"]:hover {
  border-color: rgba(151, 82, 69, 0.45);
  background: var(--surface-2);
}

.summary-stepper {
  display: grid;
  grid-template-columns: 44px 28px 44px;
  gap: 8px;
  align-items: center;
}

.summary-stepper-button[data-slot="button"] {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-2) 78%, white);
  color: var(--ink);
}

.summary-stepper-button[data-slot="button"]:hover:not(:disabled) {
  background: color-mix(in srgb, var(--surface-2) 92%, var(--ink) 8%);
}

.summary-stepper-button[data-slot="button"]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.summary-stepper-button[data-slot="button"]:disabled {
  background: color-mix(in srgb, var(--surface-2) 62%, white);
  color: rgba(23, 20, 18, 0.2);
  opacity: 1;
}

.summary-stepper-button[data-slot="button"] svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.summary-stepper strong {
  display: grid;
  min-height: auto;
  place-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.summary-switch-wrap {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.summary-switch-wrap > .shadcn-root {
  display: grid;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
}

.summary-switch-wrap > strong {
  color: var(--accent-dark);
  font-size: 0.69rem;
  white-space: nowrap;
}

.booking-aside.is-updating .live-summary {
  opacity: 0.62;
}

body.booking-calendar-modal-open {
  overflow: hidden;
}

.booking-calendar-modal {
  width: min(1040px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
}

.booking-calendar-modal:not([open]) {
  display: none;
}

.booking-calendar-modal::backdrop {
  background: rgba(24, 20, 16, 0.5);
}

.booking-calendar-modal-shell {
  display: grid;
  align-content: start;
  max-height: calc(100dvh - 40px);
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: auto;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 22px 64px rgba(23, 20, 18, 0.2);
}

.booking-calendar-modal-heading {
  margin-bottom: 0.75rem;
}

.booking-calendar-modal-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.1;
}

.booking-calendar-modal-body {
  min-width: 0;
}

.booking-calendar-modal-body .booking-date-section {
  gap: 0;
}

.booking-calendar-modal-body .mot-calendar-field > [data-slot="field-label"] {
  display: none;
}

.booking-calendar-modal[data-mode="period"] .mot-period-toolbar {
  display: none;
}

.booking-calendar-modal-error {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e9c0bc;
  border-radius: 10px;
  background: #fbefee;
  color: var(--error);
  font-size: 0.82rem;
}

.booking-calendar-modal-error[hidden] {
  display: none;
}

.booking-calendar-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 0.75rem;
  padding-top: 0.25rem;
}

.booking-calendar-modal-actions [data-slot="button"] {
  min-width: 150px;
}

.aside-total {
  align-items: baseline;
  padding: 1rem 0 0.4rem;
}

.aside-total strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  white-space: nowrap;
}

.aside-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.checkout-mode-banner {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ds-color-warning-border);
  background: var(--ds-color-warning-surface);
  color: var(--ds-color-warning);
}

.checkout-mode-banner .container {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  font-size: 0.78rem;
  text-align: center;
}

.checkout-mode-banner strong {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-page {
  min-height: 65vh;
  padding: clamp(3rem, 8vw, 7rem) 0;
}
.status-card {
  max-width: 760px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}
.status-card h1 {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.3rem, 6vw, 4rem);
}
.status-card > #status-message {
  max-width: 610px;
  margin: 1rem auto 0;
  color: var(--muted);
}
.status-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  font-size: 1.5rem;
}
.status-details {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  text-align: left;
}
.status-details[hidden],
.status-invoice[hidden] {
  display: none;
}
.status-details div {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.status-details strong {
  max-width: 65%;
  overflow-wrap: anywhere;
  text-align: right;
}
.status-invoice {
  margin-top: 2rem;
}
.status-support {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.status-support a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .booking-layout,
  .booking-layout.is-confirming {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-aside {
    position: static;
    grid-row: 1;
    display: block;
  }
}

@media (max-width: 650px) {
  .booking-nav {
    display: none;
  }
  .site-header .nav-shell {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .site-header .lang-toggle {
    margin-left: auto;
  }
  .container.booking-hero-inner,
  .site-footer .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .booking-hero {
    padding: 1rem 0 0.75rem;
  }
  .booking-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.7rem);
  }
  .booking-card {
    padding: 1.05rem;
    border-radius: 15px;
  }
  .booking-aside {
    border-radius: 17px;
  }
  .aside-body {
    padding: 1rem;
  }
  .aside-note {
    display: none;
  }
  .aside-product {
    grid-template-columns: 88px minmax(0, 1fr);
  }
  .aside-product-media {
    width: 88px;
  }
  .live-summary > .summary-control-row {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 9px;
  }
  .summary-control-icon {
    width: 23px;
    height: 23px;
  }
  .booking-calendar-modal {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }
  .booking-calendar-modal-shell {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
    border: 0;
    border-radius: 0;
  }
  .booking-calendar-modal-heading {
    margin-bottom: 0.35rem;
  }
  .booking-calendar-modal-heading h2 {
    font-size: 1.35rem;
  }
  .booking-calendar-modal-actions {
    position: static;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0.5rem -1rem -1rem;
    padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
    background: var(--surface);
  }
  .booking-calendar-modal-actions [data-slot="button"] {
    width: 100%;
    height: 48px;
    min-height: 48px;
  }
  .package-options,
  .signature-options,
  .option-grid,
  .booking-fields.two-columns,
  .lead-fields {
    grid-template-columns: minmax(0, 1fr);
  }
  .first-step-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .first-step-fields .date-field {
    grid-column: 1 / -1;
  }
  .booking-fields .full {
    grid-column: auto;
  }
  .first-step-fields .full {
    grid-column: 1 / -1;
  }
  .first-step-fields label:not(.choice):not(.consent) {
    font-size: 0.72rem;
  }
  .first-step-fields input,
  .first-step-fields select {
    min-height: 48px;
    padding: 0.7rem 0.62rem;
    font-size: 0.82rem;
  }
  .step-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .step-actions .btn {
    width: 100%;
  }
  .step-actions .btn-secondary {
    order: 2;
  }
  .checkout-mode-banner .container {
    flex-direction: column;
    gap: 0.1rem;
    align-items: center;
  }
  .status-card {
    border-radius: 17px;
  }
  .status-details div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .status-details strong {
    max-width: 100%;
    text-align: left;
  }
  .status-invoice {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .aside-product {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .aside-product-media {
    width: 72px;
  }
  .stepper li {
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-step.is-active {
    animation: none;
  }
  .package-choice > span {
    transition: none;
  }
}
