.sds-booking-page {
  overflow: hidden;
  background: #fff;
}

.sds-booking-eyebrow {
  margin: 0 0 12px;
  color: var(--sds-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sds-booking-eyebrow--blue {
  color: var(--sds-blue);
}

.sds-booking-hero {
  padding: 68px 0 74px;
  background:
    radial-gradient(circle at 88% 10%, rgba(33,118,189,.09), transparent 25%),
    linear-gradient(135deg,#fff 0%,#f8fbff 60%,#fff8f8 100%);
  border-bottom: 1px solid #e7edf3;
}

.sds-booking-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,.98fr) minmax(420px,1.02fr);
  align-items: center;
  gap: clamp(44px,6vw,78px);
}

.sds-booking-hero__content h1 {
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(44px,4.8vw,68px);
  font-weight: 680;
  line-height: 1.03;
  letter-spacing: -.047em;
}

.sds-booking-hero__content > p:last-of-type {
  max-width: 690px;
  margin: 20px 0 0;
  color: #4e5d6b;
  font-size: 17px;
  line-height: 1.72;
}

.sds-booking-hero__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px 20px;
  margin: 27px 0 0;
  padding: 0;
}

.sds-booking-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sds-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.sds-booking-hero__points li > span {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f4fd;
  color: var(--sds-blue);
}

.sds-booking-hero__points svg {
  width: 13px;
  height: 13px;
}

.sds-booking-hero__media {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #eaf1f7;
}

.sds-booking-hero__media img {
  width: 100%;
  height: 570px;
  display: block;
  object-fit: cover;
}

.sds-booking-main {
  padding: 82px 0 88px;
  background: #f7f9fc;
}

.sds-booking-main__grid {
  display: grid;
  grid-template-columns: minmax(0,1.32fr) minmax(330px,.68fr);
  align-items: start;
  gap: 28px;
}

.sds-booking-form-card {
  padding: 34px;
  border: 1px solid #dce5ed;
  border-radius: 18px;
  background: #fff;
}

.sds-booking-form-card h2,
.sds-booking-help h2,
.sds-booking-steps h2 {
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(30px,3.3vw,44px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.sds-booking-form-card header > p:last-child,
.sds-booking-help > p:last-of-type {
  margin: 15px 0 0;
  color: #596776;
  font-size: 14px;
  line-height: 1.65;
}

.sds-booking-form {
  margin-top: 28px;
}

.sds-booking-page .sds-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.sds-booking-page .sds-form-grid label {
  display: grid;
  gap: 8px;
}

.sds-booking-page .sds-form-grid label > span,
.sds-booking-page .sds-form-consent {
  color: var(--sds-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.sds-booking-page .sds-form-grid__full {
  grid-column: 1 / -1;
}

.sds-booking-page .sds-form-grid input,
.sds-booking-page .sds-form-grid select,
.sds-booking-page .sds-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cfd9e2;
  border-radius: 9px;
  background: #fff;
  color: var(--sds-heading);
  font: inherit;
  font-size: 14px;
  box-shadow: none;
}

.sds-booking-page .sds-form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.sds-booking-page .sds-form-grid input:focus,
.sds-booking-page .sds-form-grid select:focus,
.sds-booking-page .sds-form-grid textarea:focus {
  outline: 3px solid rgba(33,118,189,.14);
  border-color: var(--sds-blue);
}

.sds-booking-page .sds-form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: start;
  gap: 10px;
  margin: 20px 0;
  color: #596776;
  font-weight: 500;
}

.sds-booking-page .sds-form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.sds-booking-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 2px solid var(--sds-red);
  border-radius: 9px;
  background: var(--sds-red);
  color: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

.sds-booking-button svg {
  width: 18px;
  height: 18px;
}

.sds-booking-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 118px;
}

.sds-booking-help,
.sds-booking-steps,
.sds-booking-disclaimer {
  padding: 25px;
  border: 1px solid #dce5ed;
  border-radius: 16px;
  background: #fff;
}

.sds-booking-help h2,
.sds-booking-steps h2 {
  font-size: 26px;
}

.sds-booking-help > a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 9px;
  background: #eef6fc;
  color: var(--sds-blue);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.sds-booking-help > a:nth-of-type(2) {
  background: #effbf3;
  color: #168a45;
}

.sds-booking-help svg {
  width: 20px;
  height: 20px;
}

.sds-booking-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 13px;
  margin-top: 20px;
}

.sds-booking-steps article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4fd;
  color: var(--sds-blue);
  font-size: 12px;
  font-weight: 700;
}

.sds-booking-steps article:nth-of-type(even) > span {
  background: #fff0f0;
  color: var(--sds-red);
}

.sds-booking-steps h3 {
  margin: 0;
  color: var(--sds-heading);
  font-size: 14px;
  font-weight: 650;
}

.sds-booking-steps p {
  margin: 6px 0 0;
  color: #596776;
  font-size: 12px;
  line-height: 1.55;
}

.sds-booking-disclaimer {
  margin: 0;
  color: #596776;
  font-size: 12px;
  line-height: 1.6;
}

.sds-booking-page .sds-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.sds-booking-page .sds-form-notice {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.55;
}

.sds-booking-page .sds-form-notice--success {
  border: 1px solid #add8b3;
  background: #effaf1;
  color: #245f2e;
}

.sds-booking-page .sds-form-notice--error {
  border: 1px solid #efb5b5;
  background: #fff2f2;
  color: #8a2020;
}

@media (max-width: 1020px) {
  .sds-booking-main__grid {
    grid-template-columns: 1fr;
  }

  .sds-booking-sidebar {
    position: static;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .sds-booking-disclaimer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .sds-booking-hero__grid {
    grid-template-columns: 1fr;
  }

  .sds-booking-hero__content {
    text-align: center;
  }

  .sds-booking-hero__points {
    max-width: 720px;
    margin-inline: auto;
    text-align: left;
  }

  .sds-booking-hero__media img {
    height: 540px;
  }
}

@media (max-width: 680px) {
  .sds-booking-hero {
    padding: 48px 0 56px;
  }

  .sds-booking-hero__grid,
  .sds-booking-main > .sds-container {
    width: min(100% - 20px,var(--sds-container));
  }

  .sds-booking-hero__content h1 {
    font-size: clamp(38px,11vw,50px);
  }

  .sds-booking-hero__content > p:last-of-type {
    font-size: 14px;
  }

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

  .sds-booking-hero__media img {
    height: 410px;
  }

  .sds-booking-main {
    padding: 56px 0;
  }

  .sds-booking-form-card {
    padding: 24px 16px;
  }

  .sds-booking-form-card h2 {
    font-size: 31px;
  }

  .sds-booking-page .sds-form-grid {
    grid-template-columns: 1fr;
  }

  .sds-booking-page .sds-form-grid__full {
    grid-column: auto;
  }

  .sds-booking-button {
    width: 100%;
  }

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

  .sds-booking-disclaimer {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .sds-booking-hero__media img {
    height: 370px;
  }
}

/* Online booking calendar — v0.2.92 */
.sds-booking-hero__media {
  position: relative;
}

.sds-booking-hero__media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 250px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
}

.sds-booking-hero__media figcaption > span {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4fd;
  color: var(--sds-blue);
}

.sds-booking-hero__media figcaption svg {
  width: 23px;
  height: 23px;
}

.sds-booking-hero__media figcaption strong {
  color: var(--sds-heading);
  font-size: 14px;
  font-weight: 650;
}

.sds-booking-hero__media figcaption small {
  color: #61707e;
  font-size: 11px;
}

.sds-booking-form-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e4eaf0;
}

.sds-booking-form-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sds-booking-form-section__head {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: start;
  gap: 13px;
  margin-bottom: 20px;
}

.sds-booking-form-section__head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4fd;
  color: var(--sds-blue);
  font-size: 13px;
  font-weight: 700;
}

.sds-booking-form-section:nth-of-type(even) .sds-booking-form-section__head > span {
  background: #fff0f0;
  color: var(--sds-red);
}

.sds-booking-form-section__head h3 {
  margin: 1px 0 0;
  color: var(--sds-heading);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
}

.sds-booking-form-section__head p {
  margin: 6px 0 0;
  color: #65727f;
  font-size: 12px;
  line-height: 1.55;
}

.sds-booking-calendar-section {
  position: relative;
}

.sds-online-calendar {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(260px,.88fr);
  overflow: hidden;
  border: 1px solid #d8e2ea;
  border-radius: 16px;
  background: #fff;
}

.sds-online-calendar__calendar {
  padding: 22px;
  border-right: 1px solid #e0e7ed;
}

.sds-online-calendar__toolbar {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) 42px;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.sds-online-calendar__toolbar strong {
  color: var(--sds-heading);
  font-size: 18px;
  font-weight: 650;
  text-align: center;
}

.sds-online-calendar__toolbar button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d6e0e8;
  border-radius: 9px;
  background: #fff;
  color: var(--sds-blue);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sds-online-calendar__toolbar button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.sds-online-calendar__weekdays,
.sds-online-calendar__days {
  display: grid;
  grid-template-columns: repeat(7,minmax(0,1fr));
  gap: 7px;
}

.sds-online-calendar__weekdays {
  margin-bottom: 7px;
}

.sds-online-calendar__weekdays span {
  color: #778490;
  font-size: 10px;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.sds-online-calendar__spacer {
  min-height: 48px;
}

.sds-online-calendar__day {
  min-width: 0;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 1px solid #e0e7ed;
  border-radius: 9px;
  background: #fff;
  color: var(--sds-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.sds-online-calendar__day:hover:not(:disabled),
.sds-online-calendar__day:focus-visible:not(:disabled) {
  border-color: var(--sds-blue);
  background: #f2f8fd;
}

.sds-online-calendar__day.is-selected {
  border-color: var(--sds-blue);
  background: var(--sds-blue);
  color: #fff;
}

.sds-online-calendar__day.is-first-bookable:not(.is-selected) {
  border-color: var(--sds-red);
  color: var(--sds-red);
}

.sds-online-calendar__day:disabled {
  border-color: transparent;
  background: #f5f7f9;
  color: #adb6be;
  cursor: not-allowed;
}

.sds-online-calendar__times {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #f8fafc;
}

.sds-online-calendar__selection {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dfe6ec;
}

.sds-online-calendar__selection span,
.sds-online-calendar__selection strong {
  display: block;
}

.sds-online-calendar__selection span {
  color: var(--sds-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sds-online-calendar__selection strong {
  margin-top: 6px;
  color: var(--sds-heading);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.sds-online-calendar__status {
  margin: 17px 0 12px;
  color: #65727f;
  font-size: 12px;
  line-height: 1.55;
}

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

.sds-online-calendar__slot {
  min-height: 43px;
  padding: 9px;
  border: 1px solid #cfdce6;
  border-radius: 8px;
  background: #fff;
  color: var(--sds-blue);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.sds-online-calendar__slot:hover,
.sds-online-calendar__slot:focus-visible {
  border-color: var(--sds-blue);
  background: #eef7fd;
}

.sds-online-calendar__slot.is-selected {
  border-color: var(--sds-red);
  background: var(--sds-red);
  color: #fff;
}

.sds-booking-form-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #efb5b5;
  border-radius: 9px;
  background: #fff2f2;
  color: #8a2020;
  font-size: 13px;
  line-height: 1.5;
}

.sds-booking-form-note {
  margin: 12px 0 0;
  color: #65727f;
  font-size: 11px;
  line-height: 1.55;
}

.sds-booking-page .sds-form-notice strong,
.sds-booking-page .sds-form-notice span {
  display: block;
}

.sds-booking-page .sds-form-notice span {
  margin-top: 3px;
}

@media (max-width: 1160px) {
  .sds-online-calendar {
    grid-template-columns: 1fr;
  }

  .sds-online-calendar__calendar {
    border-right: 0;
    border-bottom: 1px solid #e0e7ed;
  }

  .sds-online-calendar__slots {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}

@media (max-width: 680px) {
  .sds-booking-hero__media figcaption {
    left: 11px;
    right: 11px;
    bottom: 11px;
    min-width: 0;
  }

  .sds-booking-form-section__head {
    grid-template-columns: 38px minmax(0,1fr);
  }

  .sds-booking-form-section__head > span {
    width: 38px;
    height: 38px;
  }

  .sds-booking-form-section__head h3 {
    font-size: 17px;
  }

  .sds-online-calendar__calendar,
  .sds-online-calendar__times {
    padding: 14px;
  }

  .sds-online-calendar__weekdays,
  .sds-online-calendar__days {
    gap: 4px;
  }

  .sds-online-calendar__day,
  .sds-online-calendar__spacer {
    min-height: 40px;
  }

  .sds-online-calendar__day {
    border-radius: 7px;
    font-size: 11px;
  }

  .sds-online-calendar__toolbar {
    grid-template-columns: 38px minmax(0,1fr) 38px;
  }

  .sds-online-calendar__toolbar button {
    width: 38px;
    height: 38px;
  }

  .sds-online-calendar__toolbar strong {
    font-size: 16px;
  }

  .sds-online-calendar__slots {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/* Country calling code field — v0.2.94 */
.sds-booking-page .sds-phone-field {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 8px;
}

.sds-booking-page .sds-phone-field__code {
  padding-inline: 10px;
  font-size: 13px;
}

.sds-booking-page .sds-phone-field input {
  min-width: 0;
}

@media (max-width: 420px) {
  .sds-booking-page .sds-phone-field {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 7px;
  }

  .sds-booking-page .sds-phone-field__code {
    padding-inline: 8px;
    font-size: 12px;
  }
}

