@font-face {
  font-family: 'InterTight-Regular';
  src: url('../fonts/Inter_Tight/InterTight-Regular.ttf');
}
* {
  font-family: 'InterTight-Regular', sans-serif;
}
@font-face {
  font-family: 'InterTight-Light';
  src: url('../fonts/Inter_Tight/InterTight-Light.ttf');
}
.intertight_light {
  font-family: 'InterTight-Light', sans-serif;
}
@font-face {
  font-family: 'InterTight-Medium';
  src: url('../fonts/Inter_Tight/InterTight-Medium.ttf');
}
.intertight_medium {
  font-family: 'InterTight-Medium', sans-serif;
}
@font-face {
  font-family: 'InterTight-SemiBold';
  src: url('../fonts/Inter_Tight/InterTight-SemiBold.ttf');
}
.intertight_semibold {
  font-family: 'InterTight-SemiBold', sans-serif;
}
@font-face {
  font-family: 'InterTight-Bold';
  src: url('../fonts/Inter_Tight/InterTight-Bold.ttf');
}
.intertight_bold {
  font-family: 'InterTight-Bold', sans-serif;
}

:root {
  --dune: #33302D;
  --mercury: #E3E3E3;
  --codGray: #171717;
  --alabaster: #FAFAFA;
}

html, body, ul, div {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  vertical-align: baseline;
} 

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, span {
  margin: 0;
  padding: 0;
}

a, a:hover, a:focus, a:active {text-decoration: none;}

/* Chrome, Safari, Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* Couleur de fond désirée */
    -webkit-text-fill-color: #000 !important; /* Couleur du texte */
}

/* Firefox */
input:-moz-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
    -moz-text-fill-color: #000 !important;
}

.displayFlex {
  display: flex;
}
.align {
  display: flex;
  align-items: center;
}
.space_between {
  justify-content: space-between;
}
.align_all {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover_style {
  background-size: cover !important;
}
.espace_body {
  padding-left: 65px;
  padding-right: 65px;
}
.espace_body_all {
  padding: 65px;
}
.position_relative {position: relative;}
.position_sticky {
  top: 0;
  z-index: 9999;
  position: sticky;
  background: white;
}
.txt_center, .txt_center>* {text-align: center;}
.center_el {
  margin: auto;
  display: table;
}
.right_el {
  display: table;
  margin-left: auto;
}
.btn_style_bg,
.btn_style_bg:hover,
.btn_style_bg:focus,
.btn_style_bg:active {
  color: white;
  outline: none;
  display: table;
  font-size: 14px;
  padding: 4px 8px;
  background: var(--codGray);
}
.btn_style_bg_black,
.woocommerce-Button,
.single_add_to_cart_button,
.woocommerce-MyAccount-content button {
  color: white;
  outline: none;
  display: table;
  font-size: 16px;
  transition: .5s;
  text-align: center;
  padding: 12px 20px;
  background: var(--codGray);
  text-transform: uppercase;
  border: 1px solid var(--codGray);
}
.btn_style_bg_black:hover,
.btn_style_bg_black:focus,
.btn_style_bg_black:active,
.woocommerce-Button:hover,
.woocommerce-Button:focus,
.woocommerce-Button:active,
.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content button:focus,
.woocommerce-MyAccount-content button:active {
  background: white;
  color: var(--codGray);
}
.btn_style_bg_white {
  outline: none;
  display: table;
  font-size: 16px;
  transition: .5s;
  background: white;
  padding: 12px 20px;
  color: var(--codGray);
  text-transform: uppercase;
  border: 1px solid var(--codGray);
}
.btn_style_bg_white:hover,
.btn_style_bg_white:focus,
.btn_style_bg_white:active {
  color: white;
  background: var(--codGray);
}
.two_side {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.two_side_8f_4f {
  gap: 40px;
  display: grid;
  grid-template-columns: 8fr 4fr;
}
.texte,
.texte p {
  font-size: 16px;
  color: var(--codGray);
}
.full_width {
  width: 100% !important;
}
.no_uppercase,
.no_uppercase>* {
  text-transform: initial !important;
}
.espace_el {margin: 24px 0;}
.no-scroll {
    overflow: hidden;
}
/*-- header */
header .promo_block {
  padding: 5px;
  color: white;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  background: var(--codGray);
}
header .header_block {
  padding: 12px 25px;
  justify-content: space-between;
}
.custom-logo-link {
  margin: 0;
  max-width: 210px;
}
.custom-logo-link>img {
  width: 100%;
  height: auto;
}
header .icons_header {
  grid-gap: 20px;
}
.hamburger-menu {
  margin-right: 40px;
}
.menu__btn {
  z-index: 2;
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: relative;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  width: 100%;
  height: 2px;
  display: block;
  transition: 0.25s;
  position: absolute;
  background-color: var(--codGray);
}
.menu__btn > span::before {
  top: -8px;
  content: '';
}
.menu__btn > span::after {
  top: 8px;
  content: '';
}
.menu__box {
  top: 120px;
  left: -100%;
  z-index: 9999;
  height: 100vh;
  position: fixed;
  transition: 0.25s;
  background: white;
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.08);
}
.menu__box.active {
  left: 0;
}
.menu__btn.active > span {
  transform: rotate(45deg);
}
.menu__btn.active > span::before {
  top: 0;
  transform: rotate(0);
}
.menu__btn.active > span::after {
  top: 0;
  transform: rotate(90deg);
}
.menu__box>li {
  float: left;
}
.menu__box>li .sub-menu {
  display: none;
}
.menu__box .nav.nav-tabs button.active,
.menu__box .nav.nav-tabs button.active:hover,
.menu__box .nav.nav-tabs button.active:focus,
.menu__box .nav.nav-tabs button.active:active {
  border: none;
  border-color: initial;
  background-color: initial;
  border-bottom: 1px solid black;
  font-family: 'InterTight-Medium', sans-serif;
}
.menu__box .nav.nav-tabs a,
.menu__box .nav.nav-tabs a:hover,
.menu__box .nav.nav-tabs a:focus,
.menu__box .nav.nav-tabs a:active,
.menu__box .nav.nav-tabs button,
.menu__box .nav.nav-tabs button:hover,
.menu__box .nav.nav-tabs button:focus,
.menu__box .nav.nav-tabs button:active {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 15px 25px;
  color: var(--codGray);
  border-color: initial;
  text-transform: uppercase;
  background-color: initial;
  border-bottom: 1px solid transparent;
}
.menu__box .tab-content ul {
  padding: 25px;
}

/* -- scroll dans le contenu (ul) -- */
.menu__box .tab-content {
  height: calc(100vh - 180px); 
  overflow-y: auto;
  overflow-x: hidden;
}
.menu__box .tab-content::-webkit-scrollbar {
  width: 2px;
}
.menu__box .tab-content::-webkit-scrollbar-thumb {
  background-color: var(--codGray);
  border-radius: 4px;
}
.menu__box .tab-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--codGray);
}
.menu__box .tab-content ul>li:not(:last-of-type) {
  margin-bottom: 30px;
}
.menu__box .tab-content ul a,
.menu__box .tab-content ul a:hover,
.menu__box .tab-content ul a:focus,
.menu__box .tab-content ul a:active {
  outline: none;
  font-size: 16px;
  color: var(--codGray);
}
/*-- slider_home */
.slider_home {
  padding: 0 25px;
  margin-bottom: 25px;
}
.slider_home .box_slider_home {
  height: 675px;
}
.slider_home h2 {
  color: white;
  font-size: 96px;
}
.slider_home h3 {
  color: white;
  font-size: 48px;
}
.owl-nav {
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  display: flex;
  padding: 0 75px;
  position: absolute;
  align-items: center;
  justify-content: space-between;
}
.owl-nav button,
.owl-dots button {
  border: none;
  outline: none;
  background: transparent;
}
.owl-dots {
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: table;
  position: absolute;
}
.owl-dots button {
  padding: 15px;
}
.owl-dots button>span {
  width: 20px;
  height: 20px;
  display: table;
  transition: .5s;
  border-radius: 50%;
  border: 1px solid white;
}
.owl-dots button.active>span {
  background: white;
}
/*-- style fixed */
.title {
  font-size: 30px;
  padding-bottom: 32px;
  color: var(--codGray);
  text-transform: uppercase;
  font-family: 'InterTight-Medium', sans-serif;  
}
.title_style {
  margin-bottom: 30px;
  justify-content: space-between;
}
.title_style h2 {
  font-size: 30px;
  color: var(--codGray);
  text-transform: uppercase;
  font-family: 'InterTight-SemiBold', sans-serif;
}
.texte {
  color: black;
  font-size: 16px;
}
.li_style li {
  list-style: inside;
}
.reset_variations,
.reset_variations:hover,
.reset_variations:focus,
.reset_variations:active,
.btn_style_underline,
.btn_style_underline:hover,
.btn_style_underline:focus,
.btn_style_underline:active,
.woocommerce-MyAccount-content a {
  font-size: 14px;
  color: var(--codGray);
  text-transform: uppercase;
  text-decoration: underline;
  font-family: 'InterTight-SemiBold', sans-serif;
}
/* Fix pour lazyload en background */
.product_style .box_prd .image_prd {
  height: 380px;
  padding: 15px;
}
.product_style .owl-carousel .owl-item .owl-lazy {
  max-height: none !important; 
}
.product_style .content_prd {
  margin-top: 10px;
}
.product_style .content_prd h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--codGray);
}
.product_style .price_prd>span,
.product_style .price_prd bdi {
  font-size: 14px;
  text-decoration: none;
  color: var(--codGray);
  font-family: 'InterTight-SemiBold', sans-serif;
}
.product_style .price_prd bdi>span {
  line-height: 1;
  font-size: 12px;
  vertical-align: super;
  color: var(--codGray);
  font-family: 'InterTight-SemiBold', sans-serif;
}
.product_style .price_prd .price_regular bdi,
.product_style .price_prd .price_regular bdi>span {
  font-size: 14px;
  vertical-align: initial;
  font-family: 'InterTight-Regular', sans-serif;
}
.product_style .price_prd>span>sup {
  color: var(--codGray);
  font-family: 'InterTight-SemiBold', sans-serif;
}
.product_style .promo_prd .price_regular,
.product_style .price_prd del {
  opacity: 1;
  font-size: 14px;
  margin-left: 5px;
  color: var(--dune);
  position: relative;
  font-family: 'InterTight-Regular', sans-serif;
}
.product_style .promo_prd .price_regular:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 1px;
  margin: auto;
  position: absolute;
  background: var(--dune);
}
/*-- block_products */
.block_products .big_image {
  width: 100%;
  height: 635px;
}
.block_products .image_prd {
  width: 100%;
  height: 305px;
  position: relative;
  margin-bottom: 25px;
}
.block_products .list_products {
  gap: 25px;
}
.block_products .list_products h3 {
  font-size: 20px;
  color: var(--codGray);
}
.all_men,
.all_women {
  margin-top: 25px;
  margin-bottom: 25px;
}
.all_men .title_style {
  width: 50%;
  display: table;
  margin-left: auto;
  padding-left: 20px;
}
/*-- block_her_him */
.block_her_him.two_side {
  gap: 16px;
}
.block_her_him a {
  height: 650px;
  padding: 40px;
  align-items: flex-end;
}
.block_her_him a:hover .btn_style_bg_white,
.block_her_him a:focus .btn_style_bg_white,
.block_her_him a:active .btn_style_bg_white {
  color: white;
  background: var(--codGray);
}
/*-- block_care_about */
.block_care_about {
  background: var(--alabaster);
}
.block_care_about h2 {
  font-size: 30px;
  color: var(--codGray);
}
.block_care_about h2>span {
  font-family: 'InterTight-SemiBold', sans-serif;
}
.block_care_about .parag_style {
  margin: 30px 0;
}
/*-- footer */
footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer_nav {
  gap: 60px;
  display: grid;
  padding-bottom: 40px;
  grid-template-columns: 2.5fr 9.5fr;
  border-bottom: 1px solid var(--mercury);
}
footer .block_nav_footer_style {
  gap: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
footer .nav_footer_style h2 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--codGray);
  font-family: 'InterTight-Medium', sans-serif;
}
footer .nav_footer_style li:not(:last-of-type) {
  margin-bottom: 8px;
}
footer .nav_footer_style a {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--codGray);
  font-family: 'InterTight-Medium', sans-serif;
}
footer .copy_right {
  padding-top: 20px;
  justify-content: space-between;
}
/*-- account style */
.block_compte .two_side {
  gap: 0;
  align-items: center;
}
.form_style label,
.form_style label .required,
.block_compte .form_compte label,
.block_compte .form_compte label .required {
  color: black;
  font-size: 16px;
  padding-bottom: 8px;
}
.form_style input,
.block_compte .form_compte input {
  color: black;
  outline: none;
  padding: 12px;
  font-size: 16px;
  border: 1px solid black;
}
.block_compte .form_compte .txt_pwd {
  margin-top: 24px;
  justify-content: space-between;
}
.block_compte .form_compte .link_create_compte,
.block_compte .form_compte .btn_style_underline {
  color: black;
  font-size: 16px;
  font-family: 'InterTight-Regular', sans-serif;
}
.block_compte .form_compte .link_create_compte .btn_style_underline {
  margin-left: 5px;
}
.block_compte .form_compte .btn_compte_connect {
  margin: 24px 0;
}
.block_compte .form_compte form.woocommerce-form-register p,
.block_compte .form_compte form.woocommerce-ResetPassword p {
  margin: 24px 0;
}
.block_compte .form_compte form.woocommerce-ResetPassword .msg_reset {
  font-size: 16px;
  color: var(--codGray);
}
/*-- my account */
.block_my_compte,
.woocommerce-Button,
.woocommerce-MyAccount-content button,
.block_my_compte .woocommerce-MyAccount-navigation a {
  width: 100%;
  display: table;
}
.block_my_compte .woocommerce-MyAccount-navigation a {
  font-size: 16px;
  color: var(--codGray);
}
.block_my_compte .woocommerce-MyAccount-navigation li.is-active a {
  font-family: 'InterTight-SemiBold', sans-serif;
}
.block_my_compte .woocommerce-MyAccount-content h2 {
  font-size: 16px;
}
.block_my_compte .woocommerce-MyAccount-content form .form-row {
  margin: 24px 0;
}
/*-- block_products */
.block_products {
  padding-top: 24px;
  padding-bottom: 24px;
}
.breadcamp_style li,
.breadcamp_style li>a,
.breadcamp_style li>a:hover,
.breadcamp_style li>a:focus,
.breadcamp_style li>a:active {
  font-size: 10px;
  color: var(--codGray);
}
.breadcamp_style li:not(:last-of-type):after {
  content: '';
  width: 12px;
  height: 12px;
  margin: 0 4px;
  display: table;
  background: url('../images/site/arrow_right_ptit.png') center no-repeat;
}
.block_list_products .product_style .box_prd .image_prd {
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block_list_products .product_style .box_prd .image_prd .btn_cart {
  opacity: 0;
  transition: .5s;
  margin-bottom: -10px;
}
.block_list_products .product_style .box_prd:hover .image_prd .btn_cart {
  opacity: 1;
  transition: .5s;
  margin-bottom: 0px;
}
.block_list_products {
  padding-top: 20px;
}
.block_list_products .block_filter {
  justify-content: space-between;
}
.block_list_products .block_filter .btn_filter {
  margin-left: auto;  
  padding-left: 40px;
}
.block_list_products .list_products {
  gap: 16px;
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(4, 1fr);
}
.filter_products {
  margin: 0;
  padding: 0;
  cursor: grab; 
  display: flex;
  overflow-x: auto;
  list-style: none;
  flex-wrap: nowrap;
  user-select: none; 
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none; 
  -webkit-overflow-scrolling: touch; /* slide fluide sur iOS */
}
.filter_products::-webkit-scrollbar {
  display: none; /* cache scrollbar sur Chrome/Safari */
}
.filter_products.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.filter_products li {
  flex: 0 0 auto;
  margin-right: 15px;
}
.filter_products a {
  font-size: 12px;
  transition: .5s;
  color: var(--codGray);
  text-decoration: none;
}
.filter_products a.active,
.filter_products a:hover,
.filter_products a:focus,
.filter_products a:active {
  font-family: 'InterTight-Medium', sans-serif;
}
.block_filter .btn_style_underline {
  font-size: 12px;
}
.filter_products.active {
  cursor: grabbing;
}
/*-- form_style_filter */
.slide_filter {
  top: 0;
  bottom: 0;
  width: 350px;
  display: flex;
  padding: 24px;
  z-index: 1000;
  right: -1000px;
  position: fixed;
  background: white;
  overflow-y: scroll;
  flex-direction: column;
  transition: right 0.3s ease;
  justify-content: space-between;    
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.08);
}
.slide_filter.active {
  right: 0;
}

/*-- scroll body */
/* width */
.slide_filter::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.slide_filter::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.slide_filter::-webkit-scrollbar-thumb {
  background: #6e6e6e; 
}

/* Handle on hover */
.slide_filter::-webkit-scrollbar-thumb:hover {
  background: #6b8ef2; 
}


.form_style_filter .title_filter {
  margin: 20px 0;
}
.form_style_filter .title_filter h2 {
  font-size: 18px;
  color: var(--codGray);
}
.form_style_filter .title_filter .btn_style_underline {
  font-size: 12px;
}
.form_style_filter .title_filter h2 {
  font-size: 18px;
  color: var(--codGray);
}
.form_style_filter h3,
.form_style_filter .filter_sort li,
.block_add_cart .variations th label,
.form_style_filter .filter_sort li>a {
  font-size: 12px;
  transition: .5s;
  color: var(--codGray);
  text-transform: uppercase;
}
.form_style_filter .filter_sort li>a:hover,
.form_style_filter .filter_sort li>a:focus,
.form_style_filter .filter_sort li>a:active,
.form_style_filter .filter_sort li>a.active {  
  font-family: 'InterTight-Medium', sans-serif;
}
.form_style_filter h3 {
  margin-bottom: 8px;
}
.form_style_filter .filter_sort li>ul {
  margin-left: 12px;
}
.form_style_filter .filter_sort li>ul>li {
  margin-top: 16px;
}
.form_style_filter .filter_espace {
  display: table;
  margin: 24px 0;
  padding: 16px 0;
}
.form_style_filter .size_options {
  gap: 5px;
  display: flex;
}
.form_style_filter .size_options input,
.form_style_filter .colour_options input {
  display: none;
}
.form_style_filter .size_options label {
  height: 45px;
  color: black;
  padding: 5px;
  min-width: 45px;
  font-size: 12px;
  transition: .5s;
  cursor: pointer;
  border: 1px solid black;
  text-transform: uppercase;
}
.form_style_filter .size_options label.disabled {
  opacity: 0.5;
  color: white;
  background: black;
}
.form_style_filter .size_options input:checked + label {
  color: white;
  background: black;
}
/*-- range price */
.range_slide_price {
  width: 100%;
  display: table;
}
.range_slide_price .range-container {
  width: 100%;
  margin: 25px 0;
  user-select: none;
  position: relative;
}
.range_slide_price .slider-base {
  height: 2px;
  position: relative;
  border-radius: 4px;
  background: var(--codGray);
}
.range_slide_price .slider-track {
  top: 0;
  z-index: 2;
  height: 2px;
  background: black;
  border-radius: 4px;
  position: absolute;
}
.range_slide_price input[type=range] {
  top: 4px;
  margin: 0;
  z-index: 3;
  width: 100%;
  height: 2px;
  background: none;
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
}
.range_slide_price input[type=range]::-webkit-slider-thumb {
  z-index: 4;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-top: -8px;
  background: white;
  position: relative;
  border-radius: 50%;
  pointer-events: all;
  -webkit-appearance: none;
  border: 2px solid black;
}
.range_slide_price input[type=range]::-moz-range-thumb {
  z-index: 4;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-top: -8px;
  background: white;
  position: relative;
  border-radius: 50%;
  pointer-events: all;
  -webkit-appearance: none;
  border: 2px solid black;
}
.range_slide_price .range-value {
  top: 20px;
  z-index: 5;
  font-size: 12px;
  position: absolute;
  white-space: nowrap;
  color: var(--codGray);
}

.form_style_filter .colour_options label {
  cursor: pointer;
  font-size: 12px;
  transition: .5s;
  color: var(--codGray);
  text-transform: uppercase;
}
.form_style_filter .colour_options input:checked + label {
  font-family: 'InterTight-Medium', sans-serif;
}
.form_style_filter .colour_options label:not(:last-of-type) {
  margin-bottom: 20px;
}
.form_style_filter .colour_options label div {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
/*-- block_products_details */
.block_products_details .content_prd_detail {
  gap: 40px;
  display: grid;
  grid-template-columns: 8fr 4fr;
}
.galerie_prd_mobile {
  display: none;
  padding-top: 45px;
  padding-bottom: 45px;
}
.block_products_details .galerie_prd {
  gap: 16px;
}
.galerie_prd .image_prd {
  height: 432px;
}
.block_products_details h1 {
  font-size: 30px;
  color: var(--codGray);
  text-transform: uppercase;
}
.block_products_details .product_style .two_side_8f_4f {
  align-items: center;
}
.block_products_details .product_style .price_prd>span,
.block_products_details .product_style .price_prd bdi {
  font-size: 24px;
  font-family: 'InterTight-Bold', sans-serif;
}
.block_products_details .product_style .price_prd bdi>span {
  font-size: 14px;
  font-family: 'InterTight-Bold', sans-serif;
}
.block_products_details .product_style .price_prd .price_regular bdi,
.block_products_details .product_style .price_prd .price_regular bdi>span {
  font-size: 24px;
  font-family: 'InterTight-Light', sans-serif;
}
.block_products_details .sku_style {
  color: black;
  font-size: 16px;
}
.block_products_details .btn_style_underline {
  text-align: right;
}
.block_products_details .btn_cart {
  margin-top: 24px;
}
.block_add_cart .variations th label,
.block_products_details .btn_style_underline,
.block_products_details .form_style_filter .box_filter_choix h3,
.block_products_details .form_style_filter .size_options label {
  font-size: 16px;
  font-weight: 400;
}
.block_products_details .form_style_filter .colour_options {
  gap: 16px;
}
.block_products_details .form_style_filter .colour_options label .color_hex_border,
.block_products_details .form_style_filter .size_options label {
  height: 40px;
  padding: 5px;
  min-width: 40px;
  margin-right: 0;
}
.block_products_details .form_style_filter .colour_options label:not(:last-of-type) {
  margin-bottom: 0;
}
.block_products_details .form_style_filter .colour_options label .color_hex_border>div {
  margin: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.block_products_details .accordion_prd_details {
  margin-top: 32px;
}
.block_products_details .accordion_prd_details .accordion-item:first-of-type {
  border-top: 1px solid black;
}
.block_products_details .accordion_prd_details .accordion-item {
  border-bottom: 1px solid black;
}
.block_products_details .accordion_prd_details .accordion-header>button {
  width: 100%;
  border: none;
  display: flex;
  color: black;
  outline: none;
  padding: 16px 0;
  font-size: 18px;
  text-align: left;
  position: relative;
  align-items: center;
  background: transparent;
  font-family: 'InterTight-SemiBold', sans-serif;  
} 
.block_products_details .accordion_prd_details .accordion-header>button:after {
  content: '-';
  font-size: 26px;
  margin-left: auto;
} 
.block_products_details .accordion_prd_details .accordion-header>button:not(.collapsed):after {
  content: '+';
  font-size: 21px;
  margin-left: auto;
} 
/*-- block_aimez_aussi */
/*.block_aimez_aussi .list_products {
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}*/

/*-- block_add_cart */
.block_add_cart .variations tr:not(:last-of-type) {
  display: block;
  margin-bottom: 24px;
}
.block_add_cart .variations th,
.block_add_cart .variations td {
  width: 100%;
  display: block;
  background-color: transparent !important;
}
/*.price_prd,
.price_prd .price {
    gap: 10px;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}*/
.block_products_details .reset_variations,
.block_products_details .reset_variations:hover,
.block_products_details .reset_variations:focus,
.block_products_details .reset_variations:active {
  margin: 24px 0;
  margin-left: 0;
}
.block_products_details .quantity {
  display: none !important;
}
.single_add_to_cart_button {
  width: 100%;
}
.page_style h1,
.page_style h2 {
  font-size: 30px;
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  color: var(--codGray);
  font-family: 'InterTight-SemiBold', sans-serif; 
}
.page_style h1:after,
.page_style h2:after {
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  content: '';
  position: absolute;
  background: var(--codGray);
}
.woocommerce-page .page_style h1 {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.page_style .no_bar_title:after,
.page_style .no_bar_title h2:after,
.woocommerce-page .page_style h1:after,
.woocommerce-page .page_style h2:after {
  content: none;
}
.page_style ul {
  list-style: inside;
}
.page_style .block_time_store .wp-block-list {
  list-style: none;
  margin-left: auto;
  display: table;
}
.page_style .block_time_store .wp-block-columns {
  padding: 16px;
}
.page_style .block_time_store .wp-block-columns .wp-block-column {
  margin-bottom: 0;
}

.page_style .wp-block-pullquote cite {
  color: white;
}
.block_contact form button {
  width: 100%;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
  background-color: var(--codGray) !important;
}
.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--codGray);
  font-family: 'InterTight-SemiBold', sans-serif; 
}
.cart_icon {
  position: relative;
  display: inline-block;
}

.cart_icon .cart-count {
  top: 3px;
  right: 0px;
  color: #fff;
  width: 12px;
  height: 12px;
  display: flex;
  font-size: 8px;
  border-radius: 50%;
  position: absolute;
  align-items: center;
  background: #8B323C;
  justify-content: center;
  font-family: 'InterTight-Medium', sans-serif;
}


/* Overlay */
#search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start; /* affiche en haut */
  justify-content: center;
  z-index: 9999;
}

/* Quand actif */
#search-popup.active {
  display: flex;
}

/* Contenu */
.search-popup-content {
  background: #fff;
  width: 100%;
  max-width: 700px;
  margin-top: 100px; /* Espace depuis le haut */
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Bouton fermer */
.search-close,
.search-close:hover {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-popup-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
}
.aws-search-result .aws_result_title {
  color: var(--codGray) !important;
}
.aws-search-result .aws_search_more,
.aws-search-result .aws_search_more:hover,
.aws-search-result .aws_search_more a:hover {
  background: var(--codGray) !important;
}
.aws-search-result .aws_search_more a {
  color: white !important;
}
.find_size {
  display: table;
  margin-top: 15px;
}
.woocommerce-page .popup_find_size.page_style h2:after {  
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  content: '';
  position: absolute;
  background: var(--codGray);
}
.popup_find_size {  
  top: 0;
  bottom: 0;
  z-index: 9999;
  right: -1000px;
  position: fixed;
  transition: 0.25s;
  background: white;
  padding: 0 45px 25px;
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.08);
}
.popup_find_size.active {  
  right: 0;
}
.scroll_popup {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 100px);
}
.close_popup_sizing,
.close_popup_sizing:hover,
.close_popup_sizing:focus,
.close_popup_sizing:active {
  display: table;
  font-size: 28px;
  margin-left: auto;
  padding-bottom: 25px;
  color: var(--codGray);
}
.galerie_prd_mobile .image_prd {
  width: 100%;
  display: table;
}