/* ================================================================
   MAPA UNIFICADO — estilos específicos de la página mapa.php
   ================================================================ */

.mapa-unificado-section {
  width: 96%;
  max-width: 1500px;
  margin: 8px auto 0;
  padding-bottom: 2rem;
}

/* ---- Pills de categoría ---- */

.mapa-categoria-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
  padding: .75rem .5rem;
}

.mapa-categoria-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 2rem;
  border: 2px solid var(--pill-color, #851f23);
  background: #fff;
  color: var(--pill-color, #851f23);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.mapa-categoria-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mapa-categoria-pill:hover {
  background: color-mix(in srgb, var(--pill-color, #851f23) 12%, #fff);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--pill-color, #851f23) 25%, transparent);
}

.mapa-categoria-pill.activo {
  background: var(--pill-color, #851f23);
  color: #fff;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--pill-color, #851f23) 40%, transparent);
}

/* ---- Estado vacío ---- */

.mapa-estado-vacio {
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  color: #bbb;
  font-size: .9rem;
  padding: .5rem 1rem 1rem;
  letter-spacing: .01em;
}

/* ---- Marcadores de servicios (icono en vez de número) ---- */

.marcador-mapa.marcador-servicio {
  font-size: 0;
}

.marcador-mapa.marcador-servicio svg {
  width: 16px;
  height: 16px;
  display: block;
  pointer-events: none;
}

/* ---- Íconos en leyenda-num para servicios ---- */

.leyenda-num svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* ---- Iconos de características en leyenda de atracciones ---- */

.leyenda-car-iconos {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-left: auto;
  padding-left: .5rem;
  flex-shrink: 0;
}

.leyenda-car-iconos svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
}

.leyenda-item.activo .leyenda-car-iconos svg {
  color: rgba(255,255,255,.85) !important;
}

.leyenda-shows-lista {
  list-style: none;
  margin: .2rem 0 0;
  padding: 0;
  font-size: .78rem;
  color: #555;
  line-height: 1.5;
}

.leyenda-item.activo .leyenda-shows-lista {
  color: rgba(255,255,255,.85);
}
