@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

body{
    background-color: #0d0d0d;
}

.custom-navbar {
    background-color: #0d0d0d; /* Fondo negro oscuro */
    padding: 10px 20px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #b3b3b3 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: white !important;
}

.custom-btn {
    background-color: #FF44A0;
    border: none;
    border-radius: 20px;
    padding: 8px 25px;
    font-weight: bold;
    color: white;
}

.custom-btn:hover {
    background-color: #FF44A0;
}

/* Ajustes para móvil */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #0d0d0d;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    .custom-search {
        margin-bottom: 10px;
    }
    .ms-3 {
        margin-left: 0 !important;
    }
}

body {   
    cursor: url('/static/32x32.png') 16 16, auto;
}

/* Para que también brille al pasar sobre productos o botones */
a:hover, button:hover, .card:hover {
    filter: drop-shadow(0 0 5px #FF44A0); 
    cursor: url('/static/32x32.png') 16 16, pointer;
}

/* Estilo base para los items de categoría */
.item-categoria {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animación elástica */
    border-left: 3px solid transparent !important; /* Borde invisible a la izquierda */
    overflow: hidden;
}

/* Efecto al pasar el mouse (Hover) */
.item-categoria:hover {
    background-color: rgba(255, 0, 128, 0.1) !important; /* Fondo rosa muy suave y transparente */
    color: #ff0080 !important; /* Letras rosas */
    padding-left: 40px !important; /* Pequeño desplazamiento a la derecha */
    
    /* Brillo en las letras */
    text-shadow: 0 0 8px #f3f1f2, 0 0 15px #fff9fc; 
    
    /* Brillo en el borde izquierdo */
    border-left: 5px solid #ff0080 !important;
    box-shadow: inset 10px 0 15px -10px #000000; /* Sombra interna neón */
}

/* Opcional: Un pequeño destello que recorre el botón */
.item-categoria::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.item-categoria:hover::after {
    left: 100%;
}