#produit, #produit-une, #produit-collab {
    display: flex;
    text-align: center;
    margin:auto;
    flex-direction: row;
    flex-wrap: wrap;
}

#produitf {
    display: flex;
    text-align: center;
    margin:auto;
    flex-direction: row;
    flex-wrap: wrap;
}

.article {
    display: block; 
    height: 420px ;    
    color: black;
    text-decoration: none;  
    width: 22%;
    margin: auto;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease; 

}


.article::after {
    position: absolute;
}

/*Quand le produit est survolé, il glisse vers le haut et a une ombre et change de fond*/

.article:hover {
    transform: translateY(-7px);
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.51);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(232, 190, 51, 0.619);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
}

img.imgprod {
    height: 70% ;
    width: 70%;
    border-radius: 10px;
}

.article figure {
    margin: 0;
}

