/* Transparent overlay and centered popup */
#newsletter-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 99999;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  box-sizing: border-box;
  font-family: "Poppins", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.newsletter-popup-window {
  width: 100%;
  max-width: 360px;
  padding: 0;
  border-radius: 24px;
  box-sizing: border-box;
}

.newsletter-popup-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 26px 28px 11px 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(15, 113, 141, 0.08);
}

.newsletter-popup-title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  color: #0f718d;
  text-align: left;
  line-height: 1.08;
}

.newsletter-popup-subtitle {
  margin: 0 0 18px;
  color: #20232a;
  font-size: 14px;
  line-height: 1.65;
}

.newsletter-popup-field {
  margin-bottom: 0px;
  padding: 0px;
}

.newsletter-popup-field input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  min-height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(15, 113, 141, 0.18);
  font-size: 15px;
  background: #f6fbff;
  color: #1d2631;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 19px;
}

.newsletter-popup-field input[type="email"]:focus {
  border-color: rgba(15, 113, 141, 0.35);
  box-shadow: 0 0 0 4px rgba(15, 113, 141, 0.08);
}

.newsletter-popup-actions {
  margin-bottom: 8px;
}

.newsletter-popup-submit {
  width: 100%;
  padding: 12px 16px;
  min-height: 42px;
  background: #1a9b4a;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.newsletter-popup-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.newsletter-popup-checkbox {
  margin: 15px 0px 5px 0px;
  color: #4c6073;
  font-size: 14px;
}

.newsletter-popup-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.newsletter-popup-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #1a9b4a;
}

.newsletter-popup-message {
  margin-top: 0px;
  min-height: 15px;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-popup-message--success {
  color: #1a783f;
}

.newsletter-popup-message--error {
  color: #a72a2a;
}

@media (max-width: 620px) {
  #newsletter-popup-overlay {
    padding: 16px;
    background: linear-gradient(180deg, #0785b7 0%, #0785b7 20%, #e4ebf0 20%, #e4ebf0 80%, #0785b7 80%, #0785b7 100%);
  }
  .newsletter-popup-card {
    padding: 26px 20px;
  }
  .newsletter-popup-title {
    font-size: 32px;
  }
  .newsletter-popup-subtitle {
    font-size: 15px;
  }
  .newsletter-popup-field input[type="email"] {
    padding: 16px 18px;
    font-size: 16px;
  }
  .newsletter-popup-submit {
    font-size: 16px;
    padding: 14px 16px;
  }
}
