/* Smart Newsletter — Form CSS */
.sn-form-wrapper { max-width: 480px; }

.sn-form { display: flex; flex-direction: column; gap: 10px; }

.sn-field { width: 100%; }

.sn-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.sn-input:focus { border-color: #e63946; }

.sn-btn {
  width: 100%;
  padding: 14px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.sn-btn:hover { background: #c1121f; }
.sn-btn:disabled { background: #ccc; cursor: not-allowed; }

.sn-privacy {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 4px 0 0;
}

.sn-message {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.sn-message.success { background: #d4edda; color: #155724; }
.sn-message.error   { background: #f8d7da; color: #721c24; }

.sn-success { font-size: 16px; color: #155724; text-align: center; padding: 20px 0; }