
/***************************/
/****** SINGLE PRODUCT *****/
/***************************/
/*** Breadcrumb ***/
.single-product .chapo_single_product {
    display: flex;
    flex-wrap: wrap;
    column-gap: 46px;
    margin-bottom: 36px;
}
.chapo_single_prod_slider {
    display: flex;
    width: 604px;
}
.single_product_top_cols:first-of-type {
    display: flex;
    width: 604px;
}
.single_product_top_cols:last-of-type {
    flex: 1;
    padding: 0;
}

/*** Bloc CARACTÉRISTIQUES ***/
.bloc_caracteristiques_produit {
    display: block;
    box-sizing: border-box;
    padding: 32px 45px 27px;
    margin-bottom: 92px;
    background-color: var(--bleu_nuit);
    border-radius: 8px;
}
.bloc_caract_prod_maintitle {
    margin-bottom: 41px;
}
.bloc_caract_prod_cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 46px;
    box-sizing: border-box;
    padding: 0 33px;
}
.bloc_caract_prod_cols ul {
    flex: 1;
}
.bloc_caract_prod_cols ul li {
    display: block;
    padding-bottom: 20px;
}
.bloc_caract_prod_cols ul li .label_caract_prod {
    font-size: 20px;
    font-weight: 600;
}

/*** Bloc GARANTIES ***/
.bloc_guaranties {
    display: block;
    margin-bottom: 72px;
}
.bloc_guaranties_maintitle {
    text-align: center;
    padding-bottom: 46px;
}
.bloc_guaranties ul {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    gap: 20px;
}
.bloc_guaranties ul li {
    position: relative;
    flex: 1;
    display: block;
    max-width: 292px;
    box-sizing: border-box;
    padding: 39px 23px 46px;
    text-align: center;
    background-color: var(--beige2);
    border-radius: 8px;
}
.bloc_guaranties ul li:before {
    content: '';
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/etoile_doree.svg') no-repeat center;
}
.bloc_guaranties .bloc_guaranties_single_title {
    padding-bottom: 15px;
    color: var(--dor);
}
.bloc_guaranties .bloc_guaranties_single_title {
    font-weight: 400;
    line-height: 24px;
}

/*** Bloc REMONTÉE PRODUITS ***/
.bloc_four_products {
    display: block;
    margin-bottom: 72px;
}
.bloc_four_products_maintitle {
    padding-bottom: 46px;
}
.single_list_products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.single_list_products li {
    position: relative;
    display: block;
    width: 292px;
}
.bloc_four_products li {
    /*flex: 1;*/
}
.single_prod_pic_container {
    position: relative;
    display: block;
    z-index: 1;
}
.single_prod_wizpic,
.single_prod_nopic {
    position: relative;
    display: block;
    width: auto;
    max-width: 292px;
    height: 290px;
    transition: all 0.3s;
}
.single_prod_nopic {
    background-color: var(--beige2);
    border-radius: 8px;
}
.single_prod_wizpic:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(248, 243, 237, 0.85);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}
.single_list_products li:hover .single_prod_wizpic:after {
    opacity: 1;
    transition: all 0.3s;
}
.single_prod_wizpic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.single-product .single_prod_category {
    display: none;
}
.single_prod_more_infos {
    position: absolute;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 10px;
    width: -moz-available;
    /*padding: 0 30px;*/
    margin: 0 8%;
    bottom: 0;
    z-index: 10;
}
.single_list_products li:hover .single_prod_more_infos {
    display: flex;
}
.single_prod_attribute,
.single_product_card .single_prod_price {
    display: inline-block;
    color: var(--dor);
}
.single_product_card .single_prod_price {
    font-size: 15px;
    line-height: 26px;
}
.single_prod_title {
    display: block;
    font-weight: 400;
    font-size: 20px;
    padding: 22px 0 5px;
}
.single_list_products li .single_prod_cat {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: all 0.3s;
    z-index: 1;
}
.single_list_products li:hover .single_prod_cat {
    display: block;
}
.single_prod_link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

/*** Bloc SEO ***/
.bloc_seo {
    margin-bottom: 147px;
}

/*** SLIDER ***/            /** cf : woocommerce/single-product/product-image.php **/
/**************/
/* single img slider */
#single_product_img_block {
    position: sticky;
    display: block;
    width: 100%;
    max-width: 604px;
    height: fit-content;
    margin-bottom: 40px;
    top: 0;
}
#single_product_img_window_wrapp {
    position: relative;
    display: block;
    width: 100%;
    height: 604px;
    box-sizing: border-box;
    margin-bottom: 19px;
    border-radius: 8px;
}
.single_product_img_window_pic_link {
    display: block;
    box-sizing: border-box;
    height: 600px;
    border-radius: 8px;
    padding: 0;
}
.woocommerce .single_product_img_window_pic_link img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    z-index: 2;
}
/*.single_product_img_bt_next,*/
/*.single_product_img_bt_prev{*/
/*    display: block;*/
/*    width: 51px;*/
/*    height: 51px;*/
/*    background: var(--beige);*/
/*    border-radius: var(--r90);*/
/*    position: absolute;*/
/*    top: 277px;*/
/*    z-index: 2;*/
/*    cursor: pointer;*/
/*}*/
/*.single_product_img_bt_next:before,*/
/*.single_product_img_bt_prev:before{*/
/*    content: '';*/
/*    display: block;*/
/*    width: 13px;*/
/*    height: 8px;*/
/*    mask-size: 100% auto;*/
/*    -webkit-mask-size: 100% auto;*/
/*    background-color: var(--bleu);*/
/*    margin: auto;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*}*/
/*.single_product_img_bt_prev:before{*/
/*    mask: url('../img/pic_arrow_base.svg') no-repeat center;*/
/*    -webkit-mask: url('../img/pic_arrow_base.svg') no-repeat center;*/
/*    transform: rotate(180deg);*/
/*}*/
/*.single_product_img_bt_next:before{*/
/*    mask: url('../img/pic_arrow_base.svg') no-repeat center;*/
/*    -webkit-mask: url('../img/pic_arrow_base.svg') no-repeat center;*/
/*}*/
/*.single_product_img_bt_next{*/
/*    right: 30px;*/
/*}*/
/*.single_product_img_bt_prev{*/
/*    left: 30px;*/
/*}*/
.single_product_img_bt_next.swiper-button-disabled,
.single_product_img_bt_prev.swiper-button-disabled{
    display: none;
}
.single_product_flag_wrap{
    display: flex;
    flex-wrap: wrap;
    column-gap:10px;
    position: absolute;
    top: 27px;
    left: 31px;
    z-index: 3;
}
.single_product_flag_wrap .single_product_flag_new{
    position:unset;
}
.single_product_flag_new{
    display: block;
    font-weight: 300;
    font-size: 14px;
    line-height: 15px;
    padding: 5px 12px;
    color: var(--wh);
    background: var(--bleu_nuit);
    border-radius: 8px;
    z-index: 4;
}
.single_product_img_thumb{
    display: block;
    width: 188px;
    height: 188px;
    position: relative;
}
.single_product_img_thumb img{
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    z-index: 2;
}
/* single Lightbox styles */
#single_product_img_lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
#single_product_img_lightbox_view{
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
#single_product_img_lightbox_close {
    position: absolute;
    top: 60px;
    right: 60px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/*** Summary ***/           /** cf : woocommerce/content-single-product.php **/
/***************/
.chapo_single_prod_content {
    flex: 1;
    box-sizing: border-box;
    padding-top: 40px;
}
.single_prod_cat,
.single_prod_ref {
    padding-bottom: 19px;
}
.single_prod_cat a {
    display: block;
    font-family: "Sackers", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 850;
    line-height: 21px;
    width: fit-content;
    padding: 2px 7px;
    text-decoration: unset;
    color: var(--beige2);
    background-color: var(--dor);
}
.single_prod_maintitle {
    padding-bottom: 6px;
}
.single_prod_h1,
.single_prod_price {
    display: block;
    font-family: "Sackers", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 850;
    line-height: 43px;
    text-transform: lowercase;
    color: var(--bleu_nuit);
}
.single_prod_infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 33px;
    padding-bottom: 41px;
}
.single_prod_info {
    font-family: "Sackers", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 850;
    line-height: 26px;
    text-transform: lowercase;
    color: var(--dor, #9E822A);
}
.single_prod_shortdesc {
    padding-bottom: 35px;
}
.single_prod_price {
    font-size: 23px;
    line-height: 25px;
    padding-bottom: 17px;
}
.single_product_no_price {
    padding-bottom: 32px;
}
.ask_for_more_sales {
    display: block;
    padding: 0 0 32px 22px;
}
.ask_for_more_prod_condition {
    position: relative;
    display: block;
    line-height: 25px;
    text-transform: uppercase;
}
.ask_for_more_prod_condition:before {
    position: absolute;
    display: block;
    content: '';
    width: 11px;
    height: 11px;
    left: -22px;
    top: 46%;
    transform: translateY(-50%);
    border-radius: 50px;
}
/* Couleurs */
.ask_for_more_prod_condition.status_stock::before {
    background-color: #2ecc71;
}

.ask_for_more_prod_condition.status_booked::before {
    background-color: #E79200;
}

.ask_for_more_prod_condition.status_sold::before {
    background-color: #E43535;
}






















