.booking-page {
  color: var(--ink);
  background: var(--paper);
}
.booking-page [hidden] {
  display: none !important;
}
.booking-page button,
.booking-page input,
.booking-page select,
.booking-page textarea {
  font: inherit;
}
.booking-page button,
.booking-page summary {
  -webkit-tap-highlight-color: transparent;
}
.booking-page button {
  cursor: pointer;
}
.booking-page button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.booking-page h1,
.booking-page h2,
.booking-page p {
  margin: 0;
}
.booking-page h1 {
  color: var(--navy);
  font: 600 clamp(2rem, 6.8vw, 2.7rem) / 1.13 var(--serif);
  letter-spacing: -0.035em;
  margin: 0 0 0.65rem;
  text-wrap: balance;
}
.booking-page h2 {
  font: 650 1.15rem/1.3 var(--sans);
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.booking-header {
  max-width: 43rem;
  margin: auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.booking-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
}
.booking-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgb(8 38 87 / 0.12), 0 4px 14px rgb(8 38 87 / 0.12);
}
.booking-secure-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}
.booking-secure-label svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.booking-main {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0.6rem 1.25rem 1.5rem;
}
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0.4rem 0 1.8rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}
.booking-progress li + li::before {
  content: '';
  width: 1.8rem;
  height: 1px;
  background: var(--line);
  margin-right: 0.5rem;
}
.booking-progress li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-progress span {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6e8ec;
}
.booking-progress [aria-current='step'] {
  color: var(--navy);
  font-weight: 650;
}
.booking-progress [aria-current='step'] span {
  background: var(--navy);
  color: white;
}
.booking-progress .complete span {
  background: var(--blue-mist);
  color: var(--navy);
}
.booking-intro {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.65rem !important;
}
.booking-hint {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.booking-center {
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
}
.service-card.selected {
  border-color: var(--navy);
  background: var(--blue-mist);
  box-shadow: inset 0 0 0 1px var(--navy);
}
.service-choice {
  text-align: center;
  padding: 0.375rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: grid;
  gap: 0.2rem;
  width: 100%;
  flex: 1;
  min-height: 64px;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-rows: minmax(2.5rem, auto) 1.25rem 32px;
  grid-template-areas: 'icon name' 'icon price' 'icon controls';
  column-gap: 0.25rem;
  align-content: center;
}
.service-choice::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 12px;
}
.service-choice:focus-visible::after {
  outline: 3px solid var(--navy);
  outline-offset: -3px;
}
.service-card > .service-controls {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: calc(100% - 88px);
  min-height: 32px;
  padding: 0;
  gap: 2px;
  justify-content: center;
  pointer-events: none;
}
.service-card .service-controls output {
  min-width: 14px;
}
.service-card .quantity-button {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: rgba(8, 38, 87, 0.05);
  pointer-events: auto;
}
.service-card button {
  touch-action: manipulation;
}
.service-icon {
  grid-area: icon;
  align-self: center;
  width: 70px;
  height: 94px;
  object-fit: contain;
}
.service-choice strong {
  grid-area: name;
  align-self: center;
  font-size: 0.9rem;
  line-height: 1.25rem;
  font-weight: 650;
  text-wrap: balance;
}
.service-price {
  grid-area: price;
  align-self: start;
  margin-top: -3px;
  font-size: 0.82rem;
  line-height: 1.35rem;
  font-variant-numeric: tabular-nums;
}
.service-controls {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  padding: 0 0.25rem;
}
.icon-button,
.quantity-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 1.5rem !important;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}
.service-controls output {
  min-width: 1.2rem;
  text-align: center;
  font-weight: 650;
}
.pickup-section {
  margin-top: 1.65rem;
}
.pickup-calendar {
  padding: 0.4rem 0.6rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.calendar-heading {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  text-align: center;
}
.calendar-heading h3 {
  font-size: 1rem;
  margin: 0;
}
.calendar-weekdays,
.date-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}
.calendar-weekdays {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  padding: 0.4rem 0;
}
.date-choice {
  min-height: 38px;
  padding: 0;
  border: 1px solid var(--navy);
  border-radius: 7px;
  background: var(--blue-mist);
  color: var(--navy);
  font-weight: 600 !important;
  font-size: 0.9rem;
  touch-action: manipulation;
}
.booking-page .date-choice:disabled {
  border-color: transparent;
  background: transparent;
  color: #9098a3;
  opacity: 1;
  cursor: default;
}
.date-choice[aria-pressed='true'] {
  color: white;
  background: var(--navy);
}
.date-choice[aria-current='date'] {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.calendar-legend {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.7rem 0 0 !important;
}
.calendar-legend span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: var(--blue-mist);
}
#date-selection {
  text-align: center;
  margin: 0.35rem 0 0 !important;
  font-size: 0.8rem;
}
.text-button {
  border: 0;
  background: none;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.55rem 0;
  min-height: 44px;
  text-align: left;
}
#retry-dates {
  margin-top: 0.25rem;
}
#date-status,
#service-status {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.35rem 0 0.8rem;
}
.pickup-window,
.paid-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-mist);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1.1rem 0 !important;
  color: var(--navy);
  font-weight: 650;
  font-size: 0.95rem;
}
.pickup-window svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  flex: 0 0 auto;
}
.booking-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.2rem;
}
#cart-summary {
  font-weight: 650;
  color: var(--navy);
}
#cart-total {
  margin: 0.2rem 0 0.8rem;
}
.primary-button,
.secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 650 !important;
  text-align: center;
  padding: 0.7rem 1rem;
  line-height: 1.3;
}
.secondary-button {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}
.booking-bottom .booking-center {
  margin-top: 0.55rem;
}
.back-button {
  margin-bottom: 0.45rem;
}
.summary-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 1.2rem 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy);
}
.summary-card strong {
  line-height: 1.35;
  display: block;
}
.summary-card p {
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.booking-page fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.booking-field {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.8rem 0.45rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  gap: 0.1rem;
}
.booking-field:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--blue-mist);
}
.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  min-width: 0;
  min-height: 29px;
  padding: 0.1rem 0;
  border: 0;
  background: transparent;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #757e8b;
  opacity: 1;
}
.booking-field textarea {
  resize: vertical;
}
.booking-field select {
  min-height: 36px;
}
.booking-field:has([aria-invalid='true']) {
  border-color: #a22b2b;
}
#address-help {
  margin-top: -0.25rem;
}
#address-help .text-button {
  font-size: inherit;
  min-height: auto;
  padding: 0;
}
.address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7rem;
  gap: 0.5rem;
}
.booking-disclosure {
  margin: 0.3rem 0 1rem;
}
.booking-disclosure summary,
.consent-details summary {
  cursor: pointer;
  color: var(--navy);
  min-height: 44px;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.booking-disclosure .booking-field {
  margin-top: 0.4rem;
}
.consent-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.45;
  cursor: pointer;
  min-height: 44px;
}
.consent-choice input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--navy);
}
.consent-details {
  margin: -0.5rem 0 0.4rem 2rem;
}
.consent-details summary {
  font-size: 0.8rem;
  color: var(--muted);
}
.consent-details p {
  font-size: 0.8rem;
  line-height: 1.6;
}
.price-summary {
  border-top: 1px solid var(--line);
  margin: 1rem 0;
  padding-top: 0.8rem;
}
.price-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.1rem 0;
}
.price-summary dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.price-total {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 0.2rem;
}
#payment-status {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.6rem 0;
}
.apple-pay-button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 10px;
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: pay;
  -apple-pay-button-style: black;
}
#wallet-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.payment-switch {
  display: block;
  margin: 0.5rem auto;
  text-align: center;
}
#card-panel {
  margin-top: 1rem;
}
#card-container {
  min-height: 0;
}
#payment-note {
  margin-top: 0.9rem;
}
#hold-note {
  margin-top: 0.5rem;
}
.booking-alert {
  border: 1px solid #d8b2a0;
  border-radius: 10px;
  background: #fff5f0;
  color: #762c19;
  padding: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.booking-result {
  padding-top: 0.7rem;
}
.result-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-mist);
  color: var(--navy);
  font-size: 2.4rem;
  margin: 0 auto 1.1rem;
}
.booking-result > h1,
.booking-result > .booking-intro {
  text-align: center;
}
.confirmation-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
  background: white;
  color: var(--navy);
  margin-top: 1.5rem;
}
.confirmation-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.confirmation-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0.85rem 0;
}
#result-address {
  white-space: pre-line;
}
#result-paid {
  font-size: 1.25rem;
}
#result-receipt,
#result-texts {
  overflow-wrap: anywhere;
  margin: 0.65rem 0;
}
.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}
.result-actions button {
  padding: 0.6rem 0.3rem;
  font-size: 0.9rem;
}
.before-pickup {
  margin: 1rem 0;
}
.before-pickup h2,
.optional-invite h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.before-pickup p,
.optional-invite p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.optional-invite {
  background: var(--blue-mist);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.2rem 0;
}
.optional-invite .primary-button {
  margin-top: 0.85rem;
}
.done-link {
  display: block;
  text-align: center;
  margin: 0.65rem auto;
}
#result-retry,
#retry-payment,
#result-restart {
  margin-top: 0.8rem;
}
#result-support {
  text-align: center;
  margin-top: 1rem;
}
.paid-banner {
  justify-content: center;
  margin-top: 0 !important;
}
#optional-form > .booking-hint {
  margin: -0.4rem 0 1.15rem;
}
#optional-form .primary-button {
  margin-top: 1.5rem;
}
.booking-footer {
  max-width: 38rem;
  margin: auto;
  padding: 0 1.25rem 1.5rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}
.booking-footer nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.booking-footer a {
  padding: 0.5rem 0;
}
.booking-page dialog {
  padding: 1.2rem;
  width: min(92vw, 30rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--paper);
  max-height: 85dvh;
}
.booking-page dialog::backdrop {
  background: rgb(4 26 61 / 0.45);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.dialog-header h2 {
  margin: 0;
}
#service-options {
  max-height: 92dvh;
  overflow: hidden;
  padding: 1.25rem;
  background: white;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgb(4 26 61 / 0.18);
}
#service-options[open] {
  display: flex;
  flex-direction: column;
}
#service-options .dialog-header,
#options-hint,
.options-footer {
  flex-shrink: 0;
}
#option-list {
  overflow-y: auto;
  min-height: 0;
  padding: 3px;
  margin: -3px;
}
#service-options .dialog-header {
  margin-bottom: 0.35rem;
}
#options-title {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
}
#options-title:focus {
  outline: none;
}
#service-options .icon-button {
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-mist);
}
#service-options button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
#options-hint {
  margin: 0 0 1rem;
}
.option-group + .option-group {
  margin-top: 1.1rem;
}
.option-group h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}
.option-choice {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.25rem;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--navy);
}
.option-choice + .option-choice {
  margin-top: 0.5rem;
}
.option-choice.selected {
  border-color: var(--navy);
  background: var(--blue-mist);
}
.option-toggle {
  display: grid;
  align-content: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.65rem 0 0.65rem 0.75rem;
  text-align: left;
  touch-action: manipulation;
}
.option-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
}
.option-toggle strong {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 650;
}
.option-price {
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.option-choice .service-controls {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  gap: 0;
  padding: 0 0.25rem;
}
.option-choice .quantity-button {
  width: 44px;
  height: 44px;
  background: rgb(8 38 87 / 0.05);
  border-radius: 10px;
}
.option-choice output {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 650;
}
.options-footer {
  background: white;
  padding: 0.75rem 0 1.25rem;
  margin-bottom: -1.25rem;
  border-top: 1px solid var(--line);
  margin-top: 0.75rem;
}
.options-footer p {
  text-align: center;
  margin-bottom: 0.4rem;
}
.options-footer .primary-button {
  min-height: 44px;
}

.booking-page[data-booking-page='payment'] .booking-header {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgb(8 38 87 / 0.09);
  background: rgb(251 250 247 / 0.9);
  backdrop-filter: blur(12px);
}
.booking-page[data-booking-page='payment'] .booking-brand img {
  width: 2.65rem;
  height: 2.65rem;
}
.booking-page[data-booking-page='payment'] {
  background:
    linear-gradient(180deg, rgb(232 240 251 / 0.68) 0, rgb(251 250 247 / 0) 12rem),
    var(--paper);
}
.booking-page[data-booking-page='payment'] .booking-main {
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}
.booking-page[data-booking-page='payment'] .booking-progress {
  display: none;
}
.checkout-heading {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.4rem;
}
[data-page='payment'] .checkout-heading h1 {
  grid-column: 2;
  max-width: none;
  text-wrap: initial;
  margin: 0;
  font-size: 1.68rem;
  color: var(--navy-deep);
  text-align: center;
}
.checkout-heading button {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgb(8 38 87 / 0.16);
  border-radius: 50%;
  background: rgb(232 240 251 / 0.9);
  color: var(--navy);
  box-shadow: 0 2px 8px rgb(8 38 87 / 0.08);
}
.checkout-heading button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[data-page='payment'] .summary-card {
  margin: 0.25rem 0 0.55rem !important;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  border-color: rgb(8 38 87 / 0.18);
  background: rgb(232 240 251 / 0.78);
  box-shadow: 0 5px 16px rgb(8 38 87 / 0.06);
}
[data-page='payment'] .summary-card p {
  font-size: 0.8rem;
  margin-top: 0.1rem;
}
.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;
}
[data-page='payment'] .booking-field {
  line-height: 1.25;
  min-height: 44px;
  padding: 0.08rem 0.65rem;
  margin-bottom: 0.25rem;
  gap: 0;
  border-color: rgb(8 38 87 / 0.16);
  box-shadow: 0 2px 8px rgb(8 38 87 / 0.035);
}
[data-page='payment'] .booking-field input {
  min-height: 25px;
}
.sms-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0 0.6rem;
}
[data-page='payment'] .sms-options .consent-choice {
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  margin: 0;
  font-size: 0.85rem;
}
.sms-options .consent-details {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}
.sms-options .consent-details summary {
  padding: 0.65rem 0;
}
.sms-options .consent-details[open] {
  grid-column: 1 / -1;
  grid-row: 2;
}
.sms-options .consent-details p {
  margin-bottom: 0.75rem;
}
[data-page='payment'] .price-summary {
  line-height: 1.25;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 0.25rem 0 0.6rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgb(8 38 87 / 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(8 38 87 / 0.055);
}
[data-page='payment'] .price-summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  font-size: 0.85rem;
  justify-items: start;
  text-align: left;
}
[data-page='payment'] .price-summary div:nth-child(2) {
  justify-items: center;
  text-align: center;
}
[data-page='payment'] .price-summary div:nth-child(2) dt,
[data-page='payment'] .price-summary div:nth-child(2) dd {
  width: 100%;
  text-align: center;
}
[data-page='payment'] .price-summary dt {
  font-size: 0.75rem;
  color: var(--muted);
}
[data-page='payment'] .price-summary .price-total {
  margin: 0;
  justify-items: end;
  text-align: right;
}
[data-page='payment'] .price-total dt,
[data-page='payment'] .price-total dd {
  width: auto;
  justify-self: end;
  text-align: right;
}
[data-page='payment'] .price-total dd {
  font-size: 1.1rem;
  color: var(--navy-deep);
}
[data-page='payment'] .price-summary dd {
  font-weight: 650;
  line-height: 1.3;
}
[data-page='payment'] #wallet-actions {
  gap: 0.35rem;
  margin-top: 0.45rem;
}
[data-page='payment'] .apple-pay-button {
  min-height: 46px;
  height: 46px;
}
[data-page='payment'] .payment-switch {
  margin: 0 auto;
}
[data-page='payment'] #payment-note {
  margin-top: 0;
  font-size: 0.75rem;
}
.booking-page[data-booking-page='payment'] .booking-footer {
  padding-bottom: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.25;
}
.booking-page[data-booking-page='payment'] .booking-footer p {
  margin: 0;
}
.booking-page[data-booking-page='payment'] .booking-footer nav {
  gap: 0.8rem;
}
.booking-page[data-booking-page='payment'] .booking-footer a {
  padding: 0.25rem 0;
}
[data-page='payment'] #card-panel {
  margin-top: 0.45rem;
  padding: 0.55rem 0.7rem 0.1rem;
  border: 1px solid rgb(8 38 87 / 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(8 38 87 / 0.055);
}
[data-page='payment'] #card-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
[data-page='payment'] #card-title small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}
[data-page='payment'] #pay-card {
  min-height: 46px;
  margin-top: 0.4rem;
}
#manage-dialog > p {
  margin: 0.8rem 0;
}
.booking-honeypot,
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0 !important;
}
@media (min-width: 48rem) {
  .booking-header {
    padding-top: 2rem;
  }
  .booking-main {
    padding-top: 1.2rem;
  }
}
@media (max-width: 23rem) {
  .booking-header,
  .booking-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .booking-secure-label {
    font-size: 0.65rem;
  }
  .service-choice {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 0.25rem;
  }
  .service-choice strong {
    font-size: 0.8rem;
  }
  .service-icon {
    width: 52px;
  }
  .service-card > .service-controls {
    width: calc(100% - 70px);
    gap: 0;
  }
  .service-card .quantity-button {
    width: 28px;
  }
  .service-card .service-controls output {
    min-width: 12px;
  }
  .booking-page h1 {
    font-size: 1.9rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service-choice:hover,
  .quantity-button:hover,
  .date-choice:not(:disabled):not([aria-pressed='true']):hover,
  .secondary-button:hover {
    background: var(--blue-mist);
  }
  .primary-button:hover {
    background: var(--navy-soft);
  }
}
@media (prefers-reduced-motion: reduce) {
  .booking-page {
    scroll-behavior: auto;
  }
}

.booking-page .skip-link {
  opacity: 0;
  pointer-events: none;
}
.booking-page .skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}
