/*
Theme Name: Deconinck
Description: Inside Web boutique - thème
Version: 1.0.0
Author: Inside Web
Author URI: https://www.insideweb.be
*/



/* Barlow Semi Condensed Regular (400) */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/BarlowSemiCondensed-Regular.woff2') format('woff2');
}

/* Barlow Semi Condensed Medium (500) */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/BarlowSemiCondensed-Medium.woff2') format('woff2');
}

/* Barlow Semi Condensed SemiBold (600) */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/BarlowSemiCondensed-SemiBold.woff2') format('woff2');
}

/* Barlow Semi Condensed Bold (700) */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/BarlowSemiCondensed-Bold.woff2') format('woff2');
}

/* Barlow Semi Condensed ExtraBold (800) */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/BarlowSemiCondensed-ExtraBold.woff2') format('woff2');
}


:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #CFB07B;
    --input: #D5D5D5;
    --background: #F0F0F0;
}

body{
    font-family: "Barlow Semi Condensed", sans-serif;	
    margin: 0;
    overflow-y: scroll;
    color:var(--black);
    font-weight:400;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.35px;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

img {
    width: 100%;
}

p:last-child {
    margin-bottom: 0;
}
.searchForm input::placeholder {
  font-style: italic;
	color:#888;
	text-transform: lowercase;
}

.searchForm input::-webkit-input-placeholder {
  font-style: italic;
		color:#888;
	text-transform: lowercase;

}

.searchForm input:-ms-input-placeholder {
  font-style: italic;
		color:#888;
	text-transform: lowercase;

}

.searchForm input::-moz-placeholder {
  font-style: italic;
		color:#888;
	text-transform: lowercase;

}
.button{
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 23px;
    padding: 11px 50px 12px 50px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.35px;
    transition: all 0.5s ease 0s;
    display: block;
    width: fit-content;
    min-width: max-content;
}

.button:hover{
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.hide{
    display: none !important;
}

/*TITLE*/
.header1, .textActu h1{
    font-weight: 500;
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.header2, .textActu h2{
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.header3{
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.75px;
    margin-bottom: 0px;
}
.header4{
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.title1, .textActu h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}
.title2, .textActu h5{
    font-weight:800;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.35px;
    margin-bottom: 0px;
}
.title3{
    font-weight:400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.35px;
    margin-bottom: 0px;
}
.text1, .textActu h4{
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.45px;
    margin-bottom: 0px;
}
.text2, .textActu h6{
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 0px;
}
.text3{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 0px;
}
/*Margin & Padding*/
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.pt-75{
    padding-top: 75px;
}
.pb-75{
    padding-bottom: 75px;
}
.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-35{
    margin-bottom: 35px;
}
.mb-25{
    margin-bottom: 25px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-10{
    margin-bottom: 10px;
}
/*GENERALE*/
.color-white{
    color: var(--white);
}
.color-primary{
    color: var(--primary);
}
.weight-medium{
    font-weight: 500;
}
.weight-extraBold{
    font-weight: 800;
}
.bg-color{
    background: var(--background);
}
.imgBrightness{
    filter: brightness(0.7);
}
.imgCol6{
    aspect-ratio: 17/9;
    object-fit: cover;
}
.absoluteCol{
    position: absolute;
    transform: translate(-50%, 50%);
    bottom: 50%;
    left: 50%;
    z-index: 1;
}
.gap-16{
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}
.iconeAvantages{
    height: 50px;
    width: auto;
}
#account_password_field label {
	z-index:1000;
}
#customer_details label {
	color:#000
}
#customer_details input {
	margin-bottom:5px;
}
#customer_details #select2-billing_country-container {
	margin-bottom:5px;
}
#customer_details h3 {
font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  text-align: left;
  background: #F1F1F1;
}
.woocommerce-shipping-fields {
	margin-top:30px;
}
input,textarea{
    border-radius: 23px;
    color: var(--black);
    background: var(--white);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
    outline: unset;
    border: solid 1px var(--black);
    margin-right: 10px;
    width: 100%;
}
textarea{
    resize: unset;
    min-height: 170px;
}
input:focus,textarea:focus{
    border-color: var(--primary);
}
input::placeholder,
textarea::placeholder {
  text-transform: uppercase;
  opacity: 1;
  color: var(--black);
}
input[type='checkbox']{
  width: auto;
  min-width: auto;
  height: fit-content;
  position: relative;
  cursor: pointer;
  padding: unset;
  margin: unset !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 12px !important;
  height: 12px;
  border: unset;
  display: inline-block !important;
}
input[type="checkbox"] + label{
  cursor: pointer;
  padding-left: 10px;
}
.woocommerce form .form-row .input-checkbox {
	display: inline;
  margin: -2px 20px 0 0;
  text-align: center;
  vertical-align: middle;
}
.woocommerce-info,
.woocommerce-info::before {
  border-top-color: #cfb07b;
	color:#cfb07b;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: #cfb07b;
  color: #fff;
}
input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0;
  left: 0;
  border: 1px solid var(--input);
  background-color: white;
}
input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
}
input[type=checkbox]:checked:before {
  border-color: var(--primary);
}
.formulaireContact .invalidInput{
    margin-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    color: red;
}
.formulaireContact .message .error, .formulaireContact .message .success{
    border-radius: 23px;
    background: var(--white);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-top: 25px;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
    border: solid 1px;
    width: 100%;
}
.formulaireContact .message .error{
    color: red;
}
.formulaireContact .message .success{
    color: green;
}
.bar{
    height: 1px;
    width: 100%;
    background: var(--primary);
}
.dropdown-toggle{
    background: var(--white);
    border: unset;
    outline: unset;
    box-shadow: unset;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-menu li a{
    padding: 6px 6px 6px 6px;
    color: var(--black);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 0px;
}
.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
	padding:0 !important;
}
.woocommerce table.shop_table td {
  line-height: inherit !important;
}
.woocommerce table.shop_table tfoot td {
	font-weight:400 !important;
}
#shipping_method li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

#shipping_method li input[type="radio"] {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

#shipping_method li label {
    flex: 1;
    line-height: 1.5;
    cursor: pointer;
}
.dropdown-menu{
    border-radius: 0px;
    min-width: 100%;
    width: auto;
    transform: translate3d(0px, 27px, 0px);
    border-color: var(--primary);
}
.dropdown-menu li a.active{
    background: unset;
    font-weight: 500;
    color: var(--primary);
}
.dropdown-menu li a:hover{
    background: unset;
    color: var(--primary);
    background-color: var(--bs-dropdown-link-hover-bg);
}
/*FIN GENERALE*/
/* HEADER */

header .topBar, .offcanvas-search-fade .topBar{
    background: var(--black);
    padding-top: 14px;
    padding-bottom: 14px;
    transition: all 0.3s ease-in-out;   
}
header .topBar .search, header .topBar .icones, header .nav .menu-left, header .nav .menu-burger, .offcanvas-search-fade .topBar .search, .offcanvas-search-fade .topBar .icones, .offcanvas-search-fade .topBar .menu-left,header .icone-mobile{
    width: 100px;
}
header .topBar .search i{
    font-size: 17px;
    color: var(--white);
}
header .topBar .search i:hover{
    color: var(--primary);
}
header .topBar .icones{
    gap: 15px;      
}
header .topBar .icones i{
    font-size: 22px;
    color: var(--white); 
}
header .topBar .icones i:hover{
    color: var(--primary);
}
header .navbar-brand img, .offcanvas-search-fade .navbar-brand img{
    width: 140px;
    transition: all 0.3s ease-in-out;
}
header .navMenu{
    background: var(--white);
}
header .menu{
    gap: 35px;
}
header .menu .menu-link{
    text-transform: uppercase;
    font-weight: 700;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
header .menu .menu-link:hover{
    color: var(--primary);
}
header .menu-burger button{
    padding: unset;
    border: unset;
    background: unset;
    font-size: 30px;
    margin-right: 22px;
}
header .menu-burger button:hover{
    color: var(--primary);
}
header .menu-burger .language{
    margin-left: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
header .menu-burger .barMenu{
    height: 30px;
    width: 1px;
    background: var(--primary);
}
header .menu-burger .language:hover{
    color: var(--primary);
}
.offcanvas-menu{
    background: var(--black);
    color: var(--white);
    min-width: 40vw;
    max-width: 600px;
}
.offcanvas-menu .offcanvas-body{
    padding: 40px 100px;
}
.offcanvas-menu .offcanvas-body .closeMenu{
    color: var(--white);
    font-size: 30px;
    margin-bottom: 40px;
    background: transparent;
    outline: unset;
    box-shadow: unset;
    border: unset;
    padding: 0px 2px;
}
.offcanvas-menu .offcanvas-body .closeMenu:hover{
    color: var(--primary);
}
.offcanvas-menu .offcanvas-body .nav-link{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.35px;
    line-height: 17px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
    padding: 5px 5px 5px 0px;
}
.offcanvas-menu .offcanvas-body .nav-link:hover{
    color: var(--primary);
}
.offcanvas-menu .offcanvas-body .logoMenu{
    width: 180px;
    display: block;
}
.menuHover{
    height: calc(100vh - 150px);
    border-top: solid 1px var(--background);
    padding-top: 25px;
    position: absolute;
    z-index: 2;
    background: var(--white);
    min-height: 350px;
    overflow: hidden;
    left: 0;
    padding-bottom: 45px;
    height: min-content !important;
    display: flex;
}
.full-bg{
  position: absolute;
  top: -25px;
  right: 0;
  width: 200vw;
  height: 200vh;
  background-color: var(--background);
  z-index: -1;
}
.menuHover .linkHover{
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 16px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 30px;
    display: block;
    width: fit-content;
}
.menuHover .linkHover i{
    color: var(--black);
    margin-left: 10px;
}
.linksMenuHover{
    border-right: solid 1px var(--primary);
}
.linkMenuHover{
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
    display: block;
}
.featuredMenu img{
    aspect-ratio: 3/4;
    object-fit: cover;
}
.featuredMenu .button{
    position: absolute !important;
    bottom: 0;
    right: 50%;
    transform: translate(50%,20.8px);
    width: max-content !important;
}
.offcanvas-cart {
    /*position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;*/
    display: flex;
    flex-direction: column;
}
.open-cart-btn {
    cursor: pointer;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    float: right;
}
header .icones .lienPanier{
    cursor: pointer;
}
header .count-panier{
    background: var(--primary);
    border-radius: 50%;
    color: var(--black);
    position: absolute;
    width: 15px;
    height: 15px;
    top: -2.5px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
}
header .icones .lienPanier:hover .count-panier{
    color: var(--white);
}
.offcanvas-cart .widget_shopping_cart_content{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.offcanvas-cart .woocommerce-mini-cart{
    list-style: none;
    padding-left: 0px;
    height: calc(100vh - 305px);
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 20px !important;
}
.offcanvas-cart .woocommerce-mini-cart img{
    width: 75px !important;
    aspect-ratio: 1;
    height: auto !important; 
}
.offcanvas-cart .woocommerce-mini-cart li{
    display: flex;
    align-items: center;
    padding-bottom: 20px !important;
    padding-top: 20px !important;
    border-bottom: solid 1px var(--primary);
}
.offcanvas-cart .woocommerce-mini-cart__total{
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 0 20px;
}
.offcanvas-cart .woocommerce-mini-cart__buttons{
    padding: 0 20px 20px 20px;
}
.offcanvas-cart .woocommerce-mini-cart__total .woocommerce-Price-amount{
    color: var(--primary);
    font-weight: 500;
}
.offcanvas-cart .woocommerce-mini-cart__buttons a{
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.offcanvas-cart .woocommerce-mini-cart-item{
    position: relative;
}
.offcanvas-cart .remove_from_cart_button{
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 12px !important;
}
.offcanvas-cart .cart-title{
    font-weight: 500;
}
.offcanvas-cart .quantity .amount{
    font-weight: 500;
    color: var(--primary);
}
.offcanvas-cart .offcanvas-cart-header{
    padding: 20px;
    border-bottom: solid 1px var(--background);
}
.offcanvas-cart .offcanvas-cart-header i{
    font-size: 16px;
}
.offcanvas-cart .offcanvas-cart-header .close-cart:hover i{
    color: var(--primary);
}
.offcanvas-cart .minicart-link{
    display: flex !important;
    align-items: center;
}
.offcanvas-cart .quantity-add{
    width: fit-content;
}

#mini-cart-loading-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.headerSpace{
    height: 151px;
}
.headerNav.active .navbar-brand img{
    width: 100px;
    transition: all 0.3s ease-in-out;
}
.headerNav.active .topbar{
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.headerNav.active .menu .menu-link{
    height: 50px;
    transition: all 0.3s ease-in-out;
}
.headerNav.active .menuHover{
    height: calc(100vh - 122px);
}

.offcanvas-search-fade {
  transition: opacity 0.1s ease-in-out;
}
.offcanvas-search-fade.show {
  opacity: 1;
}
.offcanvas-search-fade:not(.show) {
  opacity: 0;
}
#offcanvas-search{
    min-height: 100vh;
    width: 100%;
    background: var(--background);
    overflow-y: scroll;
}
#offcanvas-search .closemenu{
    font-size: 40px;
    cursor: pointer;
}
#offcanvas-search .closemenu:hover{
    color: var(--primary);
}
.offcanvas-search-fade .topBar{
    background: var(--background);
}
.searchForm{
    max-width: 400px;
    margin: auto;
}
.searchForm .button{
    width: 100% !important;
    font-size: 16px;
    line-height: 20px;
}
.searchForm input{
    border: unset;
    font-size: 16px;
    line-height: 20px;
}
.searchOff{
    padding-bottom: 90px;
}
.wpml-ls-legacy-dropdown-click{
    width: fit-content;
}
.wpml-ls-legacy-dropdown-click a{
    border: unset;
    background: var(--white) !important;
    color: var(--black);
    padding: 5px !important;
}
.wpml-ls-legacy-dropdown-click a:hover{
    background: var(--white);
    color: var(--primary) !important;
}
.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after{
    content: unset;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu{
    border-top : solid 1px var(--primary);
}

header .icone-mobile{
    display: none;
}
header .icone-mobile button{
    padding: unset;
    border: unset;
    background: unset;
    font-size: 25px;
    color: var(--white);
}
header .icone-mobile .wpml-ls-legacy-dropdown-click a{
    background: var(--black) !important;
    color: var(--white);
}
header .icone-mobile .wpml-ls-legacy-dropdown-click a:hover{
    background: var(--black);
    color: var(--primary) !important;
}
header .icone-mobile.menu-burger button {
    margin-right: 10px;
}
header .icone-mobile.menu-burger .language{
    margin-left: 5px;
}
header .icone-mobile.menu-burger .barMenu{
    height: 25px;
}

#offcanvasMobile .mm-back { background: none; border: 0; font-size: 16px; color:var(--white); padding-left: 0px;}
#offcanvasMobile .mm-panel { display: none; }
#offcanvasMobile .mm-panel.mm-active { display: block; animation: mm-slide .18s ease; }
@keyframes mm-slide { from { opacity:.0; transform: translateX(8px);} to { opacity:1; transform:none; } }
#offcanvasMobile .mm-list li { border-bottom: 1px solid var(--white); }
#offcanvasMobile .mm-list a { display:block; padding:10px 0px; text-decoration:none; color:inherit; }
#offcanvasMobile .mm-list .disabled span { display:block; padding:.9rem .25rem; color:#aaa; }
#offcanvasMobile .mm-secondary-link { display:block; padding:5px 5px 5px 0px; margin-bottom:5px; text-decoration:none; color:var(--white)}
#offcanvasMobile .mm-panel-head{
  display:flex; align-items:center; gap:.5rem;
  border-bottom:1px solid #eee; padding-bottom:.5rem;
}
#offcanvasMobile .mm-panel-title{ font-weight:600; font-size:1.05rem; }
#offcanvasMobile .navbar-nav{
    margin-top: 5px;
}

.offcanvas-menu-mobile{
    background: var(--black);
    color: var(--white);
    max-width: 100%;
}
.offcanvas-menu-mobile .offcanvas-body{
    padding: 20px;
}
.offcanvas-menu-mobile .offcanvas-body .closeMenu{
    color: var(--white);
    font-size: 25px;
    background: transparent;
    outline: unset;
    box-shadow: unset;
    border: unset;
    padding: 0px 2px;
}
.offcanvas-menu-mobile .offcanvas-body .closeMenu:hover{
    color: var(--primary);
}
.offcanvas-menu-mobile .offcanvas-body .nav-link{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.35px;
    line-height: 17px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 5px;
    padding: 5px 5px 5px 0px;
}
.offcanvas-menu-mobile .offcanvas-body .nav-link:hover{
    color: var(--primary);
}
.offcanvas-menu-mobile .offcanvas-body .logoMenu{
    width: 160px;
    display: block;
}
/* FIN HEADER */

/* FOOTER */
footer .footer{
    padding-top: 50px;
    padding-bottom: 20px;
    background: var(--black);
    color: var(--white);
}
footer .footer a{
    color: var(--white);
}
footer .footer a:hover{
    color: var(--primary);
}
footer .footer .menuFooter{
    gap: 5px;
}
footer .footer .menuFooter a{
    width: fit-content;
}
footer .footer .logoFooter img{
    width: 220px;
}
footer .footer .newsletter input{
    border-radius: 23px;
    color: var(--black);
    background: var(--white);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 0px;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
    outline: unset;
    border: unset;
    margin-right: 10px;
    width: 100%;
}
footer .footer .newsletter button{
    border: solid 1px var(--white) !important;
    padding: 10.7px 27px 10.7px 27px;  
}
footer .footer .newsletter button:hover{
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}
footer .footer .payments{
    gap: 5px;
}
footer .footer .payments img{
    width: 45px;
    background: var(--white);
}
footer .footer .copyright p a{
    font-weight: 700;
}
.socialNetworks{
    gap: 15px;
}
.socialNetworks a i{
    font-size: 20px;
    color: var(--primary);
}
.socialNetworks a i:hover{
    color: var(--white);
}

#sib-container{
    background: unset;
    margin: unset;
    padding: unset;
    display: block;
    width: auto;
}
/* FIN FOOTER */

/* CONTACT */

/* FIN CONTACT */

/* PAGE 404 */
#404product {
	margin: 70px 0 
}
#page404 {
margin-top: 100px;
}
#message404 {
text-align:center;
}

/* FIN PAGE 404 */

/* WOOCOMMERCE */
#shop .sortProducts.mb-10 {
	margin-bottom: 17px;
}
.woocommerce-account .woocommerce{
    display: flex;
    flex-wrap: wrap;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
    background-color: var(--primary);
    padding: 20px;
    width: 33%;
    min-width: 300px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul{
    list-style: none;
    padding-left: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li{
    font-size: 21px;
    color: var(--secondary);
    line-height: 30px;
    border-bottom: 1px solid var(--black);
    padding: 10px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a{
    transition: all 0.3s ease-in-out;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover{
    color: var(--white);
}

.woocommerce-account .woocommerce-MyAccount-content{
    padding: 20px;
    width: 66%;
}

.woocommerce .button, .woocommerce-account .addresses .title .edit, .btn-validation-edit-account{
    background: var(--black) !important;
    border: 1px solid var(--black) !important;
    border-radius: 23px !important;
    padding: 11px 50px 12px 50px !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 17px !important;
    letter-spacing: 0.35px;
    transition: all 0.5s ease 0s;
    display: block !important;
    width: fit-content;
    height: fit-content;
}

.btnClear{
    background: var(--black) !important;
    border: 1px solid var(--black) !important;
    border-radius: 999px !important;
    padding: .25rem .5rem !important;
    color: var(--white) !important;
    font-weight: 400 !important;
    font-size: .875rem !important;
    line-height: 1 !important;
    letter-spacing: 0.35px;
    transition: all 0.5s ease 0s;
    width: fit-content;
    height: fit-content;
}

.woocommerce .button:hover, .woocommerce-account .addresses .title .edit:hover, .btn-validation-edit-account:hover, .btnClear:hover{
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--white) !important;
}
.woocommerce-Address-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-Address-title .flex-adress{
    width: 100%;
}

address{
    border: 1px solid var(--primary);
    padding: 2%;
    margin: 2% 0;
}

legend{
    margin-top: 20px;
}

.woocommerce table.shop_table th{
    color: var(--black);
}

.woocommerce-checkout .woocommerce-checkout .col-1, .woocommerce-checkout .woocommerce-checkout .col-2, .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last{
    width: 100% !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout .wc_payment_methods, .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table, .woocommerce-order-details .woocommerce-table{
    width: 100%;
    padding: 30px;
}

.lienPanier{
    display: flex;
    align-items: center;
    gap: 4px;
}

.firstImage{
    aspect-ratio: 1;
    object-fit: cover;
}
.woocommerce table.shop_table{
    border: unset;
    border-spacing: 0px 10px;
}
.woocommerce table.shop_table th{
    font-weight: 800 !important;
    line-height: 17px !important;
}
.woocommerce-cart-form__cart-item.cart_item{
    background: var(--background);
    border: unset;
    margin-bottom: 10px;
}
.woocommerce-cart .quantity-wrapper{
    width: fit-content;
    margin-right: 0px;
}
.woocommerce-cart .product-thumbnail img{
    min-width: 100px;
}
.woocommerce-cart .cart-collaterals{
    background: var(--background);
}
.woocommerce button[name="update_cart"] {
    display: none !important;
}
.woocommerce a.remove{
    color: var(--black) !important;
}
.woocommerce a.remove:hover{
    color: var(--primary) !important;
    background: unset;
}
.woocommerce-cart table.cart td{
    border: unset;
}
.woocommerce-cart .woocommerce-cart-form .actions{
    padding: unset;
    padding-top: 25px;
}
.woocommerce-page table.cart td.actions .input-text{
    width: 200px;
    padding: 12px 25px !important;
    border: solid 1px var(--black) !important;
}
.woocommerce-notices-wrapper .woocommerce-message, .woocommerce-notices-wrapper .woocommerce-info{
    border: unset;
    background: var(--background);
    color: var(--black);
    font-weight: 500;
}
.cart-collaterals .cart_totals .cart-subtotal td, .cart-collaterals .cart_totals .order-total td{
    text-align: end;
}
.cart-collaterals .cart_totals .order-total td{
    display: flex;
    flex-direction: column;
    font-weight: 400 !important;
}
.woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals tr td{
    border-color: var(--primary);
}
.woocommerce-cart .cart-collaterals .cart_totals table .shipping-methods-row td{
    border: unset;
    padding-top: 0px;
}
.cart-collaterals .wc-proceed-to-checkout{
    border-top: solid 1px var(--primary);
}
.shop_table.woocommerce-checkout-review-order-table{
    padding: 0px;
    margin-bottom: 0px;
}
.woocommerce-checkout .commandeCol{
    background: var(--background);
    padding: 30px;
}
.wc_payment_methods li input{
    width: auto;
}
.wc_payment_method.payment_method_ppcp-gateway label{
    display: inline;
}
.wc_payment_method.payment_method_ppcp-gateway img{
    width: 20px;
}
/* ACCORDION */

/* accordion-style-one */
.accordion-style-one .accordion .card {
    margin-top: 8px;
    border: 1px solid var(--gray-4) !important;
    border-radius: 4px;
  }
  .accordion-style-one .accordion .card .card-header {
    padding: 0;
    background: none;
  }
  .accordion-style-one .accordion .card .card-header a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    position: relative;
    color: var(--primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: 1px solid var(--primary);
    margin: -1px;
    border-radius: 4px;
    padding: 13px 16px;
    z-index: 5;
  }
  .accordion-style-one .accordion .card .card-header a::before {
    position: absolute;
    content: "\ea5e";
    font-family: lineicons !important;
    right: 16px;
    top: 14px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .accordion-style-one .accordion .card .card-header a.collapsed {
    color: var(--black);
    border-color: var(--gray-4);
  }
  .accordion-style-one .accordion .card .card-header a.collapsed::before {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  .accordion-style-one .accordion .card .card-body {
    padding: 16px;
  }
  .accordion-style-one .accordion .card .card-body .text {
    color: var(--dark-3);
  }

.productInCart ul{
    padding: 0;
}

.liCartSlider{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.liCartSlider img{
    width: 100px;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
}
/* FIN ACCORDION */

/* Forcer la ligne expédition à occuper toute la largeur */


.woocommerce ul#shipping_method li input{
    width: auto;
}

.woocommerce-order-received .woocommerce-order address{
    border: solid 1px var(--primary);
    padding: 20px 10px;
}
.woocommerce-order-received.woocommerce-checkout .woocommerce-order .col-1, .woocommerce-order-received.woocommerce-checkout .woocommerce-order .col-2{
    width: 48% !important;
}
.woocommerce-order-received.woocommerce-checkout h2{
    color: var(--primary);
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.75px;
    margin-bottom: 0px;
}

/* FIN WOOCOMMERCE */

/*HOME*/
.coverHome .imgCoverHome{
    height: calc(100vh - 150px);
    min-height: 350px;
    object-fit: cover;
}
.coverHome .imgMobile{
    display: none;
}
.coverHome .titleCoverHome{
    position: absolute;
    transform: translate(-50%, 50%);
    bottom: 60%;
    left: 50%;
    z-index: 1;
}
.offresHome .imgOffreHome{
    aspect-ratio: 3/2;
    object-fit: cover;
}
.offresHome .imgLargeOffreHome{
    aspect-ratio: 32/10;
    object-fit: cover;
}
.offresHome .textOffreHome, .selectionProduct{
    position: absolute;
    bottom: 0;
    padding: 35px 40px;
    z-index: 1;
}
.actualiteHome{
    background: var(--black);
}
.actualiteHome .button{
    border: solid 1px var(--white);
}
.actualiteHome .button:hover{
    border: solid 1px var(--primary);
}
.since1-home,
.since2-home {
  position: absolute;
  bottom: 20px;
  white-space: nowrap;
  font-weight: 200;
}
.since1-home{
    right: 50%;
    margin-left: 5px;
}
.since2-home{
    left: 50%;
    margin-left: 5px;
}

/* On crée un conteneur pour centrer */
.since-wrapper {
  position: absolute;
  bottom: 20px;
  left: 51%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px; /* espace entre les deux */
}



/*FIN HOME*/

/*MAGASINS*/
.coverMagasins .imgCoverMagasins{
    object-fit: cover;
    height: 40vh;
    min-height: 200px;
}
.coverMagasins .titleCoverMagasins{
    position: absolute;
    transform: translate(-50%, 50%);
    bottom: 50%;
    left: 50%;
    z-index: 1;
}
.maisonMagasins .imgMaisonMagasins{
    object-fit: cover;
    aspect-ratio: 4/3;
    min-height: 450px;
}
.magasinsMagasins .titleMagasinMagasins{
    position: absolute;
    bottom: 0;
    padding: 60px;
    z-index: 1;
}
.magasinsMagasins .imgMagasinMagasins{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.avantagesMagasins .avantageMagasins{
    border-right: solid 1px var(--primary);
    padding-top: 25px;
    padding-bottom: 25px;
}
.avantagesMagasins .avantageMagasins:last-child{
    border-right: unset;
}
/*FIN MAGASINS*/
/*MAGASIN*/
.informationsMagasin .horaireMagasin{
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: solid 1px var(--primary);
}
.mapMagasin iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 17/9;
    filter: grayscale(100%);
}
/*FIN MAGASIN*/
.noUi-horizontal .noUi-handle{
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    right: 0 !important;
}
.noUi-horizontal{
    height: 5px !important;
}
.flexFiltre{
    display: flex;
    align-items: center;
}
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(0,0,0,.15);
  background: #f8f9fa;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-size: .875rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease-in-out, border-color .15s ease-in-out;
}
.active-filter-chip:hover {
  background: #fff;
  border-color: rgba(0,0,0,.25);
}
.active-filter-chip .chip-x {
  font-weight: 600;
  line-height: 1;
}

/*CONTACT*/
.formulaireContact{
    --bs-gutter-x: 5px;
}
/*FIN CONTACT*/
/*BLOG*/
.actuBlog img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.blog .linkBlog{
    font-weight: 600;
}
.blog .linkBlog i{
    margin-left: 15px;
}
.blog .gap-16{
    --bs-gutter-y: 50px;
}
/*FIN BLOG*/
/*ACTUALITE*/
.imgActu{
    aspect-ratio: 32/10;
    object-fit: cover;
}
.textActu P, .textActu h1, .textActu h2, .textActu h3, .textActu h4, .textActu h5, .textActu h6{
    margin-bottom: 25px;
}
/*FIN ACTUALITE*/
/*FAQ*/
.faq .accordion-button{
  height: auto;
  padding: 16px 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.35px;
  min-width: auto;
  box-shadow: unset;
  color: var(--black);
}
.faq .accordion-button::after {
    content: '+';
    font-size: 36px;
    transform: none;
    background: none;
    height: auto;
    width: auto;
    font-weight: 400;
    margin-bottom: 2px;
}

.faq .accordion-button:not(.collapsed)::after {
    content: '−';
}
.faq .accordion-item, .faq div.accordion-item:last-child{
  border-bottom: solid 1px var(--primary) !important;
}
.faq div.accordion-item:first-child{
  border-top: solid 1px var(--primary) !important;
}
.faq .accordion-button:not(.collapsed){
  background: var(--white);
}
.faq .accordion-body{
  padding: 0px 0px 16px 0px;
}
/*FIN FAQ*/
/*SHOP*/
.coverShop .imgCoverShop{
    object-fit: cover;
    height: 40vh;
    min-height: 200px;
}
.coverShop .titleCoverShop{
    position: absolute;
    transform: translate(-50%, 50%);
    bottom: 50%;
    left: 50%;
    z-index: 1;
}
.products .accordion-button{
  height: auto;
  padding: 20px 0px 16px 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.5px;
  min-width: auto;
  box-shadow: unset;
  color: var(--black);
}
.products .accordion-button::after {
    content: '+';
    font-size: 36px;
    transform: none;
    background: none;
    height: auto;
    width: auto;
    font-weight: 400;
    margin-bottom: 2px;
}
.products .accordion-button:not(.collapsed)::after {
    content: '−';
}
.products .accordion-item, .products div.accordion-item:last-child{
  border-bottom: solid 1px var(--primary) !important;
}
.products .accordion-button:not(.collapsed){
  background: var(--white);
}
.products .accordion-body{
  padding: 10px 0px 16px 0px;
}
.products .sortProducts{
    margin-top: 25px;
}

.products .gap-16{
    --bs-gutter-y: 25px;
}
.products .product .imgProduct {
    aspect-ratio: 1;
    background: var(--background);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.home .products .product .imgProduct{
	
  padding: 20px;
}
.products .product a{  
    width: fit-content;
    display: block;
}
.products .product .imgProduct:hover{
    color: var(--black);
}
.products .product .imgProduct:hover + a{
    color: var(--primary);
}
.products .product .imgProduct img{
    padding: 0px 25px 25px 25px;
    aspect-ratio: 1;
    object-fit: contain;
}
.products .product .infosImgProduct{
    padding: 10px 10px 0px 10px;
    height: 28px;
}
.products .product .infosImgProduct span{
    font-weight: 800;
    margin-left: 2.5px;
}
.products .product .infosImgProduct i{
    font-size: 17px;
    cursor: pointer;
}
.products .product .infosImgProduct i:hover, .products .product .infosImgProduct i.fa-solid{
    color: var(--primary);
}
.products .favorisProduct{
    margin-left: auto;
}
.btn-show-more{
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.3px;
    color: var(--black);
    margin-top: 18px;
    border: unset;
    background: unset;
    padding: 0px;
}
.products .taxonomy-list.limited{
    max-height: 150px;
    padding-right: 5px;
    overflow-y: auto;
    margin-bottom: 20px;
    position: relative;
}
.taxonomy-item.is-hidden { display: none; }

.taxonomy-list.is-empty::after {
  content: attr(data-empty-text);
  position: absolute;
  inset: 0;              /* occupe tout le conteneur */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 12px;
  color: #777;
  font-style: italic;
  pointer-events: none;  /* ne bloque pas le scroll */
  background: linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0.92));
  /* si ton bg n'est pas blanc, remplace par var(--bs-accordion-bg) avec une opacité */
}

.taxonomy-list.limited::-webkit-scrollbar { width: 6px; }
.taxonomy-list.limited::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.taxonomy-list.limited::-webkit-scrollbar-thumb:hover { background: #999; }
/* barre de recherche collante en haut de l'accordéon */
.taxonomy-searchbar {
  position: sticky;
  top: 0;
  background: #fff;          /* ou var(--bs-accordion-bg) si Bootstrap */
  padding: 6px 0 8px;
  z-index: 2;
}

.taxonomy-search-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.noUi-connect{
    background: var(--primary) !important;
}
/*FIN SHOP*/
/*PRODUCT*/
.breadcrumbProduct{
    padding-top: 20px;
    padding-bottom: 50px;
}
.imgSingleProduct{
    aspect-ratio: 1;
    object-fit: contain;
}
.favorisSingleProduct{
    position: absolute;
    top: 0;
    right: 0;
}
.favorisSingleProduct i{
    font-size: 20px ;
    cursor: pointer;
}
.favorisSingleProduct i:hover, .favorisSingleProduct i.fa-solid{
    color: var(--primary);
}
.entry-summary .price{
    font-size: 20px;
    letter-spacing: 0.25px;
    line-height: 25px;
    font-weight: 800;
    margin-bottom: 35px;
}
.entry-summary form.cart{
    display: flex;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.quantity-wrapper, .quantity-wrapper-mini-cart {
    display: flex;
    align-items: center;
    border-radius: 23px;
    border: solid 1px var(--black);
    margin-right: 10px;
}
.qty-btn {
    width: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 0;
    height: 40px;
    border: unset;
    background: var(--white);
    font-size: 22px;
    padding-bottom: 3px;
}
.qty-btn:hover{
    color: var(--primary);
}
.qty-minus{
    border-radius: 23px 0px 0px 23px;
}
.qty-plus{
    border-radius: 0px 23px 23px 0px;
}
.quantity input.qty {
    width: 30px !important;
    padding: 0px;
    margin-bottom: 0px;
    font-weight: 900;
    border-radius: unset;
    border: unset;
    height: 40px; 
    margin-right: 0px;
}
.notationsProduct{
    padding-top: 30px;
    padding-bottom: 30px;
}
.notationsProduct .notationProduct span{
    font-weight: 800;
    margin-left: 10px;
}
.notationsProduct .notationProduct i{
    color: #EAB70C;
    margin-right: 10px;
    font-size: 18px;
}
.profilProduct {
    background-color: rgba(240, 240, 240, 0.4);
}
.profilProduct .barProfilCont {
    margin-bottom: 5px;
}
.profilProduct .labelProfil{
    width: 60px;
}
.profilProduct .barProfil {
    margin: 0 10px;
}
.profilProduct .stepProfil {
    width: 20%;
    height: 5px;
    background-color: var(--background);
}
.profilProduct .stepProfil.active {
    background-color: var(--primary);
}
#navProduct{
    border-bottom: solid 1px var(--primary);
}
#navProduct .tabLink{
    padding: 25px 30px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
}
#navProduct .tabLink.active:after{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 7.5px);
}
.tab-content{
    margin-top: 35px;
}
.infosProduct .infoProduct{
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: solid 1px var(--primary);
}
.quantity-wrapper-mini-cart{
    width: fit-content;
    margin-top: 5px;
    margin-right: 0px;
}
.quantity-wrapper-mini-cart .qty-btn, .quantity-wrapper-mini-cart input.qty{
    height: 25px;
    width: 25px !important;
    text-align: center;
}
.count-panier:empty {
    display: none;
}

.page-numbers{
    display: flex;
    margin-top: 20px;
}

.page-numbers li{
    margin-right: 10px;
}

.flexCopyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.textEndFooter{
    text-align: end;
}

.modalPrixDemande .modal-dialog{
    max-width: 750px;
    width: 90%;
}
.modalPrixDemande .modal-content{
    border-radius: 0px;
    border: unset;
}

/* Modal Newsletter */
.modalNewsletter .modal-dialog{
    max-width: 750px;
    width: 90%;
}
.modalNewsletter .modal-content{
    border-radius: 0px;
    border: unset;
    padding: 80px 30px;
    background: var(--background);
    border: solid 15px var(--white);
}
.modalNewsletter .modal-header{
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}
.modalNewsletter .modal-body{
    padding: 0;
}
.modalNewsletter .btn-close{
    opacity: 1;
    font-size: 20px;
    box-shadow: unset;
}
.modalNewsletter .titreFooter{
    color: var(--black);
}
.modalNewsletter .newsletter-form{
    max-width: 600px;
    margin: 0 auto;
}
.modalNewsletter .newsletter-form form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.modalNewsletter .newsletter-form input{
    border-radius: 23px;
    color: var(--black);
    background: var(--white);
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.3px;
    font-weight: 500;
    padding: 15px 25px;
    outline: unset;
    border: 1px solid var(--black);
    width: 100%;
}
.modalNewsletter .newsletter-form button{
    border-radius: 23px;
    background: var(--black);
    color: var(--white);
    border: solid 1px var(--black);
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: auto;
}
.modalNewsletter .newsletter-form button:hover{
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}
.modalNewsletter .newsletterImage{
    max-width: 80px;
    display: block;
}

.sib-form{
    font-size: inherit;
    font-family: inherit;
    padding: unset;
}
.sib-form-message-panel {
    padding: 10px 15px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

.sib-form-message-panel--success {
    border: 1px solid #155724;
    color: #155724;
}

.sib-form-message-panel--error {
    border: 1px solid #721c24;
    color: #721c24;
}

.sib-form-message-panel__text {
    margin: 0;
    font-weight: 500;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sib-loader-icon {
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.woocommerce-MyAccount-orders{
    width: 100%;
}

.woocommerce-orders-table__row .button{
    margin-bottom: 10px;
}
#order_comments_field label{
    top: 0;
}
/*FIN PRODUCT*/
@media only screen and (max-width: 1400px){ 

}
@media only screen and (max-width: 1200px){ 

}
@media only screen and (max-width: 992px){ 
    .colorWhiteMobile{
        color: var(--white);
    }
    .mb-35{
        margin-bottom: 20px;
    }
    .products .product .imgProduct{
        /* height: 380px; */
        object-fit: contain;
    }
    .coverHome .imgCoverHome{
        height: 60vh;
    }
    .coverHome .imgMobile{
        display: flex;
    }
    .coverHome .imgDesktop{
        display: none;
    }
    .pb-50{
        padding-bottom: 25px;
    }
    .pt-50{
        padding-top: 25px;
    }
    .pt-75{
        padding-top: 50px;
    }
    .pb-100{
        padding-bottom: 75px;
    }
    .mb-25{
        margin-bottom: 15px;
    }
    .mb-50{
        margin-bottom: 30px;
    }
    .imgCol6{
        aspect-ratio: 1;
        filter: brightness(0.7);
    }
    .flexCopyright{
        flex-direction: column;
        align-items: start;
    }
    .mb5Mobile{
        margin-bottom: 5px;
    }
    .mb15Mobile{
        margin-bottom: 15px;
    }
    .pbt40Mobile{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .mt10Mobile{
        margin-top: 10px;
    }
    .titreFooter{
        font-size: 20px;
        line-height: 27px;
    }
    footer .footer{
        padding-top: 30px;
    }
    footer .footer .logoFooter img{
        width: 130px;
    }
    .textEndFooter{
        text-align: start;
    }
    .flexDirectionMobile{
        display: flex;
        flex-direction: column;
    }
    .marginMobileTitre{
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .absoluteColMobile{
        position: unset;
        transform: unset;
    }
    .magasinsMagasins .titleMagasinMagasins{
        padding: 35px;
    }
    .woocommerce-Address-title .flex-adress{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .woocommerce-error, .woocommerce-info, .woocommerce-message{
        display: flex;
        flex-direction: column;
    }
    .woocommerce-error a, .woocommerce-info a, .woocommerce-message a{
        margin-top: 10px !important;
    }
    .entry-summary form.cart{
        margin-bottom: 30px;
    }
    .breadcrumbProduct{
        padding-bottom: 20px;
    }
    .woocommerce-page table.cart td.actions .coupon{
        display: flex;
        flex-direction: column;
    }
    .woocommerce-page table.cart td.actions .coupon #coupon_code{
        margin-bottom: 20px;
    }
    .woocommerce-cart .woocommerce-cart-form .actions{
        padding-top: 0 !important;
        padding-left: 12px;
    }
    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td{
        text-align: left !important;
    }
    .row-special{
        --bs-gutter-y: 1.5rem;
    }
    .header1, .textActu h1{
        font-size: 34px;
        line-height: 36px;
    }
    .paddingZeroMobile{
        padding: 0;
    }
    .w100Mobile{
        width: 100%;
    }
    .flexCenterMobile{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #home .absoluteCol{
        position: relative;
        bottom: unset;
        left: unset;
        transform: none;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .magasinsHome{
        display: flex;
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 768px) {
    .headerSpace{
        height: 81.75px;
    }
    header .navbar-brand img, .offcanvas-search-fade .navbar-brand img{
        width: 120px;
    }
    header .icone-desktop, .navMenu{
        display: none !important;
    }
    header .icone-mobile{
        display: flex;
        align-items: center;
    }
    header .topBar .icones i{
        font-size: 18px;
    }
    header .icone-mobile button{
        font-size: 22px;
    }
    header .icone-mobile.menu-burger .barMenu{
        height: 22px;
    }
    .icones-compte-mobile{
        gap: 10px;
        margin-top: 10px;
    }
    .icones-compte-mobile i{
        font-size: 22px;
        color: var(--white);
    }
    #navProduct{
        flex-direction: column;
        border-bottom: unset;
    }
    #navProduct .tabLink{
        border-bottom: solid 1px var(--primary);
        text-align: center;
        padding: 15px 30px;
    }
    .woocommerce-cart-form__cart-item .product-quantity{
        display: flex;
        align-items: center;
    }
    .since-home {
        position: absolute;
        bottom: 40px;            
        right: 50%;               
        transform: translateX(50%) scale(2);
        animation: subtitleMove 2s ease-in-out forwards; 
        animation-delay: 0.5s;
        font-weight: 200;
        z-index: 2;
        opacity: 0;
    }

    @keyframes subtitleMove {
    0% {
        opacity: 0;
        transform: translateX(50%) scale(2);
    }
    50% {
        opacity: 1;
        transform: translateX(20%) scale(1.5);
    }
    100% {
        opacity: 1;
        right: 20px;
        bottom: 20px;
        transform: translateX(0) scale(1);
    }
    }
}
@media only screen and (max-width: 576px) { 

}
img.lazyload {
  filter: blur(10px);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
img.lazyload.loaded {
  filter: blur(0);
  opacity: 1;
}
/* ========================================
   CHATBOT CUSTOM - Inside Web
   ======================================== */

/* Bouton flottant */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #cfb07b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Message de notification du chatbot */
.chat-notification-message {
    position: fixed;
    right: 48px;
    bottom: 20px;
    background: var(--white);
    color: var(--black);
    padding: 5px 30px;
    border-radius: 20px 0px 0px 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: slideInRight 0.8s ease;
    height: 30px;
    z-index: 999;
}

.chat-notification-message.hide {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fenêtre du chatbot */
.chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    overflow: hidden;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* En-tête du chat */
.chat-header {
  background: linear-gradient(135deg, #cfb07b78 0%, #cfb07b 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chat-header-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-header-info p {
    font-size: 13px;
    opacity: 0.9;
}

/* Bouton de fermeture dans le header */
.chat-close-btn {
    color: var(--primary);
    font-size: 15px;
    margin-left: auto;
    background: var(--white);
    outline: unset;
    box-shadow: unset;
    border: unset;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.chat-close-btn:hover {
    color: var(--black);
}

/* Corps du chat */
.chat-body {
    padding: 25px;
    min-height: 200px;
}

.chat-message {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton CTA */
.chat-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #000;
  color: white;
  text-align: center;
  border: none;
  border-radius: 23px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.chat-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Animation des icônes chat/fermer */
.chat-button svg {
    transition: all 0.3s ease;
}

.chat-button.active svg.chat-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.chat-button svg.close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.chat-button.active svg.close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}
#chatNotificationMessage h3.title1 {
font-size:16px;
	line-height: 16px;
}
/* Badge de notification */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border: 3px solid #f5f5f5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .chat-window {
        left: 15px;
        right: 15px;
        width: calc(100vw - 30px);
        bottom: 100px;
    }

    .chat-button {
        left: 20px;
        bottom: 20px;
    }
    
    /* Modal Newsletter Mobile */
    .modalNewsletter .modal-content{
        padding: 30px 20px;
    }
    .modalNewsletter .modal-header{
        right: 10px;
        top: 10px;
    }
    .modalNewsletter .newsletter-form input,
    .modalNewsletter .newsletter-form button{
        padding: 12px 15px;
        font-size: 14px;
    }
}

.price-regular {
    text-decoration: line-through;
    opacity: 0.5;
    font-weight: 400;
}
/* ============================================
   SKELETON LOADERS - Inside Web
   ============================================ */

.skeleton-product {
    animation: skeleton-fade-in 0.2s ease-in;
}

@keyframes skeleton-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #f8f8f8 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(
        90deg,
        #e8e8e8 0%,
        #f4f4f4 50%,
        #e8e8e8 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 20px;
    width: 85%;
    margin-bottom: 8px;
}

.skeleton-title-secondary {
    height: 20px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-format {
    height: 16px;
    width: 40%;
    margin-bottom: 8px;
}

.skeleton-price {
    height: 24px;
    width: 50%;
}

/* Transition douce quand les vrais produits apparaissent */
.product {
    animation: product-fade-in 0.4s ease-out;
}

@keyframes product-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Désactiver l'animation après le premier chargement */
.product.loaded {
    animation: none;
}

/* Performance: forcer l'accélération GPU */
.skeleton,
.skeleton-img,
.product {
    will-change: transform;
    transform: translateZ(0);
}

/* Responsive - ajustements mobiles */
@media (max-width: 768px) {
    .skeleton-img {
        aspect-ratio: 1 / 1;
    }
    
    .skeleton-title {
        height: 18px;
    }
    
    .skeleton-price {
        height: 20px;
    }
}
