.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.honeypot-wrap {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.js-ajax-contact-form button[disabled] {
  opacity: 0.7;
  pointer-events: none;
}

.toast-stack {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 320px;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  animation: toastSlideIn 0.35s ease;
}

.premium-toast--success {
  background: linear-gradient(135deg, #1f8f4d, #40b36f);
}

.premium-toast--error {
  background: linear-gradient(135deg, #b02929, #e34b4b);
}

.premium-toast__message {
  font-size: 14px;
  line-height: 1.45;
}

.premium-toast__close {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.premium-toast.is-hiding {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 575px) {
  .toast-stack {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .premium-toast {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
}
