/* Styles pour la page boutique produit */

/* Boutons du menu */
.widget-menu .list-group-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-menu .list-group-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ca2d2d;
    z-index: -1;
    transition: all 0.6s ease;
}

/* Bouton actif avec animation */
.widget-menu .list-group-item.active {
    color: #fff !important;
    background-color: #ca2d2d !important;
    border-color: #ca2d2d !important;
    position: relative;
    z-index: 1;
}

.widget-menu .list-group-item.active::before {
    animation: menuExpand 0.6s ease forwards;
}

/* Animation d'expansion pour le menu */
@keyframes menuExpand {
    0% {
        width: 0;
        height: 3px;
    }
    50% {
        width: 100%;
        height: 3px;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}
