/* Galería del local: carrusel de fotos redondeadas. Usa los tokens de tema.css. */
.gallery-track{
  display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none;
  margin:0 -20px; padding:4px 20px 8px; scroll-padding-inline:20px;
}
.gallery-track::-webkit-scrollbar{display:none;}
.gallery-track figure{
  position:relative; flex:0 0 78%; max-width:360px; aspect-ratio:4/5; scroll-snap-align:start;
  border-radius:var(--radius); overflow:hidden; background:var(--card);
}
.gallery-track img{display:block; width:100%; height:100%; object-fit:cover;}
.gallery-track figcaption{
  position:absolute; left:10px; bottom:10px; font-size:12px; font-weight:500; padding:6px 12px; border-radius:999px;
  background:rgba(17,11,7,0.6); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); color:var(--text);
}
.gallery-dots{display:flex; justify-content:center; gap:6px; margin-top:14px;}
.gallery-dots span{width:7px; height:7px; border-radius:999px; background:rgba(247,243,238,0.22); transition:width .3s, background .3s;}
.gallery-dots span.on{width:22px; background:var(--gold);}
