/* ─── BOOKING FORM STATES ───────────────────────────────────────────────────── */

/* Error state */
.form-input.has-error {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

/* Valid state */
.form-input.is-valid {
  border-color: rgba(52, 211, 153, 0.5);
}

/* Error message text */
.form-error {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(239, 68, 68, 0.9);
  min-height: 16px;
  transition: opacity 0.2s ease;
}

/* Inline error banner (network/server errors) */
.form-error-banner {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: rgba(239, 68, 68, 0.95);
  font-size: 13px;
  line-height: 1.4;
}

/* Loading state on submit button */
.booking-submit.is-loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.booking-submit.is-loading span {
  opacity: 0;
}

.booking-submit.is-loading::after {
  content: 'Please wait\2026';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  color: inherit;
}
