/* Estilos para la notificación de stock bajo (sin cambios) */
.wsn-stock-notification.wsn-low-stock {
    background-color: #ffe75e; /* Amarillo Temu */
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    animation: temu-pulse 1.5s infinite alternate;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes temu-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Estilos para la notificación de "Más Vendido" con animación de cambio de colores */
.wsn-stock-notification.wsn-bestseller {
    background-color: #f44336; /* Rojo inicial */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
    animation: rainbow-text-animation 3s infinite alternate;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes rainbow-text-animation {
    0% { background-color: #f44336; } /* Rojo */
    20% { background-color: #ff9800; } /* Naranja */
    40% { background-color: #4caf50; } /* Verde */
    60% { background-color: #2196f3; } /* Azul */
    80% { background-color: #9c27b0; } /* Morado */
    100% { background-color: #f44336; } /* Rojo (ciclo) */
}