/* Modal Newsletter Styles */

#newsletter-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.20);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
  #newsletter-fab { 
    top: calc(85px + 20px); 
    right: 14px; 
    bottom: auto; 
  }
}

#newsletter-fab:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 18px 45px rgba(0,0,0,0.24); 
  background: #0b0b0b; 
}

#newsletter-fab:active { 
  transform: translateY(0px) scale(0.98); 
}

#newsletter-fab svg { 
  width: 22px; 
  height: 22px; 
  display: block; 
  fill: currentColor; 
}

#newsletter-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(17,17,17,0.28);
  animation: newsletterPulse 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes newsletterPulse {
  0% { transform: scale(0.92); opacity: 0.75; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

#newsletter-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: rgba(10,10,10,0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#newsletter-modal {
  width: min(700px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: translateY(6px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

#newsletter-modal-overlay.is-open #newsletter-modal { 
  transform: translateY(0); 
  opacity: 1; 
}

#newsletter-modal-header {
  padding: 44px 44px 36px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

#newsletter-modal-title { 
  margin: 0; 
  font-size: 16px; 
  font-weight: 800; 
  color: #111; 
  line-height: 1.2; 
}

#newsletter-modal-subtitle { 
  margin: 6px 0 0; 
  font-size: 13px; 
  color: rgba(0,0,0,0.65); 
  line-height: 1.35; 
  max-width: 44ch; 
}

#newsletter-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.06);
  color: #111;
  padding: 0;
}

#newsletter-modal-close:hover { 
  background: rgba(0,0,0,0.10); 
}

#newsletter-modal-close span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

#newsletter-modal-body {
  padding: 44px 44px 48px;
}

#newsletter-modal .elementor-field-label { 
  font-size: 12px; 
  font-weight: 800; 
  color: rgba(0,0,0,0.78); 
  margin-bottom: 8px; 
  display: inline-block; 
}

#newsletter-helptext { 
  margin-top: 10px; 
  font-size: 13px; 
  line-height: 1.35; 
  color: rgba(0,0,0,0.62); 
}

#newsletter-modal input.elementor-field-textual {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

#newsletter-modal input.elementor-field-textual:focus {
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

#newsletter-modal .e-form__buttons { 
  margin-top: 14px; 
}

#newsletter-modal button.elementor-button {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  background: #f2e677 !important;
  color: #000 !important;
  border: 0 !important;
}

#newsletter-modal button.elementor-button:hover { 
  filter: brightness(0.97); 
}

#newsletter-status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,0.75);
}

#newsletter-status.is-error { 
  color: #b00020; 
}

#newsletter-status.is-ok { 
  color: #0b6b2f; 
}

/* DÖJ I MOBIL */

@media (max-width: 767px) {
  #newsletter-fab { 
    display: none;
  }
}