/* Container */
.n1-newsletter-section {
  max-width: 560px;
  margin: 24px auto;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.n1-title {
  margin: 0 0 12px 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Form */
.n1-form { display: grid; gap: 12px; }
.n1-field { display: grid; gap: 6px; }
.n1-label { font-size: 0.95rem; }

.n1-input {
  padding: 10px 12px;
  border: 1px solid #d4d7dc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.n1-input:focus {
  border-color: #2f6feb;
  box-shadow: 0 0 0 3px rgba(47,111,235,0.15);
}

.n1-gdpr-wrap { display: flex; align-items: center; gap: 8px; }
.n1-checkbox { width: 18px; height: 18px; }
.n1-checkbox-label { font-size: 0.95rem; }
.n1-gdpr-link { color: #2f6feb; text-decoration: underline; }

/* Buttons */
.n1-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.n1-btn-primary { background: #2f6feb; color: #fff; }
.n1-btn-primary:hover { background: #1d58c8; }
.n1-btn-secondary { background: #eef2f7; color: #1d2939; }
.n1-btn-secondary:hover { background: #e2e8f0; }

/* Messages */
.n1-msg { min-height: 1.2em; font-size: 0.95rem; }
.n1-msg-success { color: #0a7d32; }
.n1-msg-info { color: #0a58ca; }
.n1-msg-error { color: #b42318; }

/* Modal */
.n1-modal { position: fixed; inset: 0; display: none; }
.n1-modal.is-open { display: block; }
.n1-modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.n1-modal-dialog {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.n1-modal-header, .n1-modal-footer { padding: 14px 16px; background: #f7f9fc; }
.n1-modal-header { display: flex; align-items: center; justify-content: space-between; }
.n1-modal-body { padding: 16px; }
.n1-modal-close {
  background: transparent; border: none; font-size: 24px; cursor: pointer; line-height: 1;
}
