/* FAGUO theme */
:root {
  --font-body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --font-accent: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --color-text: #1a1a1a;
  --color-bg: #ffffff;
  --color-accent: #2d473e;
  --color-primary: #2d473e;
  --color-highlight: #2d473e;
  --color-sale: #8b3a2a;
  --color-border: #ece8e1;
  --color-bg-light: #f7f5f0;
  --color-bg-green: #2d473e;
  --page-width: 1400px;
  --gutter: 1.5rem;
  --radius: 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: clip; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; width: 0; height: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, li { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.page-width { max-width: var(--page-width); margin: 0 auto; padding: 0 var(--gutter); }
.section--padding { padding: 4rem 0; }
.section--bg-light { background: var(--color-bg-light); }
.section--bg-pink { background: var(--color-bg-light); }
.section--green { background: var(--color-bg-green); color: #fff; }
.center { text-align: center; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid--1-col { grid-template-columns: 1fr; }
.grid--2-col { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 750px) {
  :root { --gutter: 5rem; }
  body { font-size: 1.6rem; }
  .grid--2-col-tablet { grid-template-columns: repeat(2, 1fr); }
  .grid--3-col-tablet { grid-template-columns: repeat(3, 1fr); }
  .grid--4-col-tablet { grid-template-columns: repeat(4, 1fr); }
  .grid--5-col-desktop { grid-template-columns: repeat(5, 1fr); }
  .mobile-only { display: none !important; }
}
@media (max-width: 749px) {
  .desktop-only { display: none !important; }
  .small-hide { display: none !important; }
  .grid--2-col { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .page-width { padding-left: 1.2rem; padding-right: 1.2rem; }
  :root { --gutter: 1.2rem; }
}

/* Typography */
h1, h2, .h1, .h2, .title, .banner__heading, .cat-tile__label, .collection-hero__title, .rp-hero__title, .product__title, .forest-band__count {
  font-family: var(--font-heading);
}
.h1, .title.h1 { font-size: 3.2rem; font-weight: 500; line-height: 1.2; }
.h2, .title.h2 { font-size: 2.8rem; font-weight: 500; line-height: 1.25; }
.h5, .card__heading { font-size: 1.6rem; font-weight: 500; }
.subheading {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}
.section--green .subheading { color: rgba(255,255,255,0.7); }
.caption-with-letter-spacing {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 0.4rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  transition: 0.2s;
}
.button:hover { opacity: 0.9; }
.button--secondary {
  background: transparent;
  color: var(--color-accent);
  width: 100%;
  margin-top: 1rem;
}
.button--secondary:hover { background: var(--color-accent); color: #fff; }
.button--full { width: 100%; margin-top: 1.5rem; }
.button--medium { padding: 1.4rem 3.2rem; }
.button--outline {
  background: transparent; color: var(--color-accent);
}
.button--outline:hover { background: var(--color-accent); color: #fff; opacity: 1; }
.button--light {
  background: #fff; color: var(--color-accent); border-color: #fff;
}
.button--light:hover { opacity: 0.9; }

/* Price */
.price { display: flex; gap: 0.8rem; align-items: center; margin: 0.8rem 0; }
.price-item--regular { font-weight: 500; }
.price-item--sale { color: var(--color-sale); }
.price-item--compare { text-decoration: line-through; color: #999; font-size: 1.4rem; }

/* Utility bar */
.utility-bar {
  background: var(--color-bg-green);
  color: #f6f3ec;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.utility-bar a, .utility-bar button { color: inherit; }
.utility-bar__country, .utility-bar__right { color: #e8e2d6; white-space: nowrap; }
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem var(--gutter);
}
.utility-bar__center { flex: 1; text-align: center; font-weight: 600; min-width: 0; }
.utility-bar__center:hover { text-decoration: none; }
.utility-bar__promo-link {
  display: inline-flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: 0.75rem; color: inherit; text-decoration: none; max-width: 100%;
}
.utility-bar__promo-link:hover { text-decoration: none; opacity: 0.94; }
.utility-bar__promo-icon {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff;
}
.utility-bar__promo-icon svg { display: block; width: 1.05rem; height: 1.05rem; stroke-width: 1.65; }
.utility-bar__promo-text {
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  font-size: clamp(0.68rem, 2.4vw, 0.95rem);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2;
}
.promo-countdown {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.8rem; border-radius: 999px;
  background: rgba(30, 77, 58, 0.08); font-size: 1.05rem; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.promo-countdown__label { color: #5a5a5a; font-weight: 400; }
.promo-countdown__time { color: var(--color-primary, #1e4d3a); font-weight: 600; min-width: 7.5rem; }
.utility-bar__country, .utility-bar__right { color: #e8e2d6; white-space: nowrap; }
@media (max-width: 989px) {
  html { scroll-behavior: auto; }
  .utility-bar__country, .utility-bar__right { display: none; }
  .utility-bar__inner { padding: 0.55rem 0.4rem; gap: 0.25rem; min-height: 3.6rem; }
  .utility-bar__promo-link { gap: 0.55rem; }
  .utility-bar__promo-icon { width: 1.65rem; height: 1.65rem; }
  .utility-bar__promo-icon svg { width: 0.95rem; height: 0.95rem; }
  .utility-bar__arrow { font-size: 1.5rem; padding: 0 0.2rem; flex-shrink: 0; }
  .promo-countdown { font-size: 1rem; }
}

/* Announcement (legacy alias) */
.announcement-bar { background: var(--color-bg-light); text-align: center; padding: 1rem; font-size: 1.2rem; font-weight: 500; }

/* Header — sticky seul (la barre d’annonce défile) */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 300;
  background-color: #fff;
  box-shadow: 0 1px 0 var(--color-border);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background: #fff;
  pointer-events: none;
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  padding: 0 var(--gutter);
  gap: 1rem;
  min-height: 5.6rem;
}
.header__left { display: flex; align-items: stretch; gap: 1rem; justify-self: start; }
.header__heading { justify-self: center; margin: 0; display: flex; align-items: center; }
.header__heading-logo { height: 32px; width: auto; max-width: 148px; display: block; }
.header__heading-link { display: flex; align-items: center; }
.header__logo-desktop { display: none; }
.header__icons { display: flex; align-items: center; gap: 0.6rem; justify-self: end; }
.header__inline-menu { display: flex; gap: 1.6rem; flex-wrap: nowrap; align-items: stretch; }
.header__menu-item {
  font-size: 1.22rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: #2b2b2b; transition: color 0.2s; white-space: nowrap;
  display: flex; align-items: center;
  height: 100%;
  padding: 1.6rem 0;
}
@media (min-width: 990px) {
  .header__menu-item { font-weight: 600; }
}
.header__menu-item-wrap.has-mega:hover .header__menu-item,
.header__menu-item:hover {
  text-decoration: underline;
  text-underline-offset: 0.45rem;
}
.header__menu-item--highlight { color: var(--color-highlight); }
.header__icon { padding: 0.5rem; color: #353535; position: relative; display: inline-flex; }
.header__icon:hover { color: var(--color-accent); }
.header__icon--menu { display: none; flex-direction: column; gap: 4px; }
.header__icon--menu span { display: block; width: 22px; height: 2px; background: #353535; }
.header__badge {
  position: absolute; top: -4px; right: -4px;
  background: #e0245e; color: #fff; font-size: 0.9rem;
  width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--color-accent); color: #fff;
  font-size: 0.9rem; min-width: 15px; height: 15px; padding: 0 3px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}

/* Mega menu */
.header { overflow: visible; }
.header__menu-item-wrap { position: relative; display: flex; align-items: stretch; }
.header__menu-item-wrap.has-mega { position: static; }
.header__menu-item-wrap.has-mega:hover .mega-menu,
.header__menu-item-wrap.has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mega-menu {
  opacity: 0; visibility: hidden;
  transition: opacity 0.12s ease, visibility 0.12s ease; pointer-events: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 3rem 0; z-index: 200;
}
.mega-menu::before {
  content: "";
  position: absolute; left: 0; right: 0; top: -2px;
  height: 4px;
}
.mega-menu__inner { display: grid; grid-template-columns: minmax(28rem, 1fr) minmax(34rem, 1.15fr); gap: 4rem; align-items: start; }
.mega-menu__columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 0 3.2rem; }
.mega-menu__column { max-width: none; }
.mega-menu__column ul { margin-top: 0; }
.mega-menu__column li { margin-bottom: 0.85rem; }
.mega-menu__column a { font-size: 1.4rem; text-transform: none; letter-spacing: 0; color: #3a3a3a; }
.mega-menu__column a:hover { color: var(--color-accent); }
.mega-menu__all { text-decoration: underline; text-underline-offset: 0.3rem; font-weight: 500; }
.mega-menu__heading { color: var(--color-highlight); font-weight: 500; font-size: 1.3rem; text-transform: none; }
.mega-menu__promos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.mega-menu__promos:has(.mega-menu__promo:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
.mega-menu__promo {
  position: relative; display: block; overflow: hidden; line-height: 0; aspect-ratio: 3 / 4;
}
.mega-menu__promo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mega-menu__promo:hover img { transform: scale(1.03); }
.mega-menu__promo-label {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 1;
  color: #fff; font-weight: 700; font-size: 1.45rem; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; left: -100%; width: 90%; max-width: 420px;
  height: 100vh; height: 100dvh;
  background: #fff; z-index: 400; transition: left 0.3s ease;
  display: flex; flex-direction: column; overflow: hidden;
}
.drawer.open { left: 0 !important; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: 0.3s; z-index: 399;
  pointer-events: none;
}
.drawer-overlay.open { opacity: 1 !important; visibility: visible !important; pointer-events: auto; }
.header__menu-item-wrap.has-mega:hover .mega-menu,
.header__menu-item-wrap.has-mega:focus-within .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.drawer__header {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1rem; padding: 1.4rem var(--gutter); border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.drawer__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.drawer__close { font-size: 2.4rem; line-height: 1; width: 3.6rem; height: 3.6rem; border-radius: 50%; background: #f2f2f2; }
.drawer__logo { justify-self: center; }
.drawer__header-icons { display: flex; gap: 1.2rem; }
.drawer__list {
  padding: 1rem 0;
}
.drawer__item { border-bottom: 1px solid var(--color-border); }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1.6rem var(--gutter); font-size: 1.6rem; font-weight: 600; text-align: left;
}
.drawer__link--highlight { color: var(--color-highlight); font-weight: 600; }
.drawer__submenu { display: none; padding: 0 var(--gutter) 1.2rem; }
.drawer__item--open .drawer__submenu { display: block; }
.drawer__item--open .drawer__link svg { transform: rotate(90deg); }
.drawer__group { margin-top: 0.4rem; }
.drawer__group + .drawer__group { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(0,0,0,.05); }
.drawer__group-title {
  color: var(--color-highlight); font-weight: 500; margin: 0 0 0.65rem;
  font-size: 1.35rem; letter-spacing: 0.04em;
}
.drawer__group-title--link {
  display: block; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: #1a1a1a; text-decoration: none;
  padding: 0.35rem 0 0.55rem; margin-bottom: 0.25rem;
}
.drawer__group-title--link:hover { color: var(--color-accent); }
.drawer__sublist { margin: 0; padding: 0; }
.drawer__sublist li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
}
.drawer__sublist li:last-child { border-bottom: 0; }
.drawer__sub-link {
  display: block; padding: 0.7rem 0;
  font-size: 1.45rem; font-weight: 500; color: #2b2b2b;
  transition: color 0.15s;
}
.drawer__sub-link:hover { color: var(--color-accent); }
.drawer__sub-link--all {
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 1.3rem; color: #666; padding-top: 0.85rem;
}
.drawer__promos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
  margin-top: 0; align-items: stretch;
}
.drawer__promo {
  display: flex; flex-direction: column;
  border-radius: 2px; overflow: hidden;
  line-height: normal; background: #fff;
  text-decoration: none; color: inherit;
  border: 1px solid rgba(0,0,0,.06);
  transition: border-color 0.15s, transform 0.15s;
}
.drawer__promo:hover { border-color: rgba(0,0,0,.14); transform: translateY(-1px); }
.drawer__promo-media {
  display: block; aspect-ratio: 3 / 4;
  overflow: hidden; background: #f3efe8; line-height: 0;
}
.drawer__promo-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.drawer__promo-label {
  display: block; padding: 0.7rem 0.5rem 0.75rem;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; color: #1a1a1a;
}
.drawer__collection-promos {
  padding: 0.75rem var(--gutter) 1rem;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.drawer__submenu .drawer__promos { margin-top: 1.5rem; }
.drawer__footer { padding: 1.6rem var(--gutter) max(1.6rem, env(safe-area-inset-bottom)); border-top: 1px solid var(--color-border); }
.drawer__footer-links { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.drawer__footer-links a {
  flex: 1; border: 1px solid var(--color-border); padding: 1rem; text-align: center;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.drawer__social { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; font-size: 1.2rem; }
.drawer__country { text-align: center; font-size: 1.3rem; color: #666; }

.header__icon--search { align-items: center; gap: 0.35rem; }
.header__search-label { font-size: 1.25rem; font-weight: 400; letter-spacing: 0.02em; }
@media (max-width: 989px) {
  .header__icon--menu { display: flex; }
  .header__inline-menu { display: none; }
  .header__inner { grid-template-columns: auto 1fr auto; padding: 1rem var(--gutter); align-items: center; min-height: 5.2rem; height: 5.2rem; }
  .header__logo-desktop { display: none !important; }
  .header__left { gap: 0.2rem; align-items: center; }
  .header__icons { gap: 0.35rem; }
  .header__heading { display: flex; }
  .header__search-label { display: none; }
}
@media (min-width: 990px) {
  .header__inner { grid-template-columns: 1fr auto; min-height: 5.6rem; height: 5.6rem; }
  .header__heading { display: none; }
  .header__logo-desktop { display: flex; align-self: center; }
  .header__left { gap: 2.4rem; }
}

/* Search */
.search-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 510;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.search-modal.open { display: flex !important; }
body.search-open { overflow: hidden; }
.search-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 22, 20, 0.42);
  backdrop-filter: blur(3px);
  border: 0; padding: 0; cursor: pointer;
}
.search-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 100%;
  background: #f7f6f4;
  height: 100dvh;
  max-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: searchPanelIn 0.28s ease;
}
@keyframes searchPanelIn {
  from { opacity: 0; transform: translateY(-1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}
.search-modal__bar {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.6rem 0.9rem; background: #f7f6f4;
  border-bottom: none;
  flex-shrink: 0;
}
.search-modal__field {
  flex: 1; display: flex; align-items: center; gap: 0.75rem;
  min-width: 0; padding: 0.35rem 0 0.65rem;
  background: transparent; border-radius: 0;
  border: 0; border-bottom: 1px solid rgba(0,0,0,.14);
  transition: border-color 0.2s;
}
.search-modal__field:focus-within {
  border-bottom-color: var(--color-accent);
}
.search-modal__icon { color: #666; flex-shrink: 0; display: inline-flex; }
.search-modal__field input {
  flex: 1; border: 0; background: transparent;
  font-size: 1.65rem; font-family: inherit; outline: none;
  min-width: 0;
}
.search-modal__field input::-webkit-search-cancel-button { display: none; }
.search-modal__clear {
  flex-shrink: 0; width: 2.4rem; height: 2.4rem;
  border: 0; border-radius: 50%; background: rgba(0,0,0,.06);
  color: #444; font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.search-modal__clear:hover { background: rgba(0,0,0,.1); }
.search-modal__close {
  flex-shrink: 0;
  background: none; border: 0; font-size: 2.4rem; line-height: 1;
  cursor: pointer; color: #333; padding: .4rem;
}
.search-modal__body {
  display: grid; grid-template-columns: minmax(220px, 280px) 1fr; gap: 3rem;
  padding: 1.2rem 1.6rem 3rem; align-items: start;
  flex: 1; min-height: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.search-modal__results-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.2rem;
}
.search-modal__results-head .search-modal__heading { margin: 0; }
.search-modal__count { margin: 0; font-size: 1.2rem; color: #666; letter-spacing: 0.02em; }
.search-modal__heading {
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; margin: 0 0 1.2rem; color: #1a1a1a;
}
.search-modal__group { margin-bottom: 2.4rem; }
.search-modal__links { list-style: none; padding: 0; margin: 0; }
.search-modal__links li { margin-bottom: .55rem; }
.search-link {
  background: none; border: 0; padding: 0.15rem 0; font: inherit; font-size: 1.35rem;
  color: #333; cursor: pointer; text-decoration: none; text-align: left;
  transition: color 0.15s;
}
.search-link:hover { color: var(--color-accent); }
.search-results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.2rem;
}
.search-product {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform 0.18s ease;
}
.search-product:hover { transform: translateY(-2px); }
.search-product__media {
  aspect-ratio: 1; background: #f3ece6; margin-bottom: .8rem; overflow: hidden;
  border-radius: 2px;
}
.search-product__media img { width: 100%; height: 100%; object-fit: contain; padding: .8rem; transition: transform 0.25s ease; }
.search-product:hover .search-product__media img { transform: scale(1.03); }
.search-product__type { font-size: 1.05rem; color: var(--color-primary); margin-bottom: .3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.search-product__title { font-size: 1.25rem; font-weight: 500; line-height: 1.35; margin-bottom: .4rem; }
.search-product__mark { background: rgba(45, 71, 62, 0.14); color: inherit; padding: 0 0.1em; border-radius: 2px; }
.search-product__price { font-size: 1.3rem; font-weight: 600; }
.search-product__price s { color: #999; font-weight: 400; margin-right: .3rem; }
.search-empty { color: #666; font-size: 1.4rem; grid-column: 1 / -1; line-height: 1.5; }
.search-empty--loading { color: #888; }
.search-modal__footer { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--color-border); }
.search-modal__view-all {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--color-accent);
}
.search-modal__view-all:hover { text-decoration: underline; text-underline-offset: 0.25rem; }

@media (max-width: 989px) {
  .search-modal__body { grid-template-columns: 1fr; gap: 2rem; }
  .search-results-grid { grid-template-columns: repeat(2, 1fr); }
  .search-modal__sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .search-modal__group { margin-bottom: 0; }
}
@media (max-width: 549px) {
  .search-results-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .search-modal__sidebar { grid-template-columns: 1fr; }
  .search-modal__field input { font-size: 1.45rem; }
}

/* Hero banner */
.hero-banner .banner { position: relative; }
.hero-banner .banner__media { position: relative; line-height: 0; background: #1a1a1a; }
.hero-banner .banner__img {
  width: 100%;
  height: min(86vh, 860px);
  object-fit: cover;
  display: block;
}
.hero-banner .banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.hero-slide.is-playing .banner__video { opacity: 1; }
.hero-slide.is-playing .banner__img.desktop-only { opacity: 0; }
.hero-banner .banner__img.desktop-only { transition: opacity 0.45s ease; }
@media (max-width: 749px) {
  .hero-banner .banner__img { height: min(78vh, 640px); }
}
.hero-banner .banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #fff;
  pointer-events: none;
}
.hero-banner .banner__content .button { pointer-events: auto; }
.hero-banner .banner__subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin: 0 0 1.6rem;
}
.hero-banner .banner__heading {
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 0.95;
  color: #fff;
  white-space: nowrap;
}
.hero-banner .banner__text { margin-bottom: 2rem; font-size: 1.5rem; line-height: 1.45; }
.button--hero {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  letter-spacing: 0.14em;
  padding: 1.1rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.button--hero:hover { background: #fff; color: #1a1a1a; opacity: 1; }
@media (max-width: 749px) {
  .hero-banner .banner__heading { white-space: normal; }
}

/* Home brand — SEO accordion (plié mobile, ouvert desktop) */
.home-brand {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 0.4rem 0 1.6rem;
}
.home-brand__details { margin: 0; }
.home-brand__summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
  cursor: pointer; list-style: none;
  font-size: 1.45rem; font-weight: 500;
  color: var(--color-highlight, #FD7BDF);
}
.home-brand__summary::-webkit-details-marker { display: none; }
.home-brand__chevron {
  flex-shrink: 0; color: #999;
  transition: transform 0.2s ease;
}
.home-brand__details[open] .home-brand__chevron { transform: rotate(180deg); }
.home-brand__body { padding: 0 0 0.4rem; }
.home-brand__h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500; line-height: 1.2; margin: 0 0 0.8rem;
  color: var(--color-highlight, #FD7BDF);
}
.home-brand__lead {
  margin: 0 0 1rem; font-size: 1.3rem; line-height: 1.55; color: #555;
}
.home-brand__trust {
  list-style: none; margin: 0 0 1.2rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
}
.home-brand__trust li {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 1.1rem; color: #444;
}
.home-brand__trust svg { flex-shrink: 0; width: 1.6rem; height: 1.6rem; color: var(--color-primary, #1e4d3a); }
.home-brand__trust li:first-child svg { color: var(--color-highlight, #FD7BDF); }
.home-brand__nav {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--color-border);
}
.home-brand__nav-item {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none; color: inherit;
  transition: color 0.2s;
}
.home-brand__nav-item:last-child { border-bottom: none; }
.home-brand__nav-item:hover { color: var(--color-primary, #1e4d3a); }
.home-brand__nav-title {
  font-size: 1.35rem; font-weight: 500; color: #1a1a1a;
}
.home-brand__nav-item:hover .home-brand__nav-title { color: var(--color-primary, #1e4d3a); }
.home-brand__nav-desc { font-size: 1.15rem; color: #777; }
@media (max-width: 989px) {
  .home-brand__h1 { display: none; }
  .home-brand__summary-label { font-size: 1.35rem; }
}
@media (min-width: 990px) {
  .home-brand { padding: 2.5rem 0 3rem; }
  .home-brand__summary { display: none; }
  .home-brand__h1 { display: block; text-align: center; max-width: 72rem; margin: 0 auto 1rem; }
  .home-brand__lead { text-align: center; max-width: 68rem; margin: 0 auto 1.4rem; }
  .home-brand__trust { justify-content: center; margin-bottom: 2rem; }
  .home-brand__nav {
    flex-direction: row; gap: 1.6rem;
    border-top: none; padding-top: 0.5rem;
  }
  .home-brand__nav-item {
    flex: 1; padding: 1.4rem;
    border: 1px solid var(--color-border); border-radius: 6px;
    background: #faf9f7;
  }
  .home-brand__nav-item:last-child { border-bottom: 1px solid var(--color-border); }
}

/* Trending horizontal scroll */
.trending {
  background: #faf9f7;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.trending__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.6rem;
}
.trending__head .title { margin: 0; font-size: 2.2rem; }
.trending__more {
  font-size: 1.2rem; font-weight: 500; color: #6a6a6a;
  white-space: nowrap; text-decoration: none;
  padding: 0; border: 0; border-radius: 0; background: none;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.trending__more:hover,
.trending__more .text-link:hover {
  text-decoration: underline; color: var(--color-primary);
}
.trending__scroll-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
}
.trending__scroll-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 3rem;
  background: linear-gradient(90deg, transparent, #faf9f7);
  pointer-events: none;
}
.trending__track {
  list-style: none; margin: 0; padding: 0.4rem var(--gutter) 1rem;
  display: flex; flex-wrap: nowrap; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trending__track::-webkit-scrollbar { display: none; }
.trending__item {
  flex: 0 0 15.5rem; width: 15.5rem; max-width: 15.5rem;
  scroll-snap-align: start; min-width: 0;
}
.trending__item .card-wrapper {
  background: #fff; border-radius: 4px;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  height: 100%; width: 100%;
}
.trending__item .card__media { max-width: 100%; }
.trending__item .media--square { max-width: 100%; }
.trending__item .card__content { padding: 1rem 1rem 1.2rem; }
.trending__item .card__subheading { font-size: 1rem; }
.trending__item .card__heading { font-size: 1.35rem; }
.trending__item .add-to-cart-btn {
  font-size: 1.1rem; padding: 0.7rem 1rem; min-height: auto;
}
@media (min-width: 750px) {
  .trending__item { flex: 0 0 22rem; width: 22rem; max-width: 22rem; }
}
@media (min-width: 990px) {
  .trending__item { flex: 0 0 22rem; width: 22rem; max-width: 22rem; }
}

.visually-hidden-mobile {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (min-width: 750px) {
  .visually-hidden-mobile {
    position: static; width: auto; height: auto; margin: 0 0 2rem;
    overflow: visible; clip: auto; white-space: normal;
  }
}

/* Campagne Pool Nails (accueil + page dédiée) */
.campaign-banner { margin: 0; }
.home-pool-campaign { padding: 0 0 2rem; }
.campaign-banner__inner { position: relative; overflow: hidden; min-height: 28rem; }
.campaign-banner__media { position: absolute; inset: 0; line-height: 0; }
.campaign-banner__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.campaign-banner__content {
  position: relative; z-index: 1; min-height: 28rem;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem var(--gutter);
}
.campaign-banner__box { max-width: 52rem; color: #353535; }
.campaign-banner__title {
  font-size: clamp(3.2rem, 7vw, 5.6rem); font-weight: 500; line-height: 1.05;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.campaign-banner__text { font-size: 1.5rem; line-height: 1.55; margin-bottom: 2rem; }
.pool-nails-page .campaign-banner__inner { min-height: 32rem; }
.pool-nails-page .campaign-banner__content { min-height: 32rem; }
@media (min-width: 750px) {
  .campaign-banner__inner { min-height: 36rem; }
  .campaign-banner__content { min-height: 36rem; }
  .pool-nails-page .campaign-banner__inner,
  .pool-nails-page .campaign-banner__content { min-height: 40rem; }
}

/* Page Pool Nails — rangées look + bannière produit */
.pool-nails-page .pool-look { padding-top: 1.6rem; padding-bottom: 0.8rem; }
.pool-nails-page .pool-look__grid {
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch;
}
.pool-nails-page .pool-look__media { line-height: 0; }
.pool-nails-page .pool-look__media img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 28rem;
}
.pool-nails-page .pool-look__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem var(--gutter);
}
.pool-nails-page .pool-look__head { margin-bottom: 1.6rem; }
.pool-nails-page .pool-look__head .title em { font-style: italic; font-weight: 400; }
.pool-nails-page .pool-look__slider {
  display: flex; flex-wrap: nowrap; gap: 1.2rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 0.4rem; margin: 0; list-style: none;
}
.pool-nails-page .pool-look__slider > .grid__item {
  flex: 0 0 min(42%, 16rem); scroll-snap-align: start;
}
.pool-nails-page .pool-product-banner { padding-top: 0.8rem; padding-bottom: 1.6rem; }
.pool-nails-page .pool-product-banner__wrap { position: relative; }
.pool-nails-page .pool-product-banner__media { display: block; line-height: 0; }
.pool-nails-page .pool-product-banner__media img { width: 100%; height: auto; display: block; }
.pool-nails-page .pool-product-banner__card {
  max-width: 32rem; margin: -2rem auto 0; position: relative; z-index: 1;
}
.pool-nails-page .pool-product-banner__card .card-wrapper { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
@media (min-width: 750px) {
  .pool-nails-page .pool-look__grid { grid-template-columns: 1fr 1fr; }
  .pool-nails-page .pool-look__content { padding: 3rem 4rem; }
  .pool-nails-page .pool-look__slider { flex-wrap: wrap; overflow: visible; }
  .pool-nails-page .pool-look__slider > .grid__item { flex: 0 0 calc(33.333% - 0.8rem); }
  .pool-nails-page .pool-product-banner__card {
    position: absolute; right: max(var(--gutter), 4rem); bottom: 2.4rem; margin: 0;
  }
}

/* Green™, c'est quoi ? */
.green-quoi-page .gq-hero { position: relative; color: #1c1d1d; overflow: hidden; }
.green-quoi-page .gq-hero__media { display: block; line-height: 0; }
.green-quoi-page .gq-hero__media img { width: 100%; height: auto; min-height: 280px; object-fit: cover; object-position: 20% 50%; }
.green-quoi-page .gq-hero__content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 2rem var(--gutter); text-align: center;
}
.green-quoi-page .gq-hero__review {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.4rem 0.8rem;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.green-quoi-page .gq-hero__review mark { background: transparent; font-weight: 700; font-size: 1.4rem; }
.green-quoi-page .gq-hero__review .card__stars { color: var(--color-highlight); letter-spacing: 0.05em; }
.green-quoi-page .gq-hero__title { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 600; line-height: 1.08; margin: 0 0 1rem; }
.green-quoi-page .gq-hero__title mark { background: transparent; color: inherit; }
.green-quoi-page .gq-hero__lead { font-size: 1.7rem; max-width: 36rem; margin: 0; }
.green-quoi-page .gq-trust { background: #fdf2f4; padding: 0.4rem 0 1.2rem; font-size: 1.2rem; }
.green-quoi-page .gq-trust a { color: #666; text-decoration: underline; }
.green-quoi-page .gq-pillars__grid { gap: 2rem; list-style: none; margin: 0; padding: 0; text-align: center; }
.green-quoi-page .gq-pillar__title { margin: 0 0 0.8rem; line-height: 1.25; }
.green-quoi-page .gq-pillar__title mark { background: #fcf1f2; padding: 0 0.2em; }
.green-quoi-page .gq-pillar__text { font-size: 1.45rem; color: #444; line-height: 1.4; }
.green-quoi-page .gq-marquee {
  overflow: hidden; background: #fcf1f2; padding: 2.4rem 0; border-block: 1px solid rgba(0,0,0,.06);
}
.green-quoi-page .gq-marquee__track {
  display: flex; gap: 4rem; width: max-content; white-space: nowrap;
  animation: gq-marquee 28s linear infinite;
}
.green-quoi-page .gq-marquee__item { font-size: 2.2rem; font-weight: 500; color: #1a1b18; }
@keyframes gq-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.green-quoi-page .gq-kits__head { margin-bottom: 2.4rem; }
.green-quoi-page .gq-kits__subtitle { font-size: 1.8rem; margin: 0.6rem 0 0; color: #333; }
.green-quoi-page .gq-mark-title mark { background: #fcf1f2; padding: 0 0.15em; }
.green-quoi-page .gq-split-icons { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.green-quoi-page .gq-split-icons__item { display: flex; align-items: center; gap: 1.2rem; font-size: 1.45rem; }
.green-quoi-page .gq-split-icons__item img { flex-shrink: 0; width: 50px; height: auto; }
.green-quoi-page .gq-feature-banner { padding-top: 0; }
.green-quoi-page .gq-feature-banner__wrap { position: relative; }
.green-quoi-page .gq-feature-banner__media { line-height: 0; }
.green-quoi-page .gq-feature-banner__media img { width: 100%; height: auto; display: block; }
.green-quoi-page .gq-feature-banner__copy {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  padding: 2rem var(--gutter); max-width: 52rem; color: #1f1f1f; pointer-events: none;
}
.green-quoi-page .gq-feature-banner__title { font-size: clamp(2.4rem, 4vw, 3.6rem); margin: 0 0 1rem; line-height: 1.1; }
.green-quoi-page .gq-feature-banner__text { font-size: 1.5rem; line-height: 1.45; max-width: 42rem; pointer-events: auto; }
.green-quoi-page .gq-feature-banner__card { max-width: 32rem; margin: -2rem auto 0; position: relative; z-index: 1; }
.green-quoi-page .gq-feature-banner__card .card-wrapper { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.green-quoi-page .gq-creativity__title { margin: 0 0 1.6rem; line-height: 1.15; }
.green-quoi-page .gq-creativity__title mark { background: #fcf1f2; }
.green-quoi-page .gq-creativity__text { max-width: 72rem; margin: 0 auto 2rem; font-size: 1.55rem; line-height: 1.5; }
.green-quoi-page .gq-videos__grid { gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.green-quoi-page .gq-video { display: block; position: relative; border-radius: 4px; overflow: hidden; }
.green-quoi-page .gq-video img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.green-quoi-page .gq-video__play {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.92); box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.green-quoi-page .gq-video__play::after {
  content: ''; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
  border: 10px solid transparent; border-left: 16px solid #1a1b18; margin-left: 4px;
}
@media (min-width: 750px) {
  .green-quoi-page .gq-feature-banner__card {
    position: absolute; right: max(var(--gutter), 4rem); bottom: 2.4rem; margin: 0;
  }
  .green-quoi-page .gq-feature-banner__copy { top: auto; bottom: 28%; transform: none; }
}

/* Category circles (mobile only) */
.cat-circles { padding: 1.2rem 0 0.6rem; }
.cat-circles--top { padding-top: 0.8rem; padding-bottom: 0.4rem; background: #fff; }
.cat-circles__scroll {
  display: flex; gap: 1.4rem; overflow-x: auto;
  padding: 0 var(--gutter) 0.6rem;
  scrollbar-width: none;
}
.cat-circles__scroll::-webkit-scrollbar { display: none; }
.cat-circle { flex: 0 0 auto; width: 6.4rem; text-align: center; }
.cat-circle__img {
  display: block; width: 6.4rem; height: 6.4rem; border-radius: 50%;
  overflow: hidden; background: var(--color-bg-light); margin-bottom: 0.6rem;
}
.cat-circle__img img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle__label { font-size: 1.1rem; color: #444; line-height: 1.2; white-space: nowrap; }

/* Tabs */
.tabs-nav {
  display: flex; gap: 3rem;
  overflow-x: auto; margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: none;
  justify-content: center;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  white-space: nowrap;
  padding: 1rem 0.2rem;
  font-size: 1.5rem; color: #8a8a8a;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: 0.2s;
}
.tab-btn.active { color: #2b2b2b; border-bottom-color: var(--color-highlight); }
.tab-btn:hover { color: #2b2b2b; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
@media (max-width: 749px) {
  .tabs-nav { gap: 2rem; justify-content: flex-start; padding: 0 var(--gutter); margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); }
  .tab-btn { font-size: 1.4rem; }
}

/* Product cards */
.product-grid { list-style: none; }
.product-grid > .grid__item { display: flex; min-width: 0; }
.card-wrapper { position: relative; width: 100%; }
.card--product {
  display: flex; flex-direction: column; height: 100%; width: 100%;
}
.card__media { display: block; overflow: hidden; background: #f6f4f1; position: relative; }
.media--square { aspect-ratio: 1; position: relative; }
.media--square img { width: 100%; height: 100%; object-fit: cover; }
.media--hover-effect .media__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
}
.media--hover-effect .media__hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.card-wrapper:hover .media--hover-effect .media__hover { opacity: 1; }
.card__badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; z-index: 2; font-weight: 500;
}
.card__badge--sold { background: #888; color: #fff; }
.card__badge--sale { background: var(--color-highlight); color: #fff; }
.card--bestseller { position: relative; }
.card--bestseller .card__badge--best {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  background: var(--color-bg-light); color: var(--color-accent);
  font-size: 1.05rem; font-weight: 600; text-transform: capitalize;
}

/* Bestsellers page */
.bestsellers-page .bs-hero {
  position: relative; min-height: 36rem; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
}
.bestsellers-page .bs-hero__bg { position: absolute; inset: 0; }
.bestsellers-page .bs-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bestsellers-page .bs-hero__content { position: relative; z-index: 1; padding: 4rem 0; max-width: 72rem; }
.bestsellers-page .bs-hero__review {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.6rem; font-size: 1.3rem; color: #333;
}
.bestsellers-page .bs-hero__review mark {
  background: var(--color-highlight); color: #fff; padding: .15rem .5rem; border-radius: 2px;
  font-weight: 600; font-style: normal;
}
.bestsellers-page .bs-hero__stars { color: var(--color-highlight); letter-spacing: .05em; }
.bestsellers-page .bs-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 500; line-height: 1.25; margin-bottom: 2.4rem;
}
.bestsellers-page .bs-hero__pictos {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem;
  padding: 0; margin: 0;
}
.bestsellers-page .bs-hero__pictos li { display: flex; flex-direction: column; align-items: center; gap: .8rem; font-size: 1.25rem; line-height: 1.35; max-width: 9rem; }
.bestsellers-page .bs-hero__pictos img { display: block; }
.bestsellers-page .bs-collection__head { margin-bottom: 2rem; max-width: 90rem; }
.bestsellers-page .bs-collection__subtitle { margin-top: .8rem; color: #555; font-size: 1.35rem; line-height: 1.5; }
.bestsellers-page .bs-collection--center .title { margin-bottom: 2.4rem; }
.pool-nails-page .bs-collection--center .title { margin-bottom: 2.4rem; }
.bestsellers-page .bs-promo-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #f6f4f1;
  min-height: 100%; aspect-ratio: 1;
}
.bestsellers-page .bs-promo-card__media { position: absolute; inset: 0; }
.bestsellers-page .bs-promo-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bestsellers-page .bs-promo-card__text {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 1.4rem 1.2rem;
  color: #fff; font-size: 1.6rem; font-weight: 500; line-height: 1.35;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
}
.bestsellers-page .bs-promo-card__text mark { background: transparent; color: inherit; font-weight: 700; }
.bestsellers-page .bs-tabs--vertical,
.pool-nails-page .bs-tabs--vertical {
  display: grid; grid-template-columns: minmax(16rem, 22rem) 1fr; gap: 2.4rem 3rem; align-items: start;
}
.bestsellers-page .bs-tabs__nav,
.pool-nails-page .bs-tabs__nav {
  flex-direction: column; align-items: stretch; gap: .6rem; justify-content: flex-start;
  overflow: visible; padding: 0; margin: 0;
}
.bestsellers-page .bs-tabs__nav .tab-btn,
.pool-nails-page .bs-tabs__nav .tab-btn {
  text-align: left; border: 1px solid var(--color-border); border-radius: 999px;
  padding: 1rem 1.4rem; background: #fff; font-size: 1.3rem; cursor: pointer;
  white-space: normal; line-height: 1.35;
}
.bestsellers-page .bs-tabs__nav .tab-btn.active,
.pool-nails-page .bs-tabs__nav .tab-btn.active {
  border-color: var(--color-accent); background: var(--color-bg-light); font-weight: 500;
}
.bestsellers-page .bs-marquee {
  background: #fcf1f2; padding: 2.2rem 0; overflow: hidden;
}
.bestsellers-page .bs-marquee__track {
  display: flex; gap: 5rem; width: max-content;
  animation: bs-marquee 32s linear infinite;
}
.bestsellers-page .bs-marquee__item {
  font-size: 2.4rem; font-weight: 500; white-space: nowrap; color: #1a1a1a;
}
@keyframes bs-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 749px) {
  .bestsellers-page .bs-hero { min-height: 28rem; }
  .bestsellers-page .bs-tabs--vertical,
  .pool-nails-page .bs-tabs--vertical { grid-template-columns: 1fr; }
  .bestsellers-page .bs-tabs__nav,
  .pool-nails-page .bs-tabs__nav { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .4rem; }
  .bestsellers-page .bs-tabs__nav .tab-btn,
  .pool-nails-page .bs-tabs__nav .tab-btn { flex: 0 0 auto; font-size: 1.2rem; padding: .8rem 1.2rem; }
  .bestsellers-page .bs-marquee__item { font-size: 1.8rem; }
  .bestsellers-page .bs-collection .title.h2 { font-size: 2.2rem; }
  .bestsellers-page .bs-collection__subtitle { font-size: 1.25rem; }
  .bestsellers-page .bs-promo-card {
    aspect-ratio: 1; min-height: 0; max-height: none;
  }
  .bestsellers-page .bs-promo-card__text { font-size: 1.35rem; padding: 1rem; }
  .bestsellers-page .bs-hero__pictos img { max-width: 56px; max-height: 56px; width: auto; height: auto; }
  .bestsellers-page .product-grid { gap: 0.75rem; }
  .product-grid .card--product .button--secondary {
    background: var(--color-accent); color: #fff; border-color: var(--color-accent);
    font-size: 1.05rem; padding: 1rem 0.5rem; letter-spacing: 0.04em;
  }
  .product-grid .card--product .button--secondary:hover { opacity: 0.92; background: var(--color-accent); color: #fff; }
  .card__subheading { font-size: 0.95rem; line-height: 1.25; }
  .card__heading { font-size: 1.35rem; }
  .card__reviews { font-size: 1rem; }
  .card__badge { top: 0.6rem; left: 0.6rem; font-size: 0.9rem; padding: 0.25rem 0.55rem; }
}

.card__content { padding: 1.4rem 0; text-align: left; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.card__subheading {
  font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-accent); display: block; margin-bottom: 0.5rem; font-weight: 600;
}
.card__rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.card__stars { color: var(--color-highlight); font-size: 1.2rem; letter-spacing: 1px; }
.card__reviews { font-size: 1.1rem; color: #999; }
.card__heading { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.4rem; line-height: 1.3; }
.card__heading a:hover { color: var(--color-accent); }
.card__variant { font-size: 1.2rem; color: #888; margin-bottom: 0.6rem; line-height: 1.35; }
.card-information { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.card__content .price { justify-content: flex-start; margin: 0.4rem 0 0; }
.card__content .price-item--regular { font-weight: 600; }
.card__content .add-to-cart-btn { margin-top: auto; padding-top: 1rem; }
.tab-cta { margin-top: 3rem; }

/* Multicolumn collections */
.multicolumn-list { list-style: none; }
.multicolumn-card { display: block; overflow: hidden; border-radius: var(--radius); }
.multicolumn-card img { width: 100%; transition: transform 0.4s; }
.multicolumn-card:hover img { transform: scale(1.03); }

/* Reviews — homepage */
.reviews-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center; }
.reviews-home .reviews-left { text-align: left; }
.reviews-home .reviews-left .subheading { color: var(--color-highlight); letter-spacing: 0.18em; }
.reviews-home .reviews-left .title { font-size: 3.6rem; line-height: 1.1; margin-top: 0.8rem; }
.reviews-home .reviews-left .title em { font-style: italic; color: var(--color-highlight); font-weight: 400; }
.reviews-home .reviews-note { color: #7a6a6a; font-size: 1.4rem; line-height: 1.65; margin: 1.8rem 0 2.2rem; max-width: 44rem; }
.reviews-home .reviews-score { display: flex; align-items: center; justify-content: flex-start; gap: 0.8rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.reviews-home .reviews-score .score { font-size: 2rem; font-weight: 600; color: #2b2b2b; }
.reviews-home .reviews-score .score-out { color: #2b2b2b; font-size: 2rem; }
.reviews-home .reviews-score .stars { color: var(--color-highlight); font-size: 1.7rem; letter-spacing: 2px; }
.reviews-home .reviews-score .reviews-count { font-size: 1.3rem; color: var(--color-highlight); font-weight: 500; }
.reviews-home .reviews-verified { font-size: 1.7rem; margin-bottom: 1.8rem; color: #2b2b2b; }
.reviews-home .reviews-verified strong { color: var(--color-highlight); font-weight: 600; }
.home-review-card {
  background: #fff; padding: 2rem; border-radius: var(--radius);
  text-align: left; margin-bottom: 1.6rem; box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.home-review-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.home-review-card .stars { color: var(--color-highlight); margin: 0.4rem 0 0.8rem; letter-spacing: 2px; }
.home-review-card h3 { font-size: 1.6rem; font-weight: 600; margin: 0; }
.home-review-card time { font-size: 1.2rem; color: #aaa; white-space: nowrap; }
.home-review-card p { color: #666; font-size: 1.35rem; line-height: 1.6; margin: 0; }

/* How-to */
.howto-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; }
.howto-video {
  position: relative; display: block; aspect-ratio: 16/10; border-radius: var(--radius);
  background-size: cover; background-position: center; background-color: var(--color-highlight);
}
.howto-video__play {
  position: absolute; inset: 0; margin: auto; width: 6rem; height: 6rem; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--color-accent); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.howto-video:hover .howto-video__play { background: #fff; }
.howto-text .title em { font-style: italic; color: var(--color-highlight); }
.howto-text p { color: #666; margin: 1.2rem 0 2rem; max-width: 42rem; }

/* Values (light) */
.values-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.values-text .title { font-size: 2rem; line-height: 1.5; font-weight: 400; }
.values-enough { font-weight: 600; margin: 1.2rem 0 2rem; }
.values-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.value-card {
  background: var(--color-bg-light); border-radius: 6px; padding: 2.4rem 1rem 1.8rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.value-card img { width: 100%; max-width: 96px; height: 96px; object-fit: contain; }
.value-card p { font-size: 1.2rem; color: #555; line-height: 1.35; margin-top: auto; }
@media (max-width: 749px) {
  .reviews-inner, .howto-grid, .values-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-home .reviews-left { text-align: left; }
  .reviews-home .reviews-note { margin-left: 0; }
  .reviews-home .reviews-score { justify-content: flex-start; }
  .reviews-home .reviews-left .title { font-size: 2.8rem; }
  /* L'original masque la liste des avis sur mobile (résumé + bouton seulement) */
  .reviews-home .reviews-right { display: none; }
  /* Credo : rangée scrollable de cartes roses, comme l'original */
  .values-cards {
    display: flex; grid-template-columns: none;
    gap: 1.2rem; overflow-x: auto; padding-bottom: 0.8rem;
    scrollbar-width: none; margin: 0 calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter);
  }
  .values-cards::-webkit-scrollbar { display: none; }
  .value-card { flex: 0 0 13rem; }
}

/* Newsletter */
.newsletter-form {
  display: flex; max-width: 480px; margin: 2rem auto 0;
}
.newsletter-form input {
  flex: 1; padding: 1.2rem 1.6rem;
  border: 1px solid var(--color-border);
  font-family: inherit; font-size: 1.4rem;
}
.newsletter-form .button { border-radius: 0 var(--radius) var(--radius) 0; }
@media (max-width: 749px) {
  .newsletter-form { flex-direction: column; gap: 1rem; }
  .newsletter-form .button { border-radius: var(--radius); }
}

/* Benefits (reassurance strip) */
.benefits { background: var(--color-bg-grey, #f4f5f5); padding: 4rem 0 6rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.benefit { text-align: center; padding: 0 0.5rem; }
.benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; margin-bottom: 1.4rem; color: #2b2b2b;
}
.benefit__icon--script { font-family: var(--font-accent); font-style: italic; font-size: 2rem; color: #2b2b2b; }
.benefit h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.8rem; color: #2b2b2b; }
.benefit p { font-size: 1.25rem; color: #666; line-height: 1.55; max-width: 20rem; margin: 0 auto; }
.benefit p a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.benefit p a:hover { color: var(--color-highlight); }

/* Partner (Pro) */
.partner { background: var(--color-bg-green); padding: 0 0 3rem; margin-top: -1px; }
.partner__box {
  background: #fff; border: 1px solid var(--color-border);
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 3rem;
  padding: 2.4rem 4rem; transform: translateY(-3rem);
}
.partner__logo { height: 54px; width: auto; }
.partner__title { font-size: 1.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.partner__text p { font-size: 1.3rem; color: #666; line-height: 1.5; }
.partner .button { white-space: nowrap; }
@media (max-width: 749px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 3rem 1.5rem; }
  .partner__box { grid-template-columns: 1fr; text-align: center; gap: 1.6rem; padding: 2.4rem; }
  .partner__logo { display: none; }
}

/* Footer */
.footer { background: var(--color-bg-green); color: #fff; }
.footer__content-top { padding: 5rem 0 3rem; }
.footer__blocks { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 3rem; }
.footer__heading {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
  list-style: none;
  cursor: default;
}
.footer__heading::-webkit-details-marker { display: none; }
.footer__column li { margin-bottom: 0.9rem; }
.footer__column a { font-size: 1.4rem; opacity: 0.85; transition: opacity 0.2s; }
.footer__column a:hover { opacity: 1; text-decoration: underline; }
.footer__brand-line { font-size: 1.4rem; opacity: 0.85; }
.footer__brand-strong { font-size: 1.6rem; font-weight: 500; margin-bottom: 2rem; }
.footer__brand-newsletter { font-size: 1.4rem; margin-bottom: 1rem; }
.footer__follow { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 1rem; }
.footer__lang { font-size: 1.3rem; margin-top: 1.6rem; letter-spacing: 0.06em; }
.footer__newsletter { display: flex; border: 1px solid rgba(255,255,255,0.4); margin-bottom: 2rem; }
.footer__newsletter input { flex: 1; background: transparent; border: none; padding: 1.1rem; color: #fff; font-family: inherit; font-size: 1.3rem; outline: none; }
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.6); }
.footer__newsletter button { padding: 0 1.6rem; color: #fff; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__social { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 1.3rem; }
.footer__social a { opacity: 0.85; text-decoration: underline; text-underline-offset: 0.25rem; }
.footer__social a:hover { opacity: 1; }
.footer__content-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 1.2rem;
}
.footer__legal { opacity: 0.7; }
.footer__legal a { color: inherit; text-decoration: none; opacity: 0.85; }
.footer__legal a:hover { opacity: 1; text-decoration: underline; }
.footer__payments { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }
.pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 3px; padding: 0.25rem 0.35rem; line-height: 0;
}
.pay-icon svg { display: block; height: 2.4rem; width: auto; max-width: 4.2rem; border-radius: 3px; }
.pay-icon img { display: block; height: 2.4rem; width: auto; max-width: 4.5rem; object-fit: contain; }
.pay-badge {
  background: #fff; color: #333; font-size: 1rem; font-weight: 600;
  padding: 0.3rem 0.6rem; border-radius: 3px; white-space: nowrap;
}
@media (max-width: 749px) {
  .footer__content-top,
  .footer__content-bottom { padding-left: max(var(--gutter), 2rem); padding-right: max(var(--gutter), 2rem); }
  .footer__blocks { grid-template-columns: 1fr; gap: 0; }
  .footer__column {
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 0.4rem 0;
  }
  .footer__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    padding: 1.4rem 0;
  }
  .footer__heading::after {
    content: "+";
    font-size: 1.8rem;
    font-weight: 400;
    transform: none;
    transition: transform 0.2s;
  }
  .footer__column[open] .footer__heading::after { content: "−"; transform: none; }
  .footer__brand { grid-column: 1 / -1; text-align: left; padding-top: 2.4rem; }
  .footer__social { justify-content: flex-start; }
  .footer__newsletter { max-width: none; margin-left: 0; margin-right: 0; }
  .footer__content-bottom { flex-direction: column; gap: 1.5rem; text-align: center; align-items: center; }
  .footer__legal { max-width: 34rem; line-height: 1.55; }
  .footer__payments { justify-content: center; width: 100%; max-width: 32rem; }
}
@media (min-width: 750px) {
  .footer__column summary { pointer-events: none; }
}

/* Collection page */
.breadcrumbs { font-size: 1.3rem; color: #888; margin-bottom: 1.6rem; }
.breadcrumbs a:hover { color: var(--color-accent); }
.collection-hero { background: var(--color-bg-light); padding: 3rem 0; text-align: center; }
.collection-hero__title { font-size: 3.2rem; font-weight: 500; }
.collection-description { margin: 1.6rem auto 0; max-width: 80rem; color: #666; font-size: 1.4rem; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.4rem; }
.collection-count { color: #888; font-size: 1.4rem; }
.collection-sort select { border: 1px solid var(--color-border); padding: 0.8rem 1rem; font-family: inherit; font-size: 1.3rem; margin-left: 0.6rem; }
.collection-page .product-grid { gap: 0.75rem; }
@media (max-width: 749px) {
  .collection-hero { padding: 2rem 0; }
  .collection-hero__title { font-size: 2.4rem; }
  .collection-toolbar { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .collection-page .section--padding { padding-top: 2rem; padding-bottom: 2rem; }
}

/* Product page */
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.product-layout > * { min-width: 0; }
.product__gallery-col { position: sticky; top: 12rem; min-width: 0; }
.product__info { min-width: 0; max-width: 100%; }
.product__media-wrapper { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; position: relative; }
.breadcrumbs--pdp-mobile { display: none; }
.breadcrumbs--pdp { font-size: 1.25rem; color: var(--color-accent); margin-bottom: 1.2rem; line-height: 1.5; }
.breadcrumbs--pdp a { color: var(--color-accent); text-decoration: none; }
.breadcrumbs--pdp a:hover { opacity: 0.75; }
.product__media-thumbs { display: flex; flex-direction: column; gap: 0.8rem; max-height: 60rem; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.product__media-thumbs::-webkit-scrollbar { display: none; width: 0; }
.product-thumb { width: 72px; height: 72px; border: 1px solid var(--color-border); overflow: hidden; flex-shrink: 0; }
.product-thumb.active { border-color: var(--color-accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__media-main { background: #f3efe8; line-height: 0; overflow: hidden; aspect-ratio: 4 / 5; }
.product__media-track { display: block; height: 100%; }
.product-media { display: none; height: 100%; }
.product-media.active { display: block; height: 100%; }
.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.product__type { font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.6rem; font-weight: 600; }
.product__title { font-size: 3rem; font-weight: 600; margin-bottom: 0.8rem; line-height: 1.15; color: var(--color-accent); }
.product__rating { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.product__rating .card__stars { font-size: 1.5rem; }
.product__reviews-link { font-size: 1.3rem; color: #888; text-decoration: underline; }
.product .price { font-size: 2rem; margin: 1rem 0 1.2rem; font-weight: 600; color: var(--color-accent); }
.product .price-item--regular,
.product .price-item--sale { color: var(--color-accent); }
.product .price-item--compare { color: #999; font-weight: 400; }
.product__anchors {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  margin: 0 0 1.6rem; padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-border);
}
.product__anchor {
  font-size: 1.35rem; font-weight: 500; color: #353535;
  text-decoration: none; border-bottom: 1px solid transparent;
}
.product__anchor:hover { color: var(--color-accent); border-bottom-color: var(--color-highlight); }
.product__short-desc { color: #444; font-size: 1.45rem; line-height: 1.6; margin-bottom: 2rem; font-weight: 400; }
.product__short-desc p { margin-bottom: 0.8rem; }
.product-form__option { margin-bottom: 1.8rem; }
.product-form__option-label { display: block; font-size: 1.35rem; margin-bottom: 0.9rem; font-weight: 600; color: #1a1a1a; }
.product-form__pills { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.product-form__pill {
  padding: 0.9rem 1.6rem; border: 1px solid var(--color-border);
  font-size: 1.3rem; border-radius: 2px; transition: 0.2s;
}
.product-form__pill.active, .product-form__pill:hover { border-color: var(--color-accent); background: #f4f8f6; }
.product-form__select {
  width: 100%; padding: 1.1rem; border: 1px solid var(--color-border);
  font-family: inherit; font-size: 1.4rem;
}

/* Color swatches — sibling products (Active, Green Flash, Green) */
.product-form__colors { margin-bottom: 2rem; min-width: 0; max-width: 100%; }
.color-swatches__current { font-weight: 400; color: #666; }
.color-swatches {
  display: flex; flex-wrap: wrap; gap: 1rem 1.2rem; margin-bottom: 0.8rem;
}
.color-swatches__extra { display: contents; }
.color-swatches__extra[hidden] { display: none; }
.color-swatch {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  width: 64px; text-decoration: none; color: inherit; cursor: pointer;
}
.color-swatch__dot {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid #ddd;
  background-size: cover; background-position: center; background-color: #f6f4f1;
  transition: border-color .2s, box-shadow .2s;
}
.color-swatch:hover .color-swatch__dot,
.color-swatch--active .color-swatch__dot {
  border-color: #1a1a1a; box-shadow: 0 0 0 1px #1a1a1a;
}
.color-swatch__label {
  font-size: 1.05rem; line-height: 1.25; text-align: center; color: #555;
  max-width: 72px; word-break: break-word;
}
.color-swatches__toggle {
  background: none; border: 0; padding: 0; font-size: 1.25rem;
  text-decoration: underline; cursor: pointer; color: #1a1a1a;
}

/* Bundle option cards — "Je choisis mon option" */
.product-form__option--bundles { margin-top: 0.4rem; }
.bundle-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.bundle-cards--2 { grid-template-columns: repeat(2, 1fr); }
.bundle-cards--1 { grid-template-columns: 1fr; }
.bundle-card {
  position: relative; display: flex; flex-direction: column; align-items: stretch;
  border: 1.5px solid var(--color-border); background: #fff; border-radius: var(--radius);
  padding: 0; cursor: pointer; text-align: left; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.bundle-card:hover { border-color: #bbb; }
.bundle-card.active { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent); }
.bundle-card--soldout { opacity: .5; cursor: not-allowed; }
.bundle-card__badge {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  background: var(--color-bg-light); color: var(--color-highlight);
  font-size: 1.05rem; font-weight: 600; text-align: center; padding: .45rem .6rem;
}
.bundle-card__badge--best { color: var(--color-accent); }
.bundle-card__media {
  display: block; background: #f6f4f1; aspect-ratio: 1/1;
  max-height: 13rem; overflow: hidden;
}
.bundle-card:has(.bundle-card__badge) .bundle-card__media { margin-top: 2.4rem; }
.bundle-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; padding: .6rem; }
.bundle-card__body { padding: 1rem 1rem 1.2rem; }
.bundle-card__name { display: block; font-size: 1.2rem; line-height: 1.35; margin-bottom: .5rem; color: #333; }
.bundle-card__price { font-size: 1.35rem; font-weight: 600; }
.bundle-card__price s { color: #999; font-weight: 400; font-size: 1.15rem; margin-right: .3rem; }
.bundle-card__price--sale { color: var(--color-accent); }

/* Custom color picker — Trio / Rainbow personnalisables */
.custom-picker { margin: 1.6rem 0 2rem; }
.custom-picker__slots {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.custom-picker__slot {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid #ccc;
  background: #f6f4f1 center/cover no-repeat; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, box-shadow .2s;
}
.custom-picker__slot:hover,
.custom-picker__slot--filled { border-color: #1a1a1a; }
.custom-picker__slot--filled .custom-picker__slot-num { opacity: 0; }
.custom-picker__slot-num {
  font-size: 1.4rem; color: #888; font-weight: 500;
}

.picker-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.picker-modal[hidden] { display: none; }
.picker-modal__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
}
.picker-modal__dialog {
  position: relative; background: #fff; width: min(1100px, 96vw);
  height: min(88vh, 720px); max-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.picker-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  background: none; border: 0; font-size: 2.4rem; line-height: 1;
  cursor: pointer; color: #333; padding: .4rem .8rem;
}
.picker-modal__body {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  flex: 1; min-height: 0; overflow: hidden;
}
.picker-modal__left {
  padding: 2rem; display: flex; flex-direction: column;
  background: #faf9f7; border-right: 1px solid var(--color-border);
  min-height: 0; overflow: hidden;
}
.picker-modal__hero {
  width: 100%; flex: 1; min-height: 0; max-height: 100%;
  object-fit: cover; border-radius: 2px;
  background: #eee; margin-bottom: 1rem;
}
.picker-modal__preview-title {
  font-size: 1.3rem; line-height: 1.45; color: #333; margin: 0;
  flex-shrink: 0;
}
.picker-modal__right {
  display: flex; flex-direction: column;
  min-height: 0; overflow: hidden;
  padding: 2rem 2rem 1.6rem;
}
.picker-modal__right-head {
  flex-shrink: 0; padding-right: 2.4rem;
}
.picker-modal__eyebrow {
  font-size: 1.1rem; letter-spacing: .08em; color: var(--color-primary);
  margin-bottom: .6rem;
}
.picker-modal__title {
  font-family: var(--font-heading); font-size: 2rem; margin: 0 0 1.2rem;
}
.picker-modal__steps {
  display: flex; gap: .8rem; margin-bottom: 1.2rem;
}
.picker-modal__step {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #888;
}
.picker-modal__step.active { border-color: #1a1a1a; color: #1a1a1a; font-weight: 600; }
.picker-modal__step.done { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.picker-modal__grid-scroll {
  flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-right: .4rem; margin-right: -.4rem;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.picker-modal__grid-scroll::-webkit-scrollbar { width: 6px; }
.picker-modal__grid-scroll::-webkit-scrollbar-thumb {
  background: #ccc; border-radius: 3px;
}
.picker-modal__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem 1rem;
  padding-bottom: .4rem;
}
.picker-modal__footer {
  flex-shrink: 0; padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.picker-swatch {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: none; border: 0; padding: 0; cursor: pointer; position: relative;
}
.picker-swatch--soldout { opacity: .4; cursor: not-allowed; }
.picker-swatch__badge {
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  font-size: .85rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--color-accent); white-space: nowrap; z-index: 1;
}
.picker-swatch__dot {
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid #ddd;
  background-size: cover; background-position: center; background-color: #f6f4f1;
  transition: border-color .2s, box-shadow .2s;
}
.picker-swatch:hover .picker-swatch__dot,
.picker-swatch.active .picker-swatch__dot {
  border-color: #1a1a1a; box-shadow: 0 0 0 1px #1a1a1a;
}
.picker-swatch__label {
  font-size: 1.05rem; line-height: 1.25; text-align: center; color: #555;
  max-width: 80px;
}

.product__perks { list-style: none; padding: 0; margin: 2rem 0; }
.product__perk {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .55rem 0; font-size: 1.3rem; color: #333; line-height: 1.45;
}
.product__perk-icon { flex-shrink: 0; color: #1a1a1a; margin-top: .1rem; }
.product__perk strong { font-weight: 700; color: #1a1a1a; }

/* Accordions */
.product-accordions__inner { max-width: 90rem; margin: 0 auto; }
.accordion { border-bottom: 1px solid var(--color-border); }
.accordion summary {
  padding: 1.8rem 0; font-size: 1.5rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; color: var(--color-highlight); font-size: 2rem; }
.accordion[open] summary::after { content: '−'; }
.accordion .rte { padding-bottom: 2rem; color: #555; }

/* Product feature */
.product-feature { background: var(--color-bg-light); margin-top: 2rem; }
.product-feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.product-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.product-feature__text { padding: 4rem 0; }
.product-feature__text h2 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 2rem; }
.product-feature__text mark { background: transparent; color: var(--color-highlight); }
.product-feature__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; font-size: 1.3rem; color: #555; }

/* Related */
.related .title { text-align: center; }
.related .card--product .button--secondary {
  font-weight: 500; font-size: 1.2rem; padding: 0.85rem 1rem; letter-spacing: 0.05em;
}


/* Sticky add-to-cart */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.94);
  border-top: 1px solid #ece8e1;
  z-index: 90; transform: translateY(110%); transition: transform 0.28s ease;
  padding: 0.45rem 0 max(0.45rem, env(safe-area-inset-bottom));
  backdrop-filter: blur(8px);
}
.sticky-atc.show { transform: translateY(0); }
.sticky-atc__inner {
  display: flex; align-items: center; gap: 1rem;
}
.sticky-atc__title {
  flex: 1; min-width: 0; font-size: 1.2rem; font-weight: 500; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;
  font-family: var(--font-heading);
}
.sticky-atc__price {
  font-size: 1.2rem; font-weight: 500; color: #444; white-space: nowrap;
}
.sticky-atc .button--sticky-atc {
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 1rem; white-space: nowrap; margin: 0; min-height: 0;
}
.sticky-atc__actions {
  display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0;
}
.sticky-variant { position: relative; min-width: 0; max-width: 14rem; }
.sticky-variant__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  width: 100%; min-width: 0; padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  background: #fff; font-family: inherit; font-size: 1.02rem; font-weight: 500;
  color: #1a1a1a; cursor: pointer; text-align: left;
}
.sticky-variant__label {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0;
}
.sticky-variant__chev {
  flex-shrink: 0; width: 0.5rem; height: 0.5rem;
  border-right: 1.5px solid #666; border-bottom: 1.5px solid #666;
  transform: rotate(45deg) translateY(-2px); margin-top: -0.2rem;
}
.sticky-variant__trigger[aria-expanded="true"] .sticky-variant__chev {
  transform: rotate(-135deg) translateY(2px);
}
.sticky-variant__list {
  position: absolute; left: 0; right: 0; bottom: calc(100% + 6px); z-index: 95;
  margin: 0; padding: 0.35rem 0; list-style: none;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.12); max-height: min(240px, 40vh); overflow-y: auto;
}
.sticky-variant__option {
  display: block; width: 100%; padding: 0.55rem 0.85rem; border: 0; background: transparent;
  font: inherit; font-size: 1rem; text-align: left; cursor: pointer; color: #333;
}
.sticky-variant__option:hover:not(:disabled),
.sticky-variant__option.is-active {
  background: #f4f8f6; color: var(--color-accent);
}
.sticky-variant__option:disabled { opacity: 0.45; cursor: not-allowed; }
.sticky-variant__native {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.sticky-atc .button--sticky-atc {
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 0.55rem 1.25rem; white-space: nowrap; margin: 0;
}
.product-form .button--full.add-to-cart-btn {
  font-weight: 500; font-size: 1.3rem; letter-spacing: 0.06em;
  padding: 1rem 1.5rem; margin-top: 1.25rem;
}
.price--small { font-size: 1.4rem; margin: 0; }
@media (max-width: 749px) {
  .product-layout { grid-template-columns: 1fr; gap: 0; }
  .product > .page-width { padding-left: 0; padding-right: 0; }
  .product__gallery-col { position: static; width: 100%; }
  .product__media-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: block;
  }
  .product__media-main {
    position: relative;
    overflow: hidden;
    display: block;
    background: #f3efe8;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: min(92vw, 78vh);
    max-height: 85vh;
  }
  .product__media-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .product__media-track::-webkit-scrollbar { display: none; }
  .product-media,
  .product-media.active {
    display: block !important;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .product-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }
  .product__media-thumbs { display: none !important; }
  .breadcrumbs--pdp-desktop { display: none !important; }
  .breadcrumbs--pdp-mobile {
    display: block !important;
    margin: 0;
    padding: 0.35rem var(--gutter) 0.85rem;
    font-size: 1.05rem;
    color: var(--color-accent);
    line-height: 1.5;
  }
  .breadcrumbs--pdp-mobile a { color: var(--color-accent); }
  .product__info {
    padding-top: 0;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .product__title {
    font-size: 3.4rem; font-weight: 500; line-height: 1.06;
    margin-bottom: 0.25rem; color: var(--color-accent);
  }
  .product__type {
    color: #6a6a6a; font-weight: 400; letter-spacing: 0.07em;
    font-size: 1.1rem; margin: 0 0 0.85rem; text-transform: uppercase;
  }
  .product .price { font-size: 1.65rem; font-weight: 600; margin: 0 0 1.2rem; color: var(--color-accent); }
  .product__anchors { gap: 1rem 1.6rem; }
  .product__anchor { font-size: 1.25rem; }
  .product__short-desc { font-size: 1.35rem; }
  .product .button--full { font-size: 1.2rem; padding: 0.95rem 1.25rem; font-weight: 500; }
  .product-feature__inner { grid-template-columns: 1fr; gap: 0; }
  .product-feature__text { padding: 3rem 0; }
  .product-feature__text h2 { font-size: 2.4rem; }
  .product-feature__points { grid-template-columns: 1fr; gap: 1.2rem; }
  .sticky-atc__inner { gap: 0.7rem; }
  .sticky-atc .button--sticky-atc {
    font-size: 0.95rem; padding: 0.4rem 0.8rem; letter-spacing: 0.06em;
  }
  .sticky-atc__title { font-size: 1.15rem; }
  .sticky-atc__price { font-size: 1.1rem; }
  .bundle-cards--2,
  .bundle-cards--3 { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .bundle-card__media { max-height: 9rem; }
  .bundle-card__body { padding: .75rem .8rem 1rem; }
  .bundle-card__name { font-size: 1.1rem; }
  .color-swatches { gap: .8rem 1rem; }
  .color-swatch { width: 56px; }
  .color-swatch__dot { width: 40px; height: 40px; }
  .picker-modal__dialog { height: 100vh; max-height: 100vh; width: 100vw; border-radius: 0; }
  .picker-modal__body { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .picker-modal__left {
    border-right: 0; border-bottom: 1px solid var(--color-border);
    padding: 1.2rem 1.6rem; flex-direction: row; align-items: center; gap: 1rem;
    max-height: 28vh;
  }
  .picker-modal__hero {
    width: 88px; height: 88px; flex: none; margin-bottom: 0;
  }
  .picker-modal__preview-title { font-size: 1.2rem; }
  .picker-modal__right { padding: 1.2rem 1.6rem 1rem; }
  .picker-modal__right-head { padding-right: 2rem; }
  .picker-modal__title { font-size: 1.6rem; }
  .picker-modal__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem .8rem; }
  .picker-swatch__dot { width: 48px; height: 48px; }
  .bundle-cards--1 { grid-template-columns: 1fr; }
}
@media (max-width: 749px) and (orientation: landscape) {
  .product__media-main {
    aspect-ratio: 16 / 10;
    min-height: auto;
    max-height: min(72vh, 520px);
  }
}
@media (min-width: 750px) {
  .product__media-wrapper .product__media-main {
    width: 100%;
    min-width: 0;
  }
  .product__media-main {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: min(72vh, 720px);
  }
}

/* Content pages */
.page-content { max-width: 820px; margin: 0 auto; }
.page-content .rte p { margin-bottom: 1.2rem; line-height: 1.7; }
.page-content .rte h1 { font-size: 3.2rem; font-weight: 500; margin-bottom: 1.2rem; line-height: 1.15; }
.page-content .rte h2 { margin: 2.8rem 0 1rem; font-size: 2.2rem; font-weight: 500; }
.page-content .rte ul, .page-content .rte ol { margin: 0 0 1.4rem 1.6rem; line-height: 1.7; color: #444; }
.page-content .rte li { margin-bottom: 0.5rem; }
.page-content .rte table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.page-content .rte table.legal-table th,
.page-content .rte table.legal-table td {
  border: 1px solid #e5e5e5;
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}
.page-content .rte table.legal-table th {
  background: #f7f7f5;
  font-weight: 600;
}
.page-content .rte a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.page-content .rte img { margin: 0; border-radius: var(--radius); }
.page-content .lead { font-size: 1.8rem; line-height: 1.6; color: #444; margin-bottom: 2rem; }
.page-hero { margin: 0 0 2.5rem; border-radius: 8px; overflow: hidden; }
.page-hero img { width: 100%; display: block; }
.page-steps { counter-reset: step; list-style: none; padding: 0; margin: 1rem 0 1.6rem; }
.page-steps li {
  counter-increment: step; position: relative; padding-left: 4rem; margin-bottom: 1.2rem; line-height: 1.6;
}
.page-steps li::before {
  content: counter(step); position: absolute; left: 0; top: -0.2rem;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background: var(--color-accent); color: #fff; font-size: 1.3rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.page-bullets { list-style: none; padding: 0; margin: 1rem 0 1.6rem; }
.page-bullets li { position: relative; padding-left: 2.2rem; margin-bottom: 0.9rem; line-height: 1.6; }
.page-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.9rem;
  width: 0.8rem; height: 0.8rem; border-radius: 50%; background: var(--color-highlight);
}

/* Cart drawer */
.cart-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(920px, 100vw); height: 100vh;
  background: #fff; z-index: 400;
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
  transition: right .35s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-overlay {
  position: fixed; inset: 0; z-index: 399;
  background: rgba(26, 27, 24, 0.45);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.cart-drawer-overlay.show { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }
.cart-drawer__layout {
  display: grid; grid-template-columns: 300px 1fr;
  height: 100%; min-height: 0;
}
.cart-drawer__upsell {
  background: #f3f1ec; border-right: 1px solid var(--color-border);
  padding: 1.8rem 1.4rem; overflow-y: auto;
}
.cart-drawer__upsell-title {
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: .1em;
  margin: 0 0 1.2rem; font-weight: 600; color: #2d473e;
}
.cart-rec-empty { font-size: 1.2rem; color: #777; line-height: 1.45; }
.cart-rec-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.cart-rec-row:last-child { border-bottom: 0; }
.cart-rec-row__media {
  flex-shrink: 0; width: 64px; height: 64px; background: #fff;
  display: block; line-height: 0; border-radius: 2px; overflow: hidden;
}
.cart-rec-row__media img { width: 100%; height: 100%; object-fit: contain; padding: 0.25rem; }
.cart-rec-row__body { flex: 1; min-width: 0; }
.cart-rec-row__type {
  display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--color-primary); line-height: 1.2; margin-bottom: 0.15rem;
}
.cart-rec-row__title {
  display: block; font-size: 1.15rem; font-weight: 600; line-height: 1.3;
  margin-bottom: 0.2rem; color: inherit;
}
.cart-rec-row__title:hover { text-decoration: underline; }
.cart-rec-row__price { margin: 0; font-size: 1.1rem; font-weight: 600; }
.cart-rec-row__price s { color: #999; font-weight: 400; margin-right: 0.25rem; }
.cart-rec-row__add {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--color-primary); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cart-rec-row__add:hover { transform: scale(1.05); background: var(--color-accent); }
.cart-drawer__main { display: flex; flex-direction: column; min-height: 0; }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 1.6rem 1.2rem; border-bottom: 1px solid rgba(0,0,0,.06); background: #fff;
}
.cart-drawer__header h2 {
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; margin: 0;
  font-family: var(--font-heading); text-transform: none; color: #1a1a1a;
}
#cartClose {
  background: none; border: 0; font-size: 2.4rem; line-height: 1; cursor: pointer;
}
.cart-drawer__login {
  padding: 0.65rem 1.6rem; font-size: 1.1rem; color: #777;
  border-bottom: 1px solid var(--color-border); background: #fff;
}
.cart-drawer__login a { color: #1a1a1a; font-weight: 600; text-decoration: underline; }
.cart-drawer__rewards { padding: 0.85rem 1.6rem 1rem; border-bottom: 1px solid rgba(0,0,0,.06); background: #fff; }
.cart-rewards__msg { font-size: 1.15rem; margin: 0 0 0.65rem; color: #444; line-height: 1.4; }
.cart-rewards__msg strong { color: var(--color-highlight); font-weight: 600; }
.cart-rewards__bar {
  height: 8px; background: #d4d4d4; border-radius: 999px; margin-bottom: 1rem; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}
.cart-rewards__bar span {
  display: block; height: 100%; min-width: 4px;
  background: var(--color-primary); border-radius: inherit; transition: width .3s;
}
.cart-rewards__steps { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; }
.cart-reward { display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; color: #888; }
.cart-reward--done { color: var(--color-primary); }
.cart-reward__dot {
  width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.cart-reward--done .cart-reward__dot { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.cart-drawer__reminder {
  margin: 1rem 2rem 0; padding: 1rem 1.2rem; border: 1px solid #f5c4e8;
  background: #fef5fb; font-size: 1.2rem; line-height: 1.45; color: #333;
}
.cart-drawer__reminder a { color: inherit; font-weight: 600; text-decoration: underline; }
.cart-drawer__scroll { display: contents; }
.cart-drawer__upsell-mobile { display: none; }
.cart-rec-card {
  flex: 0 0 11.5rem; width: 11.5rem; scroll-snap-align: start;
  background: #fff; border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,.06);
}
.cart-rec-card__media {
  display: block; aspect-ratio: 1; background: #f3ece6; line-height: 0; overflow: hidden;
}
.cart-rec-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 0.45rem; }
.cart-rec-card__body { padding: 0.65rem 0.7rem 0.75rem; display: flex; flex-direction: column; flex: 1; }
.cart-rec-card__type {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--color-primary); margin-bottom: 0.15rem;
}
.cart-rec-card__title {
  font-size: 0.95rem; font-weight: 600; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 0.35rem; color: inherit;
}
.cart-rec-card__price { margin: 0 0 0.55rem; font-size: 0.95rem; font-weight: 600; }
.cart-rec-card__compare { color: #999; font-weight: 400; margin-right: 0.2rem; }
.cart-rec-card__add {
  margin-top: auto; width: 100%; padding: 0.45rem 0.5rem;
  border: 1px solid #1a1a1a; background: #fff; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-rec-card__add:hover { background: #1a1a1a; color: #fff; }
.cart-item__type {
  display: block; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--color-primary); margin-bottom: 0.2rem; line-height: 1.25;
}
.cart-drawer__subtotal-label {
  margin-right: auto; font-size: 1.35rem; font-weight: 600; color: #1a1a1a;
}
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 0.4rem 1.6rem 1rem; -webkit-overflow-scrolling: touch; }
.cart-empty { color: #666; font-size: 1.4rem; text-align: center; padding: 3rem 1rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border); align-items: flex-start;
}
.cart-item__media { flex-shrink: 0; display: block; line-height: 0; }
.cart-item__media img { width: 72px; height: 72px; object-fit: contain; background: #f3ece6; border-radius: 2px; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__title { display: block; font-size: 1.35rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.35rem; }
.cart-item__badge {
  display: inline-block; background: var(--color-accent); color: #fff;
  font-size: 1rem; padding: 0.25rem 0.65rem; margin-bottom: 0.4rem; font-weight: 600;
}
.cart-item__actions {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.6rem;
}
.cart-item__qty { display: flex; align-items: center; gap: 0.6rem; }
.cart-qty-btn {
  width: 32px; height: 32px; border: 1px solid var(--color-border);
  background: #fff; cursor: pointer; font-size: 1.5rem; line-height: 1; border-radius: 4px;
}
.cart-item__remove {
  flex-shrink: 0; width: 40px; height: 40px; border: none; background: #f6f4f1;
  border-radius: 50%; cursor: pointer; color: #666; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.cart-item__remove:hover { color: #c0392b; background: #fdecea; }
.cart-item__price { font-size: 1.35rem; font-weight: 600; margin: 0; color: #1a1a1a; }
.cart-item__price s { color: #999; font-weight: 400; margin-right: 0.35rem; }
.cart-item--gift .cart-item__title { font-weight: 500; }
.cart-drawer__footer {
  padding: 1rem 1.6rem max(1.2rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.cart-drawer__subtotals {
  display: flex; align-items: baseline; justify-content: flex-end; gap: .65rem;
  margin-bottom: 0.85rem;
}
.cart-drawer__subtotal-label {
  margin-right: auto; font-size: 1.2rem; font-weight: 600; color: #1a1a1a;
}
.cart-drawer__compare s { color: #aaa; font-size: 1.25rem; }
.cart-drawer__total { font-size: 1.85rem; font-weight: 700; color: #1a1a1a; }
.cart-drawer__checkout { margin: 0; letter-spacing: 0.06em; }
.cart-drawer__tax {
  font-size: 1.05rem; color: #999; margin: 0 0 0.85rem; line-height: 1.4;
}
.cart-drawer__promo { padding: 0 0 0.75rem; }
.cart-promo-lines { display: grid; gap: 0.3rem; font-size: 1.1rem; margin-bottom: 0.5rem; }
.cart-promo-line { display: flex; justify-content: space-between; gap: 1rem; color: #777; }
.cart-promo-line--discount { color: #2d473e; font-weight: 600; }

@media (max-width: 749px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .cart-drawer__layout { grid-template-columns: 1fr; height: 100%; min-height: 0; }
  .cart-drawer__upsell { display: none; }
  .cart-drawer__main { height: 100%; min-height: 0; overflow: hidden; }
  .cart-drawer__scroll {
    display: flex; flex-direction: column;
    flex: 1 1 auto; min-height: 0; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cart-drawer__items {
    flex: 0 0 auto; overflow: visible;
    padding: 0.8rem 1.2rem 0.6rem;
  }
  .cart-drawer__upsell-mobile {
    display: block; flex: 0 0 auto;
    width: 100%; max-width: 100%; min-width: 0;
    background: #fafafa; margin: 0; padding: 1rem 0 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, .05);
    overflow: hidden;
  }
  .cart-drawer__upsell-mobile .cart-drawer__upsell-title {
    margin: 0 0 0.75rem; padding: 0 1.2rem;
    font-size: 0.85rem; letter-spacing: 0.1em; color: #666;
  }
  .cart-upsell-list--rail {
    display: flex; flex-wrap: nowrap; align-items: stretch;
    gap: 0.65rem; width: 100%; max-width: 100%; min-width: 0;
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 0 1.2rem 0.2rem;
    scrollbar-width: none;
  }
  .cart-upsell-list--rail::-webkit-scrollbar { display: none; }
  .cart-drawer__login { display: none; }
  .cart-drawer__footer { flex-shrink: 0; }
  .cart-drawer__subtotals { justify-content: flex-end; flex-wrap: wrap; gap: 0.4rem 0.8rem; }
  .cart-drawer__header { padding: 1.35rem 1.2rem 1rem; }
  .cart-drawer__header h2 { font-size: 2rem; font-weight: 600; }
  #cartClose {
    width: 3.6rem; height: 3.6rem; border-radius: 50%; background: #f2f2f2;
    display: flex; align-items: center; justify-content: center;
  }
  .cart-drawer__rewards { padding: 1rem 1.2rem; }
  .cart-drawer__reminder { margin: 0.8rem 1.2rem 0; font-size: 1.1rem; }
  .cart-drawer__footer { padding: 1.2rem 1.2rem max(1.2rem, env(safe-area-inset-bottom)); }
  .cart-drawer__total { font-size: 1.75rem; }
  .cart-item__media img { width: 72px; height: 72px; }
  .product-form__option-label { font-size: 1.45rem; font-weight: 700; margin-bottom: 1rem; }
  .custom-picker .product-form__option-label { font-weight: 700; }
}

/* Toast */
.toast {
  position: fixed; bottom: 3rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #353535; color: #fff;
  padding: 1.2rem 2.4rem; border-radius: var(--radius);
  font-size: 1.4rem; z-index: 500;
  opacity: 0; transition: all 0.3s; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* RTE content from Shopify */
.rte a { text-decoration: underline; color: var(--color-accent); }
.rte ul { list-style: disc; padding-left: 2rem; margin: 1rem 0; }
.rte li { margin-bottom: 0.5rem; }

.add-to-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   RICH PAGES — layouts fidèles (split / media / dual / effects)
   ============================================================ */
.rich-page { overflow-x: hidden; }

/* Reviews page */
.reviews-page { background: #fff; }
.reviews-summary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding-bottom: 2.4rem; border-bottom: 1px solid var(--color-border); margin-bottom: 2rem;
}
.reviews-summary__title { font-size: 3.2rem; margin: 0 0 .8rem; }
.reviews-summary__sub { font-size: 1.4rem; color: #555; margin-bottom: 1.6rem; }
.reviews-summary__rating { display: flex; align-items: center; gap: 1rem; }
.reviews-summary__num { font-size: 4.8rem; font-weight: 600; line-height: 1; }
.reviews-summary__stars { color: var(--color-accent); font-size: 2rem; letter-spacing: .1rem; }
.reviews-summary__based { color: #666; font-size: 1.3rem; margin-top: .4rem; }
.reviews-dist__row {
  display: grid; grid-template-columns: 1.6rem 1.6rem 1fr 4rem;
  align-items: center; gap: .6rem; margin-bottom: .5rem; font-size: 1.2rem;
}
.reviews-dist__star { color: var(--color-accent); }
.reviews-dist__bar { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.reviews-dist__bar span { display: block; height: 100%; background: var(--color-primary); }
.reviews-dist__count { text-align: right; color: #666; }
.reviews-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.reviews-tabs { display: flex; gap: 2rem; }
.reviews-tab {
  background: none; border: 0; border-bottom: 2px solid transparent;
  padding: 0 0 .4rem; font: inherit; font-size: 1.3rem; cursor: pointer; color: #666;
}
.reviews-tab--active { color: #1a1a1a; border-bottom-color: #1a1a1a; font-weight: 500; }
.reviews-sort { font-size: 1.25rem; color: #555; }
.reviews-sort select { border: 1px solid var(--color-border); padding: .4rem .8rem; font: inherit; margin-left: .4rem; }
.reviews-page .review-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--color-border);
}
.reviews-page .review-card[hidden] { display: none !important; }
.reviews-page .review-card__author { display: block; font-size: 1.4rem; margin-bottom: .3rem; }
.reviews-page .review-card__verified {
  display: flex; align-items: center; gap: .3rem; font-size: 1.1rem; color: var(--color-primary);
}
.review-card__verified::before { content: '✓'; font-weight: 700; }
.review-card__head {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin-bottom: .6rem;
}
.review-card__stars { color: var(--color-accent); letter-spacing: .05rem; }
.review-card__title { font-size: 1.35rem; }
.review-card__date { margin-left: auto; color: #888; font-size: 1.2rem; }
.review-card__product { font-size: 1.2rem; color: #666; margin: 0 0 .6rem; }
.review-card__text { font-size: 1.35rem; line-height: 1.55; margin: 0; color: #333; }
.review-card__reply {
  display: flex; gap: 1rem; margin-top: 1.2rem; padding: 1.2rem;
  background: #faf9f7; border-radius: 4px;
}
.review-card__reply-logo {
  width: 32px; height: 32px; border-radius: 50%; background: var(--color-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.review-card__reply p { margin: .3rem 0 0; font-size: 1.25rem; line-height: 1.45; color: #444; }

/* Product page reviews — grille type Yotpo */
.product-reviews { background: #fff; border-top: 1px solid var(--color-border); }
.product-reviews__head { text-align: center; max-width: 760px; margin: 0 auto 2.4rem; }
.product-reviews__title { font-size: 3.6rem; font-weight: 500; line-height: 1.15; margin: 0 0 1rem; }
.product-reviews__accent { color: var(--color-highlight); font-family: var(--font-accent); font-style: italic; }
.product-reviews__sub { font-size: 1.35rem; color: #666; line-height: 1.55; margin: 0; }
.product-reviews__summary {
  display: grid; grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 2rem 2.4rem; align-items: center;
  background: #f5f5f5; border-radius: 4px; padding: 2rem 2.4rem; margin-bottom: 1.6rem;
}
.product-reviews__bar-row {
  display: grid; grid-template-columns: 1.2rem 1.2rem 1fr;
  align-items: center; gap: .5rem; margin-bottom: .45rem; font-size: 1.2rem;
}
.product-reviews__bar-star { color: var(--color-highlight); font-size: 1.1rem; }
.product-reviews__bar { height: 8px; background: #e2e2e2; border-radius: 4px; overflow: hidden; }
.product-reviews__bar span { display: block; height: 100%; background: var(--color-primary); }
.product-reviews__score { text-align: center; min-width: 120px; }
.product-reviews__num { display: block; font-size: 4.2rem; font-weight: 600; line-height: 1; color: var(--color-primary); }
.product-reviews__stars { display: block; color: var(--color-highlight); font-size: 1.8rem; letter-spacing: .08rem; margin: .4rem 0; }
.product-reviews__based { margin: 0; font-size: 1.2rem; color: #666; }
.product-reviews__write { white-space: nowrap; padding-inline: 2rem; }
.product-reviews__write:disabled { opacity: .55; cursor: default; }
.product-reviews__toolbar { display: flex; justify-content: flex-end; margin-bottom: 1.6rem; }
.product-reviews__sort { font-size: 1.25rem; color: #555; }
.product-reviews__sort select {
  border: 1px solid var(--color-border); padding: .45rem .8rem; font: inherit; margin-left: .4rem; background: #fff;
}
.product-reviews__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem;
}
.pr-card {
  border: 1px solid var(--color-border); border-radius: 4px; padding: 1.6rem;
  display: flex; flex-direction: column; gap: .7rem; background: #fff;
}
.pr-card__top { display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.pr-card__stars { color: var(--color-highlight); letter-spacing: .04rem; font-size: 1.2rem; }
.pr-card__date { color: #888; font-size: 1.15rem; white-space: nowrap; }
.pr-card__title { font-size: 1.35rem; font-weight: 600; margin: 0; line-height: 1.35; }
.pr-card__text { font-size: 1.3rem; line-height: 1.55; color: #333; margin: 0; flex: 1; }
.pr-card__media { border-radius: 4px; overflow: hidden; }
.pr-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pr-card__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1rem; margin-top: .4rem; }
.pr-card__author { font-size: 1.25rem; font-weight: 600; color: var(--color-primary); }
.pr-card__verified {
  font-size: 1.1rem; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: .3rem;
}
.pr-card__verified::before { content: '✓'; font-weight: 700; }
.pr-card__reply {
  display: flex; gap: .8rem; margin-top: .6rem; padding: 1rem;
  background: #faf9f7; border-radius: 4px;
}
.pr-card__reply-logo {
  width: 28px; height: 28px; border-radius: 50%; background: var(--color-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.pr-card__reply p { margin: .25rem 0 0; font-size: 1.2rem; line-height: 1.45; color: #444; }

@media (max-width: 989px) {
  .product-reviews__summary { grid-template-columns: 1fr; }
  .product-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 749px) {
  .product-reviews__title { font-size: 2.8rem; }
  .product-reviews__grid { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
  .reviews-page .review-card { grid-template-columns: 1fr; gap: .8rem; }
  .reviews-page .review-card__date { margin-left: 0; }
}

.rp-eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: 1.15rem;
  font-weight: 600; color: var(--color-highlight); margin-bottom: 1rem;
}
.rp-title { font-size: 3.4rem; line-height: 1.12; font-weight: 500; margin-bottom: 1.4rem; }
.rp-text { font-size: 1.6rem; line-height: 1.7; color: #555; }
.rp-text p { margin-bottom: 1rem; }
.rp-head { max-width: 760px; margin: 0 auto 3.2rem; }
.rp-script-title { font-size: 3.6rem; line-height: 1.15; font-weight: 500; margin-bottom: 1.4rem; }
.rp-script {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  color: var(--color-highlight); display: inline;
}

/* Split hero — Green Flash (50/50) */
.rp-split-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: min(78vh, 680px);
  background: #F7F1ED;
}
.rp-split-hero--reverse .rp-split-hero__left { order: 2; }
.rp-split-hero--reverse .rp-split-hero__right { order: 1; }
.rp-split-hero--reviews .rp-split-hero__right {
  align-items: flex-start; text-align: left; padding: 4rem 6rem;
}
.rp-split-hero--reviews .rp-split-hero__title { color: #1a1a1a; }
.rp-split-hero--reviews .rp-split-hero__text { max-width: 480px; font-weight: 400; font-size: 1.6rem; }
.rp-split-hero__left { position: relative; overflow: hidden; background: #e8ddd6; min-height: 360px; }
.rp-split-hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.rp-split-hero__right {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 4rem 5rem; gap: 1.6rem;
}
.rp-split-hero__rating { font-size: 1.3rem; color: #666; }
.rp-split-hero__rating .card__stars { color: var(--color-highlight); letter-spacing: .05em; }
.rp-split-hero__title {
  font-size: 4.8rem; font-weight: 600; color: var(--color-highlight); margin: 0; line-height: 1.05;
}
.rp-split-hero__text { font-size: 1.8rem; font-weight: 500; max-width: 420px; line-height: 1.4; margin: 0; color: #1a1a1a; }
.rp-split-hero__pictos {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem;
}
.rp-split-hero__picto { max-width: 140px; text-align: center; }
.rp-split-hero__picto img { height: 44px; width: auto; margin: 0 auto 0.8rem; display: block; }
.rp-split-hero__picto p { font-size: 1.25rem; line-height: 1.35; margin: 0; color: #1a1a1a; }
.rp-split-hero__picto span { display: block; color: #666; font-size: 1.15rem; }

/* Media hero — Système Green (full bleed, text overlay NO dark box) */
.rp-media-hero { position: relative; min-height: min(78vh, 640px); color: #fff; overflow: hidden; }
.rp-media-hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.rp-media-hero__content {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; padding: 6% 8%; max-width: 560px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.rp-media-hero__content--right { margin-left: auto; align-items: flex-start; text-align: left; }
.rp-media-hero__content--center { margin: 0 auto; align-items: center; text-align: center; }
.rp-media-hero__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid #fff;
  font-size: 1.05rem; letter-spacing: .06em; margin-bottom: 1.2rem; font-weight: 600;
}
.rp-media-hero__title { font-size: 4.6rem; font-weight: 600; margin: 0 0 1rem; line-height: 1.05; }
.rp-media-hero__text { font-size: 1.8rem; margin-bottom: 2rem; }
.rp-media-hero__text u { text-decoration-thickness: 2px; text-underline-offset: 4px; }
.rp-media-hero__pictos { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.rp-media-hero__picto { max-width: 130px; }
.rp-media-hero__picto img { height: 36px; width: auto; margin-bottom: .6rem; filter: brightness(0) invert(1); }
.rp-media-hero__picto p { font-size: 1.25rem; line-height: 1.35; margin: 0; }
.rp-media-hero__picto strong { display: block; font-weight: 600; }
.button--light { background: #fff; color: var(--color-accent); border-color: #fff; }

/* Dual hero — Gamme Active */
.rp-dual-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: min(70vh, 560px); }
.rp-dual-hero__half { position: relative; overflow: hidden; background: #e8ddd6; min-height: 360px; }
.rp-dual-hero__half video,
.rp-dual-hero__half > img,
.rp-dual-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.rp-dual-hero__half--text { color: #fff; }
.rp-dual-hero__overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; padding: 4rem;
  background: linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.rp-dual-hero__rating { font-size: 1.4rem; font-weight: 600; margin-bottom: .8rem; }
.rp-dual-hero__title { font-size: 4rem; font-weight: 600; line-height: 1.05; margin: 0 0 1rem; }
.rp-dual-hero__text { font-size: 1.6rem; margin-bottom: 1.6rem; }
.rp-dual-hero__pictos { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.rp-dual-hero__picto { max-width: 120px; text-align: center; }
.rp-dual-hero__picto img { height: 36px; width: auto; margin: 0 auto .5rem; display: block; filter: brightness(0) invert(1); }
.rp-dual-hero__picto p { font-size: 1.2rem; line-height: 1.3; margin: 0; }
.rp-dual-hero__picto span { display: block; opacity: .9; }

/* Press logos ticker */
.rp-press { overflow: hidden; background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 1.6rem 0; }
.rp-press__track {
  display: flex; gap: 4rem; align-items: center; width: max-content;
  animation: rp-marquee 28s linear infinite;
}
.rp-press__track img { height: 28px; width: auto; object-fit: contain; opacity: .85; filter: grayscale(1); }
@keyframes rp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Compare peel-off */
.rp-compare__title { font-size: 3.2rem; margin-bottom: 3rem; }
.rp-compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.rp-compare__label { text-align: center; font-size: 1.5rem; margin-bottom: 1rem; font-weight: 500; }
.rp-compare__media { position: relative; }
.rp-compare__media > img:first-child { width: 100%; border-radius: var(--radius); display: block; }
.rp-compare__inset {
  position: absolute; bottom: 1.2rem; right: 1.2rem; width: 88px; height: 88px;
  border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.rp-compare__item figcaption { margin-top: 1.2rem; text-align: center; }
.rp-compare__item strong { display: block; font-size: 1.8rem; }
.rp-compare__item span { display: block; font-size: 1.5rem; color: #666; margin-top: .3rem; }

/* Routine cards — Système Green */
.rp-routine__head--side {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; margin-bottom: 3rem; text-align: left;
}
.rp-routine__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rp-routine__card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem; text-align: left;
}
.rp-routine__step { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.rp-routine__media {
  background: var(--color-bg-light); border-radius: var(--radius); margin-bottom: 1.4rem;
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.rp-routine__media img { width: 100%; height: 100%; object-fit: contain; }
.rp-routine__card h3 { font-size: 1.8rem; margin-bottom: .6rem; }
.rp-routine__card p { font-size: 1.45rem; color: #555; line-height: 1.55; }

.rp-effects .rp-script-title { color: var(--color-accent); }
.rp-effects .rp-script { color: var(--color-highlight); }
.rp-effects__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 3rem;
}
.rp-effect {
  background: #F7F1ED; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; position: relative;
}
.rp-effect--life img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; display: block; }
.rp-effect__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: #fff; color: var(--color-highlight); font-size: 1.2rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 4px;
}
.rp-effect__media { display: block; background: #F7F1ED; }
.rp-effect__media img { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; padding: 1.6rem; }
.rp-effect__body { padding: 0 1.4rem 1.6rem; text-align: center; margin-top: auto; }
.rp-effect__body h3 { font-size: 1.55rem; margin-bottom: .4rem; font-weight: 500; }
.rp-effect__tag { font-size: 1.25rem; color: #888; margin: 0; }
.rp-effect__sub { font-size: 1.35rem; margin: .3rem 0 1.2rem; }
.rp-effect .button { width: 100%; font-size: 1.3rem; padding: 1.1rem; }

/* Shared leftovers */
.rp-pictos { background: var(--color-bg-light); padding: 3rem 0; }
.rp-pictos--dark { background: var(--color-bg-green); color: #fff; }
.rp-pictos__row { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; text-align: center; }
.rp-picto { display: flex; flex-direction: column; align-items: center; gap: .8rem; max-width: 220px; }
.rp-picto img { height: 54px; width: auto; }
.rp-picto p { font-size: 1.5rem; line-height: 1.4; }
.rp-picto strong { display: block; font-size: 2rem; font-weight: 600; }
.rp-picto span { display: block; font-size: 1.4rem; opacity: .85; }
.rp-band .rp-title, .rp-band .rp-script-title { max-width: 900px; margin-left: auto; margin-right: auto; }
.rp-band .rp-text { max-width: 720px; margin: 0 auto 1.6rem; }
.rp-band--cream { background: var(--color-bg-light); }
.rp-band--green { background: var(--color-bg-green); color: #fff; }
.rp-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.rp-step { text-align: center; }
.rp-step__media { position: relative; margin-bottom: 1.6rem; }
.rp-step__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 1/1; object-fit: cover; }
.rp-step__num {
  position: absolute; top: 1rem; left: 1rem; width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1.6rem;
}
.rp-step h3 { font-size: 1.9rem; margin-bottom: .6rem; }
.rp-step p { font-size: 1.5rem; color: #555; line-height: 1.6; }
.rp-step:not(:has(.rp-step__media)) {
  background: var(--color-bg-light); border-radius: var(--radius); padding: 2.6rem 2rem; text-align: left;
}
.rp-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.rp-split--reverse .rp-split__media { order: 2; }
.rp-split__media img { width: 100%; border-radius: var(--radius); }
.rp-checks { list-style: none; margin: 1.6rem 0; padding: 0; }
.rp-checks li { position: relative; padding-left: 3rem; margin-bottom: 1rem; font-size: 1.6rem; }
.rp-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem;
  background: var(--color-accent); color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
}
.rp-cards__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 2.4rem; }
.rp-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.rp-cards__grid--4 { grid-template-columns: repeat(4, 1fr); }
.rp-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; text-align: center; position: relative; }
.rp-card > a { display: block; color: inherit; }
.rp-card__media { display: block; }
.rp-card__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.rp-card__body { display: block; padding: 1.6rem; }
.rp-card__body strong { display: block; font-size: 1.7rem; margin-bottom: .4rem; }
.rp-card__body span { display: block; font-size: 1.4rem; color: #666; line-height: 1.5; }
.rp-card__badge { display: inline-block; color: var(--color-highlight); letter-spacing: .1em; padding: 1.2rem 0 0; font-size: 1.6rem; }
.rp-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.rp-gallery__grid img { width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: var(--radius); background: var(--color-bg-light); }
.rich-page .rp-image { padding: 0; }
.rich-page .rp-image .page-width { max-width: var(--page-width); margin: 0 auto; }
.rich-page .rp-image img {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  max-height: min(52vh, 520px); object-fit: cover;
}
.rich-page .rp-image--contain img {
  object-fit: contain; max-height: min(48vh, 420px); background: #fff;
}
.rich-page .rp-card__media img {
  aspect-ratio: auto; max-height: 200px; width: auto; max-width: 85%;
  margin: 1.2rem auto 0; object-fit: contain; padding: 0 1rem;
}
.rich-page .rp-gallery__grid img { max-height: 140px; }
.rp-image img { width: 100%; display: block; height: auto; }
.rp-quote { background: var(--color-bg-light); }
.rp-quote__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.rp-quote__img { height: 60px; width: auto; margin: 0 auto 2rem; }
.rp-quote blockquote { font-size: 2.4rem; line-height: 1.5; font-weight: 500; font-style: italic; }
.rp-quote cite { display: block; margin-top: 2rem; font-style: normal; font-size: 1.5rem; }
.rp-quote cite span { display: block; color: #777; font-size: 1.3rem; }
.rp-ba__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; max-width: 900px; margin: 0 auto; }
.rp-ba__grid img { width: 100%; border-radius: var(--radius); }
.rp-ba__grid figcaption { text-align: center; margin-top: 1rem; font-weight: 500; }
.rp-faq__inner { max-width: 820px; margin: 0 auto; }
.rp-faq .accordion { border-bottom: 1px solid var(--color-border); }

/* FAQ — centre d’aide (style Zendesk) */
.hc-page { --hc-green: #2d473e; }
.hc-hero {
  position: relative; background: var(--hc-green); color: #f6f3ec;
  padding: 4.8rem 0 5.6rem; text-align: center;
}
.hc-hero__title {
  font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 500; line-height: 1.1;
  margin: 0 0 0.8rem; color: #fff;
}
.hc-hero__lead { margin: 0; font-size: 1.5rem; opacity: 0.9; max-width: 36rem; margin-inline: auto; }
.hc-search-wrap { margin-top: -2.8rem; position: relative; z-index: 2; }
.hc-search {
  display: flex; gap: 0; background: #fff; border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); overflow: hidden;
  max-width: 64rem; margin: 0 auto;
}
.hc-search__input {
  flex: 1; border: 0; padding: 1.4rem 1.6rem; font: inherit; font-size: 1.5rem;
  min-width: 0; color: #1a1a1a;
}
.hc-search__input::placeholder { color: #999; }
.hc-search__input:focus { outline: none; }
.hc-search__btn { border-radius: 0; flex-shrink: 0; padding-inline: 2rem; }
.hc-blocks__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.hc-block__link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.2rem; min-height: 14rem; padding: 2rem 1.2rem; text-align: center;
  background: #fff; border: 1px solid var(--color-border); text-decoration: none;
  color: inherit; transition: border-color 0.2s, box-shadow 0.2s;
}
.hc-block__link:hover { border-color: var(--hc-green); box-shadow: 0 4px 20px rgba(45, 71, 62, 0.1); }
.hc-block__icon {
  display: flex; align-items: center; justify-content: center;
  width: 4.8rem; height: 4.8rem; border-radius: 50%;
  background: rgba(45, 71, 62, 0.08); color: var(--hc-green);
}
.hc-block__icon svg { width: 2.2rem; height: 2.2rem; }
.hc-block__title { font-size: 1.4rem; font-weight: 600; line-height: 1.35; }
.hc-block.is-hidden { display: none; }
.hc-featured__heading {
  font-size: 2rem; font-weight: 500; margin: 0 0 2rem; color: var(--hc-green);
}
.hc-featured__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.hc-featured__link {
  display: block; height: 100%; padding: 2rem; background: #fff;
  border: 1px solid var(--color-border); text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hc-featured__link:hover { border-color: var(--hc-green); box-shadow: 0 4px 20px rgba(45, 71, 62, 0.08); }
.hc-featured__title { font-size: 1.5rem; font-weight: 600; line-height: 1.35; margin: 0 0 0.8rem; }
.hc-featured__summary { margin: 0 0 1.2rem; color: #555; font-size: 1.35rem; line-height: 1.55; }
.hc-featured__more { font-size: 1.3rem; font-weight: 600; color: var(--hc-green); text-decoration: underline; text-underline-offset: 2px; }
.hc-featured__item.is-hidden { display: none; }
.hc-articles__inner { max-width: 78rem; margin: 0 auto; }
.hc-category { margin-bottom: 4rem; scroll-margin-top: 10rem; }
.hc-category.is-hidden { display: none; }
.hc-category__title {
  font-size: 2.2rem; font-weight: 500; margin: 0 0 1.2rem; color: var(--hc-green);
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--color-border);
}
.hc-category__articles .accordion { border-bottom: 1px solid var(--color-border); }
.hc-category__articles .hc-article.is-hidden { display: none; }
.hc-article:target { scroll-margin-top: 10rem; }
.hc-empty { text-align: center; color: #666; margin-bottom: 2rem; }
.hc-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2rem; text-align: center; }
.hc-cta__text { margin: 0; font-size: 1.6rem; font-weight: 500; }
@media (max-width: 989px) {
  .hc-blocks__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hc-featured__grid { grid-template-columns: 1fr; }
  .hc-block__link { min-height: 11rem; padding: 1.6rem 1rem; }
  .hc-search { flex-direction: column; }
  .hc-search__btn { width: 100%; }
}
@media (max-width: 479px) {
  .hc-blocks__grid { grid-template-columns: 1fr 1fr; }
  .hc-hero { padding: 3.6rem 0 5rem; }
}

.rp-address__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.rp-address__media img { width: 100%; border-radius: var(--radius); }
.rp-address__line { font-weight: 600; font-size: 1.7rem; margin: 1rem 0; }
.rp-address__hours { margin: 1.4rem 0; font-weight: 500; }

@media (max-width: 989px) {
  .rp-effects__grid, .rp-cards__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rp-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .rp-routine__head--side { grid-template-columns: 1fr; }
}
@media (max-width: 749px) {
  .rp-split-hero, .rp-dual-hero, .rp-compare__grid, .rp-split__inner,
  .rp-routine__grid, .rp-ba__grid, .rp-address__inner, .rp-steps__grid,
  .rp-cards__grid--3, .rp-cards__grid--4 { grid-template-columns: 1fr; }
  .rp-split-hero { min-height: 0; }
  .rp-split-hero__left { min-height: 280px; aspect-ratio: 4/5; }
  .rp-split-hero__right { padding: 3rem 2rem; }
  .rp-split-hero__title { font-size: 3.4rem; }
  .rp-split-hero__pictos { gap: 1.2rem; }
  .rp-media-hero { min-height: 520px; }
  .rp-media-hero__title, .rp-dual-hero__title { font-size: 2.8rem; }
  .rp-media-hero__content { max-width: 100%; padding: 8% 6%; justify-content: flex-end; padding-bottom: 10%; }
  .rp-media-hero__pictos { gap: 1.2rem; }
  .rp-dual-hero { min-height: 0; }
  .rp-dual-hero__half { min-height: 280px; aspect-ratio: 4/5; }
  .rp-dual-hero__overlay { padding: 2.4rem; }
  .rp-effects__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rp-effect .button { font-size: 1.15rem; padding: .9rem .6rem; }
  .rp-script-title { font-size: 2.6rem; }
  .rp-split--reverse .rp-split__media { order: 0; }
  .rp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .rp-press__track img { height: 22px; }
  .rp-routine__card { padding: 1.2rem; }
}

/* ============================================================
   LOOKBOOK COLLECTIONS
   ============================================================ */
.lb-hero {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: min(52vh, 520px);
}
.lb-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.lb-hero__panel {
  background: #6b1f2b; color: #fff; display: flex; align-items: center; justify-content: center;
  padding: 4rem; text-align: center;
}
.lb-hero__panel h1 { font-family: var(--font-accent); font-size: 4.8rem; font-weight: 400; line-height: 1.05; margin: 0; }
.lb-hero__panel p { margin: 1.2rem 0 0; font-size: 1.6rem; opacity: .9; }

.lb-nav-wrap { border-bottom: 1px solid var(--color-border); background: #fff; position: sticky; top: 0; z-index: 5; }
.lb-nav {
  display: flex; gap: 1rem; overflow-x: auto; padding: 1.2rem 0; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.lb-nav::-webkit-scrollbar { height: 4px; }
.lb-nav__item {
  flex: 0 0 92px; scroll-snap-align: start; text-decoration: none; color: inherit; text-align: center;
}
.lb-nav__thumb {
  display: block; aspect-ratio: 3/4; border-radius: 2px; overflow: hidden; border: 2px solid transparent;
  transition: border-color .2s;
}
.lb-nav__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-nav__item:hover .lb-nav__thumb,
.lb-nav__item.is-active .lb-nav__thumb { border-color: var(--color-primary); }
.lb-nav__label { display: block; font-size: 1.05rem; margin-top: .5rem; line-height: 1.2; }

.lb-group { padding: 3.2rem 0; scroll-margin-top: 80px; }
.lb-group:nth-child(even) { background: #fafafa; }
.lb-group__layout {
  display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: 2rem; align-items: start;
}
.lb-group__visual { position: relative; border-radius: 2px; overflow: hidden; min-height: 420px; }
.lb-group__visual img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.lb-group__title {
  position: absolute; left: 1.6rem; bottom: 1.6rem; margin: 0; color: #fff;
  font-family: var(--font-accent); font-size: 3.2rem; text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.lb-group__products .product-grid { margin: 0; }

/* ============================================================
   GREEN JELLY PAGE
   ============================================================ */
.jelly-hero { background: #f8e8e0; padding: 3rem 0 4rem; }
.jelly-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.jelly-hero__preview { text-align: center; }
.jelly-hero__preview img { max-width: min(100%, 380px); max-height: 420px; margin: 0 auto; object-fit: contain; }
.jelly-hero__preview h2 { font-size: 2.4rem; margin: 1.2rem 0 .4rem; }
.jelly-hero__preview p { color: #666; font-size: 1.4rem; }
.jelly-hero__swatches { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }
.jelly-swatch {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; border: 2px solid transparent; padding: 0; cursor: pointer;
  overflow: hidden; background: #fff;
}
.jelly-swatch img { width: 100%; height: 100%; object-fit: cover; }
.jelly-swatch.is-active { border-color: var(--color-primary); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary); }
.jelly-hero__copy h1 { font-family: var(--font-accent); font-size: 4.4rem; color: var(--color-primary); margin: 0 0 1rem; }
.jelly-hero__copy p { font-size: 1.7rem; line-height: 1.6; max-width: 480px; }

/* Green Jelly — landing collection */
.jelly-landing-hero__mobile { display: none; }
.jelly-landing-hero__desktop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  max-height: 460px;
  overflow: hidden;
  background: #f5e8e3;
}
.jelly-landing-hero__photo {
  min-height: 0;
  height: 460px;
  overflow: hidden;
}
.jelly-landing-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.jelly-landing-hero__panel--desktop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f5e8e3;
  padding: 2.4rem 2rem;
  min-height: 0;
}
.jelly-landing-hero__visual img {
  width: 100%;
  display: block;
  max-height: min(72vh, 720px);
  object-fit: cover;
  object-position: center top;
}
.jelly-landing-hero__panel--mobile {
  display: none;
  background: #f5e8e3;
  padding: 2.4rem 1.6rem 2.8rem;
  text-align: center;
}
.jelly-landing-hero__eyebrow {
  font-size: 1.1rem;
  letter-spacing: .14em;
  margin: 0 0 1rem;
}
.jelly-landing-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.6rem;
}
.jelly-landing-hero__title em { font-style: italic; color: var(--color-highlight); }
.jelly-landing-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
}
.jelly-landing-hero__stats strong { display: block; font-size: 1.35rem; }
.jelly-landing-hero__stats span { font-size: 1.2rem; color: #555; }

.jelly-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.jelly-tile {
  background: #f3ebe4;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.6rem 1.2rem 1.4rem;
  text-align: center;
}
.jelly-tile--media,
.jelly-tile--promo { padding: 0; justify-content: stretch; position: relative; }
.jelly-tile--media img,
.jelly-tile--promo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.jelly-tile__media { flex: 1; display: flex; align-items: flex-end; justify-content: center; width: 100%; }
.jelly-tile__media img { max-height: 220px; width: auto; max-width: 90%; object-fit: contain; }
.jelly-tile__name { font-size: 1.5rem; margin: .8rem 0; font-weight: 500; }
.jelly-tile__atc {
  width: 100%;
  max-width: 220px;
  font-size: 1.15rem;
  padding: .85rem 1rem;
  white-space: normal;
  line-height: 1.25;
}
.jelly-tile__atc.is-soldout { background: #9a9a9a; border-color: #9a9a9a; }
.jelly-tile__promo-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(245,232,227,.85));
}
.jelly-tile__promo-title { font-family: var(--font-accent); font-style: italic; font-size: 2rem; margin: 0 0 .6rem; }

.jelly-effect { background: #fff; }
.jelly-effect__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.jelly-effect__title { font-size: clamp(3rem, 5vw, 4.4rem); margin: 0 0 1rem; }
.jelly-effect__title em { font-style: italic; color: var(--color-highlight); }
.jelly-effect__lead { font-size: 1.5rem; line-height: 1.55; max-width: 28rem; margin: 0 0 2rem; }
.jelly-effect__list { list-style: none; margin: 0; padding: 0; }
.jelly-effect__shade { font-size: 1.6rem; color: #888; padding: .35rem 0; }
.jelly-effect__shade.is-active { color: #1a1a1a; font-weight: 600; font-size: 2rem; }
.jelly-effect__visual img { width: 100%; border-radius: 2px; }

.jelly-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-border);
}
.jelly-tabs__btn {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: .8rem 0 1rem;
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  margin-bottom: -1px;
}
.jelly-tabs__btn.is-active { color: #1a1a1a; border-bottom-color: var(--color-highlight); font-weight: 500; }

.rp-steps--jelly .rp-steps__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rp-steps--jelly .rp-step h3 { font-size: 1.6rem; margin: 1rem 0 .4rem; }
.rp-steps--jelly .rp-step__num { background: var(--color-highlight); color: #fff; }

.jelly-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.jelly-feature { position: relative; margin: 0; }
.jelly-feature img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.jelly-feature figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  font-size: 1.35rem;
  line-height: 1.3;
}
.jelly-feature figcaption span { display: block; font-weight: 400; }

.jelly-drip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.jelly-drip__cell img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.rich-page--jelly .jelly-products-grid { margin-top: 2rem; }

@media (min-width: 990px) {
  .rich-page--jelly .jelly-landing-hero__desktop .jelly-landing-hero__title {
    font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  }
  .rich-page--jelly .jelly-landing-hero__desktop .jelly-landing-hero__stats {
    max-width: 100%;
    gap: .6rem;
  }
  .rich-page--jelly .jelly-mosaic .jelly-mosaic__grid {
    grid-template-rows: repeat(2, minmax(300px, 340px));
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile {
    min-height: 0;
    height: 100%;
    max-height: none;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile--media,
  .rich-page--jelly .jelly-mosaic .jelly-tile--promo {
    padding: 0;
    overflow: hidden;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile--media img,
  .rich-page--jelly .jelly-mosaic .jelly-tile--promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile--product {
    justify-content: space-between;
    padding: 1.2rem 1rem 1rem;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile__media {
    flex: 1;
    min-height: 0;
    align-items: center;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile__media img {
    max-height: min(52%, 180px);
    width: auto;
    max-width: 85%;
  }
  .rich-page--jelly .jelly-mosaic .jelly-tile__atc {
    max-width: 100%;
    font-size: 1.05rem;
    padding: .75rem .5rem;
  }
}

.plump-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: min(70vh, 600px); }
.plump-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.plump-hero__content {
  display: flex; flex-direction: column; justify-content: center; padding: 4rem 5vw;
}
.plump-hero__badge { font-size: 1.2rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.plump-hero__title { font-family: var(--font-accent); font-size: 3.6rem; line-height: 1.15; margin: 0 0 1rem; }
.plump-hero__title em { font-style: italic; display: block; font-size: 4.8rem; margin-top: .4rem; }
.plump-hero__stat { font-size: 1.5rem; margin: 1.6rem 0 2.4rem; color: #555; }
.plump-hero__pictos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.plump-hero__picto strong { display: block; font-size: 1.35rem; margin-bottom: .3rem; }
.plump-hero__picto span { font-size: 1.2rem; color: #666; }

.plump-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.plump-feature {
  border-radius: 2px; overflow: hidden; padding: 2rem; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.plump-feature--teal { background: #d4ece8; }
.plump-feature--blue { background: #d8e8f0; }
.plump-feature--mint { background: #d8ead8; }
.plump-feature h3 { font-size: 2rem; margin: 0 0 .8rem; }
.plump-feature p { font-size: 1.35rem; line-height: 1.5; margin: 0; }
.plump-feature img { width: 100%; max-height: 180px; object-fit: contain; margin-top: 1.6rem; align-self: center; }

@media (max-width: 989px) {
  .lb-hero, .plump-hero, .jelly-hero__inner { grid-template-columns: 1fr; }
  .jelly-landing-hero__desktop { display: none; }
  .jelly-landing-hero__mobile { display: block; }
  .jelly-landing-hero__panel--mobile { display: block; }
  .jelly-mosaic__grid,
  .jelly-features__grid { grid-template-columns: repeat(2, 1fr); }
  .jelly-effect__inner { grid-template-columns: 1fr; }
  .jelly-drip__grid { grid-template-columns: repeat(3, 1fr); }
  .rp-steps--jelly .rp-steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 549px) {
  .jelly-landing-hero__stats { grid-template-columns: 1fr; gap: .8rem; }
  .rp-steps--jelly .rp-steps__grid { grid-template-columns: 1fr; }
  .lb-hero__panel h1 { font-size: 3.2rem; }
  .lb-group__layout { grid-template-columns: 1fr; }
  .lb-group__visual { min-height: 280px; }
  .lb-group__visual img { min-height: 280px; }
  .plump-features { grid-template-columns: 1fr; }
  .plump-hero__pictos { grid-template-columns: 1fr; }
}

/* ============================================================
   DIAGNOSTIC INTERACTIF
   ============================================================ */
.diag__inner { max-width: 900px; margin: 0 auto; }
.diag__intro { text-align: center; padding: 2rem 0 1rem; }
.diag__title { font-size: 4rem; line-height: 1.1; margin: 1rem 0 1.6rem; }
.diag__lead { font-size: 1.7rem; color: #555; max-width: 640px; margin: 0 auto 2.4rem; line-height: 1.6; }
.diag__perks { list-style: none; padding: 0; margin: 3rem 0 0; display: flex; gap: 2.4rem; justify-content: center; flex-wrap: wrap; color: #555; font-size: 1.4rem; }

.diag__progress { height: 8px; background: var(--color-bg-light); border-radius: 999px; overflow: hidden; margin-bottom: 1.2rem; }
.diag__progress-bar { height: 100%; width: 0; background: var(--color-highlight); transition: width .35s ease; }
.diag__counter { text-align: center; color: #888; font-size: 1.3rem; margin-bottom: 2.4rem; letter-spacing: .05em; }
.diag-question { border: 0; padding: 0; margin: 0; }
.diag-question__title { font-size: 2.6rem; font-weight: 500; text-align: center; margin: 0 auto 2.8rem; display: block; max-width: 620px; }
.diag-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.diag-option {
  display: flex; align-items: center; gap: 1.4rem; text-align: left;
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius);
  padding: 1.8rem 2rem; font-size: 1.6rem; cursor: pointer; transition: all .18s ease; color: var(--color-text);
}
.diag-option:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.diag-option__icon { font-size: 2.4rem; line-height: 1; }
.diag__back { margin: 2.4rem auto 0; display: block; background: none; border: 0; color: #888; cursor: pointer; font-size: 1.4rem; }
.diag__back:hover { color: var(--color-accent); }

.diag-result__head {
  border-radius: var(--radius); background: var(--color-bg-green); background-size: cover; background-position: center;
  color: #fff; padding: 6rem 3rem; text-align: center; margin-bottom: 3rem; position: relative; overflow: hidden;
}
.diag-result__head::after { content: ''; position: absolute; inset: 0; background: rgba(0,40,34,.45); }
.diag-result__head-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.diag-result__head .rp-eyebrow { color: #fff; opacity: .9; }
.diag-result__title { font-size: 3.6rem; margin-bottom: 1rem; }
.diag-result__desc { font-size: 1.7rem; line-height: 1.6; opacity: .95; }
.diag-result__needs { list-style: none; padding: 0; margin: 0 0 3rem; display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.diag-result__needs li { background: var(--color-bg-light); border-radius: 999px; padding: 1rem 2rem; font-size: 1.5rem; }
.diag-result__sub { text-align: center; font-size: 2.4rem; font-weight: 500; margin: 3rem 0 2.4rem; }
.diag-gammes { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.diag-gamme { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 200px; color: inherit; }
.diag-gamme img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.diag-gamme span { font-weight: 500; font-size: 1.5rem; }
.diag__restart { margin: 2rem auto 0; background: none; border: 1px solid var(--color-border); border-radius: 999px; padding: 1rem 2.4rem; cursor: pointer; font-size: 1.4rem; }

/* ---------- Responsive rich pages / diagnostic ---------- */
@media (max-width: 989px) {
  .rp-steps__grid, .rp-cards__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rp-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 749px) {
  .rp-title { font-size: 2.6rem; }
  .rp-hero__title { font-size: 3rem; }
  .rp-hero__overlay { padding: 8% 6%; }
  .rp-hero__text { font-size: 1.5rem; }
  .rp-pictos__row { gap: 2rem; }
  .rp-picto { max-width: 45%; }
  .rp-picto strong { font-size: 1.7rem; }
  .rp-steps__grid, .rp-compare__grid, .rp-split__inner, .rp-cards__grid--3, .rp-cards__grid--4,
  .rp-ba__grid, .rp-address__inner { grid-template-columns: 1fr; }
  .rp-split--reverse .rp-split__media { order: 0; }
  .rp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .rp-quote blockquote { font-size: 1.9rem; }
  .diag__title { font-size: 3rem; }
  .diag-question__title { font-size: 2.1rem; }
  .diag-options { grid-template-columns: 1fr; }
  .diag-result__title { font-size: 2.8rem; }
}

/* Contact page */
.contact-page__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}
.contact-page__intro .subheading { color: var(--color-highlight); letter-spacing: 0.18em; }
.contact-page__lead { font-size: 1.45rem; line-height: 1.65; color: #666; margin: 1.2rem 0 2.4rem; max-width: 42rem; }
.contact-page__details { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.6rem; }
.contact-page__details li { font-size: 1.35rem; line-height: 1.55; color: #555; }
.contact-page__details strong { display: block; color: #2b2b2b; margin-bottom: 0.2rem; }
.contact-page__details a { color: var(--color-primary); }
.contact-form {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 2.4rem; display: grid; gap: 1.4rem;
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form__field { display: grid; gap: 0.5rem; }
.contact-form__field span { font-size: 1.3rem; color: #333; }
.contact-form__field small { font-weight: 400; color: #888; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%; border: 1px solid var(--color-border); padding: 1rem 1.2rem;
  font: inherit; font-size: 1.4rem; background: #fff; border-radius: 2px;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none; border-color: var(--color-primary);
}
.contact-form__check {
  display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1.25rem; color: #666; line-height: 1.45;
}
.contact-form__check input { margin-top: 0.2rem; flex-shrink: 0; }
.contact-form__note { font-size: 1.15rem; color: #888; line-height: 1.5; margin: 0; }
@media (max-width: 749px) {
  .contact-page__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 1.6rem; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* Capture e-mail, rappel panier */
.rp-mission {
  background: linear-gradient(180deg, #f7f3ee 0%, #fff 100%);
}
.rp-mission__inner { max-width: 52rem; margin: 0 auto; text-align: center; }
.rp-mission__title {
  font-family: var(--font-heading, Georgia, 'Times New Roman', serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0;
  color: #1a1a1a;
}
.rp-mission__line { display: block; }
.rp-mission__text { margin-top: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* Intro compacte — avis, adresses, engagements */
.rp-page-intro {
  background: #f5e8e3;
  padding: 3.2rem 0;
}
.rp-page-intro--center {
  background: #f3e4e6;
  text-align: center;
}
.rp-page-intro--center .rp-page-intro__grid {
  display: block;
  max-width: 52rem;
  margin: 0 auto;
}
.rp-page-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.rp-page-intro__grid--solo { grid-template-columns: 1fr; }
.rp-page-intro__eyebrow {
  font-size: 1.2rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin: 0 0 1rem;
}
.rp-page-intro__title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: #1a1a1a;
}
.rp-page-intro__body { font-size: 1.5rem; line-height: 1.55; color: #333; max-width: 42rem; }
.rp-page-intro--center .rp-page-intro__body { margin: 0 auto; }
.rp-page-intro__media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

/* Beauty awards */
.award-block { border-top: 1px solid var(--color-border); }
.award-block:first-of-type { border-top: 0; }
.award-block__head {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.4rem;
}
.award-block__badge img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.award-block__label {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-highlight);
  font-size: 2.4rem;
  margin: 0 0 .4rem;
}
.award-block__title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.award-block__text { font-size: 1.45rem; line-height: 1.55; }
.award-block__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.3rem;
  text-decoration: underline;
  color: #1a1a1a;
}
.award-block__products { margin-top: 0; }

/* Earth — colonnes gammes + certifications */
.story-cols__title { font-size: 2.8rem; margin-bottom: 1rem; }
.story-cols__lead { max-width: 40rem; margin: 0 auto 2.4rem; }
.story-cols__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story-col__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-col__title { font-size: 2rem; margin: 1.2rem 0 .6rem; }
.story-col__text { font-size: 1.35rem; line-height: 1.5; }

.cert-grid__title { font-size: 2.8rem; margin-bottom: .8rem; }
.cert-grid__lead { max-width: 44rem; margin: 0 auto 2.4rem; }
.cert-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cert-grid__logo { max-height: 72px; width: auto; margin-bottom: 1rem; }
.cert-grid__item h3 { font-size: 1.5rem; margin: 0 0 .6rem; }
.cert-grid__item p { font-size: 1.25rem; line-height: 1.45; color: #444; margin: 0; }

/* Adresses */
.rp-address__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-highlight);
  font-size: 2.2rem;
  margin: -.2rem 0 1rem;
}
.rp-address__table {
  width: 100%;
  max-width: 320px;
  margin: 1.6rem 0;
  font-size: 1.35rem;
  border-collapse: collapse;
}
.rp-address__table th {
  text-align: left;
  font-weight: 600;
  padding: .35rem 1rem .35rem 0;
  white-space: nowrap;
}
.rp-address__table td { padding: .35rem 0; color: #444; }

/* Avis — stats + pagination */
.rp-pictos--stats {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
}
.rp-pictos--stats .rp-picto strong {
  color: var(--color-primary);
  font-size: 2rem;
  display: block;
}
.rp-pictos--stats .rp-picto span { font-size: 1.25rem; }
.reviews-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.reviews-pager__btn,
.reviews-pager__num {
  min-width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 2px;
}
.reviews-pager__num.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.reviews-pager__btn:disabled { opacity: .4; cursor: not-allowed; }

.rp-split-hero--compact {
  min-height: 0;
  max-height: none;
}
.rp-split-hero--compact .rp-split-hero__left { min-height: 280px; }
.rp-split-hero--compact .rp-split-hero__right { padding: 2.4rem 3rem; }
.rp-split-hero--compact .rp-split-hero__title { font-size: 3.2rem; color: #1a1a1a; }

@media (max-width: 989px) {
  .rp-page-intro__grid,
  .award-block__head,
  .story-cols__grid,
  .cert-grid__items { grid-template-columns: 1fr; }
  .rp-page-intro__media img { max-height: 240px; }
}

.email-capture {
  position: fixed; inset: 0; z-index: 1300; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center; padding: 1.6rem;
}
.email-capture[hidden] { display: none !important; }
.email-capture__card {
  position: relative; background: #fff; max-width: 42rem; width: 100%;
  padding: 2.4rem; border-radius: var(--radius); text-align: center;
}
.email-capture__close {
  position: absolute; top: 0.8rem; right: 1rem; border: none; background: none;
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}
.email-capture__lead { font-size: 1.35rem; color: #555; margin: 0 0 1.4rem; }
.email-capture form { display: grid; gap: 1rem; }
.email-capture input {
  width: 100%; padding: 1rem 1.2rem; border: 1px solid var(--color-border); font: inherit;
}

/* Cookie consent — bandeau discret */
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000000;
  pointer-events: none;
}
.cookie-consent__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.8rem 1.2rem;
  margin: 0.8rem; padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  max-width: calc(var(--page-width) - 2 * var(--gutter));
  margin-left: auto; margin-right: auto;
}
.cookie-consent__brand {
  font-weight: 700; letter-spacing: 0.12em; color: var(--color-accent);
}
.cookie-consent__text {
  flex: 1 1 16rem; margin: 0; color: #555; line-height: 1.45; font-size: 1.2rem;
}
.cookie-consent__text a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
.cookie-consent__btn {
  padding: 0.45rem 0.9rem; font-size: 1.15rem; font-weight: 500; line-height: 1.2;
  border: 1px solid var(--color-accent); background: var(--color-accent); color: #fff;
  cursor: pointer; white-space: nowrap;
}
.cookie-consent__btn--ghost {
  background: transparent; color: var(--color-accent);
}
.cookie-consent__btn:hover { opacity: 0.92; }
.cookie-consent__prefs {
  margin: 0 0.8rem 0.8rem; padding: 0.9rem 1rem;
  background: #fff; border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  pointer-events: auto; display: grid; gap: 0.6rem; text-align: left;
  max-width: calc(var(--page-width) - 2 * var(--gutter));
  margin-left: auto; margin-right: auto;
}
.cookie-consent__row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 1.2rem; }
.cookie-consent[hidden] { display: none !important; }
.cookie-consent__prefs[hidden] { display: none !important; }
@media (max-width: 600px) {
  .cookie-consent__bar { margin: 0.6rem; padding: 0.65rem 0.8rem; }
  .cookie-consent__actions { width: 100%; justify-content: flex-end; }
}

/* Page remerciement commande */
.order-thankyou {
  padding: 2.4rem 0 5rem;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #fff 28%);
}
.order-thankyou__inner { max-width: 72rem; }
.order-thankyou__hero { text-align: center; margin-bottom: 2.4rem; }
.order-thankyou__eyebrow {
  font-size: 1.15rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 0.8rem;
}
.order-thankyou__title {
  font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 600;
  line-height: 1.08; color: var(--color-accent); margin: 0 0 1rem;
}
.order-thankyou__lead {
  max-width: 42rem; margin: 0 auto 1rem; color: #444; font-size: 1.45rem; line-height: 1.55;
}
.order-thankyou__order { font-size: 1.3rem; color: #666; margin: 0; }
.order-thankyou__order strong { color: var(--color-text); font-weight: 600; letter-spacing: 0.02em; }

.order-thankyou__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--color-border); background: #fff; margin-bottom: 2.4rem;
}
.order-thankyou__meta-item {
  padding: 1.2rem 1rem; text-align: center;
  border-right: 1px solid var(--color-border);
}
.order-thankyou__meta-item:last-child { border-right: 0; }
.order-thankyou__meta-label {
  display: block; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #888; margin-bottom: 0.35rem;
}
.order-thankyou__meta-value { font-size: 1.35rem; font-weight: 600; color: var(--color-accent); }
.order-thankyou__meta-value--status {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
}
.order-thankyou__status-dot {
  width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #3d8b5f; flex-shrink: 0;
}

.order-thankyou__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
  margin: 0 0 2.8rem; padding: 0; list-style: none;
}
.order-thankyou__step {
  text-align: center; position: relative;
}
.order-thankyou__step:not(:last-child)::after {
  content: ''; position: absolute; top: 1.35rem; left: calc(50% + 1.4rem); right: calc(-50% + 1.4rem);
  height: 2px; background: var(--color-border); z-index: 0;
}
.order-thankyou__step.is-done:not(:last-child)::after,
.order-thankyou__step.is-current:not(:last-child)::after { background: var(--color-accent); opacity: 0.35; }
.order-thankyou__step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  border: 2px solid var(--color-border); background: #fff;
  font-size: 1.2rem; font-weight: 600; color: #999;
  position: relative; z-index: 1; margin-bottom: 0.6rem;
}
.order-thankyou__step.is-done .order-thankyou__step-num,
.order-thankyou__step.is-current .order-thankyou__step-num {
  border-color: var(--color-accent); background: var(--color-accent); color: #fff;
}
.order-thankyou__step-label {
  display: block; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: #666; line-height: 1.3;
}
.order-thankyou__step.is-current .order-thankyou__step-label { color: var(--color-accent); }

.order-thankyou__section-title {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600; text-align: center;
  color: var(--color-accent); margin: 0 0 1rem;
}
.order-thankyou__summary { margin-bottom: 2.4rem; text-align: center; }
.order-thankyou__summary-note {
  max-width: 40rem; margin: 0 auto; padding: 1rem 1.2rem;
  background: var(--color-bg-light); border: 1px dashed var(--color-border);
  color: #555; font-size: 1.35rem; line-height: 1.5;
}

.order-thankyou__cards {
  display: grid; gap: 1rem; margin-bottom: 2.8rem;
}
@media (min-width: 750px) { .order-thankyou__cards { grid-template-columns: 1fr 1fr; } }
.order-thankyou__card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: #fff; border: 1px solid var(--color-border);
}
.order-thankyou__card-icon {
  flex-shrink: 0; width: 2.8rem; height: 2.8rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-light); color: var(--color-accent);
}
.order-thankyou__card-icon svg { width: 1.6rem; height: 1.6rem; }
.order-thankyou__card-title { font-size: 1.35rem; font-weight: 600; margin: 0 0 0.35rem; }
.order-thankyou__card-text { margin: 0; color: #555; font-size: 1.3rem; line-height: 1.45; }

.order-thankyou__delivery { margin-bottom: 2.4rem; }
.order-thankyou__delivery-list {
  display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none;
}
.order-thankyou__delivery-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--color-border);
}
.order-thankyou__delivery-icon {
  flex-shrink: 0; width: 2.4rem; color: var(--color-accent);
}
.order-thankyou__delivery-icon svg { width: 1.6rem; height: 1.6rem; }
.order-thankyou__delivery-list strong { display: block; font-size: 1.3rem; margin-bottom: 0.2rem; }
.order-thankyou__delivery-list p { margin: 0; color: #555; font-size: 1.25rem; line-height: 1.45; }
.order-thankyou__delivery-list a { color: var(--color-accent); text-decoration: underline; }

.order-thankyou__signoff {
  text-align: center; font-size: 1.45rem; color: #444; margin: 0 0 2rem;
}
.order-thankyou__signoff em { font-family: var(--font-heading); font-style: italic; color: var(--color-accent); }

.order-thankyou__trust {
  display: grid; gap: 0; border: 1px solid var(--color-border); background: var(--color-bg-light);
  margin-bottom: 2rem;
}
@media (min-width: 750px) { .order-thankyou__trust { grid-template-columns: repeat(3, 1fr); } }
.order-thankyou__trust-item {
  padding: 1rem; text-align: center; border-bottom: 1px solid var(--color-border);
}
@media (min-width: 750px) {
  .order-thankyou__trust-item { border-bottom: 0; border-right: 1px solid var(--color-border); }
  .order-thankyou__trust-item:last-child { border-right: 0; }
}
.order-thankyou__trust-item strong {
  display: block; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 0.2rem;
}
.order-thankyou__trust-item span, .order-thankyou__trust-item a {
  font-size: 1.2rem; color: #555;
}
.order-thankyou__trust-item a { text-decoration: underline; }

.order-thankyou__actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.order-thankyou__actions .button { min-width: min(100%, 22rem); }

@media (max-width: 749px) {
  .order-thankyou__meta { grid-template-columns: 1fr; }
  .order-thankyou__meta-item { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .order-thankyou__meta-item:last-child { border-bottom: 0; }
  .order-thankyou__steps { gap: 0.4rem; }
  .order-thankyou__step-label { font-size: 0.95rem; }
  .order-thankyou__step:not(:last-child)::after { top: 1.2rem; }
}

/* Pages légales */
.legal-page__head { margin-bottom: 2rem; max-width: 52rem; }
.legal-page__title {
  font-size: clamp(2.8rem, 4vw, 3.6rem); font-weight: 500; line-height: 1.12;
  color: var(--color-accent); margin: 0 0 0.6rem;
}
.legal-page__updated { margin: 0; color: #666; font-size: 1.3rem; }
.legal-page__nav {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin-bottom: 2.4rem;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--color-border);
}
.legal-page__link {
  font-size: 1.3rem; font-weight: 500; color: #444; text-decoration: none;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.legal-page__link:hover { color: var(--color-accent); }
.legal-page__link.is-active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.legal-page__body { max-width: 52rem; }
.legal-page__body h2 { margin-top: 2.4rem; }
.legal-page__body h4 { margin: 1.4rem 0 0.6rem; font-size: 1.5rem; }

.logo-wordmark {
  font-weight: 700; letter-spacing: 0.32em; font-size: 1.7rem;
  color: #1a1a1a; display: inline-block;
}
.header__heading-link { text-decoration: none; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.utility-bar__promo-link { display: none; }
.utility-bar__promo-link.is-active { display: inline-flex; }
.utility-bar__country { background: none; border: 0; font: inherit; cursor: default; }

.media--portrait { aspect-ratio: 4 / 5; overflow: hidden; background: #f3efe8; }
.media--portrait img { width: 100%; height: 100%; object-fit: cover; }
.card__badges { position: absolute; top: 0.8rem; left: 0.8rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 2; }
.card__badges .card__badge { position: static; }
.card__badge {
  background: #2d473e; color: #fff; font-size: 1rem; font-weight: 600;
  padding: 0.25rem 0.6rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.card__badge--exclu { background: #1a1a1a; }
.card__badge--sale { background: #8b3a2a; }
.card__badge--sold { background: #666; }
.card__co2 {
  position: absolute; bottom: 0.8rem; left: 0.8rem; z-index: 2;
  background: #fff; color: #2d473e; font-size: 1rem; font-weight: 700;
  padding: 0.3rem 0.55rem; letter-spacing: 0.04em;
}
.card__dots { display: flex; gap: 0.35rem; margin: 0.6rem 0; }
.card__dot {
  width: 1.4rem; height: 1.4rem; border-radius: 50%; background-size: cover;
  background-position: center; border: 1px solid #ddd;
}
.card__dot-more { font-size: 1.1rem; color: #666; align-self: center; }
.card__subheading { font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: #6a6a6a; }

.hero-carousel { position: relative; overflow: hidden; }
.hero-track { position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 0;
}
.hero-slide.is-active {
  position: relative; inset: auto;
  opacity: 1; visibility: visible; pointer-events: auto; z-index: 1;
}
.hero-pager {
  position: absolute; bottom: 1.6rem; right: 2rem; background: rgba(255,255,255,.9);
  padding: 0.4rem 0.8rem; font-size: 1.2rem; font-weight: 600; cursor: pointer; z-index: 3;
}
.hero-pager--bars {
  background: none; padding: 0; display: flex; align-items: center; gap: 0.9rem;
  bottom: 1.4rem; right: 1.4rem;
}
.hero-pager__bars { display: flex; align-items: center; gap: 0.55rem; }
.hero-pager__bar {
  width: 4.6rem; height: 2px; padding: 0; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); position: relative; overflow: hidden;
}
.hero-pager__fill {
  display: block; height: 100%; width: 0; background: #fff;
}
.hero-pager__bar.is-done .hero-pager__fill { width: 100%; }
.hero-pager__bar.is-active .hero-pager__fill {
  animation: heroPagerFill 6s linear forwards;
}
@keyframes heroPagerFill { from { width: 0; } to { width: 100%; } }
.hero-pager__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; padding: 0; border: 0; background: none;
  color: #fff; cursor: pointer;
}
.hero-pager__pause {
  display: block; width: 0.55rem; height: 1rem; position: relative;
}
.hero-pager__pause::before,
.hero-pager__pause::after {
  content: ''; position: absolute; top: 0; width: 2px; height: 100%; background: currentColor;
}
.hero-pager__pause::before { left: 0; }
.hero-pager__pause::after { right: 0; }
.hero-pager__toggle.is-paused .hero-pager__pause {
  width: 0; height: 0; border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent currentColor;
}
.hero-pager__toggle.is-paused .hero-pager__pause::before,
.hero-pager__toggle.is-paused .hero-pager__pause::after { display: none; }
@media (max-width: 749px) {
  .hero-pager__bar { width: 3.2rem; }
  .hero-pager--bars { bottom: 1rem; right: 1rem; }
}
.hero-banner .banner .button--hero,
.hero-banner .banner .button {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cat-tiles { padding: 0; }
.cat-tiles__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.cat-tile:nth-child(n+3) { grid-column: 1 / -1; }
@media (min-width: 750px) {
  .cat-tiles__grid { grid-template-columns: repeat(5, 1fr); gap: 2px; }
  .cat-tile:nth-child(n+3) { grid-column: auto; }
}
.cat-tile { position: relative; display: block; overflow: hidden; background: #f3efe8; }
.cat-tile img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.cat-tile__copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem; text-align: center; padding: 1.6rem;
  background: rgba(0,0,0,0.12);
}
.cat-tile__label {
  position: static;
  padding: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  background: none;
}

.trending { background: #f7f4ee; position: relative; z-index: 1; padding-bottom: 3.2rem; }
.trending__rail {
  display: flex; flex-wrap: nowrap; gap: 1.2rem; overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.8rem; list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
}
.trending__rail::-webkit-scrollbar { display: none; height: 0; }
.trending__rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.trending__rail a { -webkit-user-drag: none; }
.trending__item { flex: 0 0 18rem; width: 18rem; max-width: 28rem; }
@media (min-width: 750px) {
  .trending__item { flex-basis: 24rem; width: 24rem; }
}
.trending__more { display: none; text-align: center; margin: 2rem 0 0; }
.trending__more .text-link { text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.25rem; }
.section-head--baskets .title { margin-bottom: 0; }
.text-link--desktop { display: none; }
@media (max-width: 749px) {
  .section-head--baskets { justify-content: center; }
  .trending__more { display: block; }
}
@media (min-width: 750px) {
  .text-link--desktop { display: inline; }
}

.card--home { background: transparent; }
.card--home .card__content { display: none; }
.card--home .card__co2 { display: block; }
.card--home .card__price-tag { display: none; }
.card--home .media--portrait { aspect-ratio: 1; background: #efeae2; }
.card--home .card__badges { top: auto; bottom: 1rem; left: 1rem; }
.card--home .card__badge {
  position: static;
  background: none; color: #8a8a8a; font-weight: 500;
  padding: 0 0 0.15rem; border-radius: 0;
  border-bottom: 1px solid #8a8a8a;
}
.card--home .media--portrait img {
  object-fit: cover;
  object-position: center top;
}

.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.6rem; }
.text-link { text-decoration: underline; font-size: 1.4rem; text-underline-offset: 0.3rem; }
.title.h2 { font-weight: 500; font-size: clamp(2.8rem, 5vw, 4.2rem); margin: 0 0 1.6rem; }

.editorial-band { display: grid; }
@media (min-width: 750px) { .editorial-band { grid-template-columns: 1.1fr 1fr; } }
.editorial-band__media img { width: 100%; height: 100%; object-fit: cover; min-height: 28rem; }
.editorial-band__copy { padding: 3rem 2rem; background: #f6f3ec; display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }

.newsletter-band { background: var(--color-bg-green); color: #f6f3ec; padding: 4rem 0; }
.newsletter-band__inner { text-align: center; max-width: 56rem; margin: 0 auto; }
.newsletter-band h2 { font-weight: 500; font-size: clamp(2.4rem, 4vw, 3.4rem); margin-bottom: 0.8rem; }
.newsletter-band__form {
  display: flex; align-items: center;
  margin-top: 1.6rem; justify-content: center;
  max-width: 42rem; margin-left: auto; margin-right: auto;
  border: 1px solid #fff; border-radius: 999px;
  background: rgba(0,0,0,.16);
  padding: 0.15rem 0.5rem 0.15rem 0.2rem;
}
.newsletter-band__form input {
  flex: 1; max-width: none; padding: 1.15rem 1.4rem;
  border: 0; border-radius: 0;
  background: transparent; color: #fff; font: inherit;
}
.newsletter-band__form input::placeholder { color: rgba(255,255,255,0.85); }
.newsletter-band__go {
  flex: 0 0 auto; background: none; border: 0; color: #fff;
  font-size: 2rem; line-height: 1; padding: 0 0.2rem; cursor: pointer;
}
.newsletter-band .button { display: none; }

.promo-band {
  background: #f6f3ec;
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.promo-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: start;
}
.promo-band__media {
  margin: 0;
  line-height: 0;
  background: #ebe6dc;
}
.promo-band__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.promo-band__copy { max-width: 52rem; }
.promo-band__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d473e;
  font-weight: 600;
}
.promo-band__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  color: #1a2e12;
  font-weight: 600;
}
.promo-band__lead {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  color: #333;
}
.promo-band__text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.55;
  color: #555;
}
@media (min-width: 990px) {
  .promo-band__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.4rem, 4vw, 5rem);
    align-items: center;
  }
}
.cart-drawer__promo {
  padding: 0 0 0.75rem;
}
.cart-promo-lines { display: grid; gap: 0.3rem; font-size: 1.1rem; }
.cart-promo-line { display: flex; justify-content: space-between; gap: 1rem; color: #555; }
.cart-promo-line--discount { color: #2d473e; font-weight: 600; }
@media (max-width: 989px) {
  .promo-band__copy { margin: 0 auto; }
}
@media (max-width: 749px) {
  .promo-band { padding: 1.6rem 0 2rem; }
  .cart-drawer__promo { padding: 0 1.2rem 0.8rem; }
}
.forest-band { position: relative; line-height: 1.15; background: #1a2e12; }
.forest-band__link { display: block; color: inherit; }
.forest-band img { width: 100%; height: min(58vh, 560px); object-fit: cover; display: block; line-height: 0; }
.forest-band__copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.4); pointer-events: none;
  line-height: 1.15;
}
.forest-band__count { font-size: clamp(3.2rem, 8vw, 7.4rem); font-weight: 500; margin: 0; letter-spacing: 0.02em; line-height: 1; }
.forest-band__label {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin: 1.2rem 0 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.4;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.55rem 0.2rem;
}

.collection-empty { margin: 1.6rem 0 0; color: #666; font-size: 1.5rem; }
.sitemap-list { columns: 1; gap: 2rem; list-style: none; padding: 0; margin: 0 0 2.4rem; }
.sitemap-list li { padding: 0.35rem 0; break-inside: avoid; }
.sitemap-list .muted, .muted { color: #888; font-size: 1.2rem; }
@media (min-width: 750px) { .sitemap-list { columns: 2; } }
@media (min-width: 1100px) { .sitemap-list { columns: 3; } }

@media (min-width: 990px) {
  .mega-menu__inner {
    grid-template-columns: minmax(28rem, 1fr) minmax(34rem, 1.15fr);
    gap: 4rem;
    align-items: start;
  }
  .header__inline-menu { gap: 1.4rem; }
}
@media (min-width: 1280px) {
  .header__inline-menu { gap: 1.8rem; }
  .header__menu-item { font-size: 1.4rem; }
}

.product__co2 {
  display: inline-block; margin: 0.8rem 0; padding: 0.4rem 0.7rem;
  border: 1px solid #2d473e; color: #2d473e; font-weight: 700; font-size: 1.2rem;
}
.product-form__sizes { display: grid; grid-template-columns: repeat(auto-fill, minmax(4.4rem, 1fr)); gap: 0.6rem; }
.size-pill, .product-form__pill {
  border: 1px solid #ddd; padding: 0.85rem 0.4rem; text-align: center; font-size: 1.3rem; background: #fff;
}
.product-form__pill.active { border-color: #2d473e; background: #2d473e; color: #fff; }
.product-form__pill.is-sold { opacity: 0.4; text-decoration: line-through; }
.product-form__option-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.product-form__guide { font-size: 1.2rem; text-decoration: underline; }
.product-form__hint { font-size: 1.25rem; color: #555; margin: 0.8rem 0 1.2rem; }
.color-dots {
  display: flex; gap: 0.8rem; flex-wrap: nowrap;
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.2rem 0.7rem;
  width: 100%; max-width: 100%; min-width: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.color-dots::-webkit-scrollbar { display: none; width: 0; height: 0; }
.color-dot {
  width: 5.6rem; height: 5.6rem; border-radius: 50%; background-size: cover; background-position: center;
  border: 2px solid #fff; box-shadow: 0 0 0 1px #ccc; display: inline-block; flex-shrink: 0;
}
.color-dot.is-active { box-shadow: 0 0 0 2px #2d473e; }
@media (min-width: 750px) {
  .color-dots { flex-wrap: wrap; overflow: visible; padding: 0.2rem 0 0; }
  .color-dot { width: 5.2rem; height: 5.2rem; }
}

.geo-modal {
  position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.geo-modal[hidden] { display: none !important; }
.geo-modal__panel { background: #fff; padding: 2.4rem; max-width: 38rem; width: 100%; position: relative; }
.geo-modal__close { position: absolute; top: 0.8rem; right: 1rem; font-size: 2.4rem; }
.geo-modal label { display: block; margin: 1rem 0; font-size: 1.3rem; }
.geo-modal select { width: 100%; margin-top: 0.4rem; padding: 0.8rem; font: inherit; }

.rp-hero { padding: 4rem 0 0; }
.rp-hero__title { font-size: 3.6rem; font-weight: 500; margin-bottom: 1rem; }
.rp-hero__img { width: 100%; height: auto; display: block; margin-top: 2rem; }

/* Engagements mission — alternating cards */
.rp-engagements { background: #faf9f7; }
.rp-engagements__list { display: grid; gap: 2.4rem; }
.rp-card--engagement { border: 0; padding: 0; background: transparent; }
.rp-card--engagement__link {
  display: grid; gap: 0; text-decoration: none; color: inherit;
  background: #fff; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow .2s ease;
}
.rp-card--engagement__link:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.rp-card--engagement__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.rp-card--engagement__copy { padding: 2rem 2.4rem 2.4rem; }
.rp-card--engagement__copy h3 { font-size: 2rem; font-weight: 600; margin: 0 0 1rem; line-height: 1.2; }
.rp-card--engagement__copy p { font-size: 1.45rem; line-height: 1.6; color: #555; margin: 0 0 1.2rem; }
.rp-card--engagement__copy .text-link { font-size: 1.3rem; font-weight: 600; color: var(--color-primary); }
@media (min-width: 750px) {
  .rp-card--engagement__link { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .rp-card--engagement-reverse .rp-card--engagement__link { direction: rtl; }
  .rp-card--engagement-reverse .rp-card--engagement__copy { direction: ltr; }
}

/* Brand nav grid */
.brand-nav { background: #fff; border-top: 1px solid var(--color-border); }
.brand-nav__title { font-size: 2.4rem; font-weight: 500; margin: 0 0 2rem; text-align: center; }
.brand-nav__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.brand-nav__item {
  display: block; text-decoration: none; color: inherit; overflow: hidden;
  border: 1px solid var(--color-border); border-radius: 2px;
  transition: box-shadow .2s ease;
}
.brand-nav__item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.brand-nav__item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.brand-nav__item span {
  display: block; padding: 1rem 1.2rem; font-size: 1.35rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
@media (min-width: 750px) {
  .brand-nav__grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
}

.rp-split__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 750px) {
  .rp-split__grid { grid-template-columns: 1fr 1fr; }
  .rp-split--reverse .rp-split__media { order: 2; }
}
.rp-steps__list { display: grid; gap: 1.6rem; }
@media (min-width: 750px) { .rp-steps__list { grid-template-columns: repeat(4, 1fr); } }
.rp-steps__n { display: inline-block; font-weight: 700; color: #2d473e; margin-bottom: 0.6rem; }
.rp-pictos__grid, .rp-cards__grid { display: grid; gap: 1.6rem; }
@media (min-width: 750px) {
  .rp-pictos__grid { grid-template-columns: repeat(5, 1fr); }
  .rp-cards__grid { grid-template-columns: repeat(3, 1fr); }
}
.rp-eyebrow { letter-spacing: 0.12em; text-transform: uppercase; font-size: 1.2rem; color: #2d473e; }
.collection-filters label { font-size: 1.25rem; color: #555; display: flex; align-items: center; gap: 0.6rem; }
.collection-filters select {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.7rem 1rem;
  font: inherit;
  font-size: 1.3rem;
}
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; gap: 1rem; flex-wrap: wrap; }

.benefits { background: #f6f3ec; padding: 3.5rem 0; }
.footer a { color: inherit; }

/* ——— Fidelity FAGUO store ——— */
.header__icon,
.header__icon--menu span { color: var(--color-accent); }
.header__icon--menu span { background: var(--color-accent); }
.button { border-radius: 0; }

.section-head--baskets { justify-content: center; }
.section-head--baskets .title {
  width: 100%; text-align: center;
  color: var(--color-accent);
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  font-weight: 500;
}
.trending__more {
  display: block !important; text-align: center;
  margin: 0; padding: 2.2rem 0 0;
  background: none; border: 0;
  position: relative; z-index: 2;
}
.trending__more .text-link,
.trending__more a {
  display: inline; background: none; border: 0; border-radius: 0;
  color: #8a8a8a; font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 0.35rem;
  padding: 0;
}
.trending.section--padding { padding-bottom: 2.4rem; }
@media (max-width: 749px) {
  .trending.section--padding { padding-bottom: 2rem; }
  .trending__more {
    position: static;
    transform: none;
    padding: 1.2rem 0 0;
    margin: 0;
  }
  .trending__more .text-link,
  .trending__more a {
    color: #8a8a8a;
    text-shadow: none;
  }
  .forest-band img { height: min(26vh, 190px); }
  .forest-band__count { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .forest-band__label { font-size: 0.95rem; margin-top: 0.55rem; padding: 0.35rem 0.2rem; }
  .forest-band__copy { padding-top: 0; }
}
@media (max-width: 749px) {
  .trending__rail { gap: 0.8rem; }
  .trending__item {
    flex: 0 0 calc(50% - 0.4rem);
    width: calc(50% - 0.4rem);
    max-width: none;
  }
}

.card__co2,
.card__co2--top {
  position: absolute; top: 0.9rem; left: 0.9rem; bottom: auto; z-index: 2;
  background: none; color: #9a9a9a; padding: 0;
  font-size: 1.05rem; font-weight: 400; letter-spacing: 0.04em;
  pointer-events: none;
}
.product__media-main .card__co2--top {
  top: 1rem;
  left: 1rem;
}
@media (max-width: 749px) {
  .product__media-main .card__co2--top { left: max(1rem, env(safe-area-inset-left, 0px)); }
}
.card__badges { top: auto; bottom: 1rem; left: 1rem; }
.card__badge {
  background: none !important; color: #8a8a8a !important;
  padding: 0 0 0.12rem !important; border-radius: 0;
  border-bottom: 1px solid #8a8a8a; font-weight: 500;
}
.card__badge--exclu,
.card__badge--sale,
.card__badge--sold { background: none !important; }
.card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.6rem; }
.card__heading { font-family: var(--font-heading); font-size: 2rem; font-weight: 500; }
.card__bag { color: #1a1a1a; flex-shrink: 0; }
.card__subheading { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: #7a7a7a; }
.card__colors-count { font-size: 1.2rem; color: #888; margin-top: 0.2rem; }
.card--product .media--portrait { background: #f3efe8; }
.card--product .media--portrait img {
  object-fit: cover;
  object-position: center top;
}

.trust-row { background: #fff; padding: 3.6rem 1.6rem 2.8rem; text-align: center; border-top: 1px solid var(--color-border); }
.trust-row__track { position: relative; }
.trust-row__slide {
  display: none; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 0; max-width: 28rem; margin: 0 auto;
}
.trust-row__slide.is-active { display: flex; }
.trust-row__icon {
  display: flex; align-items: center; justify-content: center;
  width: 5.8rem; height: 5.8rem; margin-bottom: 1.4rem; border-radius: 50%;
  background: rgba(45, 71, 62, 0.08); color: var(--color-accent);
  flex-shrink: 0;
}
.trust-row__icon svg { width: 2.6rem; height: 2.6rem; display: block; }
.trust-row__slide strong {
  display: block; font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 600; color: #1a1a1a; line-height: 1.2;
}
.trust-row__slide p { margin: 0.5rem 0 0; font-size: 1.35rem; color: #555; line-height: 1.45; max-width: 22rem; }
.trust-row__slide a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.trust-row__slide a:hover { opacity: 0.85; }
.trust-row__dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.trust-row__dots button {
  width: 2.2rem; height: 2px; padding: 0; border: 0; background: #d4d4d4; cursor: pointer;
}
.trust-row__dots button.is-active { background: #1a1a1a; }
@media (min-width: 750px) {
  .trust-row { padding: 4.8rem 1.6rem 4rem; }
  .trust-row__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; align-items: start; }
  .trust-row__slide { display: flex !important; max-width: none; margin: 0; }
  .trust-row__dots { display: none; }
}

.collection-hero { background: #fff; text-align: left; padding: 2.4rem 0 1.6rem; }
.collection-hero__eyebrow {
  font-family: var(--font-body); font-size: 1.25rem;
  color: var(--color-accent); margin: 0 0 0.4rem;
}
.collection-hero__title {
  color: var(--color-accent); font-size: clamp(3.4rem, 8vw, 5.2rem);
  font-weight: 500; line-height: 1.05; margin: 0;
}
.collection-hero__row {
  display: flex; flex-direction: column; gap: 2rem;
}
.collection-hero__copy { max-width: 46rem; }
.collection-description { margin: 1.2rem 0 0; max-width: 42rem; color: #5a5a5a; font-size: 1.35rem; line-height: 1.55; }
.collection-spots {
  display: flex; gap: 0.8rem; overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  scrollbar-width: none; -ms-overflow-style: none;
  margin: 0; padding: 0 0 0.4rem;
}
.collection-spots::-webkit-scrollbar { display: none; width: 0; height: 0; }
.collection-spots.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.collection-spot {
  position: relative; display: block; flex: 0 0 14.4rem; width: 14.4rem;
  aspect-ratio: 3 / 4; overflow: hidden; background: #e8e4de;
  scroll-snap-align: start;
}
.collection-spot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-spot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,22,.55) 0%, rgba(20,24,22,.08) 45%, transparent 70%);
}
.collection-spot span {
  position: absolute; left: 0.9rem; bottom: 0.9rem; right: 0.7rem; z-index: 1;
  color: #fff; font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.2;
}
.collection-spot.is-active { box-shadow: 0 0 0 2px #2d473e; }
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 0 1.6rem; gap: 1rem; flex-wrap: nowrap;
  padding: 0 0 1.2rem;
  border-bottom: 1px solid #ece8e1;
}
.collection-filtres {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1.2rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #1a1a1a; background: none; border: 0; padding: 0;
  text-decoration: underline; text-underline-offset: 0.28rem; text-decoration-thickness: 1px;
}
.collection-view { display: flex; gap: 0.8rem; }
.collection-view__btn {
  color: #c4c4c4; padding: 0.2rem; background: none; border: 0;
}
.collection-view__btn.is-active { color: #1a1a1a; }
.collection-view__btn svg { fill: currentColor; }
.collection-filters[hidden] { display: none !important; }
.collection-filters:not([hidden]) {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem;
  padding: 1.2rem; border: 1px solid var(--color-border);
}
.product-grid--1 { grid-template-columns: 1fr !important; }
.collection-products { padding-top: 1.2rem !important; }
@media (max-width: 749px) {
  .collection-toolbar { flex-direction: row !important; align-items: center; }
}
@media (min-width: 750px) {
  .collection-hero { text-align: left; }
  .collection-hero__row {
    flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 4rem;
  }
  .collection-description { margin-left: 0; margin-right: 0; }
  .collection-spots {
    flex: 0 0 auto; overflow: visible; padding: 0; max-width: none; margin: 0;
  }
  .collection-spot { flex: 0 0 16.2rem; width: 16.2rem; }
  .collection-spots { max-width: none; margin-left: 0; margin-right: 0; }
}

.product-dots {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.28rem;
  margin: 0;
  padding: 0.85rem var(--gutter) 0.55rem;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.product-dot {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1px;
  padding: 0;
  border: 0;
  background: #d4d4d4;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s ease, width 0.15s ease;
}
.product-dot.is-active {
  background: #1a1a1a;
  width: 1.75rem;
}
.product-dots:has(.product-dot:nth-child(9)) .product-dot { width: 1.1rem; }
.product-dots:has(.product-dot:nth-child(9)) .product-dot.is-active { width: 1.45rem; }
.product-dots:has(.product-dot:nth-child(12)) {
  flex-wrap: wrap;
  max-width: 22rem;
  margin-inline: auto;
  row-gap: 0.35rem;
}
@media (max-width: 749px) {
  .product-dots { display: flex !important; }
}
@media (min-width: 750px) {
  .product-dots { display: none !important; }
}
.product-form__guide-line { margin: 0 0 1.4rem; }
.product-form__guide-line a { color: #3b6ea5; text-decoration: underline; font-size: 1.3rem; }
.product__reserve { margin-top: 1.2rem; text-align: center; }
.product__reserve a { text-decoration: underline; font-size: 1.35rem; }
.pdp-tabs__nav { gap: 1.8rem; justify-content: flex-start; }
.pdp-tabs .tab-btn {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.15rem; color: #888;
}
.pdp-tabs .tab-btn.active { color: #1a1a1a; border-bottom-color: #1a1a1a; }
.pdp-tabs .product-reviews { padding: 1.2rem 0 0; }
.pdp-desc--collapsible .pdp-desc__body.is-collapsed {
  max-height: 9.6rem;
  overflow: hidden;
  position: relative;
}
.pdp-desc--collapsible .pdp-desc__body.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3.2rem;
  background: linear-gradient(transparent, #fff);
}
.pdp-desc__toggle {
  margin-top: 0.8rem;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}
.pdp-compo__list { list-style: none; padding: 0; margin: 0; }
.pdp-compo__list li { padding: 0.55rem 0; border-bottom: 1px solid #eee; font-size: 1.35rem; line-height: 1.5; }
.pdp-compo__list li:last-child { border-bottom: 0; }
.pdp-trace__intro { font-size: 1.35rem; line-height: 1.6; color: #333; margin: 0 0 1.6rem; max-width: 72rem; }
.pdp-trace__box, .pdp-trace__co2 {
  border: 1px solid #d8d4cc;
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.pdp-trace__box-label { font-size: 1.15rem; color: #888; margin: 0 0 0.8rem; }
.pdp-trace__sep { border: 0; border-top: 1px solid #e8e4dc; margin: 0.9rem 0; }
.pdp-trace__box-title { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; color: #1a1a1a; }
.pdp-trace__box-text, .pdp-trace__box-foot { font-size: 1.3rem; line-height: 1.55; margin: 0.6rem 0 0; color: #444; }
.pdp-trace__co2-val { display: flex; align-items: center; gap: 0.6rem; font-size: 1.35rem; margin: 0.6rem 0 0; }
.pdp-trace__globe { font-size: 1.5rem; }
.pdp-trace__more { text-align: right; margin: 0.8rem 0 0; }
.pdp-trace__more-link { color: var(--color-primary); text-decoration: underline; font-size: 1.25rem; }
.product-reviews--tab .product-reviews__head { margin-bottom: 1.2rem; }
.product-reviews--tab .product-reviews__score { font-size: 1.35rem; margin: 0 0 0.4rem; }
.product-reviews--tab .product-reviews__sub { font-size: 1.2rem; color: #666; margin: 0; }
.product-reviews--tab .product-reviews__sub a { color: inherit; text-decoration: underline; }
.product-reviews__empty { font-size: 1.3rem; color: #666; }
@media (max-width: 749px) {
  .product.section--padding { padding-top: 0; padding-bottom: 1.6rem; }
  .product__gallery-col { margin-bottom: 0; }
  .product-dots {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .card__co2--top { font-size: 1.05rem; }
  .pdp-tabs.section--padding { padding-top: 2.4rem; }
  .pdp-tabs__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }
  .pdp-tabs__nav::-webkit-scrollbar { display: none; }
  .pdp-tabs .tab-btn { flex-shrink: 0; white-space: nowrap; }
}

.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  margin: 2rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid #ece8e1;
}
.pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.25rem;
  color: #3d3d3d;
  line-height: 1.3;
}
.pdp-trust__item svg {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  color: #2d473e;
}
.product__info .product__title { letter-spacing: -0.02em; }
.product-form { margin-top: 0.4rem; }
@media (max-width: 749px) {
  .pdp-trust { grid-template-columns: 1fr; gap: 0.9rem; }
}

.cart-drawer { background: #fff; }
.cart-drawer__header h2 {
  font-family: var(--font-heading); text-transform: none;
  font-size: clamp(1.85rem, 5vw, 2.25rem); letter-spacing: 0; font-weight: 600;
}
.cart-rewards__bar { height: 2px; border-radius: 0; background: #ddd; box-shadow: none; }
.cart-rewards__bar span { background: #1a1a1a; border-radius: 0; min-width: 0; }
.cart-rewards__steps { display: none; }
.cart-item__remove {
  width: auto; height: auto; border-radius: 0; background: none;
  text-decoration: underline; font-size: 1.25rem; color: #555; padding: 0;
}
.cart-item__qty {
  border: 1px solid #d8d4cc; padding: 0.2rem 0.4rem; gap: 0.8rem;
}
.cart-qty-btn { width: 28px; height: 28px; border: 0; border-radius: 0; }
.cart-drawer__tax { font-size: 1.05rem; color: #999; margin: 0 0 0.85rem; }
.cart-empty-title {
  font-family: var(--font-heading); font-size: 3.2rem; color: var(--color-accent);
  font-weight: 500; margin: 0 0 1rem;
}
.cart-drawer.is-empty .cart-drawer__login:not(.cart-drawer__login--empty),
.cart-drawer.is-empty .cart-drawer__rewards,
.cart-drawer.is-empty .cart-drawer__scroll,
.cart-drawer.is-empty .cart-drawer__footer,
.cart-drawer.is-empty .cart-drawer__upsell { display: none !important; }
.cart-drawer.is-empty .cart-drawer__header {
  position: absolute; top: 0; right: 0; left: 0;
  justify-content: flex-end; border: 0; background: transparent;
}
.cart-drawer.is-empty .cart-drawer__header h2 { display: none; }
.cart-drawer.is-empty #cartClose,
#cartClose {
  background: none; border-radius: 0; width: auto; height: auto;
  box-shadow: none; font-size: 2.4rem; line-height: 1; padding: 0.4rem;
}
.cart-drawer.is-empty .cart-drawer__main {
  position: relative; justify-content: center; min-height: 100%;
}
.cart-item__actions { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.cart-item__type { color: #888 !important; font-weight: 400; margin-top: 0.2rem; }
.cart-drawer.is-empty .cart-drawer__empty-actions {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem 2.4rem; margin: auto;
}
.cart-drawer__empty-actions[hidden] { display: none !important; }
.cart-drawer__login--empty { border: 0; padding: 0 0 1.8rem; color: #8a7f74; }
.cart-count[data-count="0"] { display: none; }
@media (max-width: 749px) {
  .cart-drawer { width: 94vw; max-width: 94vw; }
  .cart-drawer.is-empty { width: 96vw; max-width: 96vw; }
}

.footer__newsletter {
  border: 0; border-bottom: 1px solid #fff; margin-bottom: 2.4rem; padding-bottom: 0.2rem;
}
.footer__newsletter input { padding: 0.8rem 0; }
.footer__newsletter button { padding: 0; letter-spacing: 0.1em; }
.footer__certs { display: flex; gap: 1.6rem; align-items: center; opacity: 0.9; font-size: 1.1rem; }
@media (max-width: 749px) {
  .footer__social { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__legal { display: flex; flex-direction: column; gap: 0.7rem; text-align: left; max-width: none; width: 100%; }
  .footer__content-bottom { align-items: stretch; text-align: left; }
  .footer__payments { display: none; }
  .footer__certs { justify-content: flex-end; }
}


.utility-bar__promo-wrap {
  display: flex; align-items: center; justify-content: center; flex: 1; gap: 0.35rem; min-width: 0;
}
.utility-bar__arrow {
  display: none; background: none; border: 0; color: inherit;
  font-size: 1.8rem; line-height: 1; padding: 0 0.35rem; cursor: pointer;
}
@media (max-width: 989px) {
  .utility-bar__arrow { display: inline-flex; }
}

.drawer__footer-links {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 1.6rem; flex-wrap: wrap;
}
.drawer__footer-links a {
  flex: 0 0 auto; border: 0; padding: 0.4rem 0.9rem;
  font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative;
}
.drawer__footer-links a + a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 1px; height: 1em; background: #ccc; transform: translateY(-50%);
}
.drawer__country {
  display: block; width: 100%; background: none; border: 0; font: inherit;
  text-align: center; font-size: 1.3rem; color: #666; cursor: pointer; padding: 0.4rem;
}

.collection-empty { margin: 2.4rem 0 1rem; max-width: 42rem; }
.collection-empty__title {
  font-family: var(--font-heading); font-size: 2.6rem; color: var(--color-accent);
  font-weight: 500; margin: 0 0 0.8rem;
}
.collection-empty p { margin: 0 0 1.4rem; color: #5a5a5a; font-size: 1.4rem; }

.looks-mosaic__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem;
}
.looks-mosaic__item {
  position: relative; display: block; overflow: hidden; background: #eee; color: #fff;
}
.looks-mosaic__item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.looks-mosaic__item span {
  position: absolute; left: 0.8rem; bottom: 0.8rem; right: 0.6rem;
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1; text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
@media (min-width: 750px) {
  .looks-mosaic__grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
}

.journal-card { border: 0; text-align: left; background: transparent; }
.journal-card a { color: inherit; display: block; }
.journal-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; margin: 0 0 1rem; }
.journal-card h3 {
  font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-accent);
  font-weight: 500; margin: 0 0 0.5rem;
}
.journal-card p { color: #555; font-size: 1.35rem; margin: 0; }
.journal-cover { width: 100%; max-height: 42rem; object-fit: cover; display: block; margin: 1.6rem 0 2rem; }

.page--404 { text-align: center; padding-top: 6rem; padding-bottom: 8rem; }
.page--404 .title.h1 {
  font-family: var(--font-heading); color: var(--color-accent);
  font-size: clamp(3.2rem, 7vw, 5.2rem); font-weight: 500; margin: 0.6rem 0 1.2rem;
}
.page--404__actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; margin-top: 2rem; }

.product--gift .product-form__guide-line,
.product--gift .product__reserve { display: none; }

.page-content .rte table.legal-table.size-table,
.rich-page .size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 2rem;
  font-size: 1.4rem;
}
.page-content .rte table.legal-table.size-table th,
.page-content .rte table.legal-table.size-table td,
.rich-page .size-table th,
.rich-page .size-table td {
  border: 0;
  border-bottom: 1px solid #ece8e1;
  background: none;
  padding: 0.75rem 0.5rem 0.75rem 0;
}

/* Collection breadcrumbs + Faguo filter drawer (right panel) */
.breadcrumbs--collection {
  margin: 0 0 1.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.breadcrumbs--collection a { color: inherit; text-decoration: none; }
.breadcrumbs--collection a:hover { text-decoration: underline; }
.collection-filtres svg { display: block; flex-shrink: 0; }
body.filter-open { overflow: hidden; }
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 440;
  background: rgba(26, 26, 26, 0.38);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.filter-overlay[hidden] { display: none; }
.filter-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(0px, calc(100vw - min(42rem, 100vw)));
  right: auto;
  z-index: 450;
  width: min(42rem, 100vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.filter-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
}
@media (max-width: 749px) {
  .filter-drawer {
    left: 0;
    width: 100vw;
  }
}
.filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 2.4rem 1.6rem;
  flex-shrink: 0;
}
.filter-drawer__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.filter-drawer__close {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: #1a1a1a;
  padding: 0;
  font-size: 2.8rem;
  line-height: 1;
}
.filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 2.4rem 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-drawer__body::-webkit-scrollbar { display: none; width: 0; }
.filter-acc {
  border-top: 1px solid #e8e4de;
}
.filter-acc:last-child { border-bottom: 1px solid #e8e4de; }
.filter-acc__sum {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 0;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
}
.filter-acc__sum::-webkit-details-marker { display: none; }
.filter-acc__sum::marker { content: none; }
.filter-acc__chevron {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.filter-acc[open] .filter-acc__chevron { transform: rotate(180deg); }
.filter-acc__body {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem;
}
.filter-acc__list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 1.45rem;
  cursor: pointer;
  font-weight: 400;
}
.filter-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #1a1a1a;
  border-radius: 2px;
  background: #fff;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}
.filter-check input:checked {
  background: #1a1a1a;
  box-shadow: inset 0 0 0 2px #fff;
}
.filter-drawer__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.4rem 2.4rem 2rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}
.filter-drawer__reset,
.filter-drawer__apply {
  min-height: 4.8rem;
  padding: 0 1.2rem;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.filter-drawer__reset {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.filter-drawer__apply {
  background: #2d473e;
  color: #fff;
  border: 1px solid #2d473e;
}

/* FAGUO Forest House */
.ffh-media-band { line-height: 0; overflow: hidden; background: #1a1a1a; }
.ffh-media-band__media { width: 100%; display: block; min-height: min(52vh, 520px); max-height: 78vh; object-fit: cover; }
.ffh-programme { background: #fff; }
.ffh-programme__title {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500; color: var(--color-accent); margin: 0 0 2rem; line-height: 1.1;
}
.ffh-programme__list {
  list-style: none; margin: 0; padding: 0; max-width: 52rem;
}
.ffh-programme__list li {
  position: relative; padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid #ece8e1; font-size: 1.45rem; line-height: 1.55; color: #333;
}
.ffh-programme__list li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--color-accent);
}
.ffh-gallery { margin-top: 2.4rem; overflow: hidden; }
.ffh-gallery__track {
  display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ffh-gallery__track::-webkit-scrollbar { display: none; }
.ffh-gallery__slide {
  flex: 0 0 min(78vw, 420px); scroll-snap-align: start; overflow: hidden; background: #f3efe8;
}
.ffh-gallery__slide img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.ffh-carousel__title {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500; color: var(--color-accent); margin: 0 0 1.6rem; text-align: center;
}
.ffh-carousel__rail { overflow: hidden; }
.ffh-carousel__track {
  display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ffh-carousel__track::-webkit-scrollbar { display: none; }
.ffh-carousel__slide {
  flex: 0 0 min(88vw, 560px); scroll-snap-align: start; overflow: hidden;
}
.ffh-carousel__slide img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.ffh-cta { background: #f6f3ec; text-align: center; }
.ffh-cta__inner { max-width: 36rem; margin: 0 auto; }
.ffh-cta__title { font-family: var(--font-heading); font-size: 2.8rem; color: var(--color-accent); margin: 0 0 1rem; }
.ffh-cta__btn { max-width: 28rem; margin: 0 auto; }

/* Store locator map */
.rich-page--locator { padding: 0; }
.rich-page--locator + .trust-row,
.rich-page--locator ~ .trust-row { display: none; }
.store-locator-map {
  --slm-primary: #415954;
  --slm-open: #15941b;
  --slm-closed: #b42318;
  min-height: calc(100vh - 12rem);
}
.store-locator-map__layout { display: flex; flex-direction: column; min-height: inherit; }
.store-locator-map__header { padding: 2rem var(--gutter) 1.2rem; }
.store-locator-map__title {
  font-family: var(--font-heading); font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500; color: var(--color-accent); margin: 0 0 1.4rem; line-height: 1.05;
}
.store-locator-map__search {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: stretch;
}
.store-locator-map__field {
  flex: 1 1 16rem; display: flex; align-items: center; position: relative;
  border: 1px solid #d8d4cc; background: #fff;
}
.store-locator-map__field input {
  flex: 1; border: 0; padding: 0.95rem 2.8rem 0.95rem 1rem; font: inherit; font-size: 1.35rem; min-width: 0;
}
.store-locator-map__search-btn,
.store-locator-map__reset {
  position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%);
  border: 0; background: none; padding: 0.35rem; cursor: pointer; color: #666;
}
.store-locator-map__reset { right: 2.4rem; font-size: 1.6rem; line-height: 1; }
.store-locator-map__locate {
  flex: 0 0 auto; white-space: nowrap; font-size: 1.25rem; padding: 0.85rem 1.4rem;
}
.store-locator-map__body {
  flex: 1; display: grid; grid-template-columns: 1fr; min-height: 0;
}
.store-locator-map__map {
  position: relative; min-height: 42vh; background: #e8e4dc;
}
.store-locator-map__map .leaflet-container { width: 100%; height: 100%; min-height: 42vh; z-index: 1; }
.store-locator-map__loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  margin: 0; font-size: 1.35rem; color: #666; z-index: 0;
}
.store-locator-map__panel {
  display: flex; flex-direction: column; min-height: 0; background: #fff; border-top: 1px solid #ece8e1;
}
.store-locator-map__tabs {
  display: flex; gap: 0; border-bottom: 1px solid #ece8e1; overflow-x: auto; scrollbar-width: none;
}
.store-locator-map__tabs::-webkit-scrollbar { display: none; }
.store-locator-map__tab {
  flex: 1; min-width: 0; border: 0; background: #fff; padding: 1rem 0.8rem;
  font: inherit; font-size: 1.2rem; font-weight: 500; color: #666; cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.store-locator-map__tab.is-active {
  color: var(--slm-primary); border-bottom-color: var(--slm-primary); font-weight: 600;
}
.store-locator-map__count { font-weight: 400; color: #999; margin-left: 0.25rem; }
.store-locator-map__results {
  flex: 1; overflow-y: auto; padding: 0.5rem 0; max-height: 42vh;
  -webkit-overflow-scrolling: touch;
}
.store-locator-map__empty {
  padding: 2rem var(--gutter); text-align: center; color: #666; font-size: 1.35rem; margin: 0;
}
.store-card {
  padding: 1.2rem var(--gutter); border-bottom: 1px solid #f0ece6; cursor: pointer;
  transition: background 0.15s;
}
.store-card:hover, .store-card.is-active { background: #f8f6f2; }
.store-card__name {
  font-size: 1.45rem; font-weight: 600; color: #1a1a1a; margin: 0 0 0.35rem; line-height: 1.25;
}
.store-card__meta { font-size: 1.25rem; color: #666; margin: 0 0 0.6rem; line-height: 1.45; }
.store-card__forest {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 1.15rem; color: #555; margin: 0 0 0.6rem;
}
.store-card__actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; }
.store-card__actions a {
  font-size: 1.2rem; font-weight: 500; color: var(--slm-primary); text-decoration: underline;
}
@media (min-width: 990px) {
  .store-locator-map__body { grid-template-columns: 1fr 420px; min-height: calc(100vh - 18rem); }
  .store-locator-map__map, .store-locator-map__map .leaflet-container { min-height: 100%; }
  .store-locator-map__panel { border-top: 0; border-left: 1px solid #ece8e1; }
  .store-locator-map__results { max-height: none; }
  .ffh-gallery__slide { flex-basis: min(32vw, 380px); }
}

