/* IZI WAX — carte revendeurs : marqueur Leaflet aux couleurs de la marque.
   Charge uniquement quand le bloc iziwax/apercu-carte est present. */

/* Le conteneur du divIcon ne doit rien afficher : tout est sur le span. */
.iziwax-pin{background:none;border:0}

/* Goutte jaune bordee de noir, meme forme que le .pin de la maquette. */
.iziwax-pin span{
  display:flex;align-items:center;justify-content:center;
  width:22px;height:22px;
  background:var(--jaune,#f8bb01);
  border:2px solid var(--noir,#1b1b1a);
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  box-shadow:0 3px 8px rgba(27,27,26,.30);
  transition:transform .15s ease;
}

/* Point central noir, pour la lisibilite sur fond clair. */
.iziwax-pin span::after{
  content:"";display:block;width:7px;height:7px;border-radius:50%;
  background:var(--noir,#1b1b1a);
}

.iziwax-pin:hover span,
.iziwax-pin:focus span{transform:rotate(-45deg) scale(1.12)}

/* Popup : arrondi et typo du site. */
.leaflet-popup-content-wrapper{border-radius:12px}
.leaflet-popup-content{font-family:var(--body,system-ui,sans-serif);font-size:14px;line-height:1.5}

/* ------------------------------------------------------------------ *
   Recherche geographique : message de contexte + distance par ligne.
 * ------------------------------------------------------------------ */

/* Ligne d'information au-dessus de la liste (les 3 plus proches). */
.liste-info{
  margin:-8px 0 14px;padding:11px 14px;
  background:var(--jaune-pale,#fef3d4);border-radius:10px;
  font-size:14px;line-height:1.5;color:var(--noir,#1b1b1a);
}
.liste-info[hidden]{display:none}

/* « à environ 34 km », sous le nom du revendeur. */
.liste .dist{
  display:block;margin-top:6px;
  font-family:var(--mono,ui-monospace,monospace);
  font-size:11px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--ambre,#9a7300);
}
