.premium-booking-form {
  --booking-accent: #e36b4d;
  --booking-ink: #171820;
  --booking-paper: #fffdf8;
  --booking-line: rgba(23, 24, 32, .16);
}

body[data-booking-project="patio1755"] .premium-booking-form {
  --booking-accent: #154ec1;
}

body[data-booking-project="adega-tipica"] .premium-booking-form {
  --booking-accent: #e84e2f;
}

.booking-progress {
  display: grid;
  margin: 0 0 28px;
  border: 1px solid var(--booking-line);
  grid-template-columns: repeat(3, 1fr);
}

.booking-progress span {
  display: flex;
  min-height: 58px;
  padding: 11px 14px;
  gap: 10px;
  align-items: center;
  border-right: 1px solid var(--booking-line);
  color: color-mix(in srgb, currentColor 62%, transparent);
  font-size: .7rem;
  font-weight: 700;
}

.booking-progress span:last-child {
  border-right: 0;
}

.booking-progress b {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .62rem;
  place-items: center;
}

.booking-progress span.is-active,
.booking-progress span.is-complete {
  color: var(--booking-accent);
}

.booking-progress span.is-complete b {
  color: #fff;
  background: var(--booking-accent);
  border-color: var(--booking-accent);
}

.booking-live-summary {
  display: grid;
  margin: 24px 0;
  color: #fff;
  background: var(--booking-ink);
  grid-template-columns: repeat(4, 1fr);
}

.booking-live-summary div {
  min-width: 0;
  padding: 15px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.booking-live-summary div:last-child {
  border-right: 0;
}

.booking-live-summary span,
.booking-live-summary strong {
  display: block;
}

.booking-live-summary span {
  margin-bottom: 4px;
  color: rgba(255,255,255,.55);
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.booking-live-summary strong {
  overflow: hidden;
  color: #fff;
  font-size: .78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-assurance {
  display: grid;
  margin: 16px 0 0;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.booking-assurance span {
  display: flex;
  min-height: 44px;
  padding: 9px 11px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--booking-line);
  font-size: .62rem;
  font-weight: 700;
  text-align: center;
}

.booking-assurance i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--booking-accent);
}

.premium-booking-form .time-slot input:checked + span {
  box-shadow: 0 0 0 2px var(--booking-accent);
}

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

  .booking-progress span {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid var(--booking-line);
  }

  .booking-progress span:last-child {
    border-bottom: 0;
  }

  .booking-live-summary {
    grid-template-columns: 1fr 1fr;
  }

  .booking-live-summary div:nth-child(2) {
    border-right: 0;
  }

  .booking-live-summary div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

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