/* ══ NEWSLETTER SLIDE-IN PANEL ══ */
#nl-panel-root .nl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,28,26,0.35);
  z-index: 9998;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
}
#nl-panel-root .nl-overlay.active {
  visibility: visible;
  animation: nlFadeIn 0.3s ease forwards;
}
#nl-panel-root .nl-overlay.closing {
  animation: nlFadeOut 0.3s ease forwards;
}
@keyframes nlFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes nlFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}

#nl-panel-root .nl-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: #FFFFFF;
  z-index: 9999;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
  pointer-events: auto;
}
#nl-panel-root .nl-panel.active {
  animation: nlSlideIn 0.45s cubic-bezier(.22,.68,0,1.1) forwards;
}
#nl-panel-root .nl-panel.closing {
  animation: nlSlideOut 0.3s ease-in forwards;
}
@keyframes nlSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes nlSlideOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

#nl-panel-root .nl-panel-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 24px 0;
  padding-top: max(20px, env(safe-area-inset-top, 20px));
  flex-shrink: 0;
}

#nl-panel-root .nl-panel-close {
  width: 36px !important;
  height: 36px !important;
  border: 1.5px solid #E0DBD4 !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 0.2s, background 0.2s !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
#nl-panel-root .nl-panel-close:hover {
  border-color: #4A4540 !important;
  background: #F7F5F1 !important;
}
#nl-panel-root .nl-panel-close svg {
  width: 12px !important;
  height: 12px !important;
  display: block !important;
}

#nl-panel-root .nl-panel-body {
  padding: 24px 32px 40px;
  flex: 1;
}

#nl-panel-root .nl-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #FF8022;
  margin-bottom: 16px;
}
#nl-panel-root .nl-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #FF8022;
  flex-shrink: 0;
}

#nl-panel-root .nl-heading {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: #1E1C1A;
  margin-bottom: 12px;
}

#nl-panel-root .nl-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4A4540;
  line-height: 1.85;
  margin-bottom: 28px;
}

#nl-panel-root .nl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

#nl-panel-root .nl-group { margin-bottom: 12px; }

#nl-panel-root .nl-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A8480;
  margin-bottom: 8px;
}

#nl-panel-root .nl-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1E1C1A;
  background: #FFFFFF;
  border: 1px solid #E0DBD4;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  box-sizing: border-box;
}
#nl-panel-root .nl-input:focus { border-color: #9FB2B2; }

#nl-panel-root .nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}
#nl-panel-root .nl-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #FF8022;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
#nl-panel-root .nl-consent-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #8A8480;
  line-height: 1.65;
  cursor: pointer;
}
#nl-panel-root .nl-consent-label a { color: #FF8022; text-decoration: none; }
#nl-panel-root .nl-consent-label a:hover { text-decoration: underline; }

#nl-panel-root .nl-btn {
  display: block;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #FF8022;
  color: #FFFFFF;
  border: none;
  padding: 15px 28px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#nl-panel-root .nl-btn:hover:not(:disabled) { background: #e56a05; transform: translateY(-1px); }
#nl-panel-root .nl-btn:disabled { opacity: 0.6; cursor: not-allowed; }

#nl-panel-root .nl-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: nlSpin 0.7s linear infinite;
  margin: 0 auto;
}
#nl-panel-root .nl-btn.loading .btn-text { display: none; }
#nl-panel-root .nl-btn.loading .spinner { display: block; }
@keyframes nlSpin { to { transform: rotate(360deg); } }

#nl-panel-root .nl-error {
  display: none;
  margin-top: 12px;
  font-size: 12px;
  color: #c0392b;
  padding: 10px 14px;
  background: #fdf0ee;
  border-left: 3px solid #c0392b;
}

#nl-panel-root .nl-success {
  display: none;
  padding: 28px 0;
}
#nl-panel-root .nl-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1E1C1A;
  margin-bottom: 8px;
}
#nl-panel-root .nl-success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4A4540;
  line-height: 1.8;
}

@media (max-width: 480px) {
  #nl-panel-root .nl-panel { width: 100vw; }
  #nl-panel-root .nl-panel-body { padding: 24px 20px 32px; }
  #nl-panel-root .nl-row { grid-template-columns: 1fr; }
}
