/* ══════════════════════════════════════════════════════════
   FoodHitsDifferent Newsletter Pro — Frontend Form
   Pinterest-aesthetic, soft colors, minimal and cozy
   ══════════════════════════════════════════════════════════ */

.fhd-nl-form-wrap {
  font-family: 'DM Sans', -apple-system, system-ui, sans-serif;
  margin: 2rem 0;
}

.fhd-nl-form-inner {
  background: linear-gradient(135deg, #FFE8A3 0%, #FFCF77 100%);
  border-radius: 22px;
  padding: 36px 40px;
  max-width: 580px;
  box-shadow: 0 4px 24px rgba(42,42,42,.08);
}

.fhd-nl-title {
  font-family: 'Poppins', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2A2A2A;
  margin: 0 0 8px;
  line-height: 1.3;
}

.fhd-nl-desc {
  font-size: .9rem;
  color: #7A7A7A;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* Fields */
.fhd-nl-field { margin-bottom: 10px; }

.fhd-nl-field--email {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.fhd-nl-input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(42,42,42,.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: .925rem;
  color: #2A2A2A;
  background: rgba(255,255,255,.85);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-appearance: none;
}

.fhd-nl-input:focus {
  border-color: #F4A261;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(244,162,97,.2);
}

.fhd-nl-input::placeholder { color: #AAAAAA; }

/* Button */
.fhd-nl-btn {
  flex-shrink: 0;
  padding: 11px 22px;
  background: #2A2A2A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 2px 8px rgba(42,42,42,.2);
}

.fhd-nl-btn:hover {
  background: #F4A261;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,162,97,.35);
}

.fhd-nl-btn:active { transform: translateY(0); }

.fhd-nl-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Message */
.fhd-nl-message {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
}

.fhd-nl-message.is-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.fhd-nl-message.is-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Responsive */
@media (max-width: 480px) {
  .fhd-nl-form-inner  { padding: 24px 20px; }
  .fhd-nl-field--email { flex-direction: column; }
  .fhd-nl-btn         { width: 100%; text-align: center; }
}
