/* 🎯 CIBLE L'IFRAME DIRECTEMENT */
/* L'iframe qui a le style inline */
iframe#genii-iframe-core {
  width: 500px !important;
}
/* Le wrapper parent aussi */
#genii-core-wrapper {
  width: 500px !important;
}
/* Container à l'intérieur de l'iframe */
#core-widget {
  width: 100% !important;
  max-width: none !important;
}
/* Le contenu pour qu'il s'adapte */
.ai_flex.flex-d_column.h_100% {
  width: 100% !important;
}
/* 💻 DESKTOP SEULEMENT */
@media (min-width: 769px) {
  iframe#genii-iframe-core {
    width: 500px !important;
  }
  #genii-core-wrapper {
    width: 500px !important;
  }
}
/* 📱 MOBILE - Largeur normale */
@media (max-width: 768px) {
  iframe#genii-iframe-core {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  #genii-core-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  /* Plein écran sur mobile */
  #core-widget {
    width: 100% !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }

  /* Réduction du z-index pour ne pas gêner les filtres */
  iframe#genii-iframe-hook {
    z-index: 4999;
  }
}