.produits-lies-component {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.produits-lies-component h6 {
    margin: 0 !important;
}

.produits-lies-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.produits-lies-gallery .produit-lie {
    width: fit-content;
    max-height: 44px;
    padding: 1px;
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produits-lies-gallery .produit-lie:hover {
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.produits-lies-gallery .produit-lie img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 40px !important;
    max-height: 40px !important;
}