:root {
  --fauves-header-height: 76px;
  --fauves-max: 1320px;
  --fauves-soft: #f6f1ea;
  --fauves-muted: #716d66;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  min-width: 320px;
  background: #fff;
  color: var(--wp--preset--color--ink);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.fauves-topbar {
  min-height: 2.5rem;
  padding: 0 var(--wp--preset--spacing--lg);
  background: #f2eadf;
  color: #10100f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fauves-topbar__ticker {
  position: relative;
  display: grid;
  min-height: 2.5rem;
  place-items: center;
  overflow: hidden;
}

.fauves-topbar__item {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  transform: translateY(0.55rem);
  transition: opacity 260ms ease, transform 320ms ease;
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.fauves-topbar__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fauves-topbar__item.is-exiting {
  opacity: 0;
  transform: translateY(-0.55rem);
}

.fauves-topbar__item span {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.fauves-header {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #10100f;
  min-height: var(--fauves-header-height);
  border-bottom: 0;
  margin-bottom: 0;
  padding-right: var(--wp--preset--spacing--lg);
  padding-left: var(--wp--preset--spacing--lg);
}

.wp-block-template-part:has(.fauves-header),
.wp-block-template-part:has(.fauves-topbar) {
  position: sticky;
  top: 0;
  z-index: 70;
  margin-bottom: 0;
  background: #fff;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.wp-block-template-part:has(.fauves-header).is-hidden {
  transform: translateY(calc(-100% - 1px));
}

.fauves-header + *,
.fauves-home {
  margin-top: 0;
}

.fauves-header__inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--fauves-max);
  min-height: var(--fauves-header-height);
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.fauves-brand,
.fauves-footer__brand {
  letter-spacing: 0.42em;
  text-align: center;
}

.fauves-brand {
  min-width: 8.5rem;
}

.fauves-brand a {
  color: inherit;
}

.fauves-brand-logo {
  width: 8.45rem;
  height: 1.4rem;
  margin-right: auto !important;
  margin-left: auto !important;
  line-height: 0;
}

.fauves-brand-logo a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: transparent;
  background-image: url("../icons/logo-fauves.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0);
  white-space: nowrap;
}

.fauves-footer__links .wp-block-navigation-item__content {
  color: inherit;
}

.fauves-header__left,
.fauves-header__tools {
  min-width: 0;
  gap: 0.85rem;
}

.fauves-header__left {
  justify-self: start;
}

.fauves-header__tools {
  justify-self: end;
}

.fauves-icon-link {
  appearance: none;
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  letter-spacing: 0;
  position: relative;
  text-transform: none;
  white-space: nowrap;
}

.fauves-icon-link:hover {
  background: transparent;
  filter: none;
}

.fauves-icon-link:focus-visible {
  outline: 1px solid #10100f;
  outline-offset: 0.25rem;
}

.fauves-icon-link::before {
  content: "";
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0);
}

.fauves-icon-link--search::before {
  background-image: url("../icons/u_search.svg");
}

.fauves-menu-toggle {
  appearance: none;
  position: relative;
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  flex-direction: column;
  gap: 0.22rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.fauves-menu-toggle::before,
.fauves-menu-toggle::after {
  content: "";
  position: absolute;
  width: 1.42rem;
  height: 2px;
  background: #10100f;
  opacity: 0;
  transition: opacity 140ms ease, transform 180ms ease;
}

.fauves-menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #10100f;
  transition: transform 180ms ease, opacity 160ms ease;
}

.fauves-menu-toggle:hover {
  background: transparent;
}

.fauves-menu-toggle:focus-visible {
  outline: 1px solid #10100f;
  outline-offset: 0.25rem;
}

.fauves-menu-toggle.is-active span {
  opacity: 0;
  transform: scaleX(0.2);
}

.fauves-menu-toggle.is-active::before {
  opacity: 1;
  transform: rotate(45deg);
}

.fauves-menu-toggle.is-active::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.fauves-header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.fauves-header-search__form {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.65rem);
  width: min(17.5rem, calc(100vw - 8rem));
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50%) translateX(-0.6rem) scaleX(0.92);
  transform-origin: left center;
  transition: opacity 190ms ease, transform 220ms ease, visibility 190ms ease;
}

.fauves-header-search.is-open .fauves-header-search__form {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(0) scaleX(1);
}

.fauves-header-search__input {
  width: 100%;
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(16, 16, 15, 0.18);
  border-radius: 0;
  background: #fff;
  color: #10100f;
  font: inherit;
  font-size: 0.82rem;
}

.fauves-header-search__input:focus {
  border-color: #10100f;
  outline: none;
}

.fauves-icon-link--account::before {
  background-image: url("../icons/u_user.svg");
}

.fauves-icon-link--cart::before {
  background-image: url("../icons/u_shopping-bag.svg");
}

.fauves-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(calc(100vw - (var(--wp--preset--spacing--lg) * 2)), calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2)));
  visibility: hidden;
  padding: 1.05rem var(--wp--preset--spacing--lg) 1.25rem;
  background: #fff;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  box-shadow: 0 1.4rem 2.8rem rgba(16, 16, 15, 0.08);
  opacity: 0;
  transform: translate(-50%, -0.65rem);
  transition: opacity 190ms ease, transform 220ms ease, visibility 190ms ease;
}

.fauves-mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.fauves-mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 13.5rem);
  gap: 0;
  width: min(100%, var(--fauves-max));
  margin: 0 auto;
  background: #fff;
}

.fauves-mega-menu__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.65rem;
}

.fauves-mega-menu__card {
  position: relative;
  display: flex;
  min-height: clamp(10.5rem, 16vw, 15rem);
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  background-color: #f2eadf;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.fauves-mega-menu__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 15, 0.02), rgba(16, 16, 15, 0.58));
  transition: background 180ms ease;
}

.fauves-mega-menu__card:hover::before {
  background: linear-gradient(180deg, rgba(16, 16, 15, 0), rgba(16, 16, 15, 0.72));
}

.fauves-mega-menu__card span {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.fauves-mega-menu__links {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: 1.35rem 1rem 1rem 0.35rem;
  background: #fff;
}

.fauves-mega-menu__links a {
  color: #10100f;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
}

.fauves-mega-menu__links a:hover {
  opacity: 0.68;
}

.fauves-mega-menu__card--homme {
  background-image: url("../images/editorial-homme-field.jpg");
}

.fauves-mega-menu__card--femme {
  background-image: url("../images/editorial-femme-palms.jpg");
}

.fauves-mega-menu__card--unisexe {
  background-image: url("../images/editorial-flatlay-towel.jpg");
}

.fauves-header .wp-block-navigation__responsive-container-open,
.fauves-header .wp-block-navigation__responsive-container-close {
  color: currentColor;
}

.fauves-home {
  background: #fff;
}

.fauves-home-hero {
  min-height: min(54vw, 520px);
  padding-right: var(--wp--preset--spacing--lg);
  padding-left: var(--wp--preset--spacing--lg);
}

.fauves-home-hero .wp-block-cover__image-background {
  object-position: center 45%;
}

.fauves-home-hero .wp-block-cover__inner-container {
  width: 100%;
  max-width: none;
}

.fauves-home-hero__content {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-right: 0 !important;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  padding-left: 0 !important;
  animation: fauves-hero-text-fade-in 760ms ease-out 160ms both;
}

.fauves-home-hero__content > * {
  max-width: 21rem;
  margin-right: auto !important;
  margin-left: 0 !important;
}

@keyframes fauves-hero-text-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.9rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fauves-home-hero h1 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fauves-home-hero p {
  margin-bottom: 1.6rem;
  color: #222;
}

.fauves-section {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--wp--preset--spacing--lg);
  padding-left: var(--wp--preset--spacing--lg);
  padding-top: clamp(2.25rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.25rem, 5vw, 4.5rem);
}

main.fauves-section > .wp-block-post-title,
main.fauves-section > .wp-block-post-content {
  width: 100%;
  max-width: 100% !important;
}

main.fauves-section > .wp-block-post-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100%;
}

.fauves-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-lane {
  padding: 2rem var(--wp--preset--spacing--lg) 1.5rem;
}

.fauves-category-row {
  gap: clamp(1rem, 3vw, 3rem);
  margin: 0;
}

.fauves-category-row .wp-block-column {
  display: flex;
  justify-content: center;
}

.fauves-home .fauves-category-row .wp-block-column {
  opacity: 0;
  animation: fauves-category-fade-in 520ms ease forwards;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(1) {
  animation-delay: 120ms;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(2) {
  animation-delay: 240ms;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(3) {
  animation-delay: 360ms;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(4) {
  animation-delay: 480ms;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(5) {
  animation-delay: 600ms;
}

.fauves-home .fauves-category-row .wp-block-column:nth-child(6) {
  animation-delay: 720ms;
}

@keyframes fauves-category-fade-in {
  to {
    opacity: 1;
  }
}

.fauves-category-bubble {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.fauves-category-bubble img {
  width: clamp(5.5rem, 8vw, 7.25rem);
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: 50%;
  background: #f4efe9;
  object-fit: contain;
}

.fauves-shape-entry-section {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(1.5rem, 3.5vw, 3rem) var(--wp--preset--spacing--lg) clamp(2.25rem, 5vw, 4rem);
}

.fauves-shape-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.fauves-shape-card {
  position: relative;
  display: grid;
  min-height: clamp(14rem, 22vw, 19rem);
  align-content: space-between;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: #f7f4ef;
  color: #10100f;
  isolation: isolate;
}

.fauves-shape-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  transition: transform 260ms ease, opacity 180ms ease;
}

.fauves-shape-card:hover::before {
  opacity: 1;
  transform: scale(1.025);
}

.fauves-shape-card--rectangulaire::before {
  background-image: url("../images/card-bg/bg2-v3.jpg");
}

.fauves-shape-card--ronde::before {
  background-image: url("../images/card-bg/bg3-v3.jpg");
}

.fauves-shape-card--aviateur::before {
  background-image: url("../images/card-bg/bg4-v3.jpg");
}

.fauves-shape-card--carre::before {
  background-image: url("../images/card-bg/bg5-v3.jpg");
}

.fauves-shape-card__image {
  display: grid;
  min-height: 8rem;
  place-items: center;
}

.fauves-shape-card__image img {
  width: min(100%, 16rem);
  aspect-ratio: 3.3 / 1;
  object-fit: contain;
  transition: transform 220ms ease;
}

.fauves-shape-card:hover .fauves-shape-card__image img {
  transform: scale(1.04);
}

.fauves-shape-card__copy {
  display: grid;
  gap: 0.35rem;
}

.fauves-shape-card__copy strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.fauves-shape-card__copy strong {
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  letter-spacing: 0.04em;
}

.fauves-shape-card__copy em {
  max-width: 14rem;
  color: rgba(16, 16, 15, 0.68);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.35;
}

.fauves-section-heading {
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.fauves-section-heading h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fauves-section-heading p {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.fauves-best > .wc-block-grid,
.fauves-best .wc-block-grid__products {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.fauves-about {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.fauves-about h2,
.fauves-about h3 {
  margin-top: 0;
  letter-spacing: 0;
}

.fauves-about p {
  color: rgba(16, 16, 15, 0.74);
}

.fauves-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.fauves-about-hero__text {
  max-width: 34rem;
}

.fauves-about-hero__text h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.fauves-about-hero__text p {
  margin-bottom: 1.1rem;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.fauves-about-hero__media {
  min-height: clamp(24rem, 44vw, 34rem);
  background: url("../images/editorial-premium-man.jpg") center / cover no-repeat #f2eadf;
}

.fauves-about-kicker {
  margin: 0 0 0.9rem;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #f2eadf;
}

.fauves-about-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.fauves-about-intro p {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.fauves-about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: rgba(16, 16, 15, 0.12);
}

.fauves-about-value {
  min-height: 16rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fff;
}

.fauves-about-value h3 {
  margin-bottom: 1rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fauves-about-value p {
  margin-bottom: 0;
  line-height: 1.62;
}

.fauves-about-split {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.fauves-about-split__media {
  min-height: 28rem;
  background: url("../images/editorial-femme-palms.jpg") center / cover no-repeat #f2eadf;
}

.fauves-about-split__text {
  display: grid;
  align-content: center;
}

.fauves-about-split__text h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.fauves-about-split__text p {
  margin-top: 0;
  line-height: 1.7;
}

.fauves-about-collections {
  display: grid;
  gap: 1rem;
}

.fauves-about-collections__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.fauves-about-collections__head h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.fauves-about-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fauves-about-card {
  position: relative;
  display: flex;
  min-height: clamp(13rem, 21vw, 20rem);
  align-items: flex-end;
  overflow: hidden;
  padding: 1.2rem;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.fauves-about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 15, 0.03), rgba(16, 16, 15, 0.62));
}

.fauves-about-card span {
  position: relative;
  z-index: 1;
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.fauves-about-card--homme {
  background-image: url("../images/editorial-homme-field.jpg");
}

.fauves-about-card--femme {
  background-image: url("../images/editorial-femme-palms.jpg");
}

.fauves-about-card--unisexe {
  background-image: url("../images/editorial-flatlay-towel.jpg");
}

.fauves-about-cta {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: clamp(2.4rem, 5vw, 4rem);
  background: #10100f;
  color: #fff;
  text-align: center;
}

.fauves-about-cta h2 {
  max-width: 48rem;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.fauves-about-cta p {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.fauves-about-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 1.4rem;
  background: #fff;
  color: #10100f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wp-block-button__link,
button,
input[type="submit"],
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  border-radius: 2px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  filter: brightness(0.94);
}

.woocommerce div.product {
  margin-block: clamp(2rem, 5vw, 5rem);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--wp--preset--color--blue);
  font-size: var(--wp--preset--font-size--xl);
}

.woocommerce .quantity .qty {
  min-height: 3rem;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 0;
}

.woocommerce div.product form.cart .button {
  min-height: 3rem;
  background: transparent;
  border: 1px solid var(--wp--preset--color--blue);
  color: var(--wp--preset--color--blue);
}

.woocommerce div.product form.cart .button:hover {
  background: var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
}

body.woocommerce-cart main.wp-block-group {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--lg) clamp(4rem, 7vw, 7rem);
}

body.woocommerce-cart main.wp-block-group > .wp-block-post-title,
body.woocommerce-cart main.wp-block-group > .wp-block-post-content,
body.woocommerce-cart main.wp-block-group > .wc-block-store-notices {
  width: 100%;
  max-width: 100% !important;
}

body.woocommerce-cart main.wp-block-group > .wp-block-post-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.woocommerce-cart .entry-content > .woocommerce {
  width: 100%;
  max-width: 100% !important;
}

body.woocommerce-cart .wp-block-post-title {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 clamp(2rem, 4vw, 3.25rem);
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.85;
  text-transform: uppercase;
}

body.woocommerce-cart .wp-block-post-title::before {
  content: "Votre commande";
  font-family: var(--wp--preset--font-family--body);
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.woocommerce-cart .entry-content > .woocommerce {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

body.woocommerce-cart .wc-empty-cart-message {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-height: clamp(20rem, 34vw, 28rem);
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.92), rgba(255, 255, 255, 0.96)),
    url("../images/leaves/leaves-card.webp") center / cover no-repeat;
}

body.woocommerce-cart .wc-empty-cart-message .wc-block-components-notice-banner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 32rem);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #10100f;
  text-align: center;
}

body.woocommerce-cart .wc-empty-cart-message svg {
  display: none;
}

body.woocommerce-cart .wc-empty-cart-message .wc-block-components-notice-banner__content {
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.2rem;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  background: #f7f4ef;
  color: #10100f;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
  position: static;
  display: grid;
  flex: 0 0 1.55rem;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 50%;
  background: #10100f;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}

body.woocommerce-cart .woocommerce-message .button,
body.woocommerce-cart .woocommerce-info .button {
  order: 2;
  margin-left: auto;
  color: #10100f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
  text-transform: uppercase;
}

body.woocommerce-cart .return-to-shop {
  margin: 1rem 0 0;
  text-align: center;
}

body.woocommerce-cart .return-to-shop .button,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart table.cart td.actions .button,
body.woocommerce-cart .coupon .button,
body.woocommerce-cart .wc-block-components-button {
  min-height: 3.15rem;
  padding-right: 1.35rem;
  padding-left: 1.35rem;
  border: 1px solid #10100f;
  border-radius: 0;
  background: #10100f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

body.woocommerce-cart .return-to-shop .button:hover,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-cart table.cart td.actions .button:hover,
body.woocommerce-cart .coupon .button:hover,
body.woocommerce-cart .wc-block-components-button:hover {
  background: transparent;
  color: #10100f;
  filter: none;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals {
  width: 100%;
}

body.woocommerce-cart .woocommerce-cart-form {
  padding: 0;
}

body.woocommerce-cart table.shop_table {
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.1);
  border-radius: 0;
  background: #fff;
  border-collapse: collapse;
}

body.woocommerce-cart table.shop_table th {
  padding: 1rem;
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  background: #f7f4ef;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
  padding: 1.15rem 1rem;
  border-top-color: rgba(16, 16, 15, 0.1);
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.92rem;
  vertical-align: middle;
}

body.woocommerce-cart table.cart td.product-remove {
  width: 2.5rem;
}

body.woocommerce-cart table.cart a.remove {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.14);
  border-radius: 50%;
  color: #10100f !important;
  font-size: 1.05rem;
  line-height: 1;
}

body.woocommerce-cart table.cart a.remove:hover {
  border-color: #10100f;
  background: #10100f;
  color: #fff !important;
}

body.woocommerce-cart table.cart img {
  width: clamp(5.5rem, 10vw, 8rem);
  background: #f7f4ef;
}

body.woocommerce-cart .product-name a {
  color: #10100f;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

body.woocommerce-cart .product-name dl.variation,
body.woocommerce-cart .product-name dl.variation p {
  margin: 0.45rem 0 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
  color: #10100f;
  font-weight: 900;
}

body.woocommerce-cart .quantity .qty {
  min-height: 2.75rem;
  border-color: rgba(16, 16, 15, 0.16);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

body.woocommerce-cart table.cart td.actions {
  padding: 1rem;
  background: #fff;
}

body.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

body.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: min(100%, 18rem);
  min-height: 3.15rem;
  padding: 0 1rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background: #faf8f5;
  color: #10100f;
  font-size: 0.86rem;
}

body.woocommerce-cart .cart_totals {
  width: min(100%, 32rem);
  margin-left: auto;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: #f7f4ef;
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 1.15rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-cart .cart_totals table.shop_table {
  border: 0;
  background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  background: transparent;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  color: #10100f;
  font-size: 1.05rem;
  font-weight: 900;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fauves-product-page {
  padding-top: clamp(1.25rem, 3vw, 2.5rem);
}

.fauves-product-hero {
  display: grid;
  justify-items: center;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  min-height: calc(100vh - 8rem);
  align-content: start;
  padding-top: clamp(0.75rem, 2vw, 1.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.fauves-product-hero__image {
  width: 100%;
  max-width: min(100%, 72rem);
}

.fauves-product-hero__image .wp-block-woocommerce-product-image-gallery {
  width: 100% !important;
  max-width: none !important;
}

.fauves-product-hero__image .woocommerce-product-gallery {
  width: 100% !important;
  margin: 0 auto !important;
}

.fauves-product-hero__image .woocommerce-product-gallery__wrapper,
.fauves-product-hero__image .woocommerce-product-gallery__image,
.fauves-product-hero__image .woocommerce-product-gallery__image a {
  display: block;
  width: 100% !important;
  margin: 0 !important;
}

.fauves-product-hero__image .woocommerce-product-gallery__image:not(:first-child),
.fauves-product-hero__image .flex-control-nav,
.fauves-product-hero__image .woocommerce-product-gallery__trigger {
  display: none !important;
}

.fauves-product-hero__image img {
  display: block;
  width: min(88vw, 76rem) !important;
  min-width: min(100%, 48rem);
  max-height: clamp(20rem, 42vw, 36rem);
  margin: 0 auto;
  object-fit: contain;
}

.fauves-product-hero__content {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: 100%;
}

.fauves-product-hero__content h1 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.92;
  text-transform: uppercase;
}

.fauves-product-hero__material {
  margin: 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.fauves-product-hero__details {
  margin-top: 1.65rem;
  color: #10100f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 0.32rem;
  text-transform: uppercase;
}

.fauves-product-hero__content .price,
.fauves-product-hero__content .wp-block-woocommerce-product-price,
.fauves-product-hero__content .wc-block-components-product-price {
  display: none !important;
}

.fauves-product-hero__swatches {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.fauves-product-rest form.cart {
  display: none !important;
}

.fauves-product-hero__swatches .wp-block-add-to-cart-form,
.fauves-product-hero__swatches form.cart {
	display: grid;
	justify-items: center;
	width: 100%;
	margin: 0;
}

.fauves-product-hero__swatches form.variations_form.cart {
	width: fit-content !important;
	max-width: 100%;
	margin-inline: auto !important;
}

.fauves-product-hero__swatches form.cart > div {
	width: auto !important;
	margin-inline: auto !important;
	justify-self: center !important;
}

.fauves-product-hero__swatches select {
	display: none !important;
}

.fauves-product-hero__swatches .woo-selected-variation-item-name {
	display: none !important;
}

.fauves-product-hero__swatches table.variations,
.fauves-product-hero__swatches table.variations tbody,
.fauves-product-hero__swatches table.variations tr,
.fauves-product-hero__swatches table.variations th,
.fauves-product-hero__swatches table.variations td {
  display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: center;
}

.fauves-product-hero__swatches table.variations {
	width: auto !important;
	margin-inline: auto !important;
}

.fauves-product-hero__swatches table.variations .value {
	display: grid;
	justify-items: center;
}

.fauves-product-hero__swatches table.variations .label {
	margin-bottom: 0.9rem;
}

.fauves-product-hero__swatches table.variations .label label {
  color: #10100f;
  font-size: 0.95rem;
  font-weight: 900;
}

.fauves-product-hero__swatches .variable-items-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 !important;
  padding: 0 !important;
}

.fauves-product-hero__swatches .variable-item {
  width: 2.65rem !important;
  height: 2.65rem !important;
  margin: 0 !important;
  border: 1px solid rgba(16, 16, 15, 0.28) !important;
  box-shadow: none !important;
}

.fauves-product-hero__swatches .variable-item.selected {
  border-color: #10100f !important;
  box-shadow: 0 0 0 0.18rem #10100f !important;
}

.fauves-product-hero__swatches .variable-item-image {
  width: 2.2rem !important;
  height: 2.2rem !important;
  object-fit: contain;
}

.fauves-product-hero__swatches .reset_variations {
  display: inline-block !important;
  margin-top: 0.7rem;
  color: #10100f;
  font-size: 0.82rem;
  font-weight: 500;
}

.fauves-product-hero__swatches .single_variation_wrap,
.fauves-product-hero__swatches #wc-stripe-express-checkout-element,
.fauves-product-hero__swatches wc-order-attribution-inputs {
  display: none !important;
}

.fauves-product-rest {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

.fauves-product-rest .woocommerce-tabs {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.fauves-product-rest .wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
  list-style: none;
}

.fauves-product-rest .wc-tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.fauves-product-rest .wc-tabs a {
  display: inline-flex;
  padding: 0 0 0.75rem;
  color: rgba(16, 16, 15, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-product-rest .wc-tabs .active a {
  color: #10100f;
  box-shadow: inset 0 -2px 0 #10100f;
}

.fauves-product-rest .woocommerce-Tabs-panel {
  margin: 0;
  padding: 0;
}

.fauves-product-rest .woocommerce-Tabs-panel > h2:first-child {
  display: none;
}

.fauves-variation-gallery {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.fauves-variation-gallery__header {
  display: grid;
  gap: 0.35rem;
}

.fauves-variation-gallery__header h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.fauves-variation-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.fauves-variation-gallery__grid[hidden] {
  display: none;
}

.fauves-variation-gallery__item {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: transparent;
  aspect-ratio: auto;
  padding: 0;
}

.fauves-variation-gallery__button {
  appearance: none;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.fauves-variation-gallery__item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: auto;
}

.fauves-variation-gallery__button img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fauves-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.fauves-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.has-fauves-gallery-lightbox {
  overflow: hidden;
}

.fauves-gallery-lightbox__image {
  display: block;
  max-width: min(100%, 86rem);
  max-height: 86vh;
  object-fit: contain;
}

.fauves-gallery-lightbox__close {
  appearance: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background: #fff;
  color: #10100f;
  cursor: pointer;
}

.fauves-gallery-lightbox__close::before,
.fauves-gallery-lightbox__close::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
}

.fauves-gallery-lightbox__close::before {
  transform: rotate(45deg);
}

.fauves-gallery-lightbox__close::after {
  transform: rotate(-45deg);
}

.fauves-gallery-lightbox__arrow {
  appearance: none;
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #10100f;
  cursor: pointer;
  transform: translateY(-50%);
}

.fauves-gallery-lightbox__arrow--prev {
  left: clamp(1rem, 3vw, 2rem);
}

.fauves-gallery-lightbox__arrow--next {
  right: clamp(1rem, 3vw, 2rem);
}

.fauves-gallery-lightbox__arrow::before {
  content: "";
  width: 0.78rem;
  height: 0.78rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.fauves-gallery-lightbox__arrow--prev::before {
  transform: translateX(0.15rem) rotate(-45deg);
}

.fauves-gallery-lightbox__arrow--next::before {
  transform: translateX(-0.15rem) rotate(135deg);
}

.fauves-product-description {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.fauves-product-description__intro {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    #f6f1ea url("../images/section-bg-2.jpg") center / cover no-repeat;
}

.fauves-product-description__intro h2 {
  max-width: 32rem;
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.fauves-product-description__intro p,
.fauves-product-description__block p,
.fauves-product-description__note {
  margin: 0;
  color: rgba(16, 16, 15, 0.72);
  line-height: 1.65;
}

.fauves-product-description__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(16, 16, 15, 0.1);
}

.fauves-product-description__block {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 11rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  background: #fff;
}

.fauves-product-description h3 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-product-description__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fauves-product-description__list li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

.fauves-product-description__list strong {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fauves-product-description__section {
  display: grid;
  gap: 0.9rem;
}

.fauves-product-description__section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.fauves-product-description__section p {
  margin: 0;
  color: rgba(16, 16, 15, 0.74);
  line-height: 1.72;
}

.fauves-product-description__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fauves-product-description__pill-row li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fauves-product-description__faq {
  display: grid;
  gap: 0.7rem;
}

.fauves-product-description__faq details {
  padding: 1rem 0;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-product-description__faq summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.fauves-product-description__faq details > *:not(summary) {
  margin-top: 0.8rem;
}

.fauves-product-description__faq ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: rgba(16, 16, 15, 0.74);
}

.fauves-product-related {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.fauves-product-related__header {
  display: grid;
  justify-items: start;
}

.fauves-product-related__header h2 {
  margin: 0;
}

.fauves-product-related__header h2 {
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fauves-product-related__track {
  display: grid;
  grid-auto-columns: minmax(16rem, calc((100% - 3rem) / 4));
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.fauves-product-related__track::-webkit-scrollbar {
  display: none;
}

.fauves-product-related__card {
  display: grid;
  align-content: start;
  min-width: 0;
  aspect-ratio: 1;
  scroll-snap-align: start;
  background-color: #f7f4ef;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
}

.fauves-product-related__card:nth-child(5n + 2) {
  --fauves-card-bg: url("../images/card-bg/bg2-v3.jpg");
}

.fauves-product-related__card:nth-child(5n + 3) {
  --fauves-card-bg: url("../images/card-bg/bg3-v3.jpg");
}

.fauves-product-related__card:nth-child(5n + 4) {
  --fauves-card-bg: url("../images/card-bg/bg4-v3.jpg");
}

.fauves-product-related__card:nth-child(5n + 5) {
  --fauves-card-bg: url("../images/card-bg/bg5-v3.jpg");
}

.fauves-product-related__image {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(1.2rem, 2.5vw, 2.25rem) clamp(1rem, 2vw, 1.6rem) 0;
}

.fauves-product-related__image img {
  display: block;
  width: 100%;
  max-height: clamp(7rem, 10vw, 10rem);
  object-fit: contain;
}

.fauves-product-related__body {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: clamp(1.1rem, 2.3vw, 2.2rem) 1.15rem 1.8rem;
  text-align: center;
}

.fauves-product-related__body h3,
.fauves-product-related__body p {
  margin: 0;
}

.fauves-product-related__body h3 {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fauves-product-related__body h3 a {
  color: inherit;
  text-decoration: none;
}

.fauves-product-related__body p {
  color: #10100f;
  font-size: 0.92rem;
  font-weight: 800;
}

.single-product {
  padding-bottom: clamp(7.5rem, 10vw, 9rem);
}

.fauves-sticky-cart {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: stretch;
  width: min(100% - 2rem, 30rem);
  padding: 0.95rem;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1.2rem 3.5rem rgba(16, 16, 15, 0.12);
  backdrop-filter: blur(16px);
}

.fauves-sticky-cart__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.fauves-sticky-cart__product {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.fauves-sticky-cart__label,
.fauves-sticky-cart__title,
.fauves-sticky-cart__price,
.fauves-sticky-cart__color-label {
  margin: 0;
}

.fauves-sticky-cart__label {
  color: rgba(16, 16, 15, 0.55);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-sticky-cart__title {
  overflow: hidden;
  color: #10100f;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fauves-sticky-cart__price {
  color: rgba(16, 16, 15, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

.fauves-sticky-cart__colors {
  display: grid;
  gap: 0.62rem;
  justify-items: end;
  min-width: 10.25rem;
}

.fauves-sticky-cart__colors[hidden] {
  display: none;
}

.fauves-sticky-cart__color-label {
  color: #10100f;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: right;
}

.fauves-sticky-cart__color-label span {
  color: rgba(16, 16, 15, 0.68);
}

.fauves-sticky-cart__swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.52rem;
}

.fauves-sticky-cart__swatch {
  appearance: none;
  display: inline-flex;
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.2rem;
  border: 1px solid rgba(16, 16, 15, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0.18rem #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fauves-sticky-cart__swatch:hover {
  border-color: rgba(16, 16, 15, 0.55);
  transform: translateY(-1px);
}

.fauves-sticky-cart__swatch :where(.variable-item-contents, .variable-item-span) {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  align-items: center;
  justify-content: center;
}

.fauves-sticky-cart__swatch img,
.fauves-sticky-cart__swatch .variable-item-image {
  display: block;
  width: 1.82rem !important;
  height: 1.82rem !important;
  object-fit: contain;
}

.fauves-sticky-cart__swatch.is-selected {
  border-color: #10100f;
  box-shadow: 0 0 0 0.13rem #fff, 0 0 0 0.29rem #10100f;
}

.fauves-sticky-cart__actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 0.74fr);
  gap: 0.45rem;
  align-items: stretch;
}

.fauves-sticky-cart__quantity {
  display: grid;
  grid-template-columns: 2rem 2.45rem 2rem;
  min-height: 2.85rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  background: #fff;
}

.fauves-sticky-cart__quantity button,
.fauves-sticky-cart__quantity input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #10100f;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.fauves-sticky-cart__quantity button {
  cursor: pointer;
}

.fauves-sticky-cart__quantity input {
  -moz-appearance: textfield;
}

.fauves-sticky-cart__quantity input::-webkit-outer-spin-button,
.fauves-sticky-cart__quantity input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.fauves-sticky-cart__button {
  min-height: 2.85rem;
  padding: 0 1.1rem;
  border: 1px solid #10100f;
  border-radius: 0;
  background: #10100f;
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.fauves-sticky-cart__button--pay {
  background: #fff;
  color: #10100f;
}

.fauves-sticky-cart__button:hover,
.fauves-sticky-cart__button--pay:hover {
  background: #2b2925;
  color: #fff;
}

.fauves-sticky-cart__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.fauves-sticky-cart__button.is-loading {
  opacity: 0.68;
}

.woocommerce ul.products li.product,
.wc-block-grid__product,
.fauves-search-products .wp-block-post {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #f7f4ef;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
  padding: 1.25rem 1.25rem 1.6rem;
}

.woocommerce ul.products li.product:nth-child(5n + 1),
.wc-block-grid__product:nth-child(5n + 1),
.fauves-search-products .wp-block-post:nth-child(5n + 1),
body.search-results.post-type-archive-product .wc-block-product:nth-child(5n + 1) {
  --fauves-card-bg: url("../images/card-bg/bg1-v3.jpg");
}

.woocommerce ul.products li.product:nth-child(5n + 2),
.wc-block-grid__product:nth-child(5n + 2),
.fauves-search-products .wp-block-post:nth-child(5n + 2),
body.search-results.post-type-archive-product .wc-block-product:nth-child(5n + 2) {
  --fauves-card-bg: url("../images/card-bg/bg2-v3.jpg");
}

.woocommerce ul.products li.product:nth-child(5n + 3),
.wc-block-grid__product:nth-child(5n + 3),
.fauves-search-products .wp-block-post:nth-child(5n + 3),
body.search-results.post-type-archive-product .wc-block-product:nth-child(5n + 3) {
  --fauves-card-bg: url("../images/card-bg/bg3-v3.jpg");
}

.woocommerce ul.products li.product:nth-child(5n + 4),
.wc-block-grid__product:nth-child(5n + 4),
.fauves-search-products .wp-block-post:nth-child(5n + 4),
body.search-results.post-type-archive-product .wc-block-product:nth-child(5n + 4) {
  --fauves-card-bg: url("../images/card-bg/bg4-v3.jpg");
}

.woocommerce ul.products li.product:nth-child(5n),
.wc-block-grid__product:nth-child(5n),
.fauves-search-products .wp-block-post:nth-child(5n),
body.search-results.post-type-archive-product .wc-block-product:nth-child(5n) {
  --fauves-card-bg: url("../images/card-bg/bg5-v3.jpg");
}

.woocommerce ul.products li.product::before,
.wc-block-grid__product::before,
.fauves-search-products .wp-block-post::before {
  display: none;
}

.woocommerce ul.products li.product::after,
.wc-block-grid__product::after,
.fauves-search-products .wp-block-post::after {
  display: none;
}

.woocommerce ul.products li.product:nth-child(even)::before,
.wc-block-grid__product:nth-child(even)::before,
.fauves-search-products .wp-block-post:nth-child(even)::before {
  background-image: url("../images/leaves/leaves-card.webp");
  background-position: right -2.5rem top -1.6rem;
  background-size: min(70%, 18rem) auto;
  transform: scaleX(-1);
  opacity: 0.14;
}

.woocommerce ul.products li.product:nth-child(even)::after,
.wc-block-grid__product:nth-child(even)::after,
.fauves-search-products .wp-block-post:nth-child(even)::after {
  right: auto;
  left: -2.2rem;
  transform: scaleX(-1);
  opacity: 0.16;
}

.woocommerce ul.products li.product > *,
.wc-block-grid__product > *,
.fauves-search-products .wp-block-post > * {
  position: relative;
  z-index: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price {
  color: var(--wp--preset--color--ink);
  font-weight: 700;
}

.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.wc-block-grid__product {
  width: auto !important;
  max-width: none !important;
  border: 0;
}

.wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.woocommerce ul.products li.product img {
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img,
.wc-block-grid__product:focus-within .wc-block-grid__product-image img,
.woocommerce ul.products li.product:hover img,
.woocommerce ul.products li.product:focus-within img,
.fauves-search-products .wp-block-post:hover .wp-block-post-featured-image img,
.fauves-search-products .wp-block-post:focus-within .wp-block-post-featured-image img {
  transform: scale(1.055);
}

.wc-block-grid__product-title {
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-block-grid__product-price {
  color: #10100f;
  font-size: 0.82rem;
  font-weight: 600;
}

.fauves-shop {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--lg) clamp(4rem, 7vw, 7rem);
}

.fauves-shop-hero,
.fauves-shop-filter-panel,
.fauves-shop-toolbar,
.fauves-shop-products {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.fauves-shop-hero {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.fauves-shop-hero__line {
  display: grid;
  width: 100%;
  max-width: 100% !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  justify-items: start;
}

.fauves-shop-hero h1 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.85;
  text-align: left;
  text-transform: uppercase;
}

.fauves-shop-hero p:not(.fauves-kicker) {
  max-width: 34rem;
  margin: 0 0 0.55rem;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.fauves-shop-filter-panel {
  margin-bottom: clamp(1.4rem, 3vw, 2.35rem);
}

.fauves-shop-filters {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-shop-filter-row {
  display: grid;
  grid-template-columns: minmax(7rem, 0.18fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.fauves-shop-filter-row + .fauves-shop-filter-row {
  border-top: 1px solid rgba(16, 16, 15, 0.08);
}

.fauves-shop-filter-row p {
  margin: 0;
  color: rgba(16, 16, 15, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-shop-filter-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.fauves-shop-filter-row a {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #fff;
  color: #10100f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fauves-shop-filter-row a:hover {
  border-color: #10100f;
  background: #10100f;
  color: #fff;
}

.fauves-shop-toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

.fauves-shop-toolbar > * {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.fauves-shop-toolbar .wp-block-woocommerce-catalog-sorting {
  margin-left: auto !important;
}

.fauves-shop-toolbar .woocommerce-result-count,
.fauves-shop-toolbar .wp-block-woocommerce-product-results-count {
  margin: 0;
  color: rgba(16, 16, 15, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-shop-toolbar .woocommerce-ordering,
.fauves-shop-toolbar .wp-block-woocommerce-catalog-sorting {
  margin: 0;
}

.fauves-shop-toolbar select {
  min-height: 2.6rem;
  padding: 0 2.2rem 0 0.9rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 0;
  background-color: #fff;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fauves-shop-products .wc-block-grid__products,
.fauves-shop-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: 0;
  padding: 0;
}

.fauves-shop-products .wc-block-grid__product,
.fauves-shop-products ul.products li.product {
  min-width: 0;
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 1.8vw, 1.45rem) 1.6rem;
  background-color: #f7f4ef;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
}

.fauves-shop-products .wc-block-grid__product-image img,
.fauves-shop-products ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: contain;
}

.fauves-shop-products .wc-block-grid__product-title,
.fauves-shop-products .woocommerce-loop-product__title {
  margin-top: 1.1rem;
  color: #10100f;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-shop-products .wc-block-grid__product-price,
.fauves-shop-products .price {
  margin-top: 0.55rem;
  color: #10100f;
  font-size: 0.9rem;
  font-weight: 800;
}

.fauves-search-toolbar {
  justify-content: flex-start;
}

.fauves-search-toolbar .wp-block-search {
  width: min(100%, 42rem);
  margin: 0;
}

.fauves-search-toolbar .wp-block-search__inside-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
}

.fauves-search-toolbar .wp-block-search__input {
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(16, 16, 15, 0.14);
  border-radius: 0;
  background: #fff;
  color: #10100f;
  font-size: 0.95rem;
}

.fauves-search-toolbar .wp-block-search__button {
  min-height: 3rem;
  margin: 0;
  padding: 0 1.4rem;
  border: 1px solid #10100f;
  border-radius: 0;
  background: #10100f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-search-products .wp-block-query {
  width: 100%;
}

.fauves-search-products .wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fauves-search-products .wp-block-post {
  min-width: 0;
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 1.8vw, 1.45rem) 1.6rem;
}

.fauves-search-products .wp-block-post-featured-image {
  margin: 0;
}

.fauves-search-products .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fauves-search-products .wp-block-post-title {
  margin: 1.1rem 0 0;
  color: #10100f;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-search-products .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}

.fauves-search-products .wp-block-woocommerce-product-price,
.fauves-search-products .wc-block-components-product-price {
  margin-top: 0.55rem;
  color: #10100f;
  font-size: 0.9rem;
  font-weight: 800;
}

.fauves-search-products .wp-block-query-pagination {
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: #10100f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fauves-search-products .wp-block-query-pagination a {
  color: inherit;
  text-decoration: none;
}

.fauves-search-products .wp-block-query-no-results {
  padding: clamp(2rem, 5vw, 4rem);
  background: #f7f4ef;
  text-align: center;
}

body.search-results.post-type-archive-product main.wp-block-group {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--lg) clamp(4rem, 7vw, 7rem);
}

body.search-results.post-type-archive-product main > .wc-block-breadcrumbs {
  display: none;
}

body.search-results.post-type-archive-product main > .wp-block-query-title,
body.search-results.post-type-archive-product main > .wp-block-group.alignwide,
body.search-results.post-type-archive-product main > .wp-block-woocommerce-product-collection,
body.search-results.post-type-archive-product main > .wp-block-query-pagination,
body.search-results.post-type-archive-product main > .wp-block-woocommerce-store-notices {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
}

body.search-results.post-type-archive-product main > .wp-block-query-title {
  display: grid;
  gap: 0.55rem;
  margin-top: 0;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product .fauves-search-title__label {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product .fauves-search-title__term {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product main > .wp-block-group.alignwide.is-content-justification-space-between {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

body.search-results.post-type-archive-product .wp-block-woocommerce-product-results-count,
body.search-results.post-type-archive-product .woocommerce-result-count {
  margin: 0;
  color: rgba(16, 16, 15, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product .wp-block-woocommerce-catalog-sorting {
  margin-left: auto !important;
}

body.search-results.post-type-archive-product .wp-block-woocommerce-catalog-sorting select {
  min-height: 2.6rem;
  padding: 0 2.2rem 0 0.9rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  border-radius: 0;
  background-color: #fff;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product .wp-block-woocommerce-product-collection {
  margin-top: 0;
}

body.search-results.post-type-archive-product .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: 0;
  padding: 0;
}

body.search-results.post-type-archive-product .wc-block-product {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 1.8vw, 1.45rem) 1.6rem;
  background: #f7f4ef;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
  text-align: center;
}

body.search-results.post-type-archive-product .wc-block-product::before {
  display: none;
}

body.search-results.post-type-archive-product .wc-block-product::after {
  display: none;
}

body.search-results.post-type-archive-product .wc-block-product:nth-child(even)::before {
  background-position: right -2.5rem top -1.6rem;
  background-size: min(70%, 18rem) auto;
  transform: scaleX(-1);
  opacity: 0.14;
}

body.search-results.post-type-archive-product .wc-block-product:nth-child(even)::after {
  right: auto;
  left: -2.2rem;
  transform: scaleX(-1);
  opacity: 0.16;
}

body.search-results.post-type-archive-product .wc-block-product > * {
  position: relative;
  z-index: 1;
}

body.search-results.post-type-archive-product .wc-block-components-product-image {
  margin: 0;
}

body.search-results.post-type-archive-product .wc-block-components-product-image img {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 4 / 2.55;
  object-fit: contain !important;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.search-results.post-type-archive-product .wc-block-product:hover .wc-block-components-product-image img,
body.search-results.post-type-archive-product .wc-block-product:focus-within .wc-block-components-product-image img {
  transform: scale(1.055);
}

body.search-results.post-type-archive-product .wp-block-post-title {
  margin: 1.1rem 0 0;
  color: #10100f;
  font-size: 0.84rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.search-results.post-type-archive-product .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}

body.search-results.post-type-archive-product .wp-block-woocommerce-product-price,
body.search-results.post-type-archive-product .wc-block-components-product-price {
  margin-top: 0.55rem;
  margin-bottom: 0 !important;
  color: #10100f;
  font-size: 0.9rem !important;
  font-weight: 800;
}

body.search-results.post-type-archive-product .wp-block-woocommerce-product-button {
  display: none;
}

body.tax-product_cat main.fauves-category-archive {
  width: 100%;
  max-width: calc(var(--fauves-max) + (var(--wp--preset--spacing--lg) * 2));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--wp--preset--spacing--lg) clamp(4rem, 7vw, 7rem);
}

body.tax-product_cat .fauves-category-archive__hero {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

body.tax-product_cat .fauves-category-archive__hero > * {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.tax-product_cat .fauves-category-archive__hero .wp-block-query-title {
  display: grid;
  gap: 0.55rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
}

body.tax-product_cat .fauves-category-archive__hero .fauves-search-title__label {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.tax-product_cat .fauves-category-archive__hero .fauves-search-title__term {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

body.tax-product_cat .fauves-category-archive__hero .taxonomy-description {
  max-width: 44rem;
  margin-top: 0.85rem;
  margin-left: 0;
  color: rgba(16, 16, 15, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.fauves-category-switcher {
  width: 100%;
  max-width: var(--fauves-max);
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.fauves-category-switcher:empty {
  display: none;
}

.fauves-shape-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-shape-switcher a {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #fff;
  color: #10100f;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fauves-shape-switcher a:hover,
.fauves-shape-switcher a[aria-current="page"] {
  border-color: #10100f;
  background: #10100f;
  color: #fff;
}

body.tax-product_cat .fauves-category-archive__products {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post-template,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: stretch;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.55rem) clamp(1rem, 1.8vw, 1.45rem) clamp(1.1rem, 1.8vw, 1.35rem);
  background: #f7f4ef;
  background-image: var(--fauves-card-bg, url("../images/card-bg/bg1-v3.jpg"));
  background-position: center;
  background-size: cover;
  text-align: center;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post::before,
body.tax-product_cat .fauves-category-archive__products .wp-block-post::after,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product::before,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product::after {
  display: none;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post > *,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product > * {
  position: relative;
  z-index: 1;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post-featured-image,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-image {
  margin: 0;
}

body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product p,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-link p {
  display: none;
  margin: 0;
}

body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-image {
  align-self: center;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post-featured-image img,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  max-height: clamp(6.6rem, 11vw, 9.4rem);
  aspect-ratio: 4 / 2.55;
  object-fit: contain !important;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post-title,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-title {
  margin: 0;
  color: #10100f;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.84rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-post-title a,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-title a {
  color: inherit;
  text-decoration: none;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-woocommerce-product-price,
body.tax-product_cat .fauves-category-archive__products .wc-block-components-product-price,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-price {
  margin-top: 0.36rem;
  margin-bottom: 0 !important;
  color: #10100f;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9rem !important;
  font-weight: 800;
  line-height: 1.2;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-button,
body.tax-product_cat .fauves-category-archive__products .wc-block-grid__product-add-to-cart {
  display: none !important;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-query-pagination {
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: #10100f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.tax-product_cat .fauves-category-archive__products .wp-block-query-pagination a {
  color: inherit;
  text-decoration: none;
}

.fauves-category-archive__seo {
  width: 100%;
  max-width: var(--fauves-max);
  margin: clamp(3rem, 6vw, 5.5rem) auto 0;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.fauves-category-seo-block {
  display: grid;
  justify-items: center;
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  text-align: center;
}

.fauves-category-seo-block h2 {
  max-width: 46rem;
  margin: 0.45rem 0 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.fauves-category-seo-block p:last-child {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(16, 16, 15, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.fauves-category-page {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

main.fauves-section:has(.fauves-category-page) {
  padding-top: 0;
  padding-bottom: 0;
}

main.fauves-section:has(.fauves-category-page) > .wp-block-post-title {
  display: none;
}

main.fauves-section:has(.fauves-contact-page) {
  padding-top: 0;
  padding-bottom: 0;
}

main.fauves-section:has(.fauves-contact-page) > .wp-block-post-title {
  display: none;
}

main.fauves-section:has(.fauves-seo-landing) {
  padding-top: 0;
  padding-bottom: 0;
}

main.fauves-section:has(.fauves-legal-page),
main.fauves-section:has(.fauves-faq-page),
main.fauves-section:has(.fauves-store-page) {
  padding-top: 0;
  padding-bottom: 0;
}

main.fauves-section:has(.fauves-legal-page) > .wp-block-post-title,
main.fauves-section:has(.fauves-faq-page) > .wp-block-post-title,
main.fauves-section:has(.fauves-store-page) > .wp-block-post-title {
  display: none;
}

.wp-block-post-content:has(.fauves-category-page) {
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.wp-block-post-content:has(.fauves-contact-page) {
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.wp-block-post-content:has(.fauves-seo-landing) {
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.wp-block-post-content:has(.fauves-legal-page),
.wp-block-post-content:has(.fauves-faq-page),
.wp-block-post-content:has(.fauves-store-page) {
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.fauves-category-hero,
.fauves-category-product-list {
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
}

.fauves-category-hero {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.fauves-category-hero__line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.fauves-category-hero h1 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.fauves-category-hero__line p {
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fauves-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.fauves-category-tabs a {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border: 1px solid rgba(16, 16, 15, 0.16);
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fauves-category-tabs a:hover {
  border-color: #10100f;
}

.fauves-category-tabs a.is-active,
.fauves-category-tabs a[aria-current="page"] {
  border-color: #e8e3dc;
  background: #f1eee9;
  color: #77716a;
  cursor: default;
}

.fauves-category-product-list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.25rem);
}

.fauves-category-page .fauves-service-strip {
  max-width: var(--fauves-max);
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding-right: 0;
  padding-left: 0;
}

.fauves-category-seo {
  display: grid;
  justify-items: center;
  max-width: 46rem;
  margin: clamp(3rem, 6vw, 5.5rem) auto 0;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  text-align: center;
}

.fauves-category-seo h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.fauves-category-seo p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(16, 16, 15, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.fauves-service-strip--category .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fauves-seo-landing {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  width: 100%;
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

.fauves-seo-landing__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.fauves-seo-landing__hero h1 {
  grid-column: 1 / -1;
  max-width: 13ch;
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.fauves-seo-landing__hero > p:not(.fauves-kicker) {
  max-width: 36rem;
  margin: 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.fauves-seo-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.fauves-button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  border: 1px solid #10100f;
  color: #10100f;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.fauves-button--dark,
.fauves-button:hover {
  background: #10100f;
  color: #fff;
}

.fauves-button--dark:hover {
  background: #2b2925;
  color: #fff;
}

.fauves-seo-products {
  display: grid;
  gap: 1.6rem;
}

.fauves-seo-products__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.fauves-seo-products__header h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fauves-seo-products__header a,
.fauves-seo-landing__closing a {
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fauves-seo-products__header a:hover,
.fauves-seo-landing__closing a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.fauves-seo-products .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fauves-seo-products .woocommerce ul.products::before,
.fauves-seo-products .woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

.fauves-seo-products .woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.fauves-seo-landing__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

.fauves-seo-landing__content section,
.fauves-seo-landing__closing {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: #f7f4ef;
}

.fauves-seo-landing__content h2,
.fauves-seo-landing__closing h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.fauves-seo-landing__content p,
.fauves-seo-landing__closing p {
  margin: 1rem 0 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.7;
}

.fauves-seo-landing__closing {
  display: grid;
  justify-items: center;
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.fauves-seo-landing__closing a {
  margin-top: 1rem;
}

.fauves-contact-page {
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

.fauves-contact-page--home {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.fauves-contact-cover {
  position: relative;
  display: grid;
  min-height: clamp(26rem, 42vw, 40rem);
  overflow: hidden;
  background: #f4efe8;
}

.fauves-contact-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fauves-contact-cover__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.66) 38%, rgba(255, 255, 255, 0.08) 76%),
    linear-gradient(180deg, rgba(16, 16, 15, 0.06), rgba(16, 16, 15, 0.14));
}

.fauves-contact-cover__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1.05rem;
  width: min(100%, 46rem);
  padding: clamp(2rem, 6vw, 5rem);
}

.fauves-contact-cover h1,
.fauves-contact-cover p {
  margin: 0;
}

.fauves-contact-cover h1 {
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3.2rem, 8vw, 8.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.fauves-contact-cover__content > p:not(.fauves-kicker) {
  max-width: 34rem;
  color: rgba(16, 16, 15, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.fauves-contact-cover__link {
  width: fit-content;
  margin-top: 0.4rem;
  border: 1px solid #10100f;
  background: #10100f;
  color: #fff;
  text-decoration: none;
}

.fauves-contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #f4efe8;
}

.fauves-contact-quick article {
  display: grid;
  gap: 0.45rem;
  min-height: 8rem;
  align-content: center;
  padding: clamp(1.1rem, 2.4vw, 2rem);
  border-right: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-contact-quick article:last-child {
  border-right: 0;
}

.fauves-contact-quick span {
  color: rgba(16, 16, 15, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-contact-quick strong {
  color: #10100f;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.25;
}

.fauves-legal-page,
.fauves-faq-page,
.fauves-store-page {
  box-sizing: border-box;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: 100%;
  max-width: min(100%, var(--fauves-max));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

.fauves-legal-page *,
.fauves-faq-page *,
.fauves-store-page * {
  box-sizing: border-box;
}

.fauves-legal-page a,
.fauves-faq-page a,
.fauves-store-page a {
  overflow-wrap: anywhere;
}

.fauves-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.fauves-editorial-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.fauves-editorial-hero p {
  max-width: 35rem;
  margin: 0 0 0.45rem;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.fauves-editorial-panel {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: #f6f1ea url("../images/section-bg-2.jpg") center / cover no-repeat;
}

.fauves-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.fauves-editorial-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fauves-editorial-box {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.fauves-editorial-box h2,
.fauves-editorial-box h3,
.fauves-editorial-section h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.fauves-editorial-box p,
.fauves-editorial-box li,
.fauves-editorial-section p,
.fauves-editorial-section li {
  margin: 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.fauves-editorial-section {
  display: grid;
  gap: 1rem;
}

.fauves-editorial-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fauves-editorial-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-editorial-faq {
  display: grid;
  gap: 0;
}

.fauves-editorial-faq details {
  border-top: 1px solid rgba(16, 16, 15, 0.14);
}

.fauves-editorial-faq details:last-child {
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
}

.fauves-editorial-faq summary {
  position: relative;
  padding: 1.25rem 2rem 1.25rem 0;
  color: #10100f;
  cursor: pointer;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}

.fauves-editorial-faq summary::-webkit-details-marker {
  display: none;
}

.fauves-editorial-faq summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "+";
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
}

.fauves-editorial-faq details[open] summary::after {
  content: "-";
}

.fauves-editorial-faq details p {
  max-width: 54rem;
  margin: 0;
  padding: 0 0 1.35rem;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.fauves-editorial-cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 1.4rem;
  background: #10100f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.fauves-store-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.fauves-store-card__image {
  min-height: clamp(20rem, 35vw, 34rem);
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.04), rgba(16, 16, 15, 0.14)),
    url("../images/section-bg-1.jpg") center / cover no-repeat;
}

.fauves-store-card__content {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #f6f1ea;
}

.fauves-contact-hero {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.fauves-contact-hero__line {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.fauves-contact-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.fauves-contact-hero__line p {
  max-width: 33rem;
  margin: 0 0 0.45rem;
  color: rgba(16, 16, 15, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.fauves-contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2vw, 1.6rem);
  align-items: stretch;
}

.fauves-contact-aside {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.45rem);
}

.fauves-contact-aside.fauves-editorial-panel {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 234, 0.92), rgba(246, 241, 234, 0.92)),
    url("../images/section-bg-2.jpg") center / cover no-repeat;
}

.fauves-contact-aside h2,
.fauves-contact-form-panel__intro h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.fauves-contact-list {
  display: grid;
  gap: 0;
  margin: clamp(0.5rem, 2vw, 1.25rem) 0 0;
  padding: 0;
  list-style: none;
}

.fauves-contact-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
}

.fauves-contact-list strong {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-contact-list span {
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.fauves-contact-card {
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: #f7f4ef;
}

.fauves-contact-card h2,
.fauves-contact-card p {
  margin: 0;
}

.fauves-contact-card h2 {
  margin-bottom: 0.75rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-contact-card p {
  color: rgba(16, 16, 15, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.fauves-contact-form-panel {
  display: grid;
  gap: clamp(1.3rem, 2.5vw, 2rem);
  align-content: start;
  padding: clamp(1.5rem, 4vw, 3.4rem);
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: #fff;
}

.fauves-contact-form-panel__intro {
  display: grid;
  gap: 0.7rem;
}

.fauves-contact-form-panel .wpcf7 {
  width: 100%;
}

.fauves-contact-form-panel form {
  display: grid;
  gap: 1rem;
}

.fauves-contact-form-panel p {
  margin: 0;
}

.fauves-contact-form-panel label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fauves-contact-form-panel input,
.fauves-contact-form-panel textarea,
.fauves-contact-form-panel select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 16, 15, 0.18);
  border-radius: 0;
  background: #faf8f5;
  color: #10100f;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.fauves-contact-form-panel textarea {
  min-height: 10rem;
  resize: vertical;
}

.fauves-contact-form-panel input:focus,
.fauves-contact-form-panel textarea:focus,
.fauves-contact-form-panel select:focus {
  outline: 2px solid rgba(16, 16, 15, 0.22);
  outline-offset: 2px;
  background: #fff;
}

.fauves-contact-form-panel input[type="submit"],
.fauves-contact-form-panel button[type="submit"],
.fauves-contact-form-panel .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 13rem;
  min-height: 3.35rem;
  padding: 0 1.6rem;
  border-color: #10100f;
  background: #10100f;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.fauves-contact-form-panel input[type="submit"]:hover,
.fauves-contact-form-panel input[type="submit"]:focus,
.fauves-contact-form-panel button[type="submit"]:hover,
.fauves-contact-form-panel button[type="submit"]:focus,
.fauves-contact-form-panel .wpcf7-submit:hover,
.fauves-contact-form-panel .wpcf7-submit:focus {
  border-color: #10100f;
  background: #fff;
  color: #10100f;
  filter: none;
}

.fauves-contact-form-panel .wpcf7-not-valid-tip,
.fauves-contact-form-panel .wpcf7-response-output {
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.fauves-contact-page .fauves-service-strip {
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-right: 0;
  padding-left: 0;
}

.fauves-category-product {
  display: grid;
  grid-template-columns: minmax(5rem, 0.55fr) minmax(16rem, 1.7fr) minmax(11rem, 0.7fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  min-height: clamp(13rem, 23vw, 20rem);
  opacity: var(--fauves-reveal-opacity, 0);
  transform: translateY(var(--fauves-reveal-y, 3rem)) scale(var(--fauves-reveal-scale, 0.985));
  filter: blur(var(--fauves-reveal-blur, 0.5rem));
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    filter 80ms linear;
  will-change: opacity, transform, filter;
}

.fauves-category-product:nth-child(1) {
  --fauves-product-index: 1;
}

.fauves-category-product:nth-child(2) {
  --fauves-product-index: 2;
}

.fauves-category-product:nth-child(3) {
  --fauves-product-index: 3;
}

.fauves-category-product:nth-child(4) {
  --fauves-product-index: 4;
}

.fauves-category-product:nth-child(5) {
  --fauves-product-index: 5;
}

.fauves-category-product:nth-child(6) {
  --fauves-product-index: 6;
}

.fauves-category-product:nth-child(7) {
  --fauves-product-index: 7;
}

.fauves-category-product:nth-child(8) {
  --fauves-product-index: 8;
}

.fauves-category-product:nth-child(9) {
  --fauves-product-index: 9;
}

.fauves-category-product:nth-child(n + 10) {
  --fauves-product-index: 10;
}

.fauves-category-product.is-visible {
  --fauves-reveal-opacity: 1;
  --fauves-reveal-y: 0px;
  --fauves-reveal-scale: 1;
  --fauves-reveal-blur: 0px;
  --fauves-copy-opacity: 1;
  --fauves-copy-y: 0px;
  --fauves-code-x: 0px;
  --fauves-summary-x: 0px;
  --fauves-copy-blur: 0px;
}

.fauves-category-product__code,
.fauves-category-product__summary p {
  margin: 0;
  font-weight: 800;
}

.fauves-category-product__code {
  align-self: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  opacity: var(--fauves-copy-opacity, 0);
  transform: translate3d(var(--fauves-code-x, -8vw), var(--fauves-copy-y, 22px), 0);
  filter: blur(var(--fauves-copy-blur, 4px));
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    filter 80ms linear;
  will-change: opacity, transform, filter;
}

.fauves-category-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(11rem, 21vw, 18rem);
  background: transparent;
  text-decoration: none;
}

.fauves-category-product__image img {
  width: min(100%, 36rem);
  max-height: clamp(10rem, 18vw, 16rem);
  object-fit: contain;
}

.fauves-category-product__summary {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
  opacity: var(--fauves-copy-opacity, 0);
  transform: translate3d(var(--fauves-summary-x, 8vw), var(--fauves-copy-y, 22px), 0);
  filter: blur(var(--fauves-copy-blur, 4px));
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    filter 80ms linear;
  will-change: opacity, transform, filter;
}

.fauves-category-product__summary h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.fauves-category-product__summary h2 a {
  color: inherit;
  text-decoration: none;
}

.fauves-category-product__summary p {
  color: #10100f;
}

.fauves-category-product__link {
  border-bottom: 1px solid currentColor;
  color: #10100f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fauves-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.95rem;
}

.fauves-color-dot {
  display: inline-block;
  width: 0.78rem;
  height: 0.78rem;
  border: 1px solid rgba(16, 16, 15, 0.24);
  border-radius: 999px;
  background: var(--fauves-dot-color, #8a8177);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.fauves-category-empty {
  max-width: var(--fauves-max);
  margin-right: auto;
  margin-left: auto;
}

.fauves-editorial-split,
.fauves-promo-grid,
.fauves-service-strip,
.fauves-inspiration,
.fauves-newsletter {
  padding-right: var(--wp--preset--spacing--lg);
  padding-left: var(--wp--preset--spacing--lg);
}

.fauves-editorial-split .wp-block-columns,
.fauves-promo-grid .wp-block-columns,
.fauves-service-strip .wp-block-columns,
.fauves-newsletter .wp-block-columns {
  gap: 0;
}

.fauves-editorial-split figure,
.fauves-editorial-split img {
  height: 100%;
}

.fauves-editorial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    #f6f1ea url("../images/section-bg-3.jpg") center / cover no-repeat;
}

.fauves-editorial-card h2 {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.fauves-proof-row {
  gap: 1rem;
  margin: 1.2rem 0 1.5rem;
}

.fauves-proof-row p {
  min-width: 9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.fauves-promo-grid {
  padding-top: 2rem;
}

.fauves-editorial-tiles {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.fauves-editorial-tiles__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.fauves-editorial-tile {
  position: relative;
  display: block;
  height: clamp(18rem, 28vw, 26rem);
  min-height: clamp(18rem, 28vw, 26rem);
  overflow: hidden;
  background: #111;
  color: #fff;
}

.fauves-editorial-tile--large {
  grid-row: span 2;
  height: clamp(38rem, 58vw, 54rem);
  min-height: clamp(38rem, 58vw, 54rem);
}

.fauves-editorial-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.fauves-editorial-tile[href*="/homme/"] img {
  object-position: center 34%;
}

.fauves-editorial-tile[href*="/femme/"] img {
  object-position: center 40%;
}

.fauves-editorial-tile:hover img {
  transform: scale(1.025);
}

.fauves-editorial-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.56) 100%);
}

.fauves-editorial-tile__copy {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.8rem, 5vw, 4rem);
  left: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.fauves-editorial-tile__copy strong {
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.fauves-editorial-tile__copy em {
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fauves-promo-grid .wp-block-columns {
  gap: 1rem;
}

.fauves-promo-tile {
  align-items: flex-end;
}

.fauves-promo-tile .wp-block-cover__inner-container {
  padding: 1.4rem;
}

.fauves-promo-tile h3 {
  max-width: 12rem;
  margin: 0 0 0.2rem;
  color: #fff;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.fauves-promo-tile a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-transform: uppercase;
}

.fauves-service-strip .wp-block-columns {
  background: #f6f1ea;
}

.fauves-service-strip .wp-block-column {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(16, 16, 15, 0.12);
}

.fauves-service-strip .wp-block-column:last-child {
  border-right: 0;
}

.fauves-service-strip p {
  margin: 0;
  font-size: 0.85rem;
}

.fauves-service-item {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.fauves-service-item img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
}

.fauves-service-item strong {
  display: inline-block;
  margin-bottom: 0.12rem;
}

.fauves-inspiration {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.fauves-inspiration h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fauves-inspiration__gallery {
  gap: 1rem !important;
}

.fauves-inspiration__gallery figure {
  aspect-ratio: 0.78;
  overflow: hidden;
}

.fauves-inspiration__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.fauves-inspiration__gallery figure:hover img {
  transform: scale(1.035);
}

.fauves-newsletter {
  padding-bottom: 3rem;
}

.fauves-newsletter > .wp-block-columns {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  background:
    #f6f1ea url("../images/section-bg-1.jpg") center / cover no-repeat;
}

.fauves-newsletter > .wp-block-columns::before,
.fauves-newsletter > .wp-block-columns::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
  display: none;
}

.fauves-newsletter > .wp-block-columns::before {
  top: -5.5rem;
  bottom: -4rem;
  left: clamp(2rem, 7vw, 8rem);
  width: min(27vw, 21rem);
  background-image: url("../images/leaves/leaves-palm.webp");
  background-position: left center;
  transform: rotate(-9deg);
}

.fauves-newsletter > .wp-block-columns::after {
  top: -6rem;
  bottom: -5rem;
  right: clamp(2rem, 8vw, 9rem);
  width: min(29vw, 22rem);
  background-image: url("../images/leaves/leaves-card.webp");
  background-position: right center;
  transform: rotate(10deg) scaleX(-1);
}

.fauves-newsletter h2,
.fauves-newsletter p {
  margin: 0;
}

.fauves-newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 0;
}

.fauves-newsletter-form::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(-10rem, -13vw, -5rem);
  z-index: -1;
  width: min(18vw, 14rem);
  aspect-ratio: 210 / 420;
  background-image: url("../images/leaves/leaves-card.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.14;
  transform: translate(-50%, -50%) rotate(4deg);
  pointer-events: none;
  display: none;
}

.fauves-newsletter-form input {
  width: min(100%, 24rem);
  min-height: 3.2rem;
  padding: 0 1.2rem;
  border: 0;
  background: #fff;
}

.fauves-newsletter-form button {
  min-height: 3.2rem;
  padding: 0 1.8rem;
  border: 0;
  background: #10100f;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.fauves-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(3rem, 6vw, 5.25rem) var(--wp--preset--spacing--lg) 1.35rem;
  background:
    #f2eadf url("../images/footer-bg.jpg") center / cover no-repeat;
  border-top: 1px solid rgba(16, 16, 15, 0.08);
  color: #10100f;
}

.fauves-footer::before {
  content: "";
  position: absolute;
  left: max(-8rem, -6vw);
  bottom: -5rem;
  z-index: -1;
  width: clamp(14rem, 24vw, 27rem);
  aspect-ratio: 1;
  background:
    url("../images/leaves/leaves-palm.webp") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(-8deg);
  display: none;
}

.fauves-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: max(-7rem, -5vw);
  width: clamp(14rem, 24vw, 27rem);
  aspect-ratio: 1;
  background:
    url("../images/leaves/leaves-card.webp") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(12deg);
  display: none;
}

.fauves-footer__inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.fauves-footer__main {
  display: grid;
  grid-template-columns: minmax(15rem, 0.95fr) minmax(0, 1.9fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.fauves-footer__intro {
  max-width: 22rem;
}

.fauves-footer__brand {
  display: inline-block;
  margin-bottom: 1.15rem;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
}

.fauves-footer__intro p {
  margin: 0;
  max-width: 19rem;
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.fauves-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.fauves-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: #10100f;
}

.fauves-footer__socials img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.fauves-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 3.25rem);
}

.fauves-footer__col {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.fauves-footer h3 {
  margin: 0 0 0.55rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.fauves-footer__col a {
  color: rgba(16, 16, 15, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.fauves-footer__col a:hover,
.fauves-footer__socials a:hover {
  color: #10100f;
}

.fauves-footer__socials a:hover img {
  opacity: 0.72;
}

.fauves-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  color: rgba(16, 16, 15, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fauves-footer__bottom p {
  margin: 0;
}

@media (max-width: 780px) {
  .fauves-header {
    position: relative;
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  .fauves-section {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  body.woocommerce-cart main.wp-block-group {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  body.woocommerce-cart .wp-block-post-title {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  body.woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  body.woocommerce-cart table.cart td.actions .coupon .input-text,
  body.woocommerce-cart table.cart td.actions .coupon .button,
  body.woocommerce-cart table.cart td.actions > .button {
    width: 100% !important;
  }

  body.woocommerce-cart .cart_totals {
    width: 100%;
    margin-left: 0;
  }

  .fauves-header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .fauves-header-search__form {
    top: calc(100% + 0.55rem);
    left: 0;
    width: min(17rem, calc(100vw - 3rem));
    transform: translateY(-0.35rem) scaleX(0.94);
    transform-origin: left top;
  }

  .fauves-header-search.is-open .fauves-header-search__form {
    transform: translateY(0) scaleX(1);
  }

  .fauves-mega-menu {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  .fauves-mega-menu__inner {
    grid-template-columns: 1fr;
  }

  .fauves-mega-menu__links {
    order: -1;
  }

  .fauves-mega-menu__card--homme {
    background-position: center 18%;
  }

  .fauves-mega-menu__card {
    min-height: 11rem;
    padding: 0.9rem;
  }

  .fauves-mega-menu__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.4rem 0.75rem 1rem;
  }

  .fauves-header__tools,
  .fauves-brand {
    min-width: 0;
  }

  .fauves-home-hero {
    min-height: 420px;
  }

  .fauves-home-hero .wp-block-cover__image-background {
    opacity: 0.55;
    object-position: 60% center;
  }

  .fauves-category-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc(var(--wp--preset--spacing--md) * -1);
    padding-right: var(--wp--preset--spacing--md);
    padding-bottom: 0.65rem;
    scroll-padding-left: var(--wp--preset--spacing--md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 1.35rem, #000 calc(100% - 2rem), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 1.35rem, #000 calc(100% - 2rem), transparent 100%);
  }

  .fauves-category-row::-webkit-scrollbar {
    display: none;
  }

  .fauves-category-row .wp-block-column {
    flex: 0 0 clamp(6.3rem, 27vw, 7.4rem) !important;
    min-width: clamp(6.3rem, 27vw, 7.4rem);
    max-width: clamp(6.3rem, 27vw, 7.4rem);
    scroll-snap-align: start;
  }

  .fauves-category-bubble {
    width: 100%;
  }

  .fauves-category-bubble img {
    width: clamp(5.45rem, 22vw, 6.45rem);
  }

  .fauves-shape-entry-section {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  .fauves-shape-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fauves-shape-card {
    grid-row: auto;
    min-height: 17rem;
  }

  .fauves-shape-card__image {
    min-height: 9rem;
  }

  .fauves-about-hero,
  .fauves-about-intro,
  .fauves-about-split {
    grid-template-columns: 1fr;
  }

  .fauves-about-values,
  .fauves-about-collections__grid {
    grid-template-columns: 1fr;
  }

  .fauves-about-collections__head {
    display: grid;
  }

  .fauves-product-hero {
    min-height: auto;
  }

  .fauves-product-hero__image img {
    width: min(92vw, 38rem) !important;
    min-width: 0;
    max-height: clamp(13rem, 48vw, 22rem);
  }

  .fauves-product-description__grid,
  .fauves-product-description__list li {
    grid-template-columns: 1fr;
  }

  .fauves-product-related {
    overflow-x: clip;
  }

  .fauves-product-related__header {
    justify-items: start;
    text-align: left;
  }

  .fauves-product-related__track {
    grid-auto-columns: minmax(10.5rem, 48%);
    margin-right: calc(var(--wp--preset--spacing--md) * -1);
    margin-left: calc(var(--wp--preset--spacing--md) * -1);
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .fauves-product-related__image {
    min-height: 9.5rem;
  }

  .fauves-product-related__image img {
    max-height: 6.5rem;
  }

  .fauves-product-related__body {
    padding-top: 1.55rem;
  }

  .fauves-product-rest .wp-block-columns.alignwide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .fauves-product-rest .wp-block-columns.alignwide > .wp-block-column:first-child {
    order: 2;
  }

  .fauves-product-rest .wp-block-columns.alignwide > .wp-block-column:last-child {
    order: 1;
  }

  .fauves-variation-gallery {
    margin-bottom: 0.5rem;
  }

  .fauves-variation-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .fauves-variation-gallery__item {
    padding: 0;
    aspect-ratio: 1;
  }

  .fauves-variation-gallery__item:first-child {
    background: transparent;
    aspect-ratio: 1.12;
  }

  .fauves-gallery-lightbox {
    padding-right: 3.25rem;
    padding-left: 3.25rem;
  }

  .fauves-gallery-lightbox__arrow {
    width: 2.35rem;
    height: 2.35rem;
  }

  .fauves-gallery-lightbox__arrow--prev {
    left: 0.55rem;
  }

  .fauves-gallery-lightbox__arrow--next {
    right: 0.55rem;
  }

  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fauves-service-strip .wp-block-column {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.12);
  }

  .fauves-service-strip--category .wp-block-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fauves-service-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    justify-items: center;
    text-align: center;
  }

  .fauves-service-item img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .fauves-service-strip p {
    max-width: 18rem;
    text-align: center;
  }

  .fauves-inspiration .wp-block-column:first-child {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .fauves-inspiration .wp-block-column:first-child > * {
    margin-right: auto;
    margin-left: auto;
  }

  .fauves-newsletter > .wp-block-columns {
    gap: 1.1rem;
    text-align: center;
  }

  .fauves-newsletter .wp-block-column {
    display: grid;
    justify-items: center;
  }

  .fauves-newsletter-form {
    width: min(100%, 28rem);
    margin-right: auto;
    margin-left: auto;
  }

  .fauves-editorial-tiles__grid {
    grid-template-columns: 1fr;
  }

  .fauves-editorial-tile,
  .fauves-editorial-tile--large {
    height: 24rem;
    min-height: 24rem;
  }

  .fauves-newsletter-form {
    justify-content: flex-start;
  }

  .fauves-footer__main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
    text-align: center;
  }

  .fauves-footer__intro,
  .fauves-footer__intro p {
    max-width: 24rem;
    margin-right: auto;
    margin-left: auto;
  }

  .fauves-footer__brand {
    text-align: center;
  }

  .fauves-footer__socials {
    justify-content: center;
  }

  .fauves-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 34rem;
    text-align: center;
  }

  .fauves-footer__col {
    justify-items: center;
  }

  .fauves-category-product {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .fauves-category-product__summary {
    grid-column: 2;
  }

  .fauves-shop-hero__line {
    grid-template-columns: 1fr;
  }

  .fauves-shop-filter-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fauves-shop-filter-row nav {
    justify-content: flex-start;
  }

  .fauves-shop-products .wc-block-grid__products,
  .fauves-shop-products ul.products,
  .fauves-seo-products .woocommerce ul.products,
  .fauves-search-products .wp-block-post-template,
  body.search-results.post-type-archive-product .wc-block-product-template,
  body.tax-product_cat .fauves-category-archive__products .wp-block-post-template,
  body.tax-product_cat .fauves-category-archive__products .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fauves-seo-landing__hero,
  .fauves-seo-landing__content {
    grid-template-columns: 1fr;
  }

  .fauves-seo-landing__hero h1 {
    max-width: 100%;
  }

  .fauves-seo-landing__actions {
    justify-content: flex-start;
  }

  .fauves-contact-hero__line,
  .fauves-contact-grid {
    grid-template-columns: 1fr;
  }

  .fauves-contact-cover {
    min-height: 34rem;
  }

  .fauves-contact-cover > img {
    object-position: 58% center;
  }

  .fauves-contact-cover__shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(180deg, rgba(16, 16, 15, 0.04), rgba(16, 16, 15, 0.16));
  }

  .fauves-contact-cover__content {
    align-content: start;
    justify-items: center;
    width: 100%;
    padding: clamp(2rem, 8vw, 3rem) var(--wp--preset--spacing--md);
    text-align: center;
  }

  .fauves-contact-cover h1 {
    max-width: 7.4ch;
    font-size: clamp(2.8rem, 13.5vw, 4rem);
    line-height: 0.9;
  }

  .fauves-contact-cover__link {
    width: 100%;
    min-height: 3rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    justify-content: center;
    font-size: clamp(0.68rem, 3.35vw, 0.82rem);
    letter-spacing: 0.055em;
    line-height: 1.15;
  }

  .fauves-contact-quick {
    grid-template-columns: 1fr;
  }

  .fauves-contact-quick article {
    min-height: 0;
    justify-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 15, 0.12);
    text-align: center;
  }

  .fauves-contact-quick article:last-child {
    border-bottom: 0;
  }

  .fauves-contact-hero h1 {
    max-width: 100%;
  }

  .fauves-contact-form-panel {
    padding: 1.25rem;
  }

  .fauves-contact-aside.fauves-editorial-panel,
  .fauves-contact-form-panel {
    margin-right: 0;
    margin-left: 0;
  }

  .fauves-contact-aside h2,
  .fauves-contact-form-panel__intro h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    text-align: center;
  }

  .fauves-contact-aside .fauves-kicker,
  .fauves-contact-form-panel__intro .fauves-kicker {
    text-align: center;
  }

  .fauves-contact-list li {
    justify-items: center;
    text-align: center;
  }

  .single-product {
    padding-bottom: 12rem;
  }

  .fauves-sticky-cart {
    right: var(--wp--preset--spacing--md);
    bottom: var(--wp--preset--spacing--md);
    left: var(--wp--preset--spacing--md);
    grid-template-columns: 1fr;
    width: auto;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .fauves-sticky-cart__summary {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.8rem;
    align-items: start !important;
  }

  .fauves-sticky-cart__colors {
    justify-items: end !important;
    min-width: min(44vw, 10.25rem);
  }

  .fauves-sticky-cart__color-label {
    text-align: right !important;
  }

  .fauves-sticky-cart__swatches {
    justify-content: flex-end !important;
  }

  .fauves-sticky-cart__actions {
    display: grid;
    grid-template-columns: minmax(6.5rem, 0.45fr) minmax(0, 1fr) minmax(0, 0.82fr);
  }

  .fauves-sticky-cart__button {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

@media (max-width: 520px) {
  .fauves-brand-logo {
    width: 7.25rem;
    height: 1.2rem;
  }

  .fauves-icon-link {
    width: 1.55rem;
    height: 1.55rem;
  }

  .fauves-menu-toggle {
    width: 1.55rem;
    height: 1.55rem;
  }

  .fauves-menu-toggle span {
    width: 1.25rem;
  }

  .fauves-icon-link::before {
    flex-basis: 1.28rem;
    width: 1.28rem;
    height: 1.28rem;
  }

  .fauves-category-row {
    display: flex !important;
    grid-template-columns: none;
  }

  .fauves-category-row .wp-block-column {
    flex: 0 0 6.55rem !important;
    min-width: 6.55rem;
    max-width: 6.55rem;
  }

  .fauves-shape-grid {
    grid-template-columns: 1fr;
  }

  .fauves-shape-card {
    min-height: 15.5rem;
  }

  .fauves-about-hero__media,
  .fauves-about-split__media {
    min-height: 18rem;
  }

  .fauves-mega-menu__inner {
    grid-template-columns: 1fr;
  }

  .fauves-mega-menu__cards {
    grid-template-columns: 1fr;
  }

  .fauves-mega-menu__card {
    min-height: 8.5rem;
  }

  .wc-block-grid__products {
    grid-template-columns: 1fr;
  }

  .fauves-editorial-tile,
  .fauves-editorial-tile--large {
    height: 20rem;
    min-height: 20rem;
  }

  .fauves-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    width: 100%;
    max-width: none;
    justify-content: stretch;
    justify-items: stretch;
  }

  .fauves-newsletter-form input,
  .fauves-newsletter-form button {
    box-sizing: border-box;
    width: 100% !important;
    inline-size: 100% !important;
    max-width: none;
    min-height: 2.85rem;
    padding-top: 0;
    padding-bottom: 0;
    justify-self: stretch;
  }

  .fauves-newsletter-form button {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .fauves-contact-form-panel input[type="submit"] {
    width: 100%;
  }

  .fauves-footer {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
    background-image: url("../images/footer-bg-mobile.jpg");
    background-position: center top;
  }

  .fauves-footer__nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .fauves-footer__bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .fauves-category-hero__line,
  .fauves-category-product {
    grid-template-columns: 1fr;
  }

  .fauves-category-hero__line p,
  .fauves-category-product__summary,
  .fauves-category-product__code {
    grid-column: auto;
  }

  main.fauves-section:has(.fauves-category-page),
  .wp-block-post-content:has(.fauves-category-page),
  .fauves-category-page,
  .fauves-category-product-list {
    max-width: 100%;
    overflow-x: clip;
  }

  .fauves-category-product {
    gap: 1rem;
  }

  .fauves-category-product__summary,
  .fauves-category-product__code {
    transform: translate3d(0, var(--fauves-copy-y, 22px), 0);
  }

  .fauves-service-strip--category .wp-block-columns {
    grid-template-columns: 1fr;
  }

  .fauves-legal-page,
  .fauves-faq-page,
  .fauves-store-page {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  .fauves-editorial-hero,
  .fauves-editorial-grid,
  .fauves-editorial-grid--three,
  .fauves-store-card {
    grid-template-columns: 1fr;
  }

  .fauves-editorial-hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .fauves-editorial-panel {
    margin-right: calc(var(--wp--preset--spacing--md) * -1);
    margin-left: calc(var(--wp--preset--spacing--md) * -1);
  }

  .fauves-editorial-cta {
    width: 100%;
  }

  .fauves-shop {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  .fauves-shop-toolbar {
    display: grid;
    justify-items: start;
  }

  .fauves-shape-switcher {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .fauves-shape-switcher::-webkit-scrollbar {
    display: none;
  }

  .fauves-shape-switcher a {
    flex: 0 0 auto;
    min-height: 2.85rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.78rem;
  }

  .fauves-shop-products .wc-block-grid__products,
  .fauves-shop-products ul.products,
  .fauves-search-products .wp-block-post-template,
  body.search-results.post-type-archive-product .wc-block-product-template,
  body.tax-product_cat .fauves-category-archive__products .wp-block-post-template,
  body.tax-product_cat .fauves-category-archive__products .wc-block-grid__products {
    grid-template-columns: 1fr !important;
  }

  body.search-results.post-type-archive-product main.wp-block-group,
  body.tax-product_cat main.fauves-category-archive {
    padding-right: var(--wp--preset--spacing--md);
    padding-left: var(--wp--preset--spacing--md);
  }

  body.search-results.post-type-archive-product main > .wp-block-group.alignwide.is-content-justification-space-between,
  body.tax-product_cat .fauves-shop-toolbar {
    display: grid;
    justify-items: start;
  }

  body.tax-product_cat .fauves-category-archive__hero .fauves-search-title__term {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .fauves-category-seo-block {
    justify-items: start;
    text-align: left;
  }

  .fauves-sticky-cart__actions {
    grid-template-columns: 1fr 1fr;
  }

  .fauves-sticky-cart__quantity {
    grid-column: 1 / -1;
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
  }

  .fauves-search-toolbar .wp-block-search {
    width: 100%;
  }

  .fauves-search-toolbar .wp-block-search__inside-wrapper {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .fauves-search-toolbar .wp-block-search__button {
    width: 100%;
  }

  .fauves-category-product__image {
    min-height: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fauves-home-hero__content,
  .fauves-home .fauves-category-row .wp-block-column,
  .fauves-category-product,
  .fauves-category-product__code,
  .fauves-category-product__summary {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
    filter: none;
  }

  .wc-block-grid__product-image img,
  .woocommerce ul.products li.product img,
  .fauves-search-products .wp-block-post-featured-image img,
  body.search-results.post-type-archive-product .wc-block-components-product-image img {
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 760px) {
  .fauves-legal-page .fauves-editorial-hero,
  .fauves-faq-page .fauves-editorial-hero,
  .fauves-store-page .fauves-editorial-hero,
  .fauves-legal-page .fauves-editorial-grid,
  .fauves-faq-page .fauves-editorial-grid,
  .fauves-store-page .fauves-editorial-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }

  .fauves-legal-page .fauves-editorial-section,
  .fauves-faq-page .fauves-editorial-section,
  .fauves-store-page .fauves-editorial-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

body:has(.fauves-legal-page),
body:has(.fauves-faq-page),
body:has(.fauves-store-page) {
  overflow-x: hidden;
}

@media (max-width: 760px) {
  :where(
    body.woocommerce-cart,
    body.woocommerce-account,
    body.privacy-policy,
    body:has(.fauves-legal-page),
    body:has(.fauves-faq-page),
    body:has(.fauves-store-page),
    body:has(.fauves-contact-page)
  ) :where(h1, .wp-block-post-title, .fauves-editorial-hero h1, .fauves-contact-cover h1) {
    max-width: 100%;
    font-size: 2rem !important;
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  :where(
    body.woocommerce-cart,
    body.woocommerce-account,
    body.privacy-policy,
    body:has(.fauves-legal-page),
    body:has(.fauves-faq-page),
    body:has(.fauves-store-page),
    body:has(.fauves-contact-page)
  ) :where(h2, .cart_totals h2, .fauves-editorial-section h2, .fauves-editorial-box h2, .fauves-contact-aside h2, .fauves-contact-form-panel__intro h2) {
    font-size: 1.5rem !important;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  :where(
    body.woocommerce-cart,
    body.woocommerce-account,
    body.privacy-policy,
    body:has(.fauves-legal-page),
    body:has(.fauves-faq-page),
    body:has(.fauves-store-page),
    body:has(.fauves-contact-page)
  ) h3 {
    font-size: 1.25rem !important;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  :where(
    body.woocommerce-cart,
    body.woocommerce-account,
    body.privacy-policy,
    body:has(.fauves-legal-page),
    body:has(.fauves-faq-page),
    body:has(.fauves-store-page),
    body:has(.fauves-contact-page)
  ) h4 {
    font-size: 1.125rem !important;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}
