/* Always-visible fallback shown below the booking widget iframe. The widget
   is a cross-origin embed (www.vacapals.app) that stays hidden until it
   reports its height; if it's slow, blocked, or errors, this is the only way
   a visitor can still reach us. Never conditionally hidden/shown by JS. */
.vacapals-booking-fallback {
  display: flex;
  width: min(calc(100% - 60px), 1200px);
  max-width: 1200px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -10px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(2, 14, 36, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(2, 14, 36, 0.08);
  font-family: "DM Sans", sans-serif;
}

.vacapals-booking-fallback__text {
  margin: 0;
  color: rgba(2, 14, 36, 0.7);
  font: 500 13px/1.4 "DM Sans", sans-serif;
}

.vacapals-booking-fallback__actions {
  display: flex;
  flex: none;
  gap: 8px;
}

.vacapals-booking-fallback__btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #020e24;
  border-radius: 999px;
  background: #020e24;
  color: #ffffff;
  font: 700 13px/1 "DM Sans", sans-serif;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.vacapals-booking-fallback__btn:hover,
.vacapals-booking-fallback__btn:focus-visible {
  background: #ffdd00;
  border-color: #ffdd00;
  color: #020e24;
}

.vacapals-booking-fallback__btn--outline {
  background: transparent;
  color: #020e24;
}

.vacapals-booking-fallback__btn--outline:hover,
.vacapals-booking-fallback__btn--outline:focus-visible {
  background: #020e24;
  color: #ffffff;
}

@media (max-width: 520px) {
  .vacapals-booking-fallback {
    width: calc(100% - 20px);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .vacapals-booking-fallback__actions {
    justify-content: stretch;
  }

  .vacapals-booking-fallback__btn {
    flex: 1 1 0;
    justify-content: center;
  }
}
