@charset "UTF-8";
/* ==========================================
   Booking page (booking.html): services > date and time > details
   ========================================== */
:root {
  --ink: #111111;
  --ink-contrast: #ffffff;
  --muted: #666666;
  --line: #e2e2e5;
  --soft: #f4f4f6;
  --page: #f6f6f8;
  --surface: #ffffff;
  --night: #26262d; /* the dark panels (booking summary, pop-ups): a softer charcoal than black */
  --accent: #e63946;
  --accent-strong: #d32f3b;
  --danger: #d92d3a;
  --disabled-bg: #e2e2e2;
  --disabled-text: #767676;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.booking {
  padding-bottom: 72px;
  background: var(--page);
  color: var(--ink);
  font-size: 15px;
}
.booking [hidden] {
  display: none !important;
}
.booking__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 20px 0;
}
.booking__top {
  margin-bottom: 18px;
}
.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.booking-hero {
  position: relative;
  padding: 44px 20px 30px;
  background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(230, 57, 70, 0.2), transparent 70%), linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
}
.booking-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.booking-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.booking-hero h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
}
.booking-hero h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}
.booking-hero p {
  margin: 12px 0 28px;
  color: #c4c4cb;
  font-size: 16px;
}

.dev-banner {
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid #f0d78a;
  border-radius: 10px;
  background: #fff8e1;
  color: #111111;
  font-size: 13px;
  line-height: 1.5;
}

.back-link {
  padding: 0;
  border: none;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.back-link::before {
  content: "→";
  margin-inline-end: 6px;
}
.back-link:hover {
  color: var(--accent-strong);
}

.progress {
  max-width: 640px;
  margin: 0 auto;
}
.progress__labels {
  display: flex;
  justify-content: space-between;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #9c9ca6;
  counter-reset: step;
}
.progress__labels li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  counter-increment: step;
  transition: color 0.3s;
}
.progress__labels li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.progress__labels li:nth-child(2) {
  justify-content: center;
}
.progress__labels li:last-child {
  justify-content: flex-end;
}
.progress__labels .is-done {
  color: #ffffff;
}
.progress__labels .is-done::before {
  content: "✓";
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.progress__labels .is-current {
  color: #ffffff;
  font-weight: 700;
}
.progress__labels .is-current::before {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #ffffff;
}
.progress__track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.progress__fill {
  display: block;
  height: 100%;
  width: 33.333%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b3242f, var(--accent));
  transition: width 0.5s ease;
}

.step__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
}
.step__title::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: var(--accent);
}
.step__title small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.step__title:not(:first-child) {
  margin-top: 36px;
}

.notice {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-right: 4px solid var(--accent);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .booking__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-hero h1 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .booking__inner {
    padding: 18px 14px 0;
  }
  .booking-hero {
    padding: 34px 14px 24px;
  }
  .booking-hero p {
    margin-bottom: 22px;
    font-size: 15px;
  }
  .progress__labels {
    font-size: 12px;
  }
  .progress__labels li {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .progress__labels li:nth-child(2), .progress__labels li:last-child {
    justify-content: flex-start;
  }
}
.car-picker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 30px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.car-picker label {
  font-weight: 700;
}
.car-picker__select {
  height: 42px;
  min-width: 220px;
  max-width: 100%;
  padding: 0 12px;
  border: 1.5px solid #c9c9c9;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.car-picker__select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.car-picker__hint {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--muted);
}
.car-picker.is-empty .car-picker__select {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.14);
}
.car-picker.is-empty .car-picker__hint {
  color: var(--ink);
  font-weight: 600;
}
.car-picker.needs-attention {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.option:hover {
  border-color: #b8b8bf;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.option.is-selected {
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.option.is-selected::before {
  content: "";
  position: absolute;
  top: 14px;
  right: -1.5px;
  bottom: 14px;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: var(--accent-strong);
}
.option.is-locked {
  background: #fafafb;
}
.option__body {
  flex: 1;
}
.option h3 {
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 900;
}
.option p {
  margin-bottom: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.option__meta {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 13.5px;
  font-weight: 700;
}
.option.is-selected .option__meta {
  background: #000000;
  color: #ffffff;
}
.option input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid #b5b5bb;
  border-radius: 6px;
  background: var(--surface) center/14px no-repeat;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.option input:checked {
  border-color: var(--accent-strong);
  background-color: var(--accent-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5,12.5 10,17.5 19,7'/%3E%3C/svg%3E");
}
.option input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.option input {
  margin-top: 2px;
}
.option input[type=radio] {
  border-radius: 50%;
}

@media (max-width: 560px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}
.scheduler {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calendar,
.slots {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.calendar__nav h3 {
  font-size: 21px;
  font-weight: 900;
}
.calendar__arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.calendar__arrow:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}
.calendar__arrow:disabled {
  color: var(--disabled-text);
  cursor: not-allowed;
}
.calendar__weekdays, .calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar__weekdays {
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.calendar__day {
  height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.calendar__day:hover:not(:disabled):not(.is-selected) {
  background: var(--soft);
  border-color: var(--line);
}
.calendar__day:disabled {
  color: var(--disabled-text);
  cursor: not-allowed;
}
.calendar__day.is-empty {
  visibility: hidden;
}
.calendar__day.is-today {
  border-color: var(--accent);
  font-weight: 700;
}
.calendar__day.is-selected {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 700;
}
.calendar__day.is-full {
  text-decoration: line-through;
}
.calendar__day { position: relative; }
.calendar__day.is-holiday::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #7a7a86;
}
.calendar__day.is-holiday--yomtov::after { background: #d32f3b; }
.calendar__day.is-holiday--eve::after { background: #e0a100; }
.calendar__legend { margin-top: 6px; text-align: center; font-size: 12px; color: var(--muted); }
.calendar__legend i { display: inline-block; width: 8px; height: 8px; margin: 0 4px 0 2px; border-radius: 50%; vertical-align: middle; background: #7a7a86; }
.calendar__legend .dot--red { background: #d32f3b; }
.calendar__legend .dot--amber { background: #e0a100; }
.calendar__note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.slots {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 14px 16px;
  align-items: center;
}
.slots h3,
.slots .notice {
  grid-column: 1/-1;
}
.slots h3 {
  font-size: 19px;
  font-weight: 900;
}
.slots .notice {
  margin-bottom: 0;
}
.slots h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.slots__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slots__empty {
  font-size: 14px;
  color: var(--muted);
}
.slots__btn {
  min-width: 84px;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.slots__btn:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}
.slots__btn.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ink-contrast);
}

@media (max-width: 560px) {
  .calendar,
  .slots {
    padding: 16px;
  }
  .calendar__day {
    height: 42px;
    font-size: 15px;
  }
  .slots {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .slots h4 {
    margin-top: 6px;
  }
}
.details {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.details__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}
.field input:not([type=checkbox]),
.field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid #c9c9c9;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-align: right;
}
.field input:not([type=checkbox]):focus,
.field select:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.22);
}
.field select {
  cursor: pointer;
}
.field select:disabled {
  background: var(--soft);
  color: var(--disabled-text);
  cursor: not-allowed;
}
.field__hint, .field__error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
.field__hint {
  color: var(--muted);
}
.field__error {
  color: var(--danger);
}
.field__error:empty {
  display: none;
}
.field.has-error input:not([type=checkbox]), .field.has-error select {
  border-color: var(--danger);
}

.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.field--consent {
  margin: 12px 0 8px;
}
.field--consent .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  cursor: pointer;
}
.field--consent .consent input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid #b5b5bb;
  border-radius: 6px;
  background: var(--surface) center/14px no-repeat;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.field--consent .consent input:checked {
  border-color: var(--accent-strong);
  background-color: var(--accent-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5,12.5 10,17.5 19,7'/%3E%3C/svg%3E");
}
.field--consent .consent input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.field--consent .consent input {
  margin-top: 1px;
}
.field--consent .consent a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
}
.field--consent.has-error .consent {
  color: var(--danger);
}

.policy {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}
.policy__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border: none;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.policy__btn:hover {
  color: var(--accent-strong);
}
.policy__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  text-decoration: none;
}
.policy__popup {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  z-index: 20;
  width: 340px;
  max-width: 86vw;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.policy__popup > strong:first-child {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}
.policy__popup p strong {
  color: var(--ink);
}

@media (max-width: 560px) {
  .details {
    padding: 18px;
  }
  .details__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.summary {
  position: sticky;
  top: 16px;
  padding: 22px;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(230, 57, 70, 0.2), transparent 70%), var(--night);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}
.summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.summary__title {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
  font-weight: 900;
}
.summary__car {
  margin-bottom: 12px;
  font-size: 13px;
  color: #b5b5bd;
}
.summary__car strong {
  color: #ffffff;
}
.summary__items {
  list-style: none;
}
.summary__items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}
.summary__empty {
  color: #b5b5bd;
}
.summary__totals small {
  font-weight: 400;
  color: #b5b5bd;
}
.summary__totals {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.summary__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.summary__total {
  align-items: baseline;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}
.summary__total dd {
  font-size: 22px;
  font-weight: 900;
}
.summary__next {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.summary__next:hover:not(:disabled) {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.summary__next:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}
.summary__next:disabled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #a2a2ab;
  cursor: not-allowed;
}
.summary__note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #b5b5bd;
}

@media (max-width: 820px) {
  .summary {
    position: static;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(230, 57, 70, 0.24), transparent 70%), var(--night);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal.is-open .modal__box {
  transform: translateY(0);
}
.modal__box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  cursor: pointer;
}
.modal__close:hover {
  color: #ffffff;
}
.modal__head {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 44px 20px 26px;
}
.modal__ring {
  position: absolute;
  top: 40px;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(230, 57, 70, 0.8);
  border-radius: 50%;
  opacity: 0;
}
.modal.is-open .modal__ring {
  animation: modalRing 1s ease-out 0.15s;
}
.modal__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-strong);
}
.modal__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal__body {
  padding: 30px 32px 36px;
}
.modal__body h2 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}
.modal__body p {
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #c4c4cb;
}
.modal__steps {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  list-style: none;
  text-align: right;
}
.modal__steps li {
  position: relative;
  padding-right: 22px;
  font-size: 13px;
  color: #9a9aa3;
}
.modal__steps li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}
.modal__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 15px;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}
.modal__steps li.is-done {
  color: #ffffff;
  font-weight: 700;
}
.modal__steps li.is-done::before {
  border-color: var(--accent);
  background: var(--accent);
}
.modal__actions {
  display: flex;
  gap: 12px;
}
.modal__btn {
  flex: 1;
  padding: 13px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.modal__btn--dark {
  border-color: rgba(255, 255, 255, 0.6);
  background: #000000;
  color: #ffffff;
}
.modal__btn--dark:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.modal__btn--light {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
}
.modal__btn--light:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.modal__fallback {
  margin: 16px 0 0 !important;
  font-size: 12px !important;
  color: #9a9aa3 !important;
}
.modal__fallback a {
  color: #ffffff;
  font-weight: 600;
}
.modal--error .modal__ring {
  border-color: rgba(217, 45, 58, 0.6);
}
.modal--error.is-open .modal__ring {
  animation: modalRing 1.1s ease-out 0.15s 2;
}
.modal--error .modal__icon {
  background: #ffffff;
}
.modal--error .modal__icon svg {
  stroke: var(--accent-strong);
}
.modal--error.is-open .modal__icon {
  animation: modalShake 0.5s ease 0.55s;
}

@keyframes modalRing {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
@keyframes modalShake {
  0%, 100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-6px);
  }
  30% {
    transform: translateX(5px);
  }
  45% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  90% {
    transform: translateX(1px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__box,
  .modal__icon,
  .modal__ring {
    animation: none !important;
    transition: none !important;
  }
  .modal__ring {
    opacity: 0 !important;
  }
}

.option-note {
  margin: 12px 2px 4px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
/* nano coating / polish: the price is only a starting point - said clearly before the customer sends the booking */
.summary__note--call {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff !important;
  line-height: 1.7;
}
.details__notice {
  margin: 4px 0 2px;
  padding: 14px 16px;
  border: 1px solid #f0d78a;
  border-radius: 12px;
  background: #fff8e1;
  color: #111111;
}
.details__notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.details__notice p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
}
.details__notice .details__short strong {
  display: inline;
  margin: 0;
  font-size: inherit;
}
.details__more {
  margin-top: 8px;
}
.details__more summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.details__more p {
  margin-top: 8px;
}

.date-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--soft);
  font-size: 13.5px;
  line-height: 1.7;
  color: #333333;
}

.calendar__day.is-holiday--short::after { background: #e0a100; opacity: 0.55; }
