.booking-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-choice-modal[hidden] {
  display: none;
}

.booking-choice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.booking-choice-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(96%, 720px);
  padding: 36px 32px 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.25);
  animation: booking-choice-in 0.22s ease;
}

@keyframes booking-choice-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.booking-choice-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--bg, #f8fafc);
  color: var(--navy, #0f172a);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.booking-choice-modal__close:hover {
  background: #e2e8f0;
  opacity: 1;
}

.booking-choice-modal__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--navy, #0f172a);
  text-align: center;
}

.booking-choice-modal__lead {
  margin: 0 0 28px;
  text-align: center;
  color: var(--muted, #64748b);
  font-size: 16px;
  line-height: 1.5;
}

.booking-choice-modal__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-choice-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  border-radius: 22px;
  border: 2px solid transparent;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.booking-choice-option:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.booking-choice-option--private {
  background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
  border-color: rgba(231, 67, 120, 0.25);
  box-shadow: 0 12px 32px rgba(231, 67, 120, 0.12);
}

.booking-choice-option--private:hover {
  border-color: rgba(231, 67, 120, 0.5);
  box-shadow: 0 16px 40px rgba(231, 67, 120, 0.2);
}

.booking-choice-option--business {
  background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
  border-color: rgba(0, 131, 195, 0.25);
  box-shadow: 0 12px 32px rgba(0, 131, 195, 0.12);
}

.booking-choice-option--business:hover {
  border-color: rgba(0, 131, 195, 0.5);
  box-shadow: 0 16px 40px rgba(0, 131, 195, 0.2);
}

.booking-choice-option__tag {
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.booking-choice-option--private .booking-choice-option__tag {
  background: var(--pink, #e74378);
}

.booking-choice-option--business .booking-choice-option__tag {
  background: var(--blue, #0083c3);
}

.booking-choice-option__title {
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--navy, #0f172a);
}

.booking-choice-option__text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text, #475569);
}

.booking-choice-option__cta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 900;
}

.booking-choice-option--private .booking-choice-option__cta {
  color: var(--pink, #e74378);
}

.booking-choice-option--business .booking-choice-option__cta {
  color: var(--blue, #0083c3);
}

body.booking-choice-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-choice-modal__options {
    grid-template-columns: 1fr;
  }

  .booking-choice-modal__dialog {
    padding: 32px 20px 24px;
  }
}
