/* podpiska.css — полный файл стилей формы подписки */

/* ====== Брендовые переменные ====== */
:root {
  --primary: #40AC5D;
  --primary-dark: #0A8D2D;
  --ring: rgba(64, 172, 93, 0.18);
  --border: rgba(0, 0, 0, 0.15);
  --border-dark: rgba(255, 255, 255, 0.18);
  --text-muted: rgba(15, 23, 42, 0.75);
  --text-muted-dark: rgba(241, 245, 249, 0.8);
}

/* ====== Сетка блока формы ====== */
.subscribe-row {
  display: flex;
  flex-direction: column;   /* поле сверху, кнопка ниже */
  gap: 10px;
  align-items: stretch;
}

/* ====== Поле ввода ====== */
.subscribe-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.subscribe-input::placeholder { color: rgba(15,23,42,.45); }
.subscribe-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

/* Тёмная тема */
html[data-theme="dark"] .subscribe-input {
  background: #0b1220;
  color: #e5e7eb;
  border-color: var(--border-dark);
}
html[data-theme="dark"] .subscribe-input::placeholder { color: rgba(229,231,235,.45); }

/* ====== Кнопка ====== */
.subscribe-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: background .2s ease, transform .05s ease, box-shadow .15s ease;
}
.subscribe-btn:hover { background: var(--primary-dark); }
.subscribe-btn:active { transform: translateY(1px); }
.subscribe-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}
.subscribe-btn[disabled] {
  opacity: .65;
  cursor: not-allowed;
}

/* Состояние загрузки */
.subscribe-form__form.is-loading .subscribe-btn {
  opacity: .7;
  pointer-events: none;
}

/* ====== Чекбокс согласия ====== */
.subscribe-consent {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
html[data-theme="dark"] .subscribe-consent {
  color: var(--text-muted-dark);
}
.subscribe-consent__label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
  cursor: pointer;
}
.subscribe-consent__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

/* ====== Сообщения статуса ====== */
.subscribe-status {
  margin-top: 10px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: opacity .4s ease;
}
.subscribe-status.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #34d399;
}
.subscribe-status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ====== Honeypot (скрыто для пользователей, «заметно» ботам) ====== */
.hp-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ====== Утилиты доступности ====== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ====== Мелкие доработки для узких экранов (опционально) ====== */
@media (max-width: 420px) {
  .subscribe-input { font-size: 13.5px; }
  .subscribe-btn   { font-size: 13.5px; padding: 11px 12px; }
}
