.support-trigger {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #99551d;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8782f, #BB6C25);
  color: #FFFDF5;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(71, 80, 42, .24);
  cursor: pointer;
}

.support-trigger:hover { transform: translateY(-1px); }
.support-trigger:focus-visible { outline: 3px solid rgba(187, 108, 37, .3); outline-offset: 3px; }

.support-modal-content { width: min(520px, 92vw); }
.support-form { display: grid; gap: 8px; }
.support-form label { margin-top: 6px; font-weight: 700; }
.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}
.support-form textarea { min-height: 150px; resize: vertical; }
.support-help { color: var(--muted); font-size: 12px; }
.support-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.support-submit {
  border: 1px solid #37401e;
  border-radius: 10px;
  background: #47502A;
  color: #FFFDF5;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.support-submit:disabled { opacity: .65; cursor: wait; }
.support-result { min-height: 22px; margin: 10px 0 0; line-height: 1.45; }
.support-result.success { color: #35601f; }
.support-result.error { color: var(--danger-text, #b91c1c); }

@media (max-width: 720px) {
  .support-trigger {
    right: 12px;
    bottom: 78px;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }
  .support-trigger > span[aria-hidden="true"] { font-size: 18px; line-height: 1; }
  .support-trigger-label { display: none; }
  .support-form-footer { align-items: stretch; flex-direction: column; }
  .support-submit { width: 100%; }
}
