.elementor-3186 .elementor-element.elementor-element-52f7989{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}#elementor-popup-modal-3186 .dialog-widget-content{background-color:var( --e-global-color-secondary );border-style:none;border-radius:25px 25px 25px 25px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-3186{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-3186 .dialog-message{width:804px;height:auto;}#elementor-popup-modal-3186 .dialog-close-button{display:flex;}/* Start custom CSS *//* Conteneur global du popup */
.popup-wrapper {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Colonne gauche : image */
.popup-image {
  width: 50%;
  position: relative;
}
.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Colonne droite : contenu */
.popup-content {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.popup-content h2 {
  font-size: 22px;
  color: #2d1b41;
  margin-bottom: 15px;
  text-align: left;
}

/* Menu déroulant */
#centerSelect {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 25px;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  appearance: none;
}

/* Bloc d'infos du centre */
.center-details {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 15px;
  margin-top: 15px;
}
.center-details h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #333;
}
.center-details p {
  font-size: 16px;
  margin: 5px 0;
  color: #666;
}
#phoneLink {
  color: #0073e6;
  text-decoration: none;
}
#phoneLink:hover {
  text-decoration: underline;
}

/* Bouton "Appeler" */
#callBtn {
  background: #4e2b5e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease;
}
#callBtn:hover {
  background: #3c214a;
}
#callBtn:focus,
#callBtn:active {
  outline: none;
  box-shadow: none;
}

/* Responsive tablettes */
@media screen and (max-width: 768px) {
  .popup-wrapper {
    max-width: 90%;
    flex-direction: column;
  }
  .popup-image, .popup-content {
    width: 100%;
  }
  .popup-image img {
    height: 250px;
  }
  .popup-content {
    padding: 15px;
  }
}

/* Responsive téléphones (masquer l'image) */
@media screen and (max-width: 480px) {
  .popup-wrapper {
    max-width: 95%;
  }
  .popup-image {
    display: none;
  }
  .popup-content {
    width: 100%;
    padding: 20px;
  }
  #centerSelect {
    font-size:/* End custom CSS */