/* Стан відправки заявки: спінер + disabled на час HTMX/SMTP. */

.lead-form__submit {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lead-form__submit:disabled,
.lead-form.htmx-request .lead-form__submit {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
  box-shadow: none;
  transform: none;
  -webkit-user-select: none;
  user-select: none;
}

.lead-form__spinner {
  display: none;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  flex-shrink: 0;
}

.lead-form.htmx-request .lead-form__spinner {
  display: inline-block;
  animation: lead-form-spin 0.7s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .lead-form.htmx-request .lead-form__spinner {
    animation: none;
    border-right-color: currentColor;
    opacity: 0.55;
  }
}

@media (max-width: 767px) {
  .lead-form__submit { min-height: 48px; }
}
