/* =========================================================
   KeepOn Live Fest — Mappa autonoma [keepon_mappa]
   ========================================================= */
.kofp-mappa-wrap{
  --kofp-map-h: 620px;
  position: relative;
  width: 100%;
}
/* opzione fullbleed: esce dai margini del contenitore e occupa tutta la larghezza viewport */
.kofp-mappa-fullbleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kofp-mappa{
  position: relative;
  width: 100%;
  height: var(--kofp-map-h);
  min-height: 380px;
  background: #EDE4D2;
  overflow: hidden;
}
.kofp-mappa-fullbleed .kofp-mappa{ border-radius: 0; }
.kofp-mappa-wrap:not(.kofp-mappa-fullbleed) .kofp-mappa{ border-radius: 16px; }

.kofp-mappa-canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:1; }

.kofp-mappa-loading, .kofp-mappa-missing{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; gap:10px;
  font-family:'Space Mono',monospace; font-size:14px; color:#6B7280; text-align:center; padding:24px; z-index:2;
}

/* legenda */
.kofp-mappa-legend{
  position:absolute; left:16px; bottom:16px; z-index:500;
  background:rgba(255,255,255,.94); backdrop-filter:blur(4px);
  border:1px solid #E1D5BF; border-radius:10px; padding:10px 14px;
  display:flex; flex-direction:column; gap:6px; font-size:12px; font-weight:600; color:#1C232B;
  box-shadow:0 4px 14px rgba(0,0,0,.1);
}
.kofp-mappa-legend span{ display:flex; align-items:center; gap:8px; }
.kofp-mappa-legend .dot{ width:11px; height:11px; border-radius:50%; display:inline-block; }
@media(max-width:640px){
  .kofp-mappa-legend{ left:10px; bottom:10px; padding:8px 11px; font-size:11px; }
}

/* pin */
.kofp-pin{ background:none; border:0; }
.kofp-pin-inner{
  width:40px; height:40px; border-radius:50% 50% 50% 0; transform:rotate(-45deg);
  border:2px solid #fff; box-shadow:0 2px 7px rgba(0,0,0,.35);
  display:flex; align-items:center; justify-content:center;
}
.kofp-pin-inner i{ transform:rotate(45deg); color:#fff; font-size:15px; }
.kofp-pin-inner.has-logo{ border-width:3px; }
.kofp-pin-inner img{ transform:rotate(45deg); width:27px; height:27px; border-radius:50%; object-fit:contain; background:#fff; padding:1px; }

/* popup */
.kofp-pop{ font-family:'Archivo',sans-serif; min-width:190px; }
.kofp-pop-head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.kofp-pop-head img{ width:38px; height:38px; object-fit:contain; border-radius:7px; }
.kofp-pop-name{ font-weight:800; font-size:15px; line-height:1.1; }
.kofp-pop-addr{ font-size:12px; color:#6B7280; }
.kofp-pop-ev{ font-size:12.5px; line-height:1.35; padding:6px 0; border-top:1px solid #eee; }
.kofp-pop-ev b{ color:#D83A00; font-family:'Space Mono',monospace; font-size:11px; }
.kofp-pop-none{ color:#9ca3af; font-style:italic; }
.kofp-pop-btn{
  display:inline-flex; align-items:center; gap:7px; margin-top:9px;
  background:#EE5A24; color:#F6F1EB !important; font-weight:700; font-size:12.5px;
  padding:8px 13px; border-radius:8px; text-decoration:none !important;
}
.kofp-pop-btn:hover{ background:#D83A00; color:#fff !important; }
.kofp-pop-btn i{ color:#F6F1EB !important; }
.leaflet-popup-content{ margin:13px 15px; }
.leaflet-popup-content-wrapper{ border-radius:12px; }
