/* Apple-ish tone mapping: neutro, chiaro, ma leggibile */
.leaflet-tile-pane{
  filter: saturate(0.60) contrast(1.16) brightness(1.01);
}

/* sicurezza: se per qualche motivo Leaflet aggiunge comunque i controlli zoom */
.leaflet-control-zoom{
  display: none !important;
}

/* Attribution minimal + glass */
.leaflet-control-attribution{
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 11px;
  color: rgba(0,0,0,0.55) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.leaflet-control-attribution a{
  color: rgba(0,0,0,0.65) !important;
  text-decoration: none;
}

/* Popup stile iOS */
.leaflet-popup-content-wrapper{
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}
.leaflet-popup-tip{
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}
.leaflet-popup-content{
  margin: 12px 14px;
}

/* Contenuto popup */
.sm-popup{
  min-width: 220px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.sm-popup-title{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.sm-popup-sub{
  opacity: 0.7;
  font-size: 12px;
}
.sm-popup-rating{
  margin-top: 6px;
  font-size: 12px;
}
.sm-popup-cta{
  margin-top: 10px;
}
.sm-popup-cta a{
  text-decoration: none;
  font-weight: 800;
}

/* ⭐ stelle ARANCIONI */
.sm-star{
  color: #F97316 !important;
  font-weight: 900;
}

/* =========================
   MarkerCluster ARANCIONE
   ========================= */

/* cerchio esterno soft */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large{
  background-color: rgba(249,115,22,0.22) !important;
}

/* cerchio interno con numero */
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div{
  background-color: rgba(249,115,22,0.90) !important;
  color: #ffffff !important;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(249,115,22,0.28);
}

/* hover più scuro */
.marker-cluster-small:hover div,
.marker-cluster-medium:hover div,
.marker-cluster-large:hover div{
  background-color: rgba(194,65,12,0.95) !important;
}
