/* Manucurist theme — design tokens from Be Yours 6.9.0 */
@font-face {
  font-family: 'Euclid Circular B';
  src: url(https://www.manucurist.com/cdn/shop/t/72/assets/euclidcircularb-light-webfont.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Euclid Circular B';
  src: url(https://www.manucurist.com/cdn/shop/t/72/assets/euclidcircularb-medium-webfont.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Besley;
  src: url(https://www.manucurist.com/cdn/fonts/besley/besley_n4.63b3ba79124e9efd5f425a6785cb953541abbde0.woff2) format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-body: "Euclid Circular B", sans-serif;
  --font-heading: "Euclid Circular B", sans-serif;
  --font-accent: Besley, serif;
  --color-text: #353535;
  --color-bg: #ffffff;
  --color-accent: #004E42;
  --color-primary: #004E42;
  --color-highlight: #FD7BDF;
  --color-sale: #FD7BDF;
  --color-border: #e8e8e8;
  --color-bg-light: #FCF1F2;
  --color-bg-green: #004E42;
  --page-width: 1400px;
  --gutter: 1.5rem;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
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);
}
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, .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-light);
  font-size: 1.15rem;
}
.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: 500; }
.utility-bar__center:hover { text-decoration: underline; }
.utility-bar__country, .utility-bar__right { color: #6a6a6a; white-space: nowrap; }
@media (max-width: 989px) {
  .utility-bar__country, .utility-bar__right { display: none; }
}

/* Announcement (legacy alias) */
.announcement-bar { background: var(--color-bg-light); text-align: center; padding: 1rem; font-size: 1.2rem; font-weight: 500; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem var(--gutter);
  gap: 1rem;
}
.header__left { display: flex; align-items: center; gap: 1rem; justify-self: start; }
.header__heading { justify-self: center; margin: 0; }
.header__heading-logo { height: 34px; width: auto; }
.header__icons { display: flex; align-items: center; gap: 1rem; justify-self: end; }
.header__inline-menu { display: flex; gap: 2rem; }
.header__menu-item {
  font-size: 1.45rem; font-weight: 400; letter-spacing: 0.01em; text-transform: none;
  color: #2b2b2b; transition: color 0.2s;
}
.header__menu-item:hover { color: var(--color-accent); }
.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__menu-item-wrap { position: relative; }
.header__menu-item-wrap.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu {
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: 0.2s ease;
  position: fixed; left: 0; right: 0;
  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__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.mega-menu__columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; }
.mega-menu__column ul { margin-top: 1rem; }
.mega-menu__column li { margin-bottom: 0.7rem; }
.mega-menu__column a { font-size: 1.35rem; text-transform: none; letter-spacing: 0; color: #444; }
.mega-menu__column a:hover { color: var(--color-accent); }
.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: 1fr 1fr; gap: 1.5rem; }
.mega-menu__promo {
  display: block; border-radius: 4px; overflow: hidden; line-height: 0;
}
.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); }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; left: -100%; width: 90%; max-width: 420px; height: 100vh;
  background: #fff; z-index: 400; transition: left 0.3s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open { left: 0; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: 0.3s; z-index: 399;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.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);
}
.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.5rem; }
.drawer__item--open .drawer__submenu { display: block; }
.drawer__item--open .drawer__link svg { transform: rotate(90deg); }
.drawer__group { margin-top: 1.5rem; }
.drawer__group-title { color: var(--color-highlight); font-weight: 500; margin-bottom: 0.8rem; }
.drawer__group li { padding: 0.6rem 0; font-size: 1.5rem; }
.drawer__promos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0; }
.drawer__promo { border-radius: 4px; overflow: hidden; line-height: 0; background: #f6f4f1; }
.drawer__promo img { width: 100%; height: auto; display: block; object-fit: cover; }
.drawer__collection-promos { padding: 0 var(--gutter) 1.6rem; border-bottom: 1px solid var(--color-border); }
.drawer__submenu .drawer__promos { margin-top: 1.5rem; }
.drawer__footer { margin-top: auto; padding: 2rem var(--gutter); 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; }

@media (max-width: 989px) {
  .header__icon--menu { display: flex; }
  .header__inline-menu { display: none; }
  .header__inner { grid-template-columns: auto 1fr auto; }
}

/* Search */
.search-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.search-modal.open { display: flex; }
.search-modal__panel {
  width: 100%; background: #f7f6f4; min-height: 100vh;
  display: flex; flex-direction: column;
}
.search-modal__bar {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.6rem 2rem; background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.search-modal__icon { color: #888; flex-shrink: 0; }
.search-modal__bar input {
  flex: 1; border: 0; background: transparent;
  font-size: 1.8rem; font-family: inherit; outline: none;
}
.search-modal__close {
  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: 280px 1fr; gap: 3rem;
  padding: 2.4rem 2rem 4rem; align-items: start;
}
.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: .6rem; }
.search-link {
  background: none; border: 0; padding: 0; font: inherit; font-size: 1.35rem;
  color: #333; cursor: pointer; text-decoration: none; text-align: left;
}
.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;
}
.search-product__media {
  aspect-ratio: 1; background: #f3ece6; margin-bottom: .8rem; overflow: hidden;
}
.search-product__media img { width: 100%; height: 100%; object-fit: contain; padding: .8rem; }
.search-product__type { font-size: 1.05rem; color: var(--color-primary); margin-bottom: .3rem; }
.search-product__title { font-size: 1.25rem; font-weight: 500; line-height: 1.35; margin-bottom: .4rem; }
.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; }

@media (max-width: 989px) {
  .search-modal__body { grid-template-columns: 1fr; gap: 2rem; }
  .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 549px) {
  .search-results-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* Hero banner */
.hero-banner .banner { position: relative; overflow: hidden; }
.hero-banner .banner__media { line-height: 0; }
.hero-banner .banner__img { width: 100%; height: auto; object-fit: cover; }
.hero-banner .banner__content {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  max-width: 46rem;
}
.hero-banner .banner__subheading {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 0.8rem;
}
.hero-banner .banner__heading { font-size: 3.4rem; font-weight: 500; margin-bottom: 1.2rem; line-height: 1.1; white-space: nowrap; }
.hero-banner .banner__text { margin-bottom: 2rem; font-size: 1.5rem; }
@media (max-width: 749px) {
  .hero-banner .banner__content {
    position: static; transform: none;
    padding: 2rem var(--gutter); text-align: center; max-width: none;
  }
  .hero-banner .banner__heading { font-size: 2.8rem; }
}

/* 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.6rem 0 0.4rem; }
.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 { transition: opacity 0.4s ease; }
.media--hover-effect .media__hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
}
.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: var(--color-highlight); font-size: 1.3rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.6rem; }
.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__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.8rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 1.3rem; }
.footer__social a { opacity: 0.85; }
.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 1fr; gap: 2.4rem; }
  .footer__brand { grid-column: 1 / -1; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__newsletter { max-width: 36rem; margin-left: auto; margin-right: auto; }
  .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; }
}

/* 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__media-wrapper { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; position: sticky; top: 12rem; }
.product__media-thumbs { display: flex; flex-direction: column; gap: 0.8rem; max-height: 60rem; overflow-y: auto; }
.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: #f6f4f1; }
.product-media { display: none; }
.product-media.active { display: block; }
.product-media img { width: 100%; }
.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; }
.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; }
.product .price-item--sale { font-weight: 700; }
.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; }
.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: #fff;
  border-top: 1px solid var(--color-border); box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
  z-index: 90; transform: translateY(110%); transition: transform 0.3s;
  padding: 0.55rem 0 max(0.55rem, env(safe-area-inset-bottom));
}
.sticky-atc.show { transform: translateY(0); }
.sticky-atc__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem 1.2rem;
}
.sticky-atc__product {
  display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0;
}
.sticky-atc__product > div { min-width: 0; }
.sticky-atc__product img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0;
}
.sticky-atc__title {
  font-size: 1.2rem; font-weight: 500; line-height: 1.25; margin: 0 0 0.15rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.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: 2rem; }
  .product__media-wrapper { grid-template-columns: 1fr; position: static; }
  .product__media-main { max-height: min(52vh, 42rem); overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .product-media img { max-height: min(52vh, 42rem); width: 100%; object-fit: contain; }
  .product__media-thumbs { flex-direction: row; order: 2; max-height: none; }
  .product-thumb { width: 56px; height: 56px; }
  .product__title { font-size: 2.2rem; }
  .product .price { font-size: 1.75rem; }
  .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__product img { display: none; }
  .sticky-atc__inner {
    display: grid;
    grid-template-columns: 1fr minmax(0, auto);
    grid-template-areas: "product product" "actions actions";
    gap: 0.45rem 0.6rem;
    align-items: center;
  }
  .sticky-atc__product { grid-area: product; }
  .sticky-atc__actions {
    grid-area: actions; width: 100%;
    display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; align-items: stretch;
  }
  .sticky-variant { max-width: none; width: 100%; }
  .sticky-variant__trigger { font-size: 0.95rem; padding: 0.48rem 0.65rem; }
  .sticky-variant__list { bottom: auto; top: calc(100% + 6px); }
  .sticky-atc .button--sticky-atc {
    font-size: 0.95rem; padding: 0.5rem 0.85rem; letter-spacing: 0.04em; min-width: 0;
  }
  .sticky-atc__title { 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; }
}

/* 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 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 20px rgba(0,0,0,.12);
  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: #faf9f7; border-right: 1px solid var(--color-border);
  padding: 2rem 1.6rem; overflow-y: auto;
}
.cart-drawer__upsell-title {
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 1.6rem; font-weight: 600;
}
.cart-upsell { display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.cart-upsell img { width: 72px; height: 72px; object-fit: contain; background: #f3ece6; flex-shrink: 0; }
.cart-upsell__type { display: block; font-size: 1rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: .04em; }
.cart-upsell__info strong { display: block; font-size: 1.2rem; line-height: 1.35; margin: .2rem 0; }
.cart-upsell__price { font-size: 1.25rem; font-weight: 600; }
.cart-upsell__btn {
  background: none; border: 0; padding: 0; margin-top: .4rem;
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; text-decoration: underline; color: #1a1a1a;
}
.cart-drawer__main { display: flex; flex-direction: column; min-height: 0; }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem; border-bottom: 1px solid var(--color-border);
}
.cart-drawer__header h2 {
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: .08em; margin: 0;
}
#cartClose {
  background: none; border: 0; font-size: 2.4rem; line-height: 1; cursor: pointer;
}
.cart-drawer__rewards { padding: 1.2rem 2rem; border-bottom: 1px solid var(--color-border); }
.cart-rewards__msg { font-size: 1.25rem; margin: 0 0 .8rem; color: #333; }
.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__upsell-mobile { display: none; }
.cart-upsell-row {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cart-upsell-row:last-child { border-bottom: 0; }
.cart-upsell-row > img {
  width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 4px; flex-shrink: 0;
}
.cart-upsell-row__info { flex: 1; min-width: 0; }
.cart-upsell-row__type {
  display: block; font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--color-primary); line-height: 1.3;
}
.cart-upsell-row__title { display: block; font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin: 0.15rem 0; }
.cart-upsell-row__price { font-size: 1.2rem; font-weight: 600; }
.cart-upsell-row__bag {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--color-primary); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.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: 1.6rem 2rem; -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.4rem 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: 80px; height: 80px; object-fit: contain; background: #f3ece6; border-radius: 4px; }
.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: 1.6rem 2rem 2rem; border-top: 1px solid var(--color-border);
  background: #fff; box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}
.cart-drawer__subtotals {
  display: flex; align-items: baseline; justify-content: flex-end; gap: .8rem; margin-bottom: 1rem;
}
.cart-drawer__compare s { color: #999; font-size: 1.4rem; }
.cart-drawer__total { font-size: 2rem; font-weight: 600; }
.cart-drawer__checkout { margin-bottom: .8rem; }
.cart-drawer__legal { font-size: 1.1rem; color: #888; text-align: center; margin: 0; }

@media (max-width: 749px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .cart-drawer__layout { grid-template-columns: 1fr; }
  .cart-drawer__upsell { display: none; }
  .cart-drawer__upsell-mobile {
    display: block; background: #e8eef0; margin: 0; padding: 1.2rem 1.2rem 0.4rem;
  }
  .cart-drawer__upsell-mobile .cart-drawer__upsell-title { margin-bottom: 0.4rem; }
  .cart-drawer__subtotals { justify-content: flex-end; flex-wrap: wrap; gap: 0.4rem 0.8rem; }
  .cart-drawer__header { padding: 1.4rem 1.2rem; }
  .cart-drawer__header h2 { font-size: 1.15rem; }
  #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__items { padding: 0.8rem 1.2rem 1.2rem; }
  .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); }
.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;
}
