
/* ----------- COULEURS ----------- */

:root {
  --color-primary: #FCF6E9;

  --color-dark-grey: #4b4848;
  --color-light-grey: #c7c7c7;

  --color-black: #0B0B0B;
  --color-white: #fff;
}

/* ----------------------- GRAINY BACKGROUND ----------------------- */

html {
  min-height: 100%;
  background-color: #FCF6E9;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #FCF6E9;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.35'/%3E%3C/svg%3E");

  background-size: 160px 160px;
  opacity: 1;
  mix-blend-mode: multiply;
}

/* ----------------------- GLOBAL ----------------------- */


body{
  font-family: "Inter", sans-serif;
  color: var(--color-black);
  background-color: var(--color-primary);
  background: transparent !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  accent-color: var(--color-primary);
}

#wrapper{
  background: none !important;
  position: relative;
  /* z-index: 999; */
}

@media (max-width: 992px) {
  #product #wrapper{
      overflow-x: hidden;
  }
}

/* ----------------------- TYPOGRAPHIE ----------------------- */

.h1, .h2, .h3{
  font-family: "Inter";
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  text-transform: none;
  color: var(--color-black);
  font-weight: 500;
}

p, p *{
  color: var(--color-black);
  font-family: "Inter";
  font-size: 1rem;
  line-height: 1.5rem;
}

a,
p a{
  color: var(--color-black);
  text-decoration: none;
}

@media (min-width: 993px) {
  a:focus,
  a:hover,
  p a:hover{
    color: var(--color-black);
  }
}

/* ----------------------- TITRE ----------------------- */

.h1{
  font-size: 2.5rem;
  line-height: 3.75rem;
}

.h2{
  font-size: 2.25rem;
  line-height: 3rem;
}

.h3{
  font-size: 1.75rem;
  line-height: 2.25rem;
}

/* ----------------------- BOUTON ----------------------- */

.btn.btn-primary,
.btn.btn-secondary,
.elementor-widget-button .elementor-button{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 11px !important;
  padding: 8px 16px 8px 8px !important;
  border: none;
  border-radius: 50px;
  font-family: "Zen Old Mincho";
  font-size: 15px;
  line-height: normal;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  float: none !important;
  height: auto;
  box-shadow: none;
  white-space: normal;
  outline: none !important;
  margin: 0px;
  background-color: var(--color-primary) !important;
  width: fit-content;
  color: var(--color-black) !important;
  cursor: pointer;
  text-shadow: none !important;
}

.btn.btn-primary,
.elementor-button-primary .elementor-button{
  background-color: var(--color-black) !important;
  color: var(--color-primary) !important;
}

.btn.btn-secondary,
.elementor-button-secondary .elementor-button{
  background-color: var(--color-primary) !important;
  color: var(--color-black) !important;
}

.btn.btn-primary::before,
.btn.btn-secondary::before,
.elementor-widget-button .elementor-button::before{
  content: "";
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  transition: 300ms ease;
  transform: rotate(0deg);
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='31' height='31' rx='15.5' stroke='%231A1A1A'/%3E%3Cpath d='M19.9448 12.7623L11.4038 21.3033L10.6967 20.5962L19.2377 12.0552L11.0462 12.0552L11.0503 11.0503H20.9497V20.9497L19.9448 20.9538V12.7623Z' fill='%231A1A1A'/%3E%3C/svg%3E%0A");
}

@media (min-width: 993px) {
  .btn.btn-secondary:active,
  .btn.btn-secondary:hover,
  .btn.btn-secondary:focus,
  .btn.btn-secondary:focus-visible,
  .btn.btn-secondary:focus-within,
  .elementor-button-secondary .elementor-button:active,
  .elementor-button-secondary .elementor-button:hover,
  .elementor-button-secondary .elementor-button:focus,
  .elementor-button-secondary .elementor-button:focus-visible,
  .elementor-button-secondary .elementor-button:focus-within{
    background-color: var(--color-black) !important; 
    color: var(--color-primary) !important;
  }
  .btn:active::before,
  .btn:hover::before,
  .btn:focus::before,
  .btn:focus-visible::before,
  .btn:focus-within::before,
  .elementor-widget-button .elementor-button:active::before,
  .elementor-widget-button .elementor-button:hover::before,
  .elementor-widget-button .elementor-button:focus::before,
  .elementor-widget-button .elementor-button:focus-visible::before,
  .elementor-widget-button .elementor-button:focus-within::before{
    transition: 300ms ease;
    transform: rotate(45deg);
  }
}

/* ----------------------- CONTAINER ----------------------- */

.container{
    position: relative;
    z-index: 1;
    padding-inline: 80px;
    margin-inline: auto;
    width: 100%;
}

#content-wrapper{
  padding-inline: 0px !important;
}

@media (min-width: 993px){
    .container{
        max-width: 1500px;
    } 
}

@media (max-width: 992px) {
    .container {
        padding-inline: 36px;
    }
}

@media (max-width: 768px) { 
    .container {
        padding-inline: 20px;
    }
}

/* ----------------------- BREADCRUMB ----------------------- */

#wrapper .breadcrumb{
  margin-bottom: 24px;
}

#wrapper .breadcrumb a,
#wrapper .breadcrumb span{
    font-size: 14px;
    line-height: normal;
    color: var(--color-black);
    text-decoration: none;
}

#wrapper .breadcrumb li::after{
    content: ">";
    margin: 0 2px;
    color: var(--color-black);
    font-size: 14px;
    line-height: normal;
}

#wrapper .breadcrumb li:first-child{
    display: none;
}

@media (min-width: 993px) {
  #wrapper .breadcrumb a:hover span{
      color: var(--color-black);
  }
}

/* ----------------------- SWIPER ----------------------- */

.swiper-button-next, 
.swiper-button-prev{
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 1px var(--color-dark-grey);
}

.swiper-button-next::after, 
.swiper-button-prev::after{
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 12px;
  display: block;
}

.swiper-button-prev::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-5.72205e-06 6.00025C-5.72205e-06 5.74425 0.0979939 5.48825 0.292994 5.29325L5.29299 0.29325C5.68399 -0.09775 6.31599 -0.09775 6.70699 0.29325C7.09799 0.68425 7.09799 1.31625 6.70699 1.70725L2.41399 6.00025L6.70699 10.2933C7.09799 10.6842 7.09799 11.3162 6.70699 11.7072C6.31599 12.0982 5.68399 12.0982 5.29299 11.7072L0.292994 6.70725C0.0979939 6.51225 -5.72205e-06 6.25625 -5.72205e-06 6.00025Z' fill='%234b4848'/%3E%3C/svg%3E");
}

.swiper-button-next::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.00025 6.00025C7.00025 5.74425 6.90225 5.48825 6.70725 5.29325L1.70725 0.29325C1.31625 -0.09775 0.68425 -0.09775 0.29325 0.29325C-0.09775 0.68425 -0.09775 1.31625 0.29325 1.70725L4.58625 6.00025L0.29325 10.2933C-0.09775 10.6842 -0.09775 11.3162 0.29325 11.7072C0.68425 12.0982 1.31625 12.0982 1.70725 11.7072L6.70725 6.70725C6.90225 6.51225 7.00025 6.25625 7.00025 6.00025Z' fill='%234b4848'/%3E%3C/svg%3E");
}

/* ----------------------- FLAGS ----------------------- */

.product-flags{
  margin-bottom: 0px;
  gap: 10px;
  z-index: 2;
}

.product-flags .product-flag{
  margin: 0px !important;
  width: fit-content !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  font-weight: 600 !important;
  padding: 5px 10px !important;
  color: var(--color-white) !important;
  text-transform: none !important;
  background-color: var(--color-black) !important;
  min-height: 0px !important;
  min-width: 0px !important;
}

.product-flags .product-flag.discount{
  background-color: var(--color-black) !important;
}

.product-flags .product-flag.out_of_stock{
  background-color: var(--color-dark-grey) !important;
}

.product-miniature .product-flags{
  top: 10px;
}

@media (max-width: 768px) {
  .product-flags{
    gap: 5px;
  }
  .product-miniature .product-flags{
    top: 5px;
  }
  .product-flags .product-flag{
    font-size: .875rem !important;
    line-height: 1.125rem !important;
    padding: 4px 8px !important;
  }
}

/* ----------------------- AUTRE ----------------------- */

/* .modal-backdrop.in{
  display: none;
} */

.container > .row{
  margin-inline: 0px !important;
}

.row::after{
  display: none;
}

/* ----------------------- AUTRE ----------------------- */

.dropdown-menu{
  padding: 0px;
  border: none;
  margin-top: 10px;
  border-radius: 12px;
  min-width: 0px;
  background-color: var(--color-white);
}

.dropdown-menu li a{
  padding: 10px 20px;
  font-size: 14px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--color-black) !important;
}