.booking-form-widget {
  background: #ffffff;
  border-radius: 10px;
}

/* Box shadow only on home page */
.booking-form-widget--home {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-form-widget * {
  font-family: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
}

.booking-form-widget form,
.booking-form-widget .sirvoy-booking-widget,
.booking-form-widget .sirvoy-booking-widget * {
  box-sizing: border-box;
}

.booking-form-widget form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.booking-form-widget input,
.booking-form-widget select,
.booking-form-widget button {
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  line-height: 1.2;
  background: #f7f7f7;
  color: #1f2937;
}

.booking-form-widget input:focus,
.booking-form-widget select:focus,
.booking-form-widget button:focus {
  outline: none;
  border-color: #6bb26f;
  box-shadow: 0 0 0 2px rgba(107, 178, 111, 0.2);
}

.booking-form-widget button,
.booking-form-widget input[type="submit"] {
  background: #63b36b;
  color: #ffffff;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.booking-form-widget button:hover,
.booking-form-widget input[type="submit"]:hover {
  background: #53a15b;
}

/* Force Sirvoy iframe height */
/* .booking-form-widget iframe[name="sirvoy-engine"],
.booking-form-widget iframe[src*="secured.sirvoy.com/engine/book"] {
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  width: 100%;
} */



@media (max-width: 900px) {
  .booking-form-widget form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-form-widget input,
  .booking-form-widget select,
  .booking-form-widget button {
    width: 100%;
  }
}

/* Fix lightGallery positioning (Sirvoy image gallery) */
.lg-outer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999 !important;
}

.lg-content {
  top: 50px !important;
  bottom: 0 !important;
}

.lg-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 90% !important;
}

.lg-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lg-img-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}

/* Disable auto scroll in lightGallery */
.lg-outer,
.lg-outer * {
  scroll-behavior: auto !important;
}

.lg-inner {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

/* Make toolbar/close button visible with background */
.lg-toolbar {
  background: rgba(0, 0, 0, 0.6) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.lg-close,
.lg-download,
.lg-fullscreen,
.lg-zoom-in,
.lg-zoom-out,
.lg-actual-size,
.lg-autoplay-button,
.lg-share {
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff !important;
}

.lg-close:hover,
.lg-download:hover,
.lg-fullscreen:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Navigation arrows visibility */
.lg-prev,
.lg-next {
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(0, 0, 0, 0.5) !important;
}

/* ========================================
   Booking Page Loader
   ======================================== */
.booking-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.booking-loader-content {
  text-align: center;
}

.booking-loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e6e6e6;
  border-top-color: #63b36b;
  border-radius: 50%;
  animation: booking-spin 1s linear infinite;
  margin: 0 auto 16px;
}

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

.booking-loader-text {
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: #1f2937;
  margin: 0;
}
