/* Native booking calendar */
.booking-widget {
  border: 1px solid var(--line);
  background: #101722;
  padding: 34px;
  color: var(--text);
}
.booking-widget__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.booking-widget__top h3 {
  font-size: 28px;
}
.booking-widget__top p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.booking-step {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.booking-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.booking-configuration,
.booking-appointment-prep,
.booking-schedule {
  min-width: 0;
}
.booking-schedule {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.booking-calendar {
  width: min(100%, 620px);
  margin-inline: auto;
}
.booking-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9da7b5;
  margin-bottom: 10px;
}
.booking-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.booking-service,
.calendar-day,
.booking-slot,
.calendar-nav {
  font: inherit;
  cursor: pointer;
}
.booking-service {
  border: 1px solid #303b49;
  background: #0b1119;
  color: #dce5ee;
  text-align: left;
  padding: 11px 12px;
  font-size: 13px;
}
.booking-service small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.booking-service.is-selected,
.calendar-day.is-selected,
.booking-slot.is-selected {
  border-color: var(--blue);
  background: #20364a;
  color: #fff;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.calendar-title {
  font: 600 16px "Space Grotesk";
}
.calendar-nav {
  border: 1px solid #303b49;
  background: transparent;
  color: var(--blue);
  width: 30px;
  height: 30px;
  font-size: 19px;
  line-height: 1;
}
.calendar-week,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-week span {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.calendar-day {
  border: 1px solid transparent;
  background: transparent;
  color: #cdd5df;
  aspect-ratio: 1;
  padding: 0;
  font-size: 13px;
}
.calendar-day:hover:not(:disabled) {
  border-color: #52606f;
}
.calendar-day:disabled {
  color: #4d5967;
  cursor: default;
}
.booking-times {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 24px;
}
.booking-times h4 {
  margin: 0 0 4px;
  font: 600 16px "Space Grotesk";
}
.booking-times p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}
.booking-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.booking-slot {
  border: 1px solid #303b49;
  background: #0b1119;
  color: #dce5ee;
  padding: 10px 6px;
  font-size: 13px;
}
.booking-details {
  display: none;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.booking-details.is-visible {
  display: grid;
}
.booking-details input,
.booking-details textarea {
  width: 100%;
  border: 1px solid #303b49;
  background: #0b1119;
  color: #eef5fb;
  padding: 12px;
  font: 14px "DM Sans";
  outline: none;
}
.booking-details textarea {
  height: 78px;
  resize: vertical;
}
.booking-details input:focus,
.booking-details textarea:focus {
  border-color: var(--blue);
}
.booking-details__errors {
  padding: 16px 18px;
  border: 1px solid #b96774;
  border-radius: 14px;
  background: #2b171d;
  color: #ffd5dc;
  outline: none;
}
.booking-details__errors[hidden] {
  display: none;
}
.booking-details__errors:focus-visible {
  box-shadow: 0 0 0 3px rgba(185, 103, 116, 0.3);
}
.booking-details__errors strong {
  display: block;
  margin-bottom: 4px;
  color: #fff0f3;
  font: 600 17px "Space Grotesk";
}
.booking-details__errors p {
  margin: 0;
}
.booking-details__errors ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.booking-details__errors li + li {
  margin-top: 6px;
}
.booking-details__errors a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
}
.booking-details label.has-error .booking-label,
.booking-field-error {
  color: #ffadb8;
}
.booking-field-error {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
}
.booking-field-error[hidden] {
  display: none;
}
.booking-details input[aria-invalid="true"],
.booking-details input[aria-invalid="true"]:focus {
  border-color: #d97886;
  box-shadow: 0 0 0 2px rgba(217, 120, 134, 0.18);
}
.booking-details .wide {
  grid-column: 1/-1;
}
.booking-submit {
  justify-self: start;
}
.booking-summary {
  display: none;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid #6aa789;
  background: #0d2119;
  color: #c3f2d8;
}
.booking-summary.is-visible {
  display: block;
}
.booking-modal {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 28px;
  place-items: center;
}
.booking-modal.is-open {
  display: grid;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #050910cc;
}
.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  box-shadow: 0 24px 90px #0009;
}
.booking-modal__close {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.booking-widget--modal {
  border-color: #405063;
}
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 30;
}
@media (max-width: 760px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-schedule {
    grid-column: auto;
  }
  .booking-slots {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .booking-widget {
    padding: 22px;
  }
  .booking-widget__top {
    padding-right: 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .booking-widget__top > div {
    min-width: 0;
  }
  .booking-step {
    align-self: flex-start;
  }
  .booking-details {
    grid-template-columns: 1fr;
  }
  .booking-modal {
    padding: 10px;
  }
  .booking-modal__panel {
    max-height: calc(100vh - 20px);
  }
  .booking-services {
    grid-template-columns: 1fr;
  }
  .floating {
    right: 16px;
    bottom: 16px;
  }
}

.booking-address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 25px;
  padding: 18px;
  border: 1px solid #314759;
  border-radius: 16px;
  background: #0b1119;
}
.booking-address .wide {
  grid-column: 1/-1;
}
.booking-address__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.booking-address__heading p {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.booking-address__badge {
  flex: none;
  border: 1px solid #31536d;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.booking-address__field {
  position: relative;
  min-width: 0;
}
.booking-address__combobox {
  position: relative;
}
.booking-address input {
  display: block;
  width: 100%;
  min-height: 54px;
  border: 1px solid #3a4654;
  border-radius: 14px;
  background: #101722;
  color: #eef5fb;
  padding: 14px 46px;
  font: 500 15px "DM Sans";
  outline: none;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.booking-address input::placeholder {
  color: #778696;
}
.booking-address input:focus {
  border-color: var(--blue);
  background: #121c28;
  box-shadow: 0 0 0 3px rgba(143, 208, 255, 0.14);
}
.booking-address.is-verified input {
  border-color: #438467;
  background: #0e1d18;
  box-shadow: inset 0 0 0 1px rgba(159, 240, 191, 0.09);
}
.booking-address__pin {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid #8fd0ff;
  border-radius: 999px;
  pointer-events: none;
}
.booking-address__pin::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #8fd0ff;
}
.booking-address__loading {
  position: absolute;
  right: 16px;
  top: 50%;
  display: none;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(143, 208, 255, 0.25);
  border-top-color: #8fd0ff;
  border-radius: 999px;
  animation: booking-address-spin 0.7s linear infinite;
}
.booking-address__loading.is-visible {
  display: block;
}
@keyframes booking-address-spin {
  to {
    transform: rotate(360deg);
  }
}
.booking-address__hint {
  display: block;
  margin: 8px 2px 0;
  color: #8493a2;
  font-size: 11px;
  line-height: 1.45;
}
.booking-address__status {
  display: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 12px;
  line-height: 1.5;
}
.booking-address__status.is-visible {
  display: block;
}
.booking-address__status.is-info {
  border-color: #31536d;
  background: #102232;
  color: #b9ddf6;
}
.booking-address__status.is-success {
  border-color: #366b52;
  background: #0d2119;
  color: #c3f2d8;
}
.booking-address__status.is-warning {
  border-color: #7b6335;
  background: #241d10;
  color: #f3db9b;
}
.booking-address__status.is-error {
  border-color: #7a2f38;
  background: #261216;
  color: #ffbec6;
}
.booking-address__suggestion-panel {
  position: absolute;
  z-index: 40;
  top: 60px;
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid #405063;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px #0009;
}
.booking-address__suggestion-panel[hidden] {
  display: none;
}
.booking-address__suggestions {
  max-height: 280px;
  overflow: auto;
  color: #18212b;
}
.booking-address__suggestion {
  display: block;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid #e1e6eb;
  background: #fff;
  padding: 11px 13px;
  color: #18212b;
  text-align: left;
  cursor: pointer;
}
.booking-address__suggestion:last-child {
  border-bottom: 0;
}
.booking-address__suggestion:hover,
.booking-address__suggestion:focus,
.booking-address__suggestion.is-active {
  outline: 0;
  background: #edf6fc;
  box-shadow: inset 3px 0 #4997cc;
}
.booking-address__suggestion strong,
.booking-address__suggestion span {
  display: block;
}
.booking-address__suggestion strong {
  font: 600 13px/1.4 "DM Sans";
}
.booking-address__suggestion span {
  margin-top: 3px;
  color: #5d6875;
  font: 12px/1.35 "DM Sans";
}
@media (max-width: 600px) {
  .booking-address {
    padding: 15px;
  }
  .booking-address .wide {
    grid-column: auto;
  }
  .booking-address__heading {
    flex-direction: column;
  }
  .booking-address input {
    min-height: 58px;
    padding: 15px 44px;
    font-size: 16px;
  }
  .booking-address__suggestion-panel {
    position: relative;
    top: auto;
    margin-top: 7px;
    box-shadow: 0 12px 28px #0007;
  }
  .booking-address__suggestions {
    max-height: 240px;
  }
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 22px;
}
.booking-options select {
  display: block;
  width: 100%;
  border: 1px solid #303b49;
  background: #0b1119;
  color: #eef5fb;
  padding: 11px;
  font: 14px "DM Sans";
  outline: none;
}
.booking-options select:focus {
  border-color: var(--blue);
}
.booking-addons {
  grid-column: 1/-1;
}
.booking-addons select {
  margin-bottom: 10px;
}
.booking-addons__selected {
  display: grid;
  gap: 12px;
}
.booking-addon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 12px;
  align-items: end;
  border: 1px solid #283746;
  border-radius: 14px;
  background: #0d1823;
  padding: 12px;
}
.booking-addon-chip {
  width: 100%;
  border: 1px solid #303b49;
  background: #0b1119;
  color: #dce5ee;
  padding: 9px 10px;
  font: 13px "DM Sans";
  cursor: pointer;
  text-align: left;
  min-height: 42px;
}
.booking-addon-chip span {
  color: var(--blue);
}
.booking-addon-note {
  display: block;
  max-width: 42rem;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.45;
}
.booking-addon-qty {
  align-self: end;
}
.booking-addon-qty span,
.booking-addon-instructions > span {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.25;
}
.booking-addon-qty select {
  display: block;
  width: 100%;
  border: 1px solid #303b49;
  background: #0b1119;
  color: #eef5fb;
  padding: 10px 11px;
  font: 14px "DM Sans";
  outline: none;
  min-height: 42px;
}
.booking-addon-qty select:focus {
  border-color: var(--blue);
}
.booking-addon-instructions {
  grid-column: 1/-1;
  display: block;
}
.booking-addon-instructions textarea {
  display: block;
  width: 100%;
  min-height: 72px;
  resize: vertical;
  border: 1px solid #303b49;
  border-radius: 10px;
  background: #0b1119;
  color: #eef5fb;
  padding: 11px 12px;
  font: 14px/1.45 "DM Sans";
  outline: none;
}
.booking-addon-instructions textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(107, 191, 255, 0.12);
}
.booking-addon-instructions textarea::placeholder {
  color: #73808d;
}
.booking-addon-instructions small {
  margin-top: 6px !important;
}
.booking-addons__empty,
.booking-addons small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.booking-addons__empty {
  margin-top: 2px;
}
.booking-addons small {
  margin-top: 8px;
}
.booking-frequency {
  grid-column: 1/-1;
}
.booking-frequency.is-disabled {
  opacity: 0.42;
}
.booking-sameday {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 14px;
  border: 1px solid #7b6335;
  border-radius: 14px;
  background: #241d10;
  padding: 13px 14px;
  cursor: pointer;
}
.booking-sameday .booking-label {
  margin: 0;
  color: #f3db9b;
}
.booking-sameday input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #8fd0ff;
}
.booking-sameday small {
  grid-column: 1/-1;
  color: #c9b77f;
  font-size: 12px;
  line-height: 1.45;
}
.booking-price {
  border: 1px solid #314759;
  background: #0b1119;
  padding: 15px 16px;
  margin: 0 0 25px;
}
.booking-price > span,
.booking-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.booking-price strong {
  display: block;
  font: 600 26px/1.2 "Space Grotesk";
  color: var(--blue);
  margin: 4px 0;
}
.booking-price small {
  line-height: 1.45;
}
.booking-price small span {
  display: block;
  margin-top: 6px;
  color: inherit;
  font-weight: 400;
}
.booking-price__recurring {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #22303d;
  color: inherit !important;
  font-size: 12px !important;
  line-height: 1.45;
  font-weight: 400;
}
.booking-price__recurring span {
  display: block;
  margin-top: 6px;
  color: inherit;
}
.booking-price__breakdown {
  margin-top: 12px;
  border-top: 1px solid #22303d;
  padding-top: 10px;
  display: grid;
  gap: 6px;
}
.booking-price__breakdown span {
  display: block;
  color: #dbe7f0;
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .booking-options {
    grid-template-columns: 1fr;
  }
  .booking-frequency {
    grid-column: auto;
  }
  .booking-addons {
    grid-column: auto;
  }
  .booking-addon-row {
    grid-template-columns: 1fr;
  }
  .booking-addon-qty {
    max-width: 180px;
  }
}
.booking-price__duration span {
  margin-top: 0 !important;
  color: inherit;
  font-weight: 400;
}
.booking-price__duration-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.booking-price__recurring span {
  margin-top: 0 !important;
  color: inherit;
  font-weight: 400;
}
.booking-price__recurring-emphasis {
  display: block;
  color: var(--blue) !important;
  font-weight: 700 !important;
}

/* Rounded calendar treatment from the newer Sparkle booking experience. */
.calendar-header {
  gap: 10px;
}
.calendar-title {
  color: #f3f7fb;
  text-align: center;
}
.calendar-nav {
  width: 40px;
  height: 40px;
  border-color: #2b3a49;
  border-radius: 999px;
  background: #101722;
  color: #eef5fb;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.calendar-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #152131;
}
.calendar-week,
.calendar-days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.calendar-week span {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.calendar-days {
  width: 100%;
}
.calendar-day {
  min-width: 0;
  border-color: #2b3a49;
  border-radius: 12px;
  background: #101722;
  color: #eef5fb;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.calendar-day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #152131;
}
.calendar-day:disabled {
  color: #4d5967;
  opacity: 0.45;
}
.calendar-day.is-selected {
  border-color: var(--blue);
  background: rgba(63, 146, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(169, 214, 245, 0.18);
  color: #fff;
}
.booking-slot {
  border-radius: 12px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.booking-slot:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #152131;
}
.booking-slot.is-selected {
  border-color: var(--blue);
  background: rgba(63, 146, 255, 0.16);
  color: #fff;
}
.booking-availability-notice {
  margin: 0 0 16px !important;
  border: 1px solid #7b6335;
  border-radius: 12px;
  background: #241d10;
  padding: 11px 12px;
  color: #f3db9b !important;
  font-size: 13px !important;
  line-height: 1.5;
}
.booking-availability-notice[hidden] {
  display: none;
}
@media (max-width: 420px) {
  .calendar-week,
  .calendar-days {
    gap: 4px;
  }
  .calendar-week span {
    font-size: 9px;
    letter-spacing: 0.07em;
  }
  .calendar-day {
    border-radius: 10px;
    font-size: 12px;
  }
  .calendar-nav {
    width: 36px;
    height: 36px;
  }
}
.checkout-toast {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #050910cc;
  backdrop-filter: blur(6px);
}
.checkout-toast__card {
  position: relative;
  width: min(540px, 100%);
  background: #0f1721;
  border: 1px solid #314759;
  box-shadow: 0 24px 80px #000a;
  padding: 28px 24px 22px;
  text-align: center;
  color: #eef5fb;
}
.checkout-toast__icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: #1c3c2f;
  color: #9ff0bf;
  font: 700 28px/1 "Space Grotesk";
}
.checkout-toast__card h3 {
  margin: 0 0 10px;
  font: 600 24px/1.2 "Space Grotesk";
}
.checkout-toast__card p {
  margin: 0;
  color: #c7d0da;
  line-height: 1.55;
}
.checkout-toast__card small {
  display: block;
  margin-top: 12px;
  color: #8fa0b0;
}
.checkout-toast__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #8fa0b0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.checkout-toast__actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.checkout-toast__actions .button {
  text-decoration: none;
}
.checkout-toast__actions .button--ghost {
  background: transparent;
  border: 1px solid #314759;
  color: #eef5fb;
}
.checkout-toast__actions .button--ghost:hover {
  background: #182231;
}
.checkout-toast--cancelled .checkout-toast__card {
  border-color: #7a2f38;
  background: #1a1013;
}
.checkout-toast--cancelled .checkout-toast__icon {
  background: #5a1f28;
  color: #ffb3bc;
}
.checkout-toast--cancelled .checkout-toast__close {
  color: #ffb3bc;
}
.checkout-toast--cancelled .checkout-toast__card small {
  color: #e2a3ad;
}

.booking-widget__top .booking-returning {
  margin-top: 12px;
  color: #c7d0da;
}
.booking-returning a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}
.booking-returning a:hover {
  color: #d8efff;
}
.booking-summary .booking-account-link {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  text-decoration: none;
}
.booking-summary > span {
  display: block;
  line-height: 1.5;
}
.booking-summary > a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
}
.booking-hold-countdown {
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.booking-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.booking-summary__actions .button {
  margin: 0;
}
.booking-summary__actions .booking-summary__secondary {
  border: 1px solid #8db8cf;
  background: transparent;
  color: #dceefa;
}

/* Stripe-hosted fields embedded inside Sparkle. Card data remains in Stripe's iframe. */
.sparkle-payment-open {
  overflow: hidden;
}
.sparkle-payment-shell {
  position: fixed;
  z-index: 10000;
  inset: 0;
  overflow: auto;
  padding: 24px;
  background: rgba(5, 9, 16, 0.9);
  backdrop-filter: blur(10px);
}
.sparkle-payment-panel {
  width: min(760px, 100%);
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  border: 1px solid #314759;
  border-radius: 28px;
  background: #0f1721;
  box-shadow: 0 30px 100px #000b;
  padding: clamp(20px, 4vw, 40px);
  color: #eef5fb;
}
.sparkle-payment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.sparkle-payment-header p {
  margin: 0 0 7px;
  color: #8fd0ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sparkle-payment-header h2 {
  font-size: clamp(25px, 4vw, 38px);
  letter-spacing: -0.035em;
}
.sparkle-payment-close {
  flex: none;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #314759;
  border-radius: 999px;
  background: #141f2b;
  color: #eef5fb;
  font: 300 30px/1 "DM Sans";
  cursor: pointer;
}
.sparkle-payment-close:hover,
.sparkle-payment-close:focus {
  border-color: #8fd0ff;
  outline: 0;
}
.sparkle-payment-trust {
  margin: 14px 0 22px;
  color: #aebbc7;
  font-size: 14px;
  line-height: 1.55;
}
.sparkle-payment-status {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed #314759;
  border-radius: 18px;
  color: #aebbc7;
}
.sparkle-payment-status.is-error {
  min-height: auto;
  margin-bottom: 16px;
  border-color: #7a2f38;
  background: #261216;
  padding: 16px;
  color: #ffbec6;
}
.sparkle-payment-status[hidden] {
  display: none !important;
}
#sparkle-embedded-checkout {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
@media (max-width: 600px) {
  .sparkle-payment-shell {
    padding: 0;
    background: #0f1721;
  }
  .sparkle-payment-panel {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    padding: 20px 14px 32px;
  }
  .sparkle-payment-header h2 {
    max-width: 280px;
  }
  .sparkle-payment-trust {
    margin-bottom: 16px;
  }
}
.sparkle-payment-panel {
  position: relative;
}
.sparkle-focus-sentinel {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.sparkle-payment-close:disabled {
  cursor: wait;
  opacity: 0.55;
}
.sparkle-payment-shell.is-cancelling #sparkle-embedded-checkout {
  pointer-events: none;
  opacity: 0.55;
}
.sparkle-checkout-cancelled-notice {
  grid-column: 1/-1;
  margin: 0 0 18px;
  border: 1px solid #31536d;
  border-radius: 14px;
  background: #102232;
  padding: 14px 16px;
  color: #cce9fb;
  font-size: 14px;
  line-height: 1.5;
}
body > .sparkle-payment-shell ~ [inert],
body > [inert]:not(.sparkle-payment-shell) {
  pointer-events: none;
  user-select: none;
}

/* Final service-scope handoff: paid extras and inherited scope remain
   visually and semantically distinct at every booking width. */
.booking-service strong {
  display: block;
  font-weight: 600;
}
.booking-service small {
  line-height: 1.35;
}
.booking-addon-message:not(:empty) {
  margin-top: 12px;
  border: 1px solid #31536d;
  border-radius: 12px;
  background: #102232;
  padding: 10px 12px;
  color: #cce9fb;
  font-size: 12px;
  line-height: 1.5;
}
.booking-included {
  margin-top: 16px;
  border: 1px solid #31536d;
  border-radius: 14px;
  background: #0d1823;
  padding: 14px;
}
.booking-included > strong {
  display: block;
  color: #8fd0ff;
  font: 600 13px/1.35 "Space Grotesk";
}
.booking-included ul {
  display: grid;
  gap: 9px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}
.booking-included li {
  position: relative;
  padding-left: 18px;
  color: #e2ebf3;
  font-size: 13px;
  line-height: 1.4;
}
.booking-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8fd0ff;
  font-weight: 700;
}
.booking-included li > span {
  display: block;
}
.booking-included li > small {
  margin: 2px 0 0;
  color: #9daab7;
  font-size: 11px;
}
.booking-widget__top > div {
  min-width: 0;
}
.booking-widget__top p {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}
@media (max-width: 600px) {
  .booking-service {
    min-width: 0;
  }
  .booking-service small {
    white-space: normal;
  }
  .booking-included {
    padding: 12px;
  }
}
.booking-additional-units {
  margin-top: 12px;
  border: 1px solid #466f8c;
  border-radius: 14px;
  background: #102232;
  padding: 14px;
}
.booking-additional-units > strong {
  display: block;
  color: #cce9fb;
  font: 600 13px/1.35 "Space Grotesk";
}
.booking-additional-units > p {
  margin: 6px 0 12px;
  color: #aebdca;
  font-size: 12px;
  line-height: 1.5;
}
.booking-additional-units > div {
  display: grid;
  gap: 10px;
}
.booking-additional-units label {
  display: grid;
  gap: 5px;
  color: #e2ebf3;
  font-size: 12px;
}
.booking-additional-units select {
  width: 100%;
}
.booking-price__scope {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  border-top: 1px solid rgba(143, 208, 255, 0.2);
  padding-top: 10px;
  color: #c6d6e3;
  font-size: 11px;
  line-height: 1.45;
}
.booking-price__scope b {
  color: #eaf5fc;
  font-weight: 600;
}
@media (min-width: 640px) {
  .booking-additional-units > div {
    grid-template-columns: 1fr 1fr;
  }
}

/* Google Maps confirms the building location; the optional unit remains customer supplied. */
.booking-address.is-confirmed .booking-address__combobox input {
  border-color: #438467;
  background: #0e1d18;
  box-shadow: inset 0 0 0 1px rgba(159, 240, 191, 0.09);
}
.booking-address__unit[hidden] {
  display: none;
}
.booking-address__unit input {
  min-height: 48px;
  padding: 12px 14px;
}
.booking-address__unit small {
  display: block;
  margin-top: 7px;
  color: #8493a2;
  font-size: 11px;
  line-height: 1.45;
}
.booking-address__attribution {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  border-top: 1px solid #e1e6eb;
  background: #fff;
  padding: 10px 10px 5px;
}
.booking-address__attribution img {
  display: block;
  width: 98px;
  height: 18px;
}

/* Interaction safety: keep native controls inside their own hit areas and let the
   page retain natural vertical scrolling on mouse, trackpad, and touch. */
.booking-widget {
  touch-action: pan-y;
}
.booking-layout {
  overflow: visible;
}
.booking-services {
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.booking-options {
  position: relative;
  z-index: 1;
}
.booking-option-field {
  min-width: 0;
}
.booking-options select {
  position: relative;
  max-width: 100%;
  touch-action: manipulation;
}
.booking-service,
.calendar-day,
.booking-slot,
.calendar-nav {
  touch-action: manipulation;
}
.calendar-day[aria-disabled="true"] {
  color: #4d5967;
  cursor: not-allowed;
  opacity: 0.45;
}
.calendar-day:hover[aria-disabled="true"] {
  transform: none;
  border-color: #2b3a49;
  background: #101722;
}
.calendar-day.is-same-day-option,
.calendar-day.is-same-day-option:hover {
  border-color: #9d7c3c;
  background: #241d10;
  color: #f3db9b;
  box-shadow: inset 0 0 0 1px rgba(243, 219, 155, 0.12);
  opacity: 1;
}
.calendar-day.is-same-day-option.is-selected {
  border-color: var(--blue);
  box-shadow:
    inset 0 0 0 1px rgba(243, 219, 155, 0.12),
    0 0 0 2px rgba(169, 214, 245, 0.28);
}
.booking-calendar-status {
  margin: 9px 2px 0;
  color: #aebdca;
  font-size: 12px;
  line-height: 1.45;
}
.booking-calendar-status:empty {
  display: none;
}

.booking-address,
.booking-address__field {
  isolation: isolate;
}
.booking-address__suggestion-panel {
  z-index: 100;
  pointer-events: auto;
}
.booking-address__suggestions {
  overscroll-behavior: contain;
}
.booking-address__suggestion {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
}
.booking-address__suggestion strong,
.booking-address__suggestion span {
  pointer-events: none;
}
