/* Page Map uniquement (évite les conflits) */
body.single-map .interactive-map{
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Zone interactive */
  body.single-map .map-viewport{
    width: 100%;
    height: min(80vh, 850px);
    border: 2px solid #cfcfcf;
    border-radius: 10px;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
    touch-action: none;
  }
  
  /* Label optionnel */
  body.single-map .map-viewport::after{
    content: "Zoom & déplacement ici";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(255,255,255,.85);
    border: 1px solid #ddd;
    border-radius: 999px;
    pointer-events: none;
  }
  
  body.single-map .map-viewport svg{
    width: 100%;
    height: 100%;
    display: block;
  }
  
  body.single-map .interactive-map svg g[id^="Lot_"] g[id^="pop-up"]{
    pointer-events: none;
  }
  