.booking_modal_open {
  overflow: hidden;
}

.booking_modal_overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
}

.booking_modal_overlay[hidden],
.booking_toast[hidden] {
  display: none !important;
}

.booking_modal {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.booking_modal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.booking_modal_header {
  margin-bottom: 24px;
}

.booking_modal_eyebrow {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking_modal_title {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.booking_modal_alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.booking_modal_alert_error {
  background: rgba(242, 30, 11, 0.2);
  border: 1px solid rgba(242, 30, 11, 0.4);
}

.booking_modal_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking_modal_block {
  margin: 0;
}

.booking_modal_block_full {
  grid-column: 1 / -1;
}

.booking_modal_select {
  appearance: none;
}

.booking_modal_bottom {
  flex-wrap: wrap;
  gap: 16px;
}

.booking_modal_field_error {
  min-height: 20px;
  margin-top: 8px;
  color: #f26d5b;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.booking_modal_checkbox_error {
  margin-top: 8px;
}

.booking_toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 1300;
  width: min(720px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.booking_toast_text {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .booking_modal {
    padding: 32px 20px 24px;
  }

  .booking_modal_title {
    font-size: 40px;
  }

  .booking_modal_fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking_modal_overlay {
    padding: 12px;
  }

  .booking_modal {
    max-height: calc(100vh - 24px);
  }

  .booking_modal_title {
    font-size: 32px;
  }

  .booking_toast {
    top: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }
}
