@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.booking-widget {
  display: grid;
  gap: 14px;
  padding: 16px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-success {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.booking-page {
  overflow-x: hidden;
}

html.booking-page {
  overflow-x: clip;
  overflow-x: hidden;
}

body.booking-page {
  overflow-x: clip;
  overflow-x: hidden;
}

@media (min-width: 901px) {
  .booking-page,
  html.booking-page,
  body.booking-page {
    overflow-y: scroll;
    scrollbar-gutter: stable;
  }
}

.booking-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
}

.booking-shell {
  display: grid;
  gap: 18px;
}

.booking-intro {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 0 4px;
  text-align: center;
}

.booking-kicker {
  margin: 0;
  color: #6f7568;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-subhead {
  color: #4f554b;
}

.booking-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.booking-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #dcded6;
  border-radius: 999px;
  background: #fff;
  color: #293126;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.booking-chip:hover,
.booking-chip:focus-visible {
  border-color: #9ba58f;
  outline: none;
}

.booking-widget__steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.booking-widget__step {
  font-size: 13px;
  color: #4a4f45;
  border: 1px solid #dcded6;
  background: #f9faf7;
  border-radius: 999px;
  padding: 6px 10px;
  min-width: 0;
  box-sizing: border-box;
}

.booking-widget__step--active {
  background: #1b2a1c;
  border-color: #1b2a1c;
  color: #fff;
}

.booking-widget__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.booking-widget__panel {
  border: 1px solid #dcded6;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.booking-widget__categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
  grid-auto-rows: 1fr;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  overflow-x: hidden;
}

.booking-widget__category {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #dedfd7;
  background: #f7f6f3;
  border-radius: 14px;
  min-height: 110px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  height: 100%;
  overflow: clip;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.booking-widget__category:focus-visible {
  outline: 2px solid #5b6f56;
  outline-offset: 2px;
}

.booking-widget__category:hover {
  border-color: #cfd3c6;
  box-shadow: 0 4px 12px rgba(30, 41, 23, 0.08);
}

.booking-widget__category--active {
  border-color: #8a927d;
  background: #eef0e6;
  box-shadow: 0 4px 12px rgba(30, 41, 23, 0.12);
}

.booking-widget__category-icon {
  position: static;
  --cat-icon-desktop: 36px;
  --cat-icon-mobile: 32px;
  --cat-icon-wrap-desktop: 44px;
  --cat-icon-wrap-mobile: 40px;
  width: var(--cat-icon-wrap-desktop);
  height: var(--cat-icon-wrap-desktop);
  color: #6f7568;
  flex: 0 0 var(--cat-icon-wrap-desktop);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f1f1eb;
}

.booking-widget__category-icon-img {
  width: var(--cat-icon-desktop);
  height: var(--cat-icon-desktop);
  display: block;
}

.booking-widget__category-title {
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 17px);
  color: #2b2d2a;
  line-height: 1.18;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: none;
  text-wrap: balance;
  min-width: 0;
  max-width: 100%;
}

.booking-widget__category-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #7b846f;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(30, 41, 23, 0.2);
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking-widget__category-check::after {
  content: "✓";
}

.booking-widget__category--active .booking-widget__category-check {
  opacity: 1;
  visibility: visible;
}

.booking-widget__category--skeleton {
  cursor: default;
  border-color: #ebece6;
  background: #f6f5f2;
  box-shadow: none;
}

.booking-widget__category--skeleton .booking-widget__category-icon,
.booking-widget__category--skeleton .booking-widget__category-title {
  background: linear-gradient(90deg, #ecefe7 0%, #f4f6f1 50%, #ecefe7 100%);
  background-size: 200% 100%;
  animation: booking-skeleton 1.2s ease-in-out infinite;
  border-radius: 8px;
}

.booking-widget__category--skeleton .booking-widget__category-icon {
  width: 22px;
  height: 22px;
}

.booking-widget__category--skeleton .booking-widget__category-title {
  margin-top: 6px;
  height: 12px;
  width: 70%;
}

@keyframes booking-skeleton {
  0% { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}

.booking-widget__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.booking-widget__tab {
  border: 1px solid #dcded6;
  background: #f5f7f2;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.booking-widget__tab--active {
  background: #1b2a1c;
  border-color: #1b2a1c;
  color: #fff;
}

.booking-widget__service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.booking-widget__service-group + .booking-widget__service-group {
  margin-top: 12px;
}

/* Fix CO2 category selection width shrink: keep panels full width. */
.booking-widget__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.booking-widget__service-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #eef0ea;
  background: #f9faf7;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-widget__service-item input[type="checkbox"] {
  margin-top: 2px;
}

.booking-widget__service-item--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-widget__service-item--summary {
  cursor: default;
}

.booking-widget__service-main {
  flex: 1;
  min-width: 0;
}

.booking-widget__service-actions {
  display: flex;
  align-items: center;
  min-width: 0;
}

.booking-widget__info-btn {
  border: 1px solid #dcded6;
  background: #fff;
  color: #1b2a1c;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  min-width: 0;
}

.booking-widget__info-btn--small {
  padding: 4px 8px;
  font-weight: 600;
  font-size: 12px;
}

.booking-widget__service-title {
  font-weight: 700;
  margin-bottom: 4px;
  min-width: 0;
  max-width: 100%;
}

.booking-widget__service-meta {
  min-width: 0;
  max-width: 100%;
}

.booking-widget__service-price {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #4a4f45;
  font-size: 14px;
}

.booking-widget__info-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #dcded6;
  background: #f5f7f2;
  color: #4a4f45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.booking-widget__info-icon:hover,
.booking-widget__info-icon:focus-visible {
  border-color: #b9c1b1;
  background: #eff1ec;
}

.booking-widget__info-icon-text {
  font-size: 14px;
  line-height: 1;
}

.booking-widget__info-icon--empty {
  visibility: hidden;
}

@media (max-width: 520px) {
  .booking-widget__service-item {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "check title"
      "check meta"
      ". price";
    align-items: start;
    row-gap: 6px;
    column-gap: 10px;
    padding-right: 44px;
    position: relative;
  }

  .booking-widget__service-item input[type="checkbox"] {
    grid-area: check;
    margin-top: 2px;
  }

  .booking-widget__service-main {
    grid-area: title;
  }

  .booking-widget__service-meta {
    grid-area: meta;
  }

  .booking-widget__service-price {
    grid-area: price;
    justify-self: end;
  }

  .booking-widget__service-title {
    font-size: 14px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .booking-widget__service-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .booking-widget__info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }

  .booking-widget__info-icon-text {
    font-size: 15px;
  }
}

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

.booking-widget__summary-left,
.booking-widget__summary-right {
  min-width: 0;
  max-width: 100%;
}

.booking-summary {
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #f6f5f1;
  overflow: clip;
  overflow: hidden;
}

.booking-summary__summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "count right"
    "duration right";
  gap: 6px 12px;
  align-items: start;
}

.booking-summary__summary::-webkit-details-marker {
  display: none;
}

.booking-summary__count {
  grid-area: count;
  font-size: 12.5px;
  opacity: 0.72;
}

.booking-summary__duration {
  grid-area: duration;
  margin-top: 2px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.booking-summary__right {
  grid-area: right;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  justify-self: end;
  align-self: center;
}

.booking-summary__total {
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
}

.booking-summary__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

details[open] .booking-summary__chev {
  transform: rotate(225deg);
}

.booking-summary__panel {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 14px 12px;
}

.booking-summary__note {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.7;
  margin-bottom: 10px;
}

.booking-summary__note--staff {
  opacity: 0.9;
}

.booking-summary__note-title,
.booking-widget__note-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-summary__note-list,
.booking-widget__note-list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 4px;
}

.booking-widget__note--staff-price {
  margin-bottom: 12px;
}

.booking-summary__list {
  display: grid;
  gap: 10px;
}

.booking-summary__group {
  display: grid;
  gap: 10px;
}

.booking-summary__group + .booking-summary__group {
  margin-top: 12px;
}

.booking-summary__groupTitle {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin: 6px 0;
  line-height: 1.2;
  hyphens: none;
  word-break: normal;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-summary__groupTitle::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.08);
}

.booking-summary__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.booking-summary__itemTitle {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  hyphens: none;
  word-break: normal;
  overflow-wrap: anywhere;
  min-width: 0;
}

.booking-summary__itemMeta {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.68;
  line-height: 1.2;
  hyphens: none;
  word-break: normal;
  overflow-wrap: anywhere;
  min-width: 0;
}

.booking-summary__itemPrice {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 14px;
}

.booking-summary__totals {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label label"
    "duration right";
  row-gap: 6px;
  column-gap: 12px;
  align-items: end;
  min-width: 0;
}

.booking-summary--single .booking-summary__totals {
  display: none;
}

.booking-summary--single .booking-summary__panel {
  padding-bottom: 10px;
}

.booking-summary__totalsLabel {
  grid-area: label;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  white-space: nowrap;
}

.booking-summary__totalsDuration {
  grid-area: duration;
  min-width: 0;
  font-size: 12.5px;
  opacity: 0.72;
}

.booking-summary__totalsRight {
  grid-area: right;
  font-size: 14.5px;
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  justify-self: end;
}

@media (max-width: 520px) {
  .booking-summary__summary {
    padding: 12px 12px;
    grid-template-areas:
      "count right"
      "duration duration";
    gap: 6px 10px;
  }

  .booking-summary__right {
    align-self: start;
  }
}

/* Diagnostics: overflow found on #booking-embed/.booking-widget in mobile 392/430 widths. */
.booking-embed,
#booking-embed {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .booking-widget__categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .booking-widget__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    flex-wrap: nowrap;
  }

  .booking-widget__step {
    text-align: center;
    padding: 6px 4px;
    font-size: 12px;
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: -0.1px;
  }

  .booking-widget__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .booking-widget__category {
    min-height: 128px;
    padding: 18px 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .booking-widget__category-icon {
    width: var(--cat-icon-wrap-mobile);
    height: var(--cat-icon-wrap-mobile);
    flex-basis: var(--cat-icon-wrap-mobile);
  }

  .booking-widget__category-icon-img {
    width: var(--cat-icon-mobile);
    height: var(--cat-icon-mobile);
  }

  .booking-widget__category-title {
    font-size: 15px;
    line-height: 1.2;
  }

  .booking-widget__category-check {
    width: 18px;
    height: 18px;
    font-size: 11px;
    top: 8px;
    right: 8px;
  }

  .booking-shell {
    gap: 12px;
  }

  .booking-intro {
    padding-top: 4px;
  }

  .booking-quick-links {
    width: 100%;
  }

  .booking-chip {
    flex: 1 1 120px;
  }
}

.booking-widget__service-meta {
  color: #4a4f45;
  font-size: 13px;
}

.booking-widget__summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef0ea;
  color: #2b2f28;
  font-weight: 600;
  flex-wrap: wrap;
}

.booking-widget__staff-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-widget__staff-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #eef0ea;
  background: #f9faf7;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.booking-widget__staff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e6e6e6;
  background: #f5f7f2;
}

.booking-widget__staff-avatar--empty {
  display: inline-block;
}

.booking-widget__staff-main {
  flex: 1;
  min-width: 0;
}

.booking-widget__staff-name {
  font-weight: 700;
}

.booking-widget__staff-meta {
  color: #4a4f45;
  font-size: 13px;
}

.booking-widget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  --control-h: 44px;
  --control-fs: 15px;
  --control-lh: 1.25;
}

@media (max-width: 720px) {
  .booking-widget__grid {
    grid-template-columns: 1fr;
  }
}

.booking-widget__field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-widget__field select,
.booking-widget__field input {
  width: 100%;
  border: 1px solid #dcded6;
  border-radius: 12px;
  padding: 10px 12px;
  height: var(--control-h);
  min-height: var(--control-h);
  background: #fff;
  font-size: var(--control-fs);
  line-height: var(--control-lh);
  font-family: inherit;
}

.booking-widget__select-wrap {
  position: relative;
}

.booking-widget__field select,
.booking-widget__select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #dcded6;
  border-radius: 12px;
  padding: 10px 40px 10px 12px;
  width: 100%;
  font: inherit;
  font-size: var(--control-fs);
  line-height: var(--control-lh);
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  height: var(--control-h);
  min-height: var(--control-h);
}

.booking-widget__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: linear-gradient(45deg, transparent 50%, #4a4f45 50%), linear-gradient(-45deg, transparent 50%, #4a4f45 50%);
  background-position: center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  opacity: 0.65;
  pointer-events: none;
}

.booking-widget__field select:hover,
.booking-widget__select:hover {
  border-color: #c9d0c5;
}

.booking-widget__field select:focus-visible,
.booking-widget__select:focus-visible {
  outline: none;
  border-color: #5b6f56;
  box-shadow: 0 0 0 3px rgba(91, 111, 86, 0.22);
}

.booking-widget__field select::-ms-expand,
.booking-widget__select::-ms-expand {
  display: none;
}

.booking-widget__field-help {
  margin-top: 6px;
  color: #4a4f45;
  font-size: 12px;
  opacity: 0.75;
}

.booking-widget__field-error {
  margin-top: 6px;
  color: #8b2d2d;
  font-size: 12px;
}

.booking-widget__field input[aria-invalid="true"] {
  border-color: #8b2d2d;
}

.booking-widget__actions--contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 12px;
}

.booking-widget__actions--contacts .booking-widget__btn {
  width: 100%;
  min-width: 0;
}

@media (min-width: 900px) {
  .booking-widget__actions--contacts {
    grid-template-columns: auto auto;
    justify-content: flex-end;
    justify-items: end;
  }

  .booking-widget__actions--contacts .booking-widget__btn {
    width: auto;
    min-width: 140px;
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .booking-widget__actions--contacts {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-widget__input {
  width: 100%;
  border: 1px solid #dcded6;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  box-sizing: border-box;
}

.booking-widget__details {
  border: 1px solid #dcded6;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.booking-widget__details-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #f5f7f2;
}

.booking-widget__details-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.booking-widget__details-main {
  flex: 1;
  min-width: 0;
}

.booking-widget__details-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.booking-widget__details-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #4a4f45;
  font-size: 14px;
  opacity: 0.78;
}

.booking-widget__details-desc {
  margin-top: 8px;
  color: #2b2f28;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.booking-widget__details-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #2b2f28;
  font-size: 14px;
  line-height: 1.55;
}

.booking-widget__slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
}

.booking-widget__slots .booking-widget__note {
  grid-column: 1 / -1;
}

.booking-widget__slot {
  border: 1px solid #dcded6;
  background: #f5f7f2;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  width: 100%;
  min-height: 36px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.booking-widget__slot[aria-pressed="true"] {
  background: #5b6f56;
  border-color: #5b6f56;
  color: #fff;
  box-shadow: 0 6px 14px rgba(26, 43, 27, 0.18);
}

.booking-widget__slot:hover,
.booking-widget__slot:focus-visible {
  border-color: #b9c1b1;
}

.booking-widget__slot[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (min-width: 900px) {
  .booking-widget__slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .booking-widget__slots .booking-widget__note {
    flex-basis: 100%;
    width: 100%;
  }

  .booking-widget__slot {
    flex: 0 0 96px;
  }
}

.booking-widget__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.booking-widget__service-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.booking-widget__service-row select {
  flex: 1;
}

.booking-widget__btn--secondary {
  background: #f5f7f2;
  color: #1b2a1c;
  border: 1px solid #dcded6;
  padding: 10px 14px;
}

.booking-widget__cart {
  margin-top: 14px;
  border: 1px solid #dcded6;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
}

.booking-widget__cart-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.booking-widget__cart-meta {
  color: #4a4f45;
  font-size: 14px;
  margin-bottom: 10px;
}

.booking-widget__cart-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-widget__cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid #eef0ea;
  background: #f9faf7;
  border-radius: 10px;
  padding: 8px 10px;
}

.booking-widget__cart-right {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.booking-widget__modal-overlay {
  position: fixed;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.booking-widget__modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-widget__modal {
  position: fixed;
  width: min(420px, calc(100vw - 24px));
  max-height: 70vh;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #dcded6;
  background: #fff;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(6px);
  opacity: 0.95;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 10000;
}

.booking-widget__modal-overlay.is-open .booking-widget__modal {
  transform: translateY(0);
  opacity: 1;
}

.booking-widget__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef0ea;
  flex-wrap: wrap;
  position: relative;
  padding-right: 46px;
}

.booking-widget__modal-title {
  font-weight: 800;
}

.booking-widget__modal-handle {
  display: none;
}

.booking-widget__modal-close {
  border: 1px solid #dcded6;
  background: #f5f7f2;
  color: #1b2a1c;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-widget__modal-body {
  padding: 12px 14px 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@media (prefers-reduced-motion: reduce) {
  .booking-widget__modal-overlay,
  .booking-widget__modal {
    transition: none;
  }
}

@media (max-width: 640px) {
  .booking-widget__modal {
    width: min(420px, calc(100vw - 24px));
    max-height: 70vh;
  }

  .booking-widget__modal-body {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .booking-widget__details {
    border: 0;
    padding: 0;
    background: transparent;
  }

  .booking-widget__details-row {
    flex-direction: column;
    gap: 10px;
  }

  .booking-widget__details-img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .booking-widget__details-meta {
    gap: 6px;
    font-size: 13.5px;
    line-height: 1.3;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 640px) {
    .booking-widget__modal {
      max-height: 70dvh;
    }
  }
}

.ll-modal-open {
  overflow: hidden;
}

html.ll-modal-open,
body.ll-modal-open {
  overscroll-behavior: none;
}

.booking-widget__remove {
  border: 0;
  background: transparent;
  color: #8b2d2d;
  font-weight: 800;
  cursor: pointer;
}

.booking-widget__btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  background: #1b2a1c;
  color: #fff;
  cursor: pointer;
}

.booking-widget__btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay.flatpickr-disabled,
.flatpickr-day.nextMonthDay.flatpickr-disabled {
  color: #a9afa4;
  background: #eef0ea;
  border-color: transparent;
  text-decoration: line-through;
  cursor: not-allowed;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #5b6f56;
  border-color: #5b6f56;
}

.booking-widget__note {
  color: #4a4f45;
  font-size: 14px;
}

.booking-widget__note--hint {
  white-space: normal;
}

@media (max-width: 520px) {
  .booking-widget__note--hint {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.booking-widget__error {
  color: #8b2d2d;
  font-size: 14px;
}
.booking-success .kv {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 12px;
  row-gap: 8px;
  margin-top: 14px;
}

.booking-success .kv dt,
.booking-success .kv dd {
  margin: 0;
}

.booking-success .kv dt {
  font-weight: 600;
  color: #4a4f45;
  white-space: nowrap;
}

.booking-success .kv dt::after {
  content: ":";
}

.booking-success .kv dd {
  overflow-wrap: anywhere;
}

.booking-success .kv__value--services {
  white-space: pre-line;
}

@media (max-width: 480px) {
  .booking-success .card {
    padding: 14px;
  }
  .booking-success .title {
    font-size: 24px;
  }
}
