/* Utilidades personalizadas */
.text-shadow-lg {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Ocultar barra de desplazamiento en filtros móviles pero mantener funcionalidad */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Estilización suave del scrollbar general */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121212; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b; 
}