/*
══════════════════════════════════════════════════════════
SITE HOTFIX PIN V2 CSS
- Hace el pin de Mapbox más visible
- Sube el z-index del marker sobre overlays visuales
- Aumenta ligeramente el tamaño en móvil
══════════════════════════════════════════════════════════
*/

#s-ubicacion .mapboxgl-marker {
  z-index: 6 !important;
}

#s-ubicacion .alcare-marker-v1 {
  width: 34px !important;
  height: 34px !important;
  z-index: 6 !important;
  filter: drop-shadow(0 10px 20px rgba(15,126,255,0.26));
}

#s-ubicacion .alcare-marker-v1::after {
  width: 11px !important;
  height: 11px !important;
  left: 11px !important;
  top: 11px !important;
}

@media (max-width: 960px), (orientation: landscape) and (max-height: 560px) {
  #s-ubicacion .alcare-marker-v1 {
    width: 38px !important;
    height: 38px !important;
  }

  #s-ubicacion .alcare-marker-v1::after {
    width: 12px !important;
    height: 12px !important;
    left: 13px !important;
    top: 13px !important;
  }
}
