/* =========================
   Layout
   ========================= */
.sll-wrap{ display:grid; grid-template-columns: 380px 1fr; gap: 16px; }
.sll-map{ width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.sll-sidebar{ border:1px solid #eee; border-radius:12px; padding:12px; max-height:100%; overflow:auto; }
.sll-controls{ position:sticky; top:0; background:#fff; padding-bottom:8px; z-index:1; }
.sll-search{ width:100%; padding:10px 12px; border:1px solid #ddd; border-radius:8px; }
.sll-list{ list-style:none; margin:12px 0 0; padding:0; }

@media (max-width: 1024px){
  .sll-wrap{ grid-template-columns: 1fr; }
  .sll-sidebar{ order:2 }
  .sll-map{ order:1; height: 500px!important; }
}

/* =========================
   Kleurbare marker (DivIcon)
   ========================= */
.sll-pin{ position: relative; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.sll-pin span{
  display:inline-block; width:24px; height:24px; border-radius:50% 50% 50% 0;
  background: var(--pin, #4d77ff); transform: rotate(-45deg); position: relative;
}
.sll-pin span::after{
  content:''; width:10px; height:10px; background:#fff; border-radius:50%;
  position:absolute; top:7px; left:7px;
}

/* =========================
   Luxe kaartstijl per locatie
   (één bron van waarheid, geen doublures)
   ========================= */
.sll-item{
  position: relative;
  display: block;
  background: #fff;
  /* volledige kaart-rand; zet evt. oude scheidingslijn uit */
  border: 1px solid #ebe8e4;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 14px 0;
  cursor: pointer;
  transition: box-shadow .25s ease, border-color .25s ease, transform .1s ease;
  border-bottom: none; /* voorkomt “platte” scheidingslijnen uit oude styles */
}

/* Subtiele decoratieve lijnen (boven/onder) */
.sll-item::before,
.sll-item::after{
  content:"";
  position:absolute;
  left:16px; right:16px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
  pointer-events:none;
}
.sll-item::before{ top:10px; }
.sll-item::after{ bottom:10px; }

/* Hover / Active / Focus */
.sll-item:hover{
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border-color: #e2ded9;
  transform: translateY(-1px);
}
.sll-item.is-active{
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  border-color: #bfb8ae;
}
.sll-item:focus-visible{
  outline: 2px solid #bfb8ae;
  outline-offset: 2px;
}

/* Interne knop blijft toegankelijk maar onzichtbaar */
.sll-item .sll-zoom{
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0);
  white-space:nowrap; border:0;
}

/* Typografie in het kaartje */
.sll-item-title{ font-weight:600; color:#3c3b39; margin-bottom:6px; }
.sll-addr{ color:#444; margin-bottom:6px; }
.sll-ico{ color:#333; margin:2px 0; }
.sll-hours{ margin-top:8px; font-size:.95em; color:#333; line-height:1.4; }

/* (De zichtbare knopstijl is niet meer nodig omdat .sll-zoom verborgen wordt) */
