/* 357 Mail — Public Styles v1.0.6 — Fully Mobile Responsive */

/* ── Subscribe Form ──────────────────────────────────────────────── */
.mail357-subscribe-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 36px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
  width: 100%;
}
.mail357-sub-heading {
  margin: 0 0 6px;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.mail357-sub-subheading {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.5;
}
.mail357-form-row { margin-bottom: 12px; }
.mail357-form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mail357-field {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  font-size: 15px;
  color: #111827;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
}
.mail357-field:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.mail357-submit-btn {
  width: 100%;
  padding: 13px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  -webkit-appearance: none;
  touch-action: manipulation;
}
.mail357-submit-btn:hover    { background: #3730a3; }
.mail357-submit-btn:active   { transform: scale(.98); }
.mail357-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.mail357-form-message {
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  margin-top: 8px;
  display: none;
  line-height: 1.4;
}
.mail357-form-message.success { background: #d1fae5; color: #065f46; display: block; }
.mail357-form-message.error   { background: #fee2e2; color: #991b1b; display: block; }

/* ── Tablet ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .mail357-subscribe-wrap { border-radius: 0; box-shadow: none; padding: 24px 16px; }
  .mail357-form-two-col   { grid-template-columns: 1fr; gap: 10px; }
  .mail357-field  { font-size: 16px; /* prevent iOS zoom */ }
  .mail357-submit-btn { font-size: 16px; padding: 14px; }
}

/* ── Unsubscribe page ────────────────────────────────────────────── */
.mail357-unsub-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fc;
  padding: 16px;
  box-sizing: border-box;
}
.mail357-unsub-box {
  background: #fff;
  padding: clamp(24px,6vw,48px);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  text-align: center;
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
}
.mail357-unsub-box h2   { color: #1a1a2e; margin: 0 0 8px; font-size: clamp(18px,4vw,22px); }
.mail357-unsub-box p    { color: #666; font-size: 14px; line-height: 1.5; }
.mail357-unsub-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 16px;
  transition: background .2s;
  -webkit-appearance: none;
  touch-action: manipulation;
}
.mail357-unsub-btn:hover { background: #c0392b; }
.mail357-unsub-cancel    { color: #666; display: block; margin-top: 14px; font-size: 13px; text-decoration: none; }
