.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50, 7, 7, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 20px;
  box-sizing: border-box;
}

.booking-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 900px;
  height: 90vh;
  max-height: 780px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.booking-modal-overlay.open .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #320707;
  cursor: pointer;
  padding: 6px 10px;
}

.booking-modal-close:hover {
  color: #8f3f2a;
}

.booking-modal-iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.booking-modal-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-modal-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-spinner::after {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid #f5e4cb;
  border-top-color: #8f3f2a;
  animation: booking-modal-spin 0.8s linear infinite;
}

@keyframes booking-modal-spin {
  to {
    transform: rotate(360deg);
  }
}

body.booking-modal-lock {
  overflow: hidden;
}

@media (max-width: 600px) {
  .booking-modal {
    height: 95vh;
    max-height: none;
    border-radius: 8px;
  }
}
