/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.l-site-header {
  height: 6.5rem;
  isolation: isolate;
  background-color: transparent;
  color: var(--wp--preset--color--txt-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  transition: transform 0.3s, color 0.3s, background-color 0.3s;
  font-family: "Outfit", sans-serif;
  overflow: visible;
}
@media screen and (max-width: 991px) {
  .l-site-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    height: 3.75rem;
  }
}
.l-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  pointer-events: none;
  transition: background-color 0.3s;
}
.l-site-header.headroom--not-top.headroom--unpinned:not(:has(.is-open)) {
  transform: translateY(-100%);
}
.l-site-header.headroom--not-top {
  color: var(--wp--preset--color--txt-black);
  background-color: var(--wp--preset--color--bg-white);
}
.l-site-header.headroom--not-top::before {
  background-color: var(--wp--preset--color--bg-white);
}
@media screen and (max-width: 991px) {
  .l-site-header.headroom--not-top {
    color: var(--wp--preset--color--txt-white);
    background-color: transparent;
  }
  .l-site-header.headroom--not-top::before {
    background-color: transparent;
  }
}
.l-site-header.headroom--not-top .l-site-header__brand path {
  fill: var(--wp--preset--color--txt-black);
}
@media screen and (max-width: 991px) {
  .l-site-header.headroom--not-top .l-site-header__brand path {
    fill: var(--wp--preset--color--txt-white);
  }
}
.l-site-header.is-dark {
  color: var(--wp--preset--color--txt-black);
}
.l-site-header.is-dark .l-site-header__brand path {
  fill: var(--wp--preset--color--txt-black);
}
.l-site-header .l-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}
.l-site-header__brand {
  color: inherit;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .l-site-header__brand {
    padding-left: 0;
    width: 100%;
  }
}
.l-site-header-main-nav {
  display: flex;
  justify-content: center;
  padding: 0.3125rem;
  column-gap: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 4px;
  position: relative;
}
.l-site-header-main-nav__item-wrap {
  position: static;
}
.l-site-header-main-nav__item-wrap.has-children .l-site-header-main-nav__item svg {
  transition: transform 0.2s ease;
}
.l-site-header-main-nav__item-wrap.has-children.is-open .l-site-header-main-nav__item {
  background-color: rgba(255, 255, 255, 0.2);
}
.l-site-header-main-nav__item-wrap.has-children.is-open .l-site-header-main-nav__item svg {
  transform: rotate(180deg);
}
.l-site-header-main-nav__item {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
  padding: 0.4375rem 1rem;
  border-radius: 4px;
  font-weight: 400;
}
.l-site-header-main-nav__item {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-main-nav__item {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-main-nav__item {
    font-size: 0.9375rem;
  }
}
.l-site-header-main-nav__item svg path {
  fill: currentColor;
}
.l-site-header-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 1.25rem;
}
.l-site-header-panel__inner {
  width: min(90rem, 100vw - 2.5rem);
  background-color: #FFF;
  color: #000;
  border-radius: 4px;
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 31.9375rem 1fr;
  column-gap: 1.875rem;
  box-shadow: 0 1.125rem 2.5rem rgba(0, 0, 0, 0.18);
}
.l-site-header-panel__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 21.875rem;
}
.l-site-header-panel__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.875rem;
  padding-bottom: 1.5rem;
  height: 100%;
}
.l-site-header-panel__group-title {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: underline;
  font-weight: 400;
  margin-bottom: 0.625rem;
  display: inline-block;
}
.l-site-header-panel__group-title {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel__group-title {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel__group-title {
    font-size: 0.9375rem;
  }
}
.l-site-header-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.l-site-header-panel__list a {
  color: #000;
  font-weight: 400;
}
.l-site-header-panel__list a {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel__list a {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel__list a {
    font-size: 0.9375rem;
  }
}
.l-site-header-panel__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.l-site-header-panel__links-label {
  opacity: 0.6;
}
.l-site-header-panel__links a {
  color: var(--wp--preset--color--bg-deep-purple-medium);
  font-weight: 400;
}
.l-site-header-panel__links a {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel__links a {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel__links a {
    font-size: 0.9375rem;
  }
}
.l-site-header-panel-product-finder {
  min-height: 23.625rem;
  border-radius: 4px;
  background: radial-gradient(circle at 48% 48%, rgba(169, 188, 208, 0.55), rgba(13, 26, 42, 0.55) 22%, rgba(5, 10, 18, 0.95) 60%), linear-gradient(120deg, #030B17, #2B425E 70%, #617A98);
  position: relative;
  overflow: hidden;
}
.l-site-header-panel-product-finder__bg {
  position: absolute;
  inset: 0;
}
.l-site-header-panel-product-finder__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-site-header-panel-product-finder__content {
  position: relative;
  z-index: 1;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.l-site-header-panel-product-finder__title {
  color: var(--wp--preset--color--txt-white);
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 3.5rem;
  line-height: 1;
  max-width: 14.375rem;
}
.l-site-header-panel-product-finder__cta {
  height: 2.1875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  border-radius: 4px;
  background-color: var(--wp--preset--color--bg-deep-purple-medium);
  color: var(--wp--preset--color--txt-white);
  font-weight: 400;
  width: 100%;
}
.l-site-header-panel-product-finder__cta {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel-product-finder__cta {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel-product-finder__cta {
    font-size: 0.9375rem;
  }
}
.l-site-header-panel-product-finder__cta path {
  fill: currentColor;
  stroke: currentColor;
}
.l-site-header-panel-featured {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.l-site-header-panel-featured__bg {
  position: absolute;
  inset: 0;
}
.l-site-header-panel-featured__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-site-header-panel-featured__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-site-header-panel-featured__post-type {
  font-weight: 400;
  line-height: 1.5;
  padding: 0.3125rem 0.625rem;
  border-radius: 4px;
  background-color: var(--wp--preset--color--bg-pale-sky-dark);
  color: var(--wp--preset--color--txt-white);
  width: fit-content;
}
.l-site-header-panel-featured__post-type {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel-featured__post-type {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel-featured__post-type {
    font-size: 0.75rem;
  }
}
.l-site-header-panel-featured__ttl {
  margin-top: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: var(--wp--preset--color--txt-white);
  max-width: 16.25rem;
}
.l-site-header-panel-featured__ttl {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .l-site-header-panel-featured__ttl {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-panel-featured__ttl {
    font-size: 1.25rem;
  }
}
.l-site-header-side-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3125rem;
}
.l-site-header-side-nav__search {
  position: relative;
}
.l-site-header-side-nav__item {
  color: inherit;
  font-weight: 400;
  padding: 0.4375rem 1rem;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1875rem;
  line-height: 1.5;
  box-sizing: border-box;
}
.l-site-header-side-nav__item {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .l-site-header-side-nav__item {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-side-nav__item {
    font-size: 0.9375rem;
  }
}
.l-site-header-side-nav__item.is-comparator {
  background-color: var(--wp--preset--color--bg-deep-purple-medium);
  color: var(--wp--preset--color--txt-white);
  display: flex;
  align-items: center;
  column-gap: 0.3125rem;
}
.l-site-header-side-nav__item.is-comparator path {
  stroke: currentColor;
}
.l-site-header-side-nav__item.is-contact {
  background-color: var(--wp--preset--color--bg-black);
  color: var(--wp--preset--color--txt-white);
}
.l-site-header-side-nav__item.is-search {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 0;
  cursor: pointer;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-site-header-side-nav__item.is-search svg path {
  fill: currentColor;
}
.l-site-header-side-nav__item.is-search[aria-expanded=true] {
  background-color: rgba(255, 255, 255, 0.2);
}
.l-site-header-search {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: auto;
  width: min(100vw - 2.5rem, 26.25rem);
  z-index: 120;
  pointer-events: none;
}
@media (max-width: 767px) {
  .l-site-header-search {
    right: 0;
    width: min(100vw - 1.5rem, 26.25rem);
  }
}
.l-site-header-search__inner {
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-0.5rem);
}
.l-site-header-search .c-site-search__live {
  z-index: 130;
}
.l-site-header-search .relevanssi-live-search-results {
  color: var(--wp--preset--color--txt-black);
  background-color: var(--wp--preset--color--bg-white);
}
.l-site-header-search .relevanssi-live-search-result-status,
.l-site-header-search .c-site-search-live__status,
.l-site-header-search .c-site-search-live__status p {
  color: var(--wp--preset--color--txt-pale-sky-dark);
}
.l-site-header-search .c-site-search-live__link,
.l-site-header-search .c-site-search-live__title,
.l-site-header-search a.c-site-search-live__link {
  color: var(--wp--preset--color--txt-black);
}
.l-site-header-search .c-site-search-live__excerpt,
.l-site-header-search .c-site-search-live__empty,
.l-site-header-search .relevanssi-live-search-no-results {
  color: var(--wp--preset--color--txt-pale-sky-dark);
}
.l-site-header-side-nav__search.is-open .l-site-header-search__inner {
  opacity: 1;
  transform: translateY(0);
}
.l-site-header-side-nav__search.is-open .l-site-header-side-nav__item.is-search, .l-site-header.headroom--not-top .l-site-header-side-nav__item.is-search, .l-site-header.is-dark .l-site-header-side-nav__item.is-search {
  background-color: var(--wp--preset--color--bg-gray-light);
  color: var(--wp--preset--color--txt-black);
}
.l-site-header a:focus-visible {
  outline: 2px solid var(--wp--preset--color--bg-deep-purple-medium);
  outline-offset: 2px;
}

.l-site-header__mobile-toggle, .l-site-header__mobile-menu, .l-site-header__mobile-action {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-site-header {
    transition: transform 0.3s;
    background-color: transparent;
    color: var(--wp--preset--color--txt-white);
    transition: transform 0.3s, color 0.3s, background-color 0.2s;
  }
  .l-site-header.is-dark {
    color: var(--wp--preset--color--txt-black);
  }
  .l-site-header.is-mobile-open {
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
  }
  .l-site-header.is-mobile-open .l-site-header__brand path {
    fill: var(--wp--preset--color--bg-black);
  }
  .l-site-header .l-site-header__brand path {
    fill: var(--wp--preset--color--bg-white);
  }
  .l-site-header.headroom--not-top {
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
    transition: transform 0.3s, color 0.3s, background-color 0.2s;
  }
  .l-site-header.headroom--not-top .l-site-header__brand path {
    fill: var(--wp--preset--color--txt-black);
  }
  .l-site-header .l-container {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .l-site-header-main-nav, .l-site-header-side-nav {
    display: none;
  }
  .l-site-header__brand {
    transition: none;
  }
  .l-site-header__mobile-toggle {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
  }
  .l-site-header__mobile-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin-left: -11px;
    margin-top: -1px;
    background-color: currentColor;
    transform-origin: center;
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .l-site-header__mobile-toggle span:first-child {
    transform: translateY(-6px);
  }
  .l-site-header__mobile-toggle span:last-child {
    transform: translateY(6px);
  }
  .l-site-header__mobile-toggle.is-open span:first-child {
    transform: translateY(0) rotate(45deg);
  }
  .l-site-header__mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-site-header__mobile-toggle.is-open span:last-child {
    transform: translateY(0) rotate(-45deg);
  }
  .l-site-header__mobile-menu {
    display: block;
    position: fixed;
    inset: 3.75rem 0 0;
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
    padding: 1.875rem 1.25rem;
    overflow: hidden;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .is-mobile-open .l-site-header__mobile-menu {
    pointer-events: auto;
  }
  .l-site-header__mobile-level {
    display: none;
    flex-direction: column;
    gap: 1.875rem;
  }
  .l-site-header__mobile-level.is-active {
    display: flex;
  }
  .l-site-header__mobile-link, .l-site-header__mobile-back {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: "Outfit", sans-serif;
  }
  .l-site-header__mobile-link svg, .l-site-header__mobile-back svg {
    transform: rotate(-90deg);
  }
  .l-site-header__mobile-link {
    font-weight: 300;
  }
  .l-site-header__mobile-link {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header__mobile-link {
    font-size: calc(20px + 4 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header__mobile-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__mobile-back {
    justify-content: flex-start;
    gap: 0.75rem;
    font-weight: 500;
  }
  .l-site-header__mobile-back {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header__mobile-back {
    font-size: calc(20px + 4 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header__mobile-back {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__mobile-back svg {
    transform: rotate(90deg);
  }
  .l-site-header__mobile-actions {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .l-site-header__mobile-action {
    min-height: 2.75rem;
    border-radius: 0.25rem;
    padding: 0.625rem 1rem;
    background-color: var(--wp--preset--color--bg-deep-purple-medium);
    color: var(--wp--preset--color--txt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    border: 0;
  }
  .l-site-header__mobile-action svg {
    flex-shrink: 0;
  }
  .l-site-header__mobile-action svg path {
    stroke: var(--wp--preset--color--bg-white);
  }
  .l-site-header__mobile-action.contact {
    background-color: var(--wp--preset--color--bg-black);
  }
  .l-site-header__mobile-action.search {
    background-color: var(--wp--preset--color--bg-white);
    border: 1px solid var(--wp--preset--color--bg-black);
  }
  .l-site-header__mobile-menu:has(.l-site-header__mobile-search:not([hidden])) .l-site-header__mobile-action.search {
    display: none;
  }
  .l-site-header__mobile-action.search svg {
    width: 0.625rem;
    height: 0.625rem;
  }
  .l-site-header__mobile-action.search path {
    stroke: var(--wp--preset--color--bg-black);
  }
  .l-site-header__mobile-action-label {
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: var(--wp--preset--color--txt-black);
  }
  .l-site-header__mobile-action-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header__mobile-action-label {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header__mobile-action-label {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__mobile-search {
    margin-top: -1.5rem;
  }
  .l-site-header__mobile-panel-links {
    margin-top: 3.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.0625rem;
  }
  .l-site-header__mobile-panel-links::before {
    content: "";
    display: block;
    width: calc(100% + 1.25rem * 2);
    height: 1px;
    transform: translateX(calc(-1 * 1.25rem));
    background-color: var(--wp--preset--color--bg-gray-light);
    margin-bottom: 2.5rem;
  }
  .l-site-header__mobile-panel-links-label {
    opacity: 0.5;
    font-weight: 400;
    line-height: 1.5;
  }
  .l-site-header__mobile-panel-links-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header__mobile-panel-links-label {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header__mobile-panel-links-label {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__mobile-panel-link {
    color: var(--wp--preset--color--bg-deep-purple-medium);
    font-weight: 400;
  }
  .l-site-header__mobile-panel-link {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header__mobile-panel-link {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header__mobile-panel-link {
    font-size: 0.9375rem;
  }
}