#content_prd{display:flex;}
.produits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.produit {
    display: flex;
    flex-direction: column;
    width: 290px;
    margin: 20px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    background-color: #f2f2f2;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    color: #155144;
}

.produit_content {
    height: 210px;
}

.produit_main {
    margin: 15px;
}

.produit_info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px;
    height: 60px;
    margin-top: auto;
}

.produit_title {
    display: inline-block;
    font-family: 'gotham';
    font-size: 17px;
    line-height: 19px;
    height: 40px;
    overflow: hidden;
}

.produit_title::first-letter {
    text-transform: uppercase;
}

.produit_title, .produit_title:visited, .produit_title:hover {
    color: #155144;
}

.produit_title + div {
    margin-top: 10px;
}

.produit_media {
    display: flex;
    justify-content: center;
    position: relative;
    height: 200px;
    background-color: #FFFFFF;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border: 2px solid #f2f2f2;
    overflow: hidden;
}

.produit_media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.produit_media:hover img {
    transform: scale(1.05);
}

.produit_image_certification {
    position: absolute;
    top: 7px;
    right: 8px;
    display: flex;
    flex-direction: column;
}

.produit_image_certification img {
    max-height: 35px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.produit_image_certification img + img {
    margin-top: 7px;
}

.produit_image_certification--alt {
    top: auto;
    right: auto;
    left: 8px;
    bottom: 7px;
    height: 23px;
    width: fit-content !important;
    max-width: fit-content;
}

.produit_prix {
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 15px;
    margin-left: 10px;
    font-weight: bold;
    font-size: 17px;
}

.produit_prix.barre {
    width: 50%;
    margin-bottom: auto;
    font-size: 13px;
    color: #EB7F2F;
    text-decoration: line-through;
}

.produit_prix_promo {
    width: 50%;
    font-weight: bold;
    color: #155144;
    margin-left: 10px;
    font-size: 17px;
}

.produit_select {
    position: relative;
    max-width: 50%;
}

.produit_select::before {
    position: absolute;
    content: '➤';
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D86018;
    color: #FFFFFF;
    width: 30px;
    transform: rotate(90deg);
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.produit_select:hover::before {
    background-color: #155144;
}

.produit_select_input {
    height: 30px;
    background-color: #eeeeee;
    color:  #a0a0a0;
    padding: 0 40px 0 10px;
    cursor: pointer;
    width: 100%;
}

.produit_footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
}

.produit_cart_quantity {
    display: flex;
    justify-content: space-between;
    background-color: #eeeeee;
    margin-right: 10px;
    min-height: 30px;
    width: 100%;
    max-width: 40%;
}

.cart_quantity {
    background-color: #155144;
    color: #000000;
    width: 30px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.cart_quantity:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.produit_btn {
    background-color: #A4C537;
    padding: 5px 10px;
    width: 100%;
    min-width: 50%;
    max-width: 60%;
    border-radius: 0;
    border-top-left-radius: 15px;
}

.produit_btn:hover {
    background-color: #EB7F2F;
}

.produit_btn::before {
    content: '+';
}

.produit_btn::after {
    content: url(/img/produits-panier.png);
}

.produit_promo_triangle {
    position: absolute;
    right: -80px;
    top: -50px;
    background-color: #ee0606;
    width: 160px;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    transform: rotate(45deg);
    color: #FFFFFF;
    font-weight: 600;
    z-index: 1;
}

.produit_desc {
    height: 55px;
    
}

@media all and (max-width: 800px) {
    .produit {
        width: 240px;
    }
}

@media all and (max-width: 600px) {
    .produit {
        width: 45%;
        margin: 20px 0;
    }

    .produitALaUne .produit {
        width: 255px;
    }
}

@media all and (max-width: 450px) {
    .produit_media {
        height: 135px;
    }

    .produit_main {
        margin: 5px 15px;
    }

    .produit_title {
        font-size: 14px;
    }
    
    .produit_info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 55px;
        padding: 5px 15px;
    }

    .produit_desc {
        max-height: 36px;
        overflow-y: auto;
        height: 75px;
    }

    .produit_select {
        max-width: 80%;
    }
}