@charset "UTF-8";
:root {
  --vh-unit: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --vh-unit: 100dvh;
  }
}
.sidebar--open .o-header__secondary, .sidebar--open .o-header__main {
  background: white;
}

.o-header-sidebar {
  display: block;
}
.o-header-sidebar--visible .o-header-sidebar__content {
  visibility: visible;
  opacity: 1;
  transform: translate3d(calc(100% + var(--layout-site-padding)), 0, 0);
}
.o-header-sidebar--visible .o-header-sidebar__underlay {
  visibility: visible;
  opacity: 0.4;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.1s, 0s;
}
.o-header-sidebar__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 11;
  cursor: pointer;
}
.o-header-sidebar__close .icon {
  width: 2.6rem;
  height: 2.6rem;
}
.o-header-sidebar__content {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 100%;
  display: flex;
  flex-direction: column;
  height: calc(var(--vh-unit) - var(--header-height));
  width: calc(100% - 2 * var(--layout-site-padding));
  margin-top: calc(var(--header-height) - 1.6rem);
  padding: 2.4rem;
  background: white;
  border-radius: 0.6rem;
  opacity: 0;
  transform: translateZ(0);
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  overflow-y: auto;
}
.o-header-sidebar__content.is-animating {
  overflow: hidden;
}
.o-header-sidebar__content .m-search-modal__form {
  max-width: none;
  margin-bottom: 2.4rem;
}
.o-header-sidebar__bottom {
  margin-top: 1.2rem;
  flex-shrink: 0;
  padding: 3.2rem 0;
  border-top: 1px solid #CBD6D4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}
.o-header-sidebar__bottom.is-hidden {
  display: none;
}
.o-header-sidebar__underlay {
  position: fixed;
  z-index: 997;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(40px);
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.o-header-sidebar__item {
  padding-bottom: 2rem;
}
.o-header-sidebar__item--no-spacing {
  padding-bottom: 0;
}
.o-header-sidebar__separator {
  border-top: 1px solid #CBD6D4;
  margin: 1.2rem 0 0;
  padding-top: 3.2rem;
}
.o-header-sidebar__separator:has(+ .o-header-sidebar__footer:empty) {
  display: none;
}
.o-header-sidebar__footer {
  display: flex;
  flex-direction: column;
}
.o-header-sidebar__footer:empty {
  display: none;
}
.o-header-sidebar__footer-top {
  display: flex;
  border-bottom: 1px solid var(--color-primary-body);
  border-top: 1px solid var(--color-primary-body);
  margin: 0 2rem 2.7rem;
  gap: 2.7rem;
  padding: 2.7rem 0 2.7rem;
}
.o-header-sidebar__footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-bottom: 1.7rem;
}
.o-header-sidebar__footer-bottom__title {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.o-header-sidebar__footer-bottom__title-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}
.o-header-sidebar__footer-bottom__content {
  overflow: auto;
  /* Style de scrollbar personnalisé */
}
.o-header-sidebar__footer-bottom__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.o-header-sidebar__footer-bottom__content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.o-header-sidebar__footer-bottom__content::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border: 2px solid white;
  border-radius: 10px;
}
.o-header-sidebar__footer-bottom__content::-webkit-scrollbar-thumb:hover {
  background-color: #b8b8b8;
}
.o-header-sidebar__footer-bottom__content {
  /* Pour Firefox */
  scrollbar-width: thin;
  scrollbar-color: #d3d3d3 transparent;
}
.o-header-sidebar__footer-bottom__content-scroll {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2.8rem;
  padding: 0 2rem 1rem;
}
.o-header-sidebar__footer-bottom__content-scroll .m-category-card {
  width: max-content;
  min-width: 12.9rem;
}
.o-header-sidebar__footer-link-image__link {
  position: relative;
  display: flex;
}
.o-header-sidebar__footer-link-image__link__image {
  width: 100%;
  object-fit: cover;
}
.o-header-sidebar__footer-link-image__link .a-btn {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  margin-bottom: 0;
}
.o-header-sidebar__item-wrapper.is-animating, .o-header-sidebar__back.is-animating, .o-header-sidebar__bottom.is-animating {
  visibility: visible;
  opacity: 0;
  animation-name: cartDrawerItemsFadeInLeft;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  overflow: hidden;
}
.o-header-sidebar__item-wrapper.is-hiding, .o-header-sidebar__back.is-hiding, .o-header-sidebar__bottom.is-hiding {
  animation-name: cartDrawerItemsFadeOutRight;
  animation-duration: 0.25s;
  animation-fill-mode: both;
}
.o-header-sidebar__item-wrapper.is-hidden, .o-header-sidebar__back.is-hidden, .o-header-sidebar__bottom.is-hidden {
  transition: none;
  animation: none;
  opacity: 0;
  visibility: hidden;
}
.o-header-sidebar__main-menu {
  display: flex;
  flex-direction: column;
}
.o-header-sidebar__item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.o-header-sidebar__item-wrapper .m-main-nav__badge {
  margin-left: 0.5rem;
}
.o-header-sidebar__item-cta {
  padding: 0 3.5rem;
  margin-top: 2rem;
}
.o-header-sidebar__back {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding: 2rem 2.4rem;
  border-bottom: 1px solid #CBD6D4;
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.06rem;
  font-weight: 500;
  cursor: pointer;
}
.o-header-sidebar__back .o-header-sidebar__icon-left {
  width: 1.5rem;
}
.o-header-sidebar__back .o-header-sidebar__link {
  justify-content: center;
  padding-left: 0;
}
.o-header-sidebar__link {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-primary-body);
  text-decoration: none;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.o-header-sidebar__link-list {
  margin-top: 2.4rem;
}
.o-header-sidebar__sublink {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--color-primary-body);
  text-decoration: none;
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
}
.o-header-sidebar__sublink--underline {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.03rem;
  width: max-content;
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
}
.o-header-sidebar__sublink--underline::after {
  content: "";
  display: block;
  margin-top: 0.4rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-quaternary-body);
  transition: width 0.3s ease-in-out;
}
.o-header-sidebar__icon-right, .o-header-sidebar__icon-left {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  cursor: pointer;
}
.o-header-sidebar__icon-right .icon-minus,
.o-header-sidebar__icon-right .icon-plus {
  width: 16px;
}
.o-header-sidebar__icon-right .icon-minus {
  display: none;
}
.o-header-sidebar__icon-right.is-visible .icon-minus {
  display: block;
}
.o-header-sidebar__icon-right.is-visible .icon-plus {
  display: none;
}
.o-header-sidebar__panel {
  position: absolute;
  background: white;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 0.6rem;
}
.o-header-sidebar__panel-content {
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
.o-header-sidebar__panel.is-animating {
  visibility: visible;
  opacity: 0;
  animation-name: cartDrawerItemsFadeInLeft;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  overflow: hidden;
}
.o-header-sidebar__panel.is-hiding {
  animation-name: cartDrawerItemsFadeOutRight;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  overflow: hidden;
}
.o-header-sidebar__panel.is-visible {
  z-index: 10;
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.o-header-sidebar__panel .o-header-sidebar__item--full-width {
  grid-column: span 2;
}
.o-header-sidebar__panel .o-header-sidebar__item__link {
  position: relative;
  display: flex;
  width: 100%;
}
.o-header-sidebar__panel .o-header-sidebar__item__link__image {
  width: 100%;
  object-fit: cover;
}
.o-header-sidebar__panel .o-header-sidebar__item__link .a-btn {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  margin-bottom: 0;
}
.o-header-sidebar__secondary-menu-list {
  flex-direction: column;
}
.o-header-sidebar__secondary-menu-list .o-header-sidebar__link {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  height: 3rem;
}
.o-header-sidebar .m-localization {
  margin-right: 0;
  margin-top: 0.2rem;
}
.o-header-sidebar .m-localization__form-wrapper {
  display: inline-block;
}
.o-header-sidebar__images.o-header-sidebar__item-wrapper {
  height: auto;
  display: block;
}
.o-header-sidebar__images.o-header-sidebar__item-wrapper.is-hidden {
  display: none;
}
.o-header-sidebar__images.m-mega-nav__item {
  padding: 0 3.5rem;
  margin: 1.5rem 0;
}

body.u-sidebar-padding-top-small .o-header-sidebar__content {
  margin-top: var(--header-main-mobile-height);
}

@keyframes cartDrawerItemsFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes cartDrawerItemsFadeOutRight {
  from {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translateX(2rem);
  }
}
