/* Correctif isolé du menu mobile. Aucun autre composant du site n'est modifié. */
:root {
  --mobile-menu-ink: #303030;
  --mobile-menu-muted: #77736f;
  --mobile-menu-line: #e8e4df;
  --store-accent: #F7941D;
}

.mobile-nav,
.mobile-nav-overlay,
.mobile-account-button {
  display: none;
}

@media (max-width: 991.98px) {
  .header.shop.promo {
    display: none !important;
  }

  .header.shop.header-top-slide {
    top: 0 !important;
  }

  body.js {
    padding-top: calc(var(--mobile-header-height, 100px) + 30px);
  }

  body.js.home-page {
    padding-top: 0;
  }

  .header.shop.header-top-slide,
  .header.shop.header-other {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 1015;
    width: 100%;
    background: #fff !important;
    color: #303030 !important;
  }

  .header.shop.header-top-slide .header-inner,
  .header.shop.header-top-slide .middle-inner,
  .header.shop.header-other .header-inner,
  .header.shop.header-other .middle-inner,
  .header.shop.sticky .middle-inner {
    position: static !important;
    background: #fff !important;
    color: #303030 !important;
    animation: none !important;
    box-shadow: none !important;
  }

  .header.shop.header-top-slide .icons a,
  .header.shop.header-other .icons a {
    color: #303030 !important;
  }

  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav .slicknav_menu {
    position: static;
    width: auto;
    height: auto;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none;
  }

  .mobile-nav .slicknav_btn,
  .mobile-nav .slicknav_btn.sticky-active {
    position: fixed !important;
    top: 73px;
    left: max(18px, env(safe-area-inset-left));
    z-index: 1021;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff !important;
    transform: translateY(-50%) !important;
  }

  .mobile-nav .slicknav_btn.sticky-active {
    top: 35px;
    color: #303030 !important;
  }

  .mobile-nav--overlay .slicknav_btn:not(.sticky-active) {
    color: #303030 !important;
  }

  .mobile-nav--solid .slicknav_btn:not(.sticky-active) { color: #303030 !important; }

  .mobile-nav.open .slicknav_btn {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav .slicknav_menutxt {
    display: none;
  }

  .mobile-nav .slicknav_icon {
    width: 21px;
    height: 16px;
    margin: 0;
  }

  .mobile-nav .slicknav_icon-bar {
    display: block;
    width: 21px;
    height: 1px;
    margin: 0 0 5px;
    border-radius: 0;
    background: currentColor !important;
  }

  .mobile-nav .slicknav_nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1041;
    display: block !important;
    visibility: hidden;
    width: min(88vw, 380px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: calc(82px + env(safe-area-inset-top)) 30px calc(112px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate3d(-100%, 0, 0);
    background: #fff;
    box-shadow: 18px 0 45px rgba(28, 25, 22, .16);
    opacity: 1;
    transition: transform 320ms cubic-bezier(.22, .61, .36, 1), visibility 0s linear 320ms;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.open .slicknav_nav,
  .mobile-nav .slicknav_btn.slicknav_open ~ .slicknav_nav {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: transform 320ms cubic-bezier(.22, .61, .36, 1), visibility 0s;
  }

  #close-menu {
    position: fixed;
    top: calc(19px + env(safe-area-inset-top));
    left: min(calc(88vw - 56px), 324px);
    z-index: 1043;
    display: grid;
    visibility: hidden;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    transform: translateX(-20px);
    border: 0;
    background: transparent;
    color: var(--mobile-menu-ink);
    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 200;
    line-height: 1;
    opacity: 0;
    transition: transform 250ms ease, opacity 200ms ease, visibility 0s linear 320ms;
  }

  .mobile-nav.open #close-menu {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    transition-delay: 80ms;
  }

  .mobile-account-button {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 30px;
    z-index: 1043;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: min(calc(88vw - 60px), 320px);
    min-height: 48px;
    padding: 12px 22px;
    transform: translateX(-110%);
    border: 1px solid #F7941D;
    border-radius: 24px;
    background: #F7941D;
    color: #fff !important;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .15em;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    transition: transform 320ms cubic-bezier(.22, .61, .36, 1), opacity 180ms ease, visibility 0s linear 320ms;
  }

  .mobile-nav.open .mobile-account-button {
    display: flex;
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    transition: transform 320ms cubic-bezier(.22, .61, .36, 1), opacity 180ms ease, visibility 0s;
  }

  .mobile-account-button:hover,
  .mobile-account-button:focus {
    background: #e5810b;
    border-color: #e5810b;
    color: #fff !important;
  }

  .mobile-nav .slicknav_nav li {
    border-bottom: 1px solid var(--mobile-menu-line);
  }

  .mobile-nav .slicknav_nav li:last-child {
    border-bottom: 0;
  }

  .mobile-nav .slicknav_nav a,
  .mobile-nav .slicknav_nav .slicknav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin: 0;
    padding: 13px 0;
    border-radius: 0;
    background: transparent !important;
    color: var(--mobile-menu-ink) !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 19.8px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }

  .mobile-nav .slicknav_nav .slicknav_arrow {
    margin-left: auto;
    color: var(--mobile-menu-muted);
    font-size: 14px;
  }

  .mobile-nav .slicknav_nav ul {
    margin: 0 0 8px 14px;
  }

  .mobile-nav .slicknav_nav ul li {
    border-bottom: 0;
  }

  .mobile-nav .slicknav_nav ul a {
    min-height: 42px;
    padding: 9px 0;
    color: var(--mobile-menu-muted) !important;
    font-size: 11px;
    line-height: 18.15px;
    letter-spacing: 2.2px;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1040;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(22, 20, 18, .46);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 0s linear 320ms;
  }

  .mobile-nav-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 260ms ease, visibility 0s;
  }
}

@media (max-width: 767.98px) {
  .mobile-nav .slicknav_btn,
  .mobile-nav .slicknav_btn.sticky-active {
    left: max(9px, env(safe-area-inset-left));
  }

  .mobile-nav .slicknav_nav {
    width: min(89vw, 360px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-account-button {
    left: 24px;
    width: min(calc(89vw - 48px), 312px);
  }

  #close-menu {
    left: min(calc(89vw - 54px), 306px);
  }
}

/* Menu principal sur ordinateur, inspiré du site de référence. */
.desktop-language,
.desktop-account-link {
  display: none;
}

@media (min-width: 992px) {
  .header.shop.promo {
    display: none;
  }

  .header.shop.promo .topbar,
  .header.shop.promo .topbar .container,
  .header.shop.promo .topbar .row {
    min-height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .header.shop.promo .topbar .row {
    position: relative;
    display: block;
  }

  .header.shop.promo .topbar .row > div {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .header.shop.promo .top-left,
  .header.shop.promo .list-main {
    display: none;
  }

  .header.shop.promo .right-content {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
  }

  .header.shop.promo .right-content::before {
    content: "LIVRAISON À L’INTERNATIONAL";
    color: #303030;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .header.shop.header-top-slide,
  .header.shop.header-other {
    z-index: 1000;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .header.shop.header-top-slide {
    top: 0;
    left: 0;
    background: transparent !important;
    border: 0;
  }

  .header.shop.header-other {
    position: relative;
    background: #fff !important;
    border-bottom: 0;
  }

  .header.shop .header-inner,
  .header.shop .middle-inner {
    padding: 0;
    background: transparent !important;
    box-shadow: none;
  }

  .header.shop .middle-inner > .container {
    width: 100%;
    max-width: none;
  }

  .header.shop .header-row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 158px;
    padding: 18px 0;
  }

  .header.shop .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .header.shop .logo img {
    display: block;
    width: 92px !important;
    max-height: 108px;
    object-fit: contain;
  }

  .desktop-account-link {
    display: block;
    color: inherit;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .desktop-account-link {
    display: flex;
    align-items: center;
    height: 32px;
    margin: 0 25px 0 auto;
    line-height: 16.5px;
  }

  .desktop-account-link a {
    display: flex;
    align-items: center;
    height: 32px;
    color: inherit !important;
    line-height: 16.5px;
  }

  .header.shop .right-bar {
    position: relative;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    float: none;
  }

  .header.shop .right-bar .sinlge-bar {
    display: flex;
    align-items: center;
    height: 32px;
    margin: 0;
  }

  .header.shop .right-bar .single-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: 32px;
    min-height: 32px;
    color: inherit;
    font-size: 0;
    line-height: 32px;
  }

  .header.shop .right-bar .sinlge-bar:first-child .single-icon::after {
    content: "FAVORIS";
  }

  .header.shop .right-bar .sinlge-bar:last-child .single-icon::after {
    content: "PANIER";
  }

  .header.shop .right-bar .single-icon::after {
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2px;
  }

  .header.shop .right-bar .single-icon i {
    display: none;
  }

  .header.shop .right-bar .total-count {
    position: static;
    display: inline;
    min-width: 0;
    height: auto;
    margin-left: 5px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    line-height: 16.5px;
    letter-spacing: 2px;
  }

  .header.shop .right-bar .total-count::before {
    content: "(";
  }

  .header.shop .right-bar .total-count::after {
    content: ")";
  }

  .header.shop .cat-nav-head {
    margin: 0 !important;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  .header.shop.header-other .cat-nav-head,
  .header.shop.header-top-slide.sticky .cat-nav-head,
  .header.shop.header-top-slide:hover .cat-nav-head {
    border-bottom-color: #e8e4df;
  }

  .header.shop .cat-nav-head .row > div {
    display: flex;
    justify-content: center;
  }

  .header.shop .navbar {
    padding: 0;
  }

  .header.shop .nav.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .header.shop .nav.main-menu > li {
    margin: 0;
  }

  .header.shop .nav.main-menu > li > a {
    padding: 20px 25px;
    color: inherit;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 19.8px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }

  .header.shop .nav.main-menu > li > a::before {
    display: none;
  }

  .header.shop .nav.main-menu > li:hover > a,
  .header.shop .nav.main-menu > li.active > a {
    background: transparent;
    color: #F7941D !important;
  }

  .header.shop.header-top-slide.sticky {
    top: 0;
    background: rgba(255, 255, 255, .98) !important;
    color: #303030 !important;
    box-shadow: 0 7px 28px rgba(25, 22, 18, .08);
  }

  .header.shop.header-top-slide.sticky,
  .header.shop.header-top-slide.sticky .header-inner,
  .header.shop.header-top-slide.sticky .middle-inner {
    background: #fff !important;
  }

  .header.shop.header-top-slide.sticky .desktop-account-link,
  .header.shop.header-top-slide.sticky .desktop-account-link a,
  .header.shop.header-top-slide.sticky .right-bar,
  .header.shop.header-top-slide.sticky .right-bar .single-icon,
  .header.shop.header-top-slide.sticky .right-bar .total-count,
  .header.shop.header-top-slide.sticky .nav.main-menu > li > a {
    color: #303030 !important;
  }

  .header.shop.header-top-slide.sticky .nav.main-menu > li:hover > a,
  .header.shop.header-top-slide.sticky .nav.main-menu > li.active > a {
    color: #F7941D !important;
  }

  .header.shop.header-top-slide:hover {
    background: #fff !important;
    color: #303030 !important;
  }

  .header.shop.header-top-slide:hover .header-inner,
  .header.shop.header-top-slide:hover .middle-inner {
    background: #fff !important;
  }

  .header.shop.header-top-slide:hover .nav.main-menu > li > a,
  .header.shop.header-top-slide:hover .desktop-account-link a,
  .header.shop.header-top-slide:hover .right-bar .single-icon {
    color: #303030 !important;
  }

  .header.shop.header-top-slide:hover .nav.main-menu > li:hover > a,
  .header.shop.header-top-slide:hover .nav.main-menu > li.active > a {
    color: #F7941D !important;
  }

  .header.shop.header-top-slide.sticky .header-row {
    min-height: 84px;
  }

  .header.shop.header-top-slide.sticky .logo img {
    width: 62px !important;
    max-height: 66px;
  }

  .header.shop.header-top-slide.sticky .desktop-account-link,
  .header.shop.header-top-slide.sticky .right-bar,
  .header.shop.header-top-slide:hover .desktop-account-link,
  .header.shop.header-top-slide:hover .right-bar {
    color: #303030;
  }
}

/* Diaporama d'accueil, inspiré du site de référence. */
#Gslider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #26231f;
}

#Gslider .carousel-inner {
  width: 100%;
  height: clamp(620px, 88vh, 860px) !important;
  background: #26231f !important;
}

#Gslider .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

#Gslider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 16, 14, .3), rgba(18, 16, 14, .08) 55%, rgba(18, 16, 14, .18));
  pointer-events: none;
}

#Gslider .carousel-inner .carousel-item > img,
#Gslider .carousel-inner img.first-slide {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center top;
  opacity: .88 !important;
}

#Gslider .carousel-caption {
  position: absolute;
  top: 54% !important;
  right: auto;
  bottom: auto !important;
  left: 50%;
  z-index: 2;
  display: block !important;
  width: min(calc(100% - 80px), 760px);
  padding: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center !important;
}

#Gslider .carousel-caption p {
  margin: 0 0 17px !important;
  color: #fff !important;
  font-family: "Jost", sans-serif;
  font-size: 11px !important;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .24em !important;
  text-transform: uppercase;
}

#Gslider .carousel-caption h1 {
  max-width: 720px;
  margin: 0 auto 34px !important;
  color: #fff !important;
  font-family: "Jost", sans-serif;
  font-size: clamp(34px, 4.4vw, 62px) !important;
  font-weight: 400 !important;
  line-height: 1.13;
  letter-spacing: .045em !important;
  text-transform: none !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .14);
}

#Gslider .carousel-caption .ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 45px;
  margin: 0;
  padding: 12px 27px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: #303030;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
  box-shadow: none;
}

#Gslider .carousel-caption .ws-btn i {
  display: none;
}

#Gslider .carousel-caption .ws-btn:hover,
#Gslider .carousel-caption .ws-btn:focus {
  border-color: #F7941D;
  background: #F7941D;
  color: #fff;
}

#Gslider .carousel-indicators {
  right: auto;
  bottom: 28px !important;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  width: auto;
  margin: 0;
  transform: translateX(-50%);
}

#Gslider .carousel-indicators li {
  width: 28px;
  height: 2px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .5);
  opacity: 1;
}

#Gslider .carousel-indicators li.active {
  background: #fff;
}

@media (max-width: 991.98px) {
  #Gslider .carousel-inner {
    height: min(82svh, 760px) !important;
    min-height: 570px;
  }

  #Gslider .carousel-caption {
    top: 55% !important;
    width: min(calc(100% - 54px), 650px);
  }

  #Gslider .carousel-caption h1 {
    font-size: clamp(32px, 6vw, 48px) !important;
  }
}

@media (max-width: 767.98px) {
  #Gslider .carousel-inner {
    position: relative;
    height: var(--mobile-slide-height, 56.25vw) !important;
    min-height: 0;
    max-height: none;
  }

  #Gslider .carousel-item {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  #Gslider .carousel-item::after {
    background: linear-gradient(to bottom, rgba(18, 16, 14, .12), rgba(18, 16, 14, .32));
  }

  #Gslider .carousel-inner .carousel-item > img,
  #Gslider .carousel-inner img.first-slide {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
    background: #26231f;
  }

  #Gslider .carousel-item::after {
    z-index: 2;
  }

  #Gslider .carousel-caption,
  #Gslider .carousel-indicators {
    z-index: 3;
  }

  #Gslider .carousel-caption {
    top: 56% !important;
    width: calc(100% - 38px);
  }

  #Gslider .carousel-caption p {
    margin-bottom: 13px !important;
    font-size: 9px !important;
    letter-spacing: .18em !important;
  }

  #Gslider .carousel-caption h1 {
    margin-bottom: 26px !important;
    font-size: clamp(27px, 9vw, 38px) !important;
    line-height: 1.15;
    letter-spacing: .035em !important;
  }

  #Gslider .carousel-caption .ws-btn {
    min-width: 132px;
    min-height: 43px;
    padding: 11px 20px;
    font-size: 9px;
  }

  #Gslider .carousel-indicators {
    bottom: 18px !important;
  }

  #Gslider .carousel-indicators li {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #Gslider .carousel-item {
    transition: none !important;
  }
}

/* Conserver la typographie historique du slider. */
#Gslider .carousel-caption {
  top: auto !important;
  right: auto;
  bottom: 11% !important;
  left: 7%;
  width: min(650px, 80%);
  padding: 20px 0;
  transform: none;
  text-align: left !important;
}

#Gslider .carousel-caption p {
  margin: 28px 0 15px !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 12px !important;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: .2em !important;
  text-transform: uppercase;
}

#Gslider .carousel-caption h1 {
  margin: 28px 0 !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: inherit;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  text-shadow: none;
}

#Gslider .carousel-caption .ws-btn {
  min-width: 0;
  min-height: 0;
  padding: 10px 30px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
}

@media (max-width: 767.98px) {
  #Gslider .carousel-caption {
    top: auto !important;
    right: auto;
    bottom: 9% !important;
    left: 6%;
    width: 86%;
    transform: none;
    text-align: left !important;
  }
}

/* Fondu propre entre les diapositives. */
#Gslider.carousel-fade .carousel-item {
  opacity: 0;
  transform: none !important;
  transition: opacity 900ms ease-in-out !important;
}

#Gslider.carousel-fade .carousel-item.active,
#Gslider.carousel-fade .carousel-item-next.carousel-item-left,
#Gslider.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

#Gslider.carousel-fade .active.carousel-item-left,
#Gslider.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
}

/* Fond définitif du menu sticky, prioritaire sur les anciens styles. */
.header.shop.header-top-slide.sticky,
.header.shop.header-top-slide.sticky .header-inner,
.header.shop.header-top-slide.sticky .middle-inner,
.header.shop.header-top-slide.sticky .header-row,
.header.shop.header-top-slide.sticky .cat-nav-head {
  background-color: #fff !important;
  color: #303030 !important;
}

.header.shop.header-top-slide.sticky .nav.main-menu > li > a,
.header.shop.header-top-slide.sticky .desktop-account-link,
.header.shop.header-top-slide.sticky .desktop-account-link a,
.header.shop.header-top-slide.sticky .right-bar,
.header.shop.header-top-slide.sticky .right-bar a,
.header.shop.header-top-slide.sticky .right-bar .single-icon,
.header.shop.header-top-slide.sticky .right-bar .total-count {
  color: #303030 !important;
}

.header.shop.header-top-slide.sticky .nav.main-menu > li:hover > a,
.header.shop.header-top-slide.sticky .nav.main-menu > li.active > a {
  color: #F7941D !important;
}

@media (min-width: 992px) {
  .header.shop .shopping .shopping-item {
    display: none !important;
  }

  .header.shop .shopping:hover .shopping-item {
    display: none !important;
  }

  .header.shop .right-bar .sinlge-bar.shopping,
  .header.shop .right-bar .sinlge-bar.shopping:hover,
  .header.shop .right-bar .sinlge-bar.shopping:focus-within,
  .header.shop .right-bar .sinlge-bar.shopping .single-icon,
  .header.shop .right-bar .sinlge-bar.shopping .single-icon:hover,
  .header.shop .right-bar .sinlge-bar.shopping .single-icon:focus {
    background: transparent !important;
    box-shadow: none !important;
  }

  .header.shop.header-other .desktop-account-link,
  .header.shop.header-other .desktop-account-link a,
  .header.shop.header-top-slide:hover .desktop-account-link,
  .header.shop.header-top-slide:hover .desktop-account-link a {
    color: #303030 !important;
  }

  .header.shop.header-top-slide.sticky,
  .header.shop.header-other.sticky {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    background: #fff !important;
    color: #303030 !important;
    box-shadow: 0 7px 28px rgba(25, 22, 18, .1) !important;
  }

  .header.shop.header-other.sticky .header-inner,
  .header.shop.header-other.sticky .middle-inner,
  .header.shop.header-other.sticky .header-row,
  .header.shop.header-other.sticky .cat-nav-head {
    background: #fff !important;
    color: #303030 !important;
  }

  .header.shop.header-other.sticky .nav.main-menu > li > a,
  .header.shop.header-other.sticky .desktop-account-link,
  .header.shop.header-other.sticky .desktop-account-link a,
  .header.shop.header-other.sticky .right-bar,
  .header.shop.header-other.sticky .right-bar a {
    color: #303030 !important;
  }

  .header.shop.header-other.sticky .nav.main-menu > li:hover > a,
  .header.shop.header-other.sticky .nav.main-menu > li.active > a {
    color: #F7941D !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav .slicknav_nav,
  .mobile-nav-overlay,
  #close-menu {
    transition-duration: .01ms !important;
  }
}

/* Grille des collections, alignée sur le rendu Maggy Kloset Beauty. */
.breadcrumbs {
  margin: 0;
  padding: 54px 0 32px;
  background: #fff;
  border: 0;
}

.breadcrumbs .bread-inner {
  padding: 0;
  text-align: center;
}

.breadcrumbs .bread-inner p {
  margin: 0;
  color: #303030;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-area.shop-sidebar.shop.section {
  padding: 20px 0 70px;
}

.product-area.shop-sidebar > .container {
  width: min(calc(100% - 100px), 1165px);
  max-width: 1165px;
}

.product-area.shop-sidebar .col-lg-12 > .row:first-child {
  margin-right: -30px;
  margin-left: -30px;
}

.product-area.shop-sidebar .col-lg-12 > .row:first-child > [class*="col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

.product-area.shop-sidebar .single-product {
  margin: 0 0 74px;
}

.product-area.shop-sidebar .single-product .product-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f4f5f6;
}

.product-area.shop-sidebar .single-product .product-img > a {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-area.shop-sidebar .single-product .product-img > a > img.default-img,
.product-area.shop-sidebar .single-product .product-img > a > img.hover-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: opacity 350ms ease;
}

.product-area.shop-sidebar .single-product .product-img > a > img.default-img {
  opacity: 1;
}

.product-area.shop-sidebar .single-product .product-img > a > img.hover-img {
  opacity: 0;
}

.product-area.shop-sidebar .single-product:hover .product-img > a > img.default-img {
  opacity: 0;
  transform: none;
}

.product-area.shop-sidebar .single-product:hover .product-img > a > img.hover-img {
  opacity: 1;
  transform: none;
}

.product-area.shop-sidebar .single-product .product-img a span.price-dec,
.product-area.shop-sidebar .single-product .product-img a span.new,
.product-area.shop-sidebar .single-product .product-img a span.out-of-stock {
  top: 10px;
  right: auto;
  left: 10px;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 7px 11px;
  border-radius: 0;
  background: rgba(255, 255, 255, .94);
  color: #303030;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-area.shop-sidebar .single-product .button-head {
  display: none !important;
}

.product-area.shop-sidebar .single-product .product-img .product-action {
  left: 18px;
}

.product-area.shop-sidebar .single-product .product-img .product-action-2 {
  right: 18px;
}

.product-area.shop-sidebar .single-product .product-img .product-action-2 a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-area.shop-sidebar .single-product .product-content {
  min-height: 81px;
  padding: 20px 8px 0;
  text-align: center;
}

.product-area.shop-sidebar .single-product .product-content h3,
.product-area.shop-sidebar .single-product .product-content h3 a {
  margin: 0;
  color: #303030;
  font-family: "Jost", sans-serif;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 19.8px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.product-area.shop-sidebar .single-product .product-content h3 a:hover {
  color: var(--store-accent);
}

.product-area.shop-sidebar .single-product .product-content .rating-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}

.product-area.shop-sidebar .single-product .product-content .rating {
  display: flex;
  margin: 0;
}

.product-area.shop-sidebar .single-product .product-content .rating li {
  margin: 0 1px 0 0;
  color: var(--store-accent);
  font-size: 10px;
}

.product-area.shop-sidebar .single-product .rating-main .total-review {
  color: #77736f;
  font-size: 11px;
  font-weight: 400;
}

.product-area.shop-sidebar .single-product .rating-main .total-review:hover,
.product-area.shop-sidebar .single-product .product-img .product-action a:hover,
.product-area.shop-sidebar .single-product .product-img .product-action-2 a:hover {
  color: var(--store-accent);
}

.product-area.shop-sidebar .single-product .product-price {
  margin-top: 4px;
}

.product-area.shop-sidebar .single-product .product-price span,
.product-area.shop-sidebar .single-product .product-price del {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.8px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.product-area.shop-sidebar .single-product .product-price del {
  margin-left: 9px;
  padding-left: 0 !important;
  color: #9a9691;
}

@media (max-width: 991.98px) {
  .product-area.shop-sidebar > .container {
    width: calc(100% - 44px);
  }

  .product-area.shop-sidebar .col-lg-12 > .row:first-child {
    margin-right: -16px;
    margin-left: -16px;
  }

  .product-area.shop-sidebar .col-lg-12 > .row:first-child > [class*="col-"] {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 767.98px) {
  .breadcrumbs {
    padding: 38px 0 24px;
  }

  .breadcrumbs .bread-inner p {
    font-size: 17px;
    letter-spacing: 3.2px;
  }

  .product-area.shop-sidebar.shop.section {
    padding: 10px 0 42px;
  }

  .product-area.shop-sidebar > .container {
    width: calc(100% - 20px);
  }

  .product-area.shop-sidebar .col-lg-12 > .row:first-child {
    margin-right: -5px;
    margin-left: -5px;
  }

  .product-area.shop-sidebar .col-lg-12 > .row:first-child > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }

  .product-area.shop-sidebar .single-product {
    margin-bottom: 38px;
  }

  .product-area.shop-sidebar .single-product .button-head {
    display: none;
  }

  .product-area.shop-sidebar .single-product .product-content {
    min-height: 96px;
    padding: 14px 3px 0;
  }

  .product-area.shop-sidebar .single-product .product-content h3,
  .product-area.shop-sidebar .single-product .product-content h3 a {
    font-size: 10px !important;
    line-height: 1.65;
    letter-spacing: 1.55px;
  }

  .product-area.shop-sidebar .single-product .product-content .rating-main {
    gap: 4px;
  }

  .product-area.shop-sidebar .single-product .product-content .rating li {
    font-size: 8px;
  }

  .product-area.shop-sidebar .single-product .rating-main .total-review {
    font-size: 9px;
  }

  .product-area.shop-sidebar .single-product .product-price span,
  .product-area.shop-sidebar .single-product .product-price del {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 1px;
  }

  .product-area.shop-sidebar .single-product .product-img a span.price-dec,
  .product-area.shop-sidebar .single-product .product-img a span.new,
  .product-area.shop-sidebar .single-product .product-img a span.out-of-stock {
    top: 6px;
    left: 6px;
    padding: 5px 7px;
    font-size: 7px;
  }
}
/* Accessibility */
.skip-link{position:fixed;z-index:100000;top:10px;left:10px;padding:11px 16px;border-radius:4px;color:#fff!important;background:#222;transform:translateY(-150%);transition:transform .15s}
.skip-link:focus{transform:translateY(0)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{outline:3px solid #f7941d!important;outline-offset:3px!important}
#reviews{scroll-margin-top:130px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}
.header .shopping-list li form .remove{border:0;cursor:pointer}
.single-product .product-action form{display:inline-block}.single-product .product-action button{height:52px;margin-right:15px;padding:0;border:0;color:#303030;background:transparent;font-size:16px;cursor:pointer}.single-product .product-action button i{line-height:40px}.single-product .product-action button span{display:none}.single-product .product-action button:hover{color:#f46e38}.single-product .product-action-2 form{display:inline-block}.single-product .product-action-2 button{padding:0;border:0;color:#303030;background:transparent;font-size:12px;letter-spacing:.2em;text-transform:uppercase;cursor:pointer}.single-product .product-action-2 button:hover{color:#f46e38}.shopping-summery tbody .action button{padding:6px;border:0;color:#333;background:transparent;cursor:pointer}.shopping-summery tbody .action button:hover{color:#f46e38}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*:before,*:after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.carousel-item{transition:none!important}}
.header-product-search{position:relative;width:min(300px,25vw);margin:0 20px}.header-product-search input{width:100%;height:39px;padding:0 42px 0 14px;border:1px solid rgba(255,255,255,.55);border-radius:22px;color:inherit;background:rgba(255,255,255,.08);font-size:11px}.header-product-search input::placeholder{color:inherit;opacity:.75}.header-product-search button{position:absolute;top:0;right:3px;width:44px;height:39px;border:0;color:inherit;background:transparent}.header.sticky .header-product-search input,.header:hover .header-product-search input,.header.header-other .header-product-search input{color:#292724;border-color:#ddd5cd;background:#fff}.catalog-empty{width:100%;padding:70px 20px;text-align:center}.catalog-empty>i{color:#f7941d;font-size:36px}.catalog-empty h2{margin:16px 0 7px;color:#292724;font-size:23px;font-weight:400}.catalog-empty p{color:#817b75}.catalog-empty a{display:inline-block;margin-top:14px;padding:11px 20px;border-radius:22px;color:#fff;background:#f7941d;font-size:10px;text-transform:uppercase}@media(max-width:991px){.header-product-search{position:absolute;right:105px;left:110px;width:auto;margin:0}.header-product-search input{height:44px;color:#292724!important;border-color:#ded8d1!important;background:#fff!important}.header-product-search button{height:44px;color:#292724!important}.header.shop .right-bar{display:flex!important;align-items:center;justify-content:flex-end;gap:2px;height:44px}.header.shop .right-bar .sinlge-bar{display:flex!important;align-items:center;justify-content:center;width:44px;height:44px;margin:0!important}.header.shop .right-bar .sinlge-bar .single-icon{display:flex!important;align-items:center;justify-content:center;width:44px;height:44px;line-height:1}}
@media(max-width:575px){.header.shop.header-top-slide,.header.shop.header-other{min-height:136px}.header-product-search{top:84px;right:15px;left:15px}.header-product-search input{padding-left:15px;font-size:10px}.header.shop .right-bar{width:90px!important}}
@media(min-width:576px) and (max-width:991px){.header-product-search{top:112px;right:30px;left:30px}.header-product-search input{padding-left:16px;font-size:10px}}
.review-eligibility{margin:15px 0;padding:15px;border-radius:7px;color:#6f604d;background:#fff7ed;font-size:11px}.review-eligibility i{margin-right:7px;color:#f7941d}.verified-review{display:inline-block;margin-left:7px;padding:4px 7px;border-radius:10px;color:#287547;background:#e8f6ed;font-size:8px;font-weight:500}.verified-review i{margin-right:3px}
.newsletter-consent{display:flex;align-items:flex-start;gap:8px;margin:10px 0 14px;color:inherit;font-size:9px;line-height:1.5}.newsletter-consent input{flex:0 0 auto;margin-top:3px;accent-color:#f7941d}.newsletter-consent span{opacity:.85}
.install-storefront{position:fixed;z-index:9997;right:18px;bottom:18px;padding:12px 17px;border:0;border-radius:24px;color:#fff;background:#f7941d;box-shadow:0 8px 25px rgba(0,0,0,.18);font-size:10px;letter-spacing:.5px;text-transform:uppercase}.install-storefront i{margin-right:6px}@media(max-width:575px){.install-storefront{right:12px;bottom:12px}}

@media (max-width: 991.98px) {
  body.home-page .header.shop.header-top-slide:not(.sticky),
  body.home-page .header.shop.header-top-slide:not(.sticky) .header-inner,
  body.home-page .header.shop.header-top-slide:not(.sticky) .middle-inner {
    color: #fff !important;
    background: transparent !important;
  }

  body.home-page .header.shop.header-top-slide:not(.sticky) .right-bar,
  body.home-page .header.shop.header-top-slide:not(.sticky) .right-bar a,
  body.home-page .header.shop.header-top-slide:not(.sticky) .right-bar .single-icon,
  body.home-page .header.shop.header-top-slide:not(.sticky) .icons a,
  body.home-page .mobile-nav--overlay .slicknav_btn:not(.sticky-active) {
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.home-page .header.shop.header-top-slide:not(.sticky) .header-product-search input {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .65) !important;
    background: rgba(0, 0, 0, .14) !important;
  }

  body.home-page .header.shop.header-top-slide:not(.sticky) .header-product-search input::placeholder {
    color: #fff !important;
    opacity: .85;
  }

  body.home-page .header.shop.header-top-slide:not(.sticky) .header-product-search button {
    color: #fff !important;
  }

  .header-product-search {
    top: 60px;
    right: auto;
    left: calc(50% - 110px);
    z-index: 1025;
    width: 44px;
    height: 44px;
    margin: 0;
    transition: top .2s ease, right .2s ease, left .2s ease, width .2s ease;
  }

  .header-product-search input {
    width: 44px;
    padding: 0;
    border-color: transparent !important;
    background: transparent !important;
    opacity: 0;
    pointer-events: none;
    transition: width .2s ease, padding .2s ease, opacity .15s ease, background-color .2s ease;
  }

  .header-product-search button {
    right: 0;
  }

  .header-product-search.is-open {
    right: 15px;
    left: 15px;
    width: auto;
  }

  .header-product-search.is-open input {
    width: 100%;
    padding: 0 46px 0 15px;
    border-color: #ded8d1 !important;
    color: #292724 !important;
    background: #fff !important;
    opacity: 1;
    pointer-events: auto;
  }

  .header-product-search.is-open button {
    color: #292724 !important;
  }
}

/* About page */
.about-page {
  --about-ink: #17130f;
  --about-muted: #746b62;
  --about-soft: #f8f3ed;
  --about-orange: #ff9418;
  color: var(--about-ink);
  background: #fff;
}

.about-breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid #eee7df;
  font-size: 12px;
}

.about-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-breadcrumb a,
.about-breadcrumb span { color: #756d65; }
.about-breadcrumb i { font-size: 8px; color: #b8afa6; }

.about-hero { padding: 72px 0 90px; overflow: hidden; }

.about-hero-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--about-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--about-ink);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.about-hero h1 em {
  color: var(--about-orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.about-hero-copy p,
.about-story-copy p,
.about-setting-description {
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-hero-copy .about-lead {
  color: #39322c;
  font-size: 18px;
  line-height: 1.7;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.about-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--about-orange);
  border-radius: 3px;
  background: var(--about-orange);
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-button:hover { background: #15120f; border-color: #15120f; }

.about-text-link {
  color: var(--about-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-text-link i { margin-left: 8px; }

.about-hero-visual {
  position: relative;
  min-height: 590px;
}

.about-hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -40px;
  width: 76%;
  height: 94%;
  border-radius: 48% 48% 10px 10px;
  background: var(--about-soft);
  content: "";
}

.about-hero-visual img {
  position: absolute;
  z-index: 1;
  inset: 0 0 38px 0;
  width: 92%;
  height: calc(100% - 38px);
  border-radius: 4px 110px 4px 4px;
  object-fit: cover;
}

.about-visual-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(330px, 75%);
  padding: 25px 28px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(29, 20, 12, .12);
}

.about-visual-note strong,
.about-visual-note span { display: block; }
.about-visual-note strong { margin-bottom: 7px; font-size: 15px; }
.about-visual-note span { color: var(--about-muted); font-size: 12px; line-height: 1.6; }

.about-values { padding: 95px 0; background: var(--about-soft); }

.about-section-heading {
  max-width: 670px;
  margin: 0 auto 52px;
  text-align: center;
}

.about-section-heading h2,
.about-story-copy h2,
.about-cta-card h2 {
  margin: 0 0 18px;
  color: var(--about-ink);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.about-section-heading p { color: var(--about-muted); font-size: 14px; line-height: 1.8; }

.about-value-grid,
.about-ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-value-card {
  position: relative;
  min-height: 290px;
  padding: 42px 36px;
  border: 1px solid #e8ded4;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(32, 22, 12, .07);
}

.about-value-card > i { color: var(--about-orange); font-size: 28px; }
.about-value-number { position: absolute; top: 22px; right: 25px; color: #d7ccc0; font-family: Georgia, serif; font-size: 28px; }
.about-value-card h3 { margin: 27px 0 12px; font-size: 19px; font-weight: 600; }
.about-value-card p { margin: 0; color: var(--about-muted); font-size: 13px; line-height: 1.8; }

.about-story { padding: 110px 0; }
.about-story-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.about-story-image { height: 570px; background: var(--about-soft); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }
.about-story-copy { padding-right: clamp(0px, 4vw, 55px); }
.about-setting-description { margin-bottom: 15px; }
.about-setting-description p { margin-bottom: 15px; }

.about-story-copy blockquote {
  margin: 30px 0 0;
  padding: 24px 0 0 24px;
  border: 0;
  border-top: 1px solid #e8ded4;
  border-left: 3px solid var(--about-orange);
  color: #3c332c;
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
}

.about-ritual { padding: 95px 0; background: #17130f; color: #fff; }
.about-ritual .about-section-heading h2 { color: #fff; }
.about-ritual-grid { counter-reset: ritual; }
.about-ritual-grid article { padding: 34px; border-top: 1px solid rgba(255,255,255,.22); }
.about-ritual-grid article > span { color: var(--about-orange); font-family: Georgia, serif; font-size: 28px; }
.about-ritual-grid h3 { margin: 24px 0 12px; color: #fff; font-size: 21px; }
.about-ritual-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.8; }

.about-cta { padding: 90px 0 50px; }
.about-cta-card {
  padding: clamp(48px, 7vw, 90px) 30px;
  border-radius: 5px;
  background: linear-gradient(110deg, #fff0df, #f9e3c9);
  text-align: center;
}
.about-cta-card h2 { max-width: 700px; margin-right: auto; margin-left: auto; }
.about-button-dark { margin-top: 12px; background: var(--about-ink); border-color: var(--about-ink); }
.about-button-dark:hover { background: var(--about-orange); border-color: var(--about-orange); }

.about-services { padding: 30px 0 80px; }
.about-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #eee6de; }
.about-service-grid > div { display: flex; align-items: center; gap: 18px; padding: 28px; }
.about-service-grid > div + div { border-left: 1px solid #eee6de; }
.about-service-grid i { color: var(--about-orange); font-size: 26px; }
.about-service-grid span,
.about-service-grid strong { display: block; }
.about-service-grid strong { margin-bottom: 4px; color: var(--about-ink); font-size: 13px; }
.about-service-grid span { color: var(--about-muted); font-size: 11px; line-height: 1.55; }

@media (max-width: 991px) {
  .about-hero-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-hero-copy { max-width: 700px; }
  .about-hero-visual { min-height: 560px; }
  .about-story-image { order: 2; height: 520px; }
  .about-value-card { padding: 34px 26px; }
}

@media (max-width: 767px) {
  .about-breadcrumb { padding: 14px 0; }
  .about-hero { padding: 46px 0 64px; }
  .about-hero h1 { font-size: 39px; }
  .about-hero-copy .about-lead { font-size: 16px; }
  .about-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-hero-visual { min-height: 420px; }
  .about-hero-visual::before { top: -16px; right: -18px; }
  .about-hero-visual img { width: 94%; border-radius: 3px 64px 3px 3px; }
  .about-visual-note { padding: 19px 21px; }
  .about-values,
  .about-story,
  .about-ritual { padding: 68px 0; }
  .about-section-heading { margin-bottom: 36px; }
  .about-value-grid,
  .about-ritual-grid,
  .about-service-grid { grid-template-columns: 1fr; }
  .about-value-card { min-height: auto; }
  .about-story-image { height: 410px; }
  .about-story-copy blockquote { font-size: 18px; }
  .about-ritual-grid article { padding: 27px 10px; }
  .about-service-grid > div + div { border-top: 1px solid #eee6de; border-left: 0; }
  .about-cta { padding-top: 60px; }
  .about-services { padding-bottom: 60px; }
}

@media (max-width: 420px) {
  .about-hero h1 { font-size: 34px; }
  .about-hero-visual { min-height: 350px; }
  .about-hero-visual img { bottom: 30px; height: calc(100% - 30px); }
  .about-visual-note { width: 82%; }
  .about-section-heading h2,
  .about-story-copy h2,
  .about-cta-card h2 { font-size: 30px; }
  .about-story-image { height: 340px; }
}

@media (max-width: 575px) {
  .header-product-search.is-open {
    top: 136px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .header-product-search {
    top: 80px;
  }

  .header-product-search.is-open {
    top: 148px;
    right: 30px;
    left: 30px;
  }
}

@media (max-width: 767.98px) {
  body.home-page #Gslider .carousel-caption {
    display: block !important;
    right: auto;
    bottom: 8% !important;
    left: 5%;
    width: min(56%, 210px);
    padding: 0;
  }

  body.home-page #Gslider .carousel-caption p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 6px !important;
    font-size: 7px !important;
    line-height: 1.35;
    letter-spacing: .12em !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.home-page #Gslider .carousel-caption h1 {
    margin: 0 0 11px !important;
    font-size: clamp(13px, 4vw, 16px) !important;
    line-height: 1.15;
    letter-spacing: .1em !important;
  }

  body.home-page #Gslider .carousel-caption .ws-btn {
    min-width: 88px;
    min-height: 32px;
    padding: 8px 14px;
    font-size: 7px;
    letter-spacing: .15em;
  }
}

/* Page d'accueil Glad's Beauty */
.home-section {
  padding: 96px 0;
}

.home-narrow {
  max-width: 820px;
  text-align: center;
}

.home-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #f7941d;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-intro h2,
.home-section-heading h2,
.home-story h2,
.home-newsletter h2 {
  margin: 0;
  color: #292724;
  font-family: "Jost", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
}

.home-intro p,
.home-section-heading p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #756f69;
  font-size: 14px;
  line-height: 1.9;
}

.home-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 12px 28px;
  border: 1px solid #f7941d;
  border-radius: 2px;
  color: #fff !important;
  background: #f7941d;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease, background-color .2s ease;
}

.home-link-button:hover {
  color: #f7941d !important;
  background: transparent;
}

.home-benefits {
  border-bottom: 1px solid #eee9e3;
  background: #fff;
}

.home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 24px 22px;
  border-right: 1px solid #eee9e3;
}

.home-benefit:last-child {
  border-right: 0;
}

.home-benefit > i {
  color: #f7941d;
  font-size: 25px;
}

.home-benefit strong,
.home-benefit span {
  display: block;
}

.home-benefit strong {
  margin-bottom: 5px;
  color: #302d29;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-benefit span {
  color: #8a847e;
  font-size: 10px;
}

.home-intro {
  background: #fff;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.home-categories,
.home-routines,
.home-testimonials {
  background: #f8f6f3;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 270px));
  justify-content: center;
  gap: 22px;
}

.home-category-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  color: #292724;
  background: #fff;
}

.home-category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eee9e3;
}

.home-category-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(20, 17, 14, .38), transparent 54%);
}

.home-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.home-category-card:hover .home-category-image img {
  transform: scale(1.04);
}

.home-category-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #c5b9aa;
  font-size: 46px;
}

.home-category-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px 24px;
  color: #fff;
}

.home-category-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.home-category-content span {
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-category-content i {
  margin-left: 7px;
}

.home-products {
  background: #fff;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 24px;
}

.home-product-card {
  min-width: 0;
}

.home-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f7f5f2;
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.025);
}

.home-product-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff;
  background: #f7941d;
  font-size: 8px;
  letter-spacing: .08em;
}

.home-product-content {
  padding-top: 18px;
  text-align: center;
}

.home-product-capacity {
  color: #9a938c;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-product-content h3 {
  margin: 8px 0 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.home-product-content h3 a {
  color: #302d29;
}

.home-product-rating {
  min-height: 18px;
  color: #f7941d;
  font-size: 9px;
}

.home-product-rating span {
  margin-left: 5px;
  color: #9a938c;
}

.home-product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  font-size: 11px;
}

.home-product-price strong {
  color: #302d29;
  font-weight: 500;
}

.home-product-price del {
  color: #aaa39c;
  font-size: 9px;
}

.home-centered-action {
  text-align: center;
}

.home-routine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-routine-card {
  position: relative;
  min-height: 255px;
  padding: 34px 28px;
  color: #302d29;
  background: #fff;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.home-routine-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #c9c1b8;
  font-size: 9px;
}

.home-routine-card > i {
  margin-bottom: 34px;
  color: #f7941d;
  font-size: 28px;
}

.home-routine-card h3 {
  margin: 0 0 13px;
  color: inherit;
  font-size: 17px;
  font-weight: 400;
}

.home-routine-card p {
  margin: 0;
  color: #827b74;
  font-size: 11px;
  line-height: 1.75;
}

.home-routine-card:hover {
  color: #fff;
  background: #f7941d;
  transform: translateY(-4px);
}

.home-routine-card:hover > i,
.home-routine-card:hover > span,
.home-routine-card:hover p {
  color: #fff;
}

.home-story {
  padding: 80px 0;
  background: #fff;
}

.home-story-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  min-height: 430px;
  background: #292520;
}

.home-story-copy {
  align-self: center;
  max-width: 690px;
  padding: 70px;
}

.home-story-copy h2,
.home-story-copy p {
  color: #fff;
}

.home-story-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.9;
  opacity: .75;
}

.home-link-button-light {
  border-color: #fff;
  color: #292520 !important;
  background: #fff;
}

.home-link-button-light:hover {
  color: #fff !important;
  background: transparent;
}

.home-story-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #292520;
  background: #f7941d;
  font-family: "Jost", sans-serif;
  font-size: clamp(27px, 4vw, 49px);
  line-height: 1.15;
  text-align: center;
}

.home-story-signature strong,
.home-story-signature em {
  font-weight: 400;
  font-style: normal;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-testimonial-card {
  padding: 36px;
  background: #fff;
}

.home-testimonial-stars {
  margin-bottom: 20px;
  color: #f7941d;
  font-size: 10px;
}

.home-testimonial-card blockquote {
  min-height: 90px;
  margin: 0 0 22px;
  color: #554f49;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
}

.home-testimonial-card strong,
.home-testimonial-card span {
  display: block;
}

.home-testimonial-card strong {
  color: #302d29;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-testimonial-card span {
  margin-top: 5px;
  color: #9a938c;
  font-size: 9px;
}

.home-newsletter {
  padding: 40px 0 90px;
  background: #fff;
}

.home-newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding: 65px 70px;
  background: #f8f6f3;
}

.home-newsletter-card p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #756f69;
  font-size: 12px;
  line-height: 1.8;
}

.home-newsletter-form .newsletter-inner {
  margin-top: 0 !important;
}

.home-newsletter-form .newsletter-inner .form-group {
  margin-bottom: 12px;
}

.home-newsletter-form .newsletter-inner input[type="email"] {
  height: 50px;
  border: 1px solid #ddd6ce;
  border-radius: 0;
  background: #fff;
  font-size: 11px;
}

.home-newsletter-form .newsletter-inner .btn {
  min-height: 46px;
  padding: 10px 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #f7941d;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .home-section {
    padding: 72px 0;
  }

  .home-benefits-grid,
  .home-category-grid,
  .home-product-grid,
  .home-routine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefit:nth-child(2) {
    border-right: 0;
  }

  .home-benefit:nth-child(-n+2) {
    border-bottom: 1px solid #eee9e3;
  }

  .home-story-card,
  .home-newsletter-card {
    grid-template-columns: 1fr;
  }

  .home-story-copy {
    padding: 55px;
  }

  .home-story-signature {
    min-height: 260px;
  }

  .home-newsletter-card {
    gap: 38px;
    padding: 50px;
  }
}

@media (max-width: 767.98px) {
  .home-section {
    padding: 58px 0;
  }

  .home-benefit {
    min-height: 102px;
    padding: 18px 12px;
  }

  .home-benefit > i {
    font-size: 21px;
  }

  .home-benefit strong {
    font-size: 8px;
  }

  .home-benefit span {
    font-size: 8px;
    line-height: 1.45;
  }

  .home-intro h2,
  .home-section-heading h2,
  .home-story h2,
  .home-newsletter h2 {
    font-size: 28px;
  }

  .home-intro p,
  .home-section-heading p {
    font-size: 12px;
    line-height: 1.75;
  }

  .home-section-heading {
    margin-bottom: 34px;
  }

  .home-category-grid,
  .home-product-grid {
    gap: 24px 12px;
  }

  .home-category-content {
    padding: 20px 16px;
  }

  .home-category-content h3 {
    font-size: 15px;
  }

  .home-product-content h3 {
    font-size: 11px;
  }

  .home-product-price {
    flex-direction: column;
    gap: 2px;
  }

  .home-product-rating span {
    display: none;
  }

  .home-routine-grid,
  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-routine-card {
    min-height: 210px;
  }

  .home-story {
    padding: 55px 0;
  }

  .home-story-copy {
    padding: 42px 26px;
  }

  .home-story-signature {
    min-height: 210px;
  }

  .home-newsletter {
    padding: 20px 0 60px;
  }

  .home-newsletter-card {
    padding: 38px 24px;
  }
}
