.container_produits {
  padding: 40px;
}

.box_produits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.img_produit {
    width: 100%;
    min-width: 100px;
}

.texte_produit {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.texte_produit p {
    font-size: 12px;
}

.texte_produit h2 {
    font-weight: bold;
    margin-top: 5px
}

.separateur {
    height: 1px;
    width: 100%;
    background-color: #C9AF9E;
    margin-top: 20px;
    margin-bottom: 20px;
}


@media screen and (max-width: 600px) {
    .box_produits {
        grid-template-columns: repeat(2, 1fr);
    }
}