/* 4️⃣ CSS mínimo (para que funcione bien) */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex !important; /* Force flex to center */
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.booking-modal.hidden {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.booking-content {
  position: relative;
  width: 95%;
  max-width: 900px;
  height: 90vh; /* Alto fijo viewport */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 10000;
}

.booking-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.booking-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20000;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  background: white;
  border: 2px solid var(--color-wood, #C17C54);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: #333;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.2s;
}
.booking-close:hover {
  background: #C17C54;
  color: white;
  transform: scale(1.1);
}

.booking-close:hover {
  background: #f5f5f5;
  color: #000;
}
