/* Popup arka plan overlay */
#seta-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Popup kutu */
  #seta-popup-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: url('https://staging.seta-network.com/wp-content/uploads/2025/05/newsletter-bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    color: #0d2c54; /* Metin rengi koyu mavi yapıldı */
  }
  
  /* Yarı saydam beyaz overlay popup içinde */
  #seta-popup-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
    border-radius: 10px;
  }
  
  /* Popup içeriği önde */
  .popup-text {
    position: relative;
    z-index: 2;
    color: #0d2c54; /* Yazılar koyu mavi */
  }
  
  /* Başlık ve alt başlık */
  .popup-heading {
    font-family: 'Arial Black', sans-serif;
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .popup-main-sub {
    font-style: italic;
  }
  .popup-sub, .popup-main-sub {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 16px;
    color: #0d2c54;
  }
  
  /* Form stili */
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
    font-family: 'Open Sans', serif;
    position: relative;
    z-index: 2;
  }
  
  /* Form içindeki satırlar - input + buton yan yana */
  form .form-row {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;

  }
  
  /* Email input genişliği */
  form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid #BDAC6A;
    font-size: 14px;
  }
  
  /* Buton */
  form button {
    flex-shrink: 0;
    padding: 0.8rem 1rem;
    background-color: #BDAC6A;
    color: #fff;
    border: 0;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  
  form button:hover {
    background-color: #0d2c54;
    color: #fff;
  }
  
  /* GDPR label (checkbox + text) */
  .gdpr-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-size: 14px;
    color: #0d2c54;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  
  /* Checkbox hizalaması */
  .gdpr-label input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
    bottom: 0;
    width: 15px;
    height: 15px;

  }

  .popup-form-text, .popup-sub {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-left: 65px;
}
  
  /* Responsive ayarlar */
  @media (max-width: 767px) {
    /* Form input ve butonu üst üste değil yan yana */
    form .form-row {
      flex-direction: column
    }
  
    /* Input ve buton tam genişlik yerine doğal genişlikte */
    form input, form button {
      width: auto;
      flex: none;
    }
  
    /* Checkbox ve yazı yan yana */
    .gdpr-label {
      flex-direction: row;
    }
  
    /* Başlıklar küçültülsün */
    .popup-heading {
      font-size: 18px;
    }
  
    .popup-sub {
      font-size: 14px;
    }

    .popup-form-text, .popup-sub {
        margin-left: 0;
    }
  }
  #seta-popup-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99999 !important;
  }
  .popup-heading, .popup-sub, .popup-form-text, .gdpr-label {
    color: #0D2C54; /* Metinlerin mavi tonu */
}

.popup-heading {
    text-align: center;
}
#seta-newsletter-message {
color: #fff;
font-weight: 500;
font-size: 18px;
}
