
/*CSS des vignettes sur le listing produits (category et index )*/

#NEW_products .product .image {
    position: relative;
}

.list_products .product .block_image .sticker,
#NEW_products .product .image .sticker{
    color: #FFF;
    font-weight: 700;
    font-size: 14px;
    padding: 3px 5px;
    text-align: center;
}

.list_products .product .block_image .discount_sticker,
#NEW_products .product .image .discount_sticker{
    background-color: #E61B72;
    position: absolute;
    top: 0px;
    right: 0px;
}

.list_products .product .block_image .discount_sticker.black_friday,
#NEW_products .product .image .discount_sticker.black_friday{
    background-color: #000000;
}

.list_products .product .block_image .sticker_wrapper,
#NEW_products .product .image .sticker_wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.list_products .product .block_image .sticker_wrapper .top_sticker,
.list_products .product .block_image .sticker_wrapper .new_sticker,
#NEW_products .product .image .sticker_wrapper .top_sticker,
#NEW_products .product .image .sticker_wrapper .new_sticker{
    background-color: #6EC4EC;
}

.list_products .product .block_image .sticker_wrapper .gift_sticker,
#NEW_products .product .image .sticker_wrapper .gift_sticker{
    background-color: #F39200;
}

.list_products .product .block_image .sticker_wrapper .gift_sticker img,
#NEW_products .product .image .sticker_wrapper .gift_sticker img{
    width: 13px;
}

.list_products .product .sale_sticker_wrapper,
#NEW_products .product .image .sale_sticker_wrapper{
    position: absolute;
    bottom: 0px;   
    width: 100%; 
}

.list_products .product .sale_sticker,
#NEW_products .product .image .sale_sticker{
    font-size: 14px;
    font-weight: 700; 
    color: white;
    text-align: center;
    padding : 3px 5px;
    width: fit-content;
    margin: auto;
    text-transform: uppercase;
}

.list_products .product .sale_sticker.black_friday,
#NEW_products .product .image .sale_sticker.black_friday {
    background-color: #000000;
}

.list_products .product .sale_sticker.ventes_flash,
#NEW_products .product .image .sale_sticker.ventes_flash {
    background-color: #F39200;
}

/* CSS des vignettes sur la fiche produit */

#product #INF_content .sticker_wrapper{
    display: flex;    
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#product #INF_content .sticker_wrapper .sticker{
   padding: 3px 5px; 
   white-space:nowrap;
}

#product #INF_content .sticker_wrapper .new_sticker,
#product #INF_content .sticker_wrapper .top_sticker{
    background-color: #6EC4EC;
}

#product #INF_content .sticker_wrapper .MPW_sticker{
    background-color: #4408FF;
}

#product #INF_content .sticker_wrapper .flash_sale_sticker{
    background-color: #F39200;
}

#product #INF_content .sticker_wrapper .discount_sticker{
    background-color: #E61B72;
}

#product #INF_content .sticker_wrapper .discount_sticker.black_friday{
    background-color: #000000;
}


@media screen and (max-width: 800px) {
    .list_products .product .block_image .sticker,
    .list_products .product .sale_sticker, 
    #product #INF_content .sticker_wrapper
    {
        font-size: 12px;
    }
}