/**
 * Styles pour la liste des taxonomies
 * Shortcode: [liste_taxonomies_produit]
 * 
 * @package HelloElementorChild
 */

/* Enlever les puces et afficher sur la même ligne */
.taxonomies-list,
footer ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
}

footer .elementor-icon-list-item a
{
    width: unset !important;
}

.link-underline-ft,
footer li a{
    color: #000000 !important;
    text-decoration: none;
    list-style: none;
    position: relative;
    font-weight: 400;
}

.link-underline-ft::after,
footer li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.link-underline-ft:hover::after,
footer li a:hover::after {
    width: 100%;
}