:root{
    --grey-apple:#FCFCFD;
    --black:#212529;
    --grey:#eceef4;
    --grey-alt:#20252b;
    --purple:#8f15ff;
    --gold:#f6e7a3;
    --box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 15%);
    --black-gradient: linear-gradient(90deg, rgba(48,56,65,1) 0%, rgba(1,1,1,1) 50%, rgba(48,56,65,1) 100%);
    --pink:#F8F1F9;
}


@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins";
    font-size: 14px;
}

header{
    display: block;
    width: 100%;
    box-shadow: 0px 0px 24px rgb(0,0,0,0.1)
}

header.fixed-header{
    animation: slideInDown;
    animation-duration: 0.5s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;

}

.btn-primary,
.button{
    background: var(--purple) !important;
    height: 50px !important;
    border-radius: 20px !important;
    color: white !important;
    border: 0 !important;
    padding: 0 30px;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-secondary{
    background-color: white;
    color: var(--grey-alt);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-third{
    background: none;
    height: 40px;
    border-radius: 20px;
    color: var(--purple) !important;
    border: 2px solid var(--purple);
    padding: 0 20px;
    display: inline-flex !important;
    align-items: center;
}

.btn-primary:hover{
    background: var(--purple);
}

.btn-outline-primary{
    color: var(--purple);
    border-color: var(--purple);
    border-radius: 20px !important;
}

.btn-outline-primary:hover{
    background-color: var(--purple);
    border-color: var(--purple);
}

.btn-outline-black{
    background-color: white;
    border-color: var(--grey);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 30px !important;
    height: 60px;
    padding: 8px 49px;
}

.btn-outline-black:hover{
    color: var(--purple);
    background-color: var(--pink);
}

.btn-more-purple{
    color: var(--purple);
    text-decoration: none;
    font-weight: bold;
}

.btn-more-purple i{
    font-style: normal;
}

.bg-white{
    background: white !important;
}

.bg-grey{
    background: var(--grey) !important;
}

.bg-black{
    background-color: black !important;
}

article .date{
    text-align: center;
}

article .read-more{
    text-align: center;
    display: block;
    color: var(--purple) !important;
    font-weight: bold;
}

article .bg-black .date,
article .bg-black .read-more,
article .bg-black a,
article.bg-grey:hover .date{
    color: white !important;
}

#top-menu{
    background: var(--grey-apple);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#top-menu .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#top-menu nav{
    width: 100%;
}

#top-menu nav > ul{
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-left: 100px;
}

#top-menu nav > ul > li{
    display: inline-block;
    text-decoration: none;

}

#top-menu nav > ul > li > a,
#top-menu nav > ul > li i{
    color: black;
    text-decoration: none;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul ul{
    position: absolute;
    left: 0;
    right: 0;
    top: 57px;
    background: var(--grey);
    text-align: center;
    padding: 20px !important;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    z-index: 9999;
}

nav > ul > li:hover ul{
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
}

nav > ul > li > a{
    position: relative;
}

nav > ul > li.has-sub-menu:hover > a:after{
    display: block;
    content: " ";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--grey);
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
}

nav ul ul li{
    display: inline-block !important;
    text-align: center;
    padding: 0 15px;
}

#top-menu  ul ul li a{
    color: black;
    text-decoration: none;
}

#top-menu ul{
    padding: 0;
    margin: 0;
    display: flex;
}

#top-menu ul li{
    display: inline-block;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#top-menu #tools{
    padding-left: 60px;
}

#top-menu #tools li{
    padding-left: 40px;
}

#top-menu #tools li i,
#top-menu #tools li a{
    color: white;
    display: flex;
    text-decoration: none;
    align-items: center;
    width: 14px;
}

#top-menu #tools li img{
    width: 14px;
    height: 14px;
}

#mobile-tools{
    display: none;
}

.section-menu-title{
    color: var(--purple);
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 20px;
}

.item-menu-icon{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-menu-icon img{
    max-height: 40px;
}

.item-menu-title{
    font-weight: bold;
}

#infos-menu{
    background: var(--grey);
    padding: 20px 0;
}

#infos-menu address{
    margin-bottom: 0;
    font-size: 18px;
}

#infos-menu a{
    color: var(--purple);
    text-decoration: none;
    font-size: 18px;
}

#infos-menu p{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
}

#infos-menu span{
    color: var(--purple);
}

#home-banner {
    height: 570px;
    background: url('https://www.cyber-jay.fr/wp-content/uploads/2024/12/Home_banner_sansCyberJay.png.webp') center !important;
    background-size: cover;
}

@media (max-width: 768px) {
    body #home-banner {
        background: url('https://www.cyber-jay.fr/wp-content/uploads/2024/12/Home_banner_sansCyberJay-300x89.png.webp') center !important;
        background-size: cover !important;
    }
}


#top-banner-container h1,
#top-banner-container .h1{
    font-weight: bold;
    font-size: 50px;
    color: black;
    margin: 30px 0;
}

#home-banner .h1{
    color: black;
}

.rachat-banner #top-banner-container h1{
    font-size: 60px;
}

#home-banner p,
#top-banner-container p{
    color: var(--purple);
    font-size: 20px;
    font-weight: bold;
}

.issues{
    background: var(--grey);
}
#issues{
    background: var(--grey);
}
.issues a, #solutions a, .overlay a, #resell a, .btnAllProducts a, .footer-menu-items a, #tools a, #espacePro a, .stretched-link{
    cursor: pointer;
}
#issues a, #solutions a, .overlay a, #resell a, .btnAllProducts a, .footer-menu-items a, #tools a, #espacePro a, .stretched-link{
    cursor: pointer;
}

.issues .h2{
    font-weight: bold;
    font-size: 24px;
}
#issues .h2{
    font-weight: bold;
    font-size: 24px;
}

.issues .box{
    font-weight: bold;
    font-size: 19px;
    background: white;
    box-shadow: var(--box-shadow);
    padding: 20px;
    line-height: 30px;
    display: block;
    text-align: center;
}
#issues .box{
    font-weight: bold;
    font-size: 19px;
    background: white;
    box-shadow: var(--box-shadow);
    padding: 20px;
    line-height: 30px;
    display: block;
    text-align: center;
}

.issues .box span{
    font-size: 30px;
}
#issues .box span{
    font-size: 30px;
}

#solutions .col-md-3{
    font-size: 16px;
    border-left: 1px solid var(--grey);
}

#solutions .col-md-3:last-child{
    border-right: 1px solid var(--grey);
}

#solutions .col-md-3 a{
    font-weight: bold;
    text-decoration: none;
    color: var(--purple);
}

#solutions .col-md-3 span{
    display: block;
    font-size: 25px;
}

#informations .overlay,
#stores .overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-left: 255px;
    padding-right: 50px;
}

#informations .col-lg-6 ,
#stores .col-lg-6{
    position: relative;
}

#informations .col-lg-6 img,
#stores .col-lg-6 img{
    width: 100%;
    height: auto;
}

#informations .col-lg-6 span{
    font-size: 19px;
    color: var(--gold);
    text-transform: uppercase;
}

#informations .col-lg-6 .h2,
#stores .col-lg-6 .h2{
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

#stores .col-lg-6 p{
    color: white;
}

#informations .col-lg-6 a,
#stores .col-lg-6 a{
    text-decoration: none;
    color: var(--purple);
    font-weight: bold;
}

#illustrations .illustration_container{
    display: inline-flex;
    width: 185px;
    height: 185px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

}

#illustrations{
    background: linear-gradient(180deg, white 40%, var(--grey) 40%);
}

#edito-grey{
    background: var(--grey);
}

#edito-grey h1,
#edito-white h1{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 40px;
}

#edito-white h2,
#edito-grey h2{
    font-size: 20px;
    color: var(--purple);
}

#edito-white #edito-text,
#edito-grey #edito-text{
    columns: 2;
    column-gap: 30px;
}

#stores{
    background: linear-gradient(180deg, var(--grey) 40%, white 40%);
}

#reviews{
    background: var(--grey);
}

#resell span{
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    vertical-align: top;
    height: 100px;
    font-weight: bold;
    margin: 0 35px;
}

#resell img{
    display: block;
    margin: auto;
}

#resell .h2,
#reviews .h2{
    font-weight: bold;
    font-size: 24px;
}

#resell a{
    text-decoration: none;
    color: var(--purple);
    font-weight: bold;
    margin: 0 20px;
}

footer{
    background: var(--grey);
}

#footer-copyright{
    background: black;
    height: 50px;
    text-align: center;
    align-items: center;
    display: flex;
    color: white;
}

#footer-copyright p{
    margin-bottom: 0;
    font-size: 10px;
}

#footer-socials{
    padding-top: 30px;
}

#footer-socials a{
    text-decoration: none;
    color: black;
    font-size: 15px;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
}

#footer-socials a img{
    fill: black;
    display: inline-block;
    height: 20px;
}

.footer-menu-title{
    color: var(--purple);
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.footer-menu-items{
    padding: 0;
    margin: 0;
    columns: 2;
}

.footer-menu-items li{
    list-style-type: none;
}

.footer-menu-items li a{
    color: black;
    text-decoration: none;
    font-size: 13px;
}

#back-to-top{
    position: fixed;
    bottom: 8px;
    right: 8px;
    width: 35px;
    height: 35px;
    box-shadow: var(--box-shadow);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    color: black;
}

#search{
    background: rgba(143, 21, 255, 0.8);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#search input[type="search"]{
    border-radius: 0;
    width: 230px;
    display: inline-block;
    color:white;
    background: none;
    border: 0;
    border-bottom: 1px solid white;
}

#search button{
    display: inline-block;
    border: 2px solid white;
    background: none;
    color: white;
    height: 37px    ;
}

#search input[type="search"]:focus{
    outline: none;
    box-shadow: none;
}

#search input[type="search"]::placeholder {
    color: white;
    opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
    color: white;
}

#search input[type="search"]::-ms-input-placeholder {
    color: white;
}

#search form{
    width: 360px;
}

#search-close{
    position: absolute;
    color: white;
    width: 30px;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

#search-open{
    cursor: pointer;
}

#top-banner{
    background: linear-gradient(180deg,white 80%,var(--grey) 80%);
}

#top-banner img{
    max-width: 100%;
    height: auto;
}

#top-banner-container{
    background: var(--pink);
    margin-top: 30px;
    padding: 40px 40px 0 40px;

}

#top-banner-container.top-banner-container-nettoyage{
    background:url(../images/nettoyage.png) var(--pink);
    background-size: contain;
    background-repeat: no-repeat;
}

#top-banner-container.top-banner-container-micro-soudures{
    background:url(../images/micro-soudures-bg.png) black;
    background-size: contain;
    background-repeat: no-repeat;
}

#top-banner-container span{
    display: block;
    color: black;
    font-size: 24px;
    margin-bottom: 15px;
}

#top-banner select{
    display: inline-block;
    width: calc(100% - 200px);
    margin-right: 15px;
}

#top-banner input{
    display: inline-block;
    width: calc(100% - 160px);
    margin-right: 15px;
}

#top-banner a{
    color: var(--purple);
    display: block;
    margin-top: 10px;
}

.hashtags{
    font-size: 20px;
    color: var(--purple);
    font-weight: bold;
    margin-top: 30px;
}

#edito-text iframe{
    width: 100%;
    margin-bottom: 30px;
}

#edito-text > img{
    width: 100%;
    height: auto;
}

#edito-text h3{
    font-size: 17px;
}

#product-details{
    padding-top: 60px;
}

#product-details img{
    max-width: 100%;
}

.breadcrumb li a{
    color: black;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before{
    content:">";
}

.category-name{
    font-size: 30px;
    color: var(--purple);
}

#product-details h1{
    font-size: 40px;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

#product-details span{
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: black;
    vertical-align: top;
}

#product-details span img{
    margin-right: 7px;
}

#product-details span i{
    color: var(--bs-green);
    font-size: 19px;
    margin-right: 7px;
}

#product-details p{
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 25px;
}

#product-details form i{
    color: var(--purple);
    font-size: 32px;
    margin: 0;
}

#product-details form{
    margin: 20px 0;
    display: inline-block;
}

#product-details form input[type="number"]{
    display: inline-block;
    background: var(--grey);
    border: 0;
    width: 64px;
    height: 40px;
    border-radius: 20px;
    margin: 0 15px;
    text-align: center;
}

#share{
    font-size: 16px;
    margin-top: 25px;
}

#share a{
    display: inline-block;
    margin: 0 5px;
    color: black;
}

#product-details p.price span,
#product-details p.price,
p.product-price{
    font-size: 40px;
    font-weight: normal;
    margin: 0;
}

.woocommerce-variation-price .price span,
.woocommerce-variation-price .price{
    font-size: 30px !important;
    font-weight: normal !important;
    margin: 0;
    color: var(--purple);
}

.woocommerce-variation-price{
    padding: 20px 0;
}

.yith-wcwl-add-to-wishlist{
    display: inline-block;
    margin-top: 0;
    vertical-align: middle;
}

table.variations{
    margin-bottom: 10px;
}

.yith-wcwl-add-button span{
    display: none;
}


.woocommerce a.add_to_wishlist.button.alt{
    background: none;
    margin: 0;
    padding: 0;
}

.yith-wcwl-wishlistexistsbrowse span{
    margin-right: 0 !important;
}

.variations label{
    display: none;
}

.variations select{
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.reset_variations{
    display: inline-block;
    margin-left: 20px;
    color: var(--purple);
}

.quantity{
    display: inline-block;
}

.product-price span{
    display: block !important;
}

#products article .h-100{
    background-color:white;
    display: block;
    padding: 30px 20px;
    border-radius: 5px;
    position: relative;
    border: 1px solid grey;

}

#products article{
    min-height: 350px;
    margin-bottom: 20px;
    border-radius: 5px;
}

#products article.blog-h1{
    height: 260px;
}

#products article.blog-h2{
    height: 350px;
}

#products article.blog-h1 .h-100{
    background-size: auto;
    background-position: center top;
    background-repeat: no-repeat;
}

#products article.blog-h2 .h-100{
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;

}

#products article img{
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
    mix-blend-mode: multiply;
    margin-bottom: 10px;
}

.product-actions a{
    display: inline-block;
    margin: 0 5px;
}

.product-actions img{
    mix-blend-mode: normal !important;
}

.product-eco img{
    width: auto !important;
    height: auto !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 !important;
    margin-right: 5px !important;
}

#products article .product-image{
    margin-bottom: 10px;
}


#products article .product-image{
    display: flex;
    align-items: center;
    justify-content: center;
}

#products article .discount{
    color: var(--purple);
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

#products article h2{
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

#products article .price-product{
    font-size: 18px;
    text-align: center;
    color: #855151;
}

.product-overlay{
    text-align: center;
}

#products article.blog-h1 .product-overlay,
#products article.blog-h2 .product-overlay,
#products article.blog-h3 .product-overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 5px;
    padding-bottom: 20px;

}


#products article.blog-h1:hover .product-overlay,
#products article.blog-h2:hover .product-overlay,
#products article.blog-h3:hover .product-overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 5px;
    background: rgba(0,0,0,0.8);

}


#products article .product-actions{
    display: none;
}



#products article .product-actions{
    text-align: center;
    color: var(--purple);
    padding-top: 10px;
}

#products article .product-actions i{
    font-size: 27px;
    display: inline-block;
    margin: 0 10px;
}

#products article a{
    text-decoration: none;
    color: black;
}


#banner-cyber{
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

#banner-cyber img{
    width: 100%;
    height: auto;
}

#category-title{
    padding:20px 0;
}

#category-title h1{
    font-weight: bold;
    font-size: 32px;
}

#category-title .breadcrumb{
    justify-content: center;
}

#pagination{
    background: var(--grey);
    padding: 40px 0 0;
}

#pagination ul{
    margin: 0;
    padding: 0;
    text-align: center;
}

#pagination ul li{
    list-style: none;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
}

#pagination ul li a{
    display: block;
    padding: 8px;
    text-decoration: none;
    color: var(--purple) !important;
}

#pagination ul li span{
    color: white;
    background: var(--purple);
    display: block;
    border-color: var(--purple);
    padding: 8px;
}

#top-banner-container p#top-banner-price{
    font-weight: normal;
    font-size: 40px;
}

#top-banner-container p#top-banner-price-cleaning{
    font-size: 35px;
    display: inline-block;
    background: var(--purple);
    color: white;
    font-weight: normal;
    padding: 0 10px;
    margin-top: 25px;
}

#rachat-img{
    background: var(--grey);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 526px;
}

#sell-device select{
    background-color: var(--grey);
}

#post-content h2{
    color: var(--purple);
    margin-bottom: 20px;
    font-size: 20px;
}

#post-content h3{
    color: black;
    margin-bottom: 20px;
    font-size: 17px;
}

#post-content li{
    margin-bottom: 10px;
}

#post-content h1{
    font-weight: bold;
}

#post-content p{
    text-align: justify;
}

.author{
    color: var(--purple);
    font-weight: bold;
}

.back{
    color: var(--purple);
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
}

.back i{
    font-size: 22px;
    margin-right: 3px;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}

#product-details .col-md-5 img{
    width: 100%;
    height: auto;
}

.issues a{
    text-decoration: none;
    color: var(--grey-alt);
}
#issues a{
    text-decoration: none;
    color: var(--grey-alt);
}

.issues .box img{
    height: 100px;
    width: 100px;
    object-fit: contain;
}
#issues .box img{
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.wp-pagenavi a, .wp-pagenavi span,
.woocommerce nav.woocommerce-pagination ul{
    border: 0;
}

.cart a{
    text-decoration: none;
}

#price_rebuy{
    display: inline-block;
}

.error404 #top-banner,
.page-template-default #stores,
.error404 #stores{
    background: white !important;
}

.woocommerce-page:not(.tax-product_cat) #edito-text{
    columns: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals{
    float: none;
    width: auto;
}

td.product-thumbnail img{
    width: 100px !important;
    height: auto !important;
}

#bandeau-annonce{
    font-size: 16px ;
}

.product-price{
    color: var(--purple);
    font-size: 36px;
    margin-bottom: 15px;
}

#reassurance{
    background: var(--black-gradient);
    color: white;
    border-radius: 5px;
    text-align: center;
}

#reassurance img{
    color: var(--purple);
    display: block;
    margin: auto;
    height: 55px;
    margin-bottom: 20px;
}

#reassurance-product{
    background: var(--grey);
    color: black;
    border-radius: 5px;
    text-align: center;
}

#reassurance-product i{
    color: var(--purple);
    display: block;
    text-align: center;
    font-size: 45px;
    margin-bottom: 20px;
}

#reassurance-product img{
    width: 50px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

#post-content iframe{
    width: 100%;
    height: 400px;
}

.post-content a,
#edito-text a{
    color: var(--purple);
}

.wpcf7-submit{
    margin-top: 20px;
}

.wishlist_table .product-price{
    font-size: 18px;
}

.wishlist_table .product-price span{
    display: inline-block !important;
    font-weight: normal;
}

.wishlist_table .product-add-to-cart a{
    display: inline-flex !important;
}

.wishlist_table .product-name{
    font-size: 16px;
    font-weight: normal;
}

.woocommerce table.shop_table th{
    font-weight: normal;
    color: black;
    font-size: 16px;
}

.wishlist_table .product-stock-status span.wishlist-in-stock{
    font-weight: normal;
    font-size: 16px;
}

#cart-count{
    margin-left: 5px;
}

.woocommerce table.shop_table td.product-price{
    font-size: 16px !important;
}

.woocommerce table.shop_table td.product-price span{
    display: inline-block !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
}

.woocommerce form .form-row select{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-login-toggle .woocommerce-info{
    padding-left: 40px;
}

.wishlist-button{
    margin-right: 15px;
    display: inline-block;
    position: relative;
    top:5px;
    vertical-align: top;
}

.wishlist-button img{
    width: 30px;
}

.product-grade{
    background: black;
    color: white;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    margin: 5px 0 10px;
    font-size: 12px;
}

.product-eco{
    background: white;
    color: var(--bs-green) !important;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-size: 12px;
}

.product-eco i{
    color: var(--bs-green) !important;
}

#contactez-conseil .btn{
    background: var(--bs-green);
    height: 40px !important;
    border-radius: 20px !important;
    color: white !important;
    border: none !important;
    padding: 0 20px;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 14px;
}

#contactez-conseil .btn-secondary{
    background-color: transparent;
    border: 2px solid var(--bs-green) !important;
    color: var(--bs-green) !important;
}

.single-product .product-grade{
    font-size: 12px;
    padding: 0 10px;
    background: var(--grey);
    color: black;
    display: inline-flex;
    height: 40px;
    border-radius: 5px;
    padding: 5px;
}

.single-product .product-grade b{
    font-size: 16px;
    margin-right: 10px;
}

.single-product .product-eco{
    height: 40px;
    font-size: 16px;
    padding: 0 20px;
    margin-left: 10px;

}

.single-product .product-eco i{
    font-size: 18px !important;
}

#top-banner-pro{
    background: var(--pink);
    padding: 50px 0;
    text-align: center;

}

#top-banner-pro p{
    color: white;
    font-size: 18px;
}

#top-banner-pro a{
    color: var(--purple);
    font-size: 16px;
    text-decoration: none;
}

#edito-white.edito-pro p{
    font-size: 18px;
}

.accroche-pro{
    color: var(--purple);
    font-weight: bold;
}

#creer-mon-espace .wpcf7-form{
    text-align: left;
}

#creer-mon-espace .acceptance{
    margin-top: 10px;
    display: block;
    text-align: left;
}

#maillage{
    columns: 2;
}

#maillage li{
    list-style-type: none;
}

#single-featured img{
    mix-blend-mode: multiply;
}

#tools .fal.fa-bars{
    display:none !important;
}

.single-post #post-content img{
    display: block;
    margin: 20px 0;
}

.woocommerce-message{
    padding-left: 50px;
}

#open-mobile img{
    display: none;
}

#share img{
    height: 20px;
    margin: 0 !important;
}

#resell a i{
    font-size: 22px;
    margin-left: 3px;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}

#stores a i,
#informations a i
{
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    position: relative;
    top:3px;
}

.step strong{
    font-size: 24px !important;
}

.page-template-page-comment-envoyer h2{
    font-size: 28px !important;
}

.dropdown-toggle::after {
    border-top: .5em solid;
    border-right: .5em solid transparent;
    border-left: .5em solid transparent;
}

.blog-sidebar .h2{
    font-weight: bold;
    color: black;
    font-weight: bold;
    font-size: 20px;
}

.blog-sidebar ul{
    padding: 0;
}

.blog-sidebar ul li{
    list-style-type: none;
    margin-bottom: 7px;
}

.blog-sidebar ul li a{
    color: var(--purple);
    text-decoration: none;
}

.edito-text a{
    color: var(--purple);
}

.contact-wrap {
    background: #7f279c;
    background: -moz-linear-gradient(-45deg, #7f279c 0%, #2e279d 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #7f279c), color-stop(100%, #2e279d));
    background: -webkit-linear-gradient(-45deg, #7f279c 0%, #2e279d 100%);
    background: -o-linear-gradient(-45deg, #7f279c 0%, #2e279d 100%);
    background: -ms-linear-gradient(-45deg, #7f279c 0%, #2e279d 100%);
    background: -webkit-linear-gradient(315deg, #7f279c 0%, #2e279d 100%);
    background: -o-linear-gradient(315deg, #7f279c 0%, #2e279d 100%);
    background: linear-gradient(135deg, #7f279c 0%, #2e279d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7f279c', endColorstr='#2e279d', GradientType=1 );
}

.contact-wrapper{
    width: 100%;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.info-wrap h3 {
    color: #000;
    position: relative;
}

.info-wrap h3:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d62196;
    content: '';
}

.info-wrap .dbox {
    width: 100%;
    margin-bottom: 25px;
}

.info-wrap .dbox:last-child {
    margin-bottom: 0;
}

.info-wrap .dbox p {
    margin-bottom: 0;
}

.info-wrap .dbox p span {
    font-weight: 400;
    color: #000;
}

.info-wrap .dbox p a {
    color: rgba(0, 0, 0, 0.3);
}

.info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-wrap .dbox .icon span {
    font-size: 20px;
    color: #000;
}

.info-wrap .dbox .text {
    width: calc(100% - 50px);
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
}

.contact-wrap .form-control{
    height: 52px;
    background : transparent;
    color: white !important;
    font-size: 14px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrap .form-select{
    height: 52px;
    background-color: transparent;
    color: white !important;
    font-size: 14px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-image: url(../images/chevron-down.png);
    background-size: auto;
}
.contact-wrap .form-select option {
    color: black !important;
}

.contact-wrap ::placeholder {
    opacity: 1;
    color: white;
}

.contact-wrap .h3{
    color: white;
    font-weight: bold;
}

.info-wrap .h3{
    font-weight: bold;
    color: black;
}

.wpcf7-response-output{
    background: white;
}

#creer-mon-espace p{
    color: black;
}

.pro-icon{
    font-size: 80px;
}

.pro-item-title{
    color: var(--purple);
    font-size: 24px;
    font-weight: bold;
}

#top-banner-pro h2{
    color: black;
    font-size: 24px;
    font-weight: bold;
}

#sur-mesure{
    background: var(--grey);
}

#sur-mesure h2{
    font-weight: bold;
}

#references-pro h2{
    font-weight: bold;
}

#category-menu ul{
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

#category-menu ul li{
    list-style-type: none;
    padding: 0 20px;
}

#category-menu ul li a{
    text-decoration: none;
    display: block;
    color: var(--purple);
}

.page-template-page-home #products .h2{
    font-weight: bold;
    font-size: 24px;
}

#payment{
    background: var(--purple) !important;
    border: 0 !important;
    color: white !important;
}

#payment .btn-primary{
    background: white !important;
    color: var(--purple) !important;
}

.woocommerce-checkout-review-order-table{
    border-collapse: collapse !important;
}

.woocommerce-checkout-review-order-table thead th{
    color: white !important;
    font-weight: bold !important;
}

.woocommerce-checkout-review-order-table thead th:first-child{
    border-radius: 5px 0 0 0;
}

.woocommerce-checkout-review-order-table thead th:last-child{
    border-radius: 0 5px 0 0;
}


.woocommerce-checkout-review-order-table tr{
    overflow: hidden;
    border-radius: 5px 5px 0 0;

}

.woocommerce-checkout-review-order-table thead th{
    background: var(--purple);
}

.woocommerce-cart-form__contents th{
    color: white !important;
    font-weight: bold !important;
    background: var(--purple) !important;
}

.woocommerce-cart-form__contents th:first-child{
    border-radius: 5px 0 0 0;
}

.woocommerce-cart-form__contents th:last-child{
    border-radius: 0 5px 0 0;
}

.payment_methods .form-check{
    display: flex;
    align-items: center;
}

.payment_methods .form-check input{
    margin-right: 10px;
}

.adresses hr{
    margin: 5px 0;
}

.page-template-default h3{
    font-size: 17px;
    font-weight: bold;
}

.page-template-default h2{
    margin-bottom: 25px;
}

.hide_more_than_6 .wp-google-col:nth-child(7),
.hide_more_than_6 .wp-google-col:nth-child(8),
.hide_more_than_6 .wp-google-col:nth-child(9),
.hide_more_than_6 .wp-google-col:nth-child(10),
.hide_more_than_6 .wp-google-col:nth-child(11),
.hide_more_than_6 .wp-google-col:nth-child(12){
    display: none !important;
}

#product-list article{
    border: 1px solid var(--grey);
    border-radius: 20px;
}

#product-list article a{color: black; text-decoration: none}

#product-list article picture{
    display: block;
    margin: auto;
    text-align: center;
}

#product-list article .price{
    color: #767676;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
}
h1 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin: 0 auto;
    padding: 0.5rem;
    min-height: 3rem; /* EmpÃªche le saut de ligne lors du chargement */
}
#texte-container {
    text-align:center !important;
}
.cj-pagination .page-numbers,
.cj-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.cj-pagination .page-numbers a,
.cj-pagination .page-numbers span,
.cj-pagination .nav-links a,
.cj-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #333;
    background: #fff;
    transition: all 0.15s ease;
}

.cj-pagination .page-numbers a:hover,
.cj-pagination .nav-links a:hover {
    background: #EEEDFE;
    color: #534AB7;
    border-color: #AFA9EC;
}

.cj-pagination .page-numbers .current,
.cj-pagination .nav-links .current {
    background: #534AB7;
    color: #fff !important;
    border-color: #534AB7;
}

.cj-pagination .page-numbers .dots {
    border: none;
    background: none;
    color: #999;
    min-width: 28px;
}