/* Fond semi-transparent derrière la popin */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
}

/* Bouton de fermeture */
.close-popup {
  position: absolute;
  top: 20px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  z-index: 99;
}

.close-popup:hover {
  color: #999;
}

.newsletter-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    /*border: 2px solid #ff8600;*/
    z-index: 1001;
    display: none;
    max-width: 90%;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    /*border-radius: 8px;*/
    width: 400px;
    height: 300px;
}

.inner-brevo-form {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

/* Nouvelle popup NL */
.newsletter-popup .butabonnement img {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .newsletter-popup {
        display: block;
        /*width: 100% !important;*/
        padding: 0px;
        max-width: 100%;
        width: 300px;
        height: 200px;
    }
    .inner-brevo-form iframe .sib-form {
        padding: 40px 0px;
    }

    .close-popup {
        top: 2px;
        right: 6px;
    }
    
}