/**
 * FTB Homepage FRESH — Refonte 2026-05-01
 * 10 sections : hero · marquee · trust · find · products · curator · brands · charter · reviews · faq · newsletter
 * Préfixe : .fh-* (vs ancien .ftb-home-*)
 * Palette adoucie · Fraunces serif · Mouvements doux · Mobile-first
 *
 * Structure :
 *   0. BASE & UTILITIES
 *   1. HERO
 *   2. MARQUEE
 *   3. TRUST BAR
 *   4. TROUVE TON SOIN
 *   5. NOS PRODUITS (coup de coeur + bestsellers + nouveautes)
 *   6. CURATOR
 *   7. NOS MARQUES
 *   8. CHARTE TRANSPARENCE
 *   9. AVIS VERIFIES
 *  10. FAQ
 *  11. NEWSLETTER + RESEAUX SOCIAUX
 *  12. RESPONSIVE & A11Y
 */

/* ═══════════════════════════════════════════════════════════════════════════
   0. BASE & UTILITIES
═══════════════════════════════════════════════════════════════════════════ */
.fh {
  font-family: var(--ftb-sans);
  color: var(--ftb-charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
.fh * { box-sizing: border-box; }
.fh img { max-width: 100%; height: auto; display: block; }

.fh-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.fh-center { text-align: center; }
.fh-section {
  padding: 56px 0;
  position: relative;
}

/* Eyebrow pill */
.fh-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ftb-peach-deep);
  background: var(--ftb-peach-light);
  padding: 8px 18px;
  border-radius: var(--ftb-radius-pill);
  margin-bottom: 22px;
  font-family: var(--ftb-sans);
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  flex: 0 0 auto;
}
.fh-eyebrow svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
}
.fh-eyebrow--sage   { color: var(--ftb-forest); background: var(--ftb-sage); }
.fh-eyebrow--cream  { color: var(--ftb-forest); background: var(--ftb-cream-warm); border: 1px solid var(--ftb-border); }
.fh-eyebrow--butter { color: var(--ftb-forest-deep); background: var(--ftb-butter); }
.fh-eyebrow__sparkle {
  font-size: 0.95rem;
  display: inline-block;
}

/* Section title */
.fh-title {
  font-family: var(--ftb-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ftb-charcoal);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.fh-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--ftb-peach-deep);
}
.fh-subtitle {
  font-size: 1.04rem;
  color: var(--ftb-mid);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.fh-subtitle--left { margin-left: 0; }

/* Buttons */
.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--ftb-radius-pill);
  font-family: var(--ftb-sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-decoration: none !important;
  line-height: 1;
}
.fh-btn--primary {
  background: var(--ftb-peach);
  color: #fff !important;
  box-shadow: var(--ftb-shadow-peach);
}
.fh-btn--primary:hover {
  background: var(--ftb-peach-deep);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(232,155,108,0.4);
}
.fh-btn--ghost {
  background: transparent;
  color: var(--ftb-forest) !important;
  border-color: var(--ftb-forest);
}
.fh-btn--ghost:hover {
  background: var(--ftb-forest);
  color: #fff !important;
  transform: translateY(-2px);
}
.fh-btn--cream {
  background: #fff;
  color: var(--ftb-forest) !important;
  box-shadow: var(--ftb-shadow-sm);
}
.fh-btn--cream:hover {
  background: var(--ftb-cream);
  transform: translateY(-2px);
  box-shadow: var(--ftb-shadow-md);
}
.fh-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.fh-btn:hover svg { transform: translateX(4px); }
.fh-btn--sm { padding: 12px 22px; font-size: 0.86rem; }

/* Animations */
@keyframes fh-rotate-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes fh-float-soft  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fh-marquee     { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fh-fade-up     { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fh-blob-morph  {
  0%,100%{ border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%   { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes fh-pulse-soft  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes fh-sheen       { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* Reveal on scroll */
.fh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fh-reveal.is-on { opacity: 1; transform: none; }
.fh-d1 { transition-delay: .08s; }
.fh-d2 { transition-delay: .16s; }
.fh-d3 { transition-delay: .24s; }
.fh-d4 { transition-delay: .32s; }
.fh-d5 { transition-delay: .40s; }

/* ═══════════════════════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════════════════════ */
.fh-hero {
  position: relative;
  background: var(--ftb-cream);
  padding: 64px 0 48px;
  overflow: hidden;
}
.fh-hero__blob-1 {
  position: absolute;
  top: -120px; left: -180px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(232,155,108,0.22) 0%, rgba(232,155,108,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fh-hero__blob-2 {
  position: absolute;
  bottom: -240px; right: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(220,230,213,0.45) 0%, rgba(220,230,213,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fh-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fh-hero__content {
  animation: fh-fade-up .9s ease .15s both;
}
.fh-hero__title {
  font-family: var(--ftb-serif);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ftb-charcoal);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.fh-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--ftb-peach-deep);
  position: relative;
  display: inline-block;
}
.fh-hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 6 Q 25 1 50 6 T 100 6 T 150 6 T 200 6' fill='none' stroke='%23E89B6C' stroke-width='2.4' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
  opacity: .55;
}
.fh-hero__lead {
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--ftb-mid);
  max-width: 540px;
  margin: 0 0 32px;
  font-weight: 400;
}
.fh-hero__lead strong { color: var(--ftb-forest); font-weight: 600; }

.fh-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.fh-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fh-hero__trust-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--ftb-butter-deep);
}
.fh-hero__trust-stars svg { width: 18px; height: 18px; fill: currentColor; }
.fh-hero__trust-text {
  font-size: 0.94rem;
  color: var(--ftb-mid);
}
.fh-hero__trust-text b {
  color: var(--ftb-charcoal);
  font-weight: 600;
}

/* Visual side */
.fh-hero__visual {
  position: relative;
  animation: fh-fade-up 1s ease .3s both;
}
.fh-hero__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(58,84,73,0.18);
  animation: fh-blob-morph 16s ease-in-out infinite;
}
.fh-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Alternance crossfade de deux visuels (crème ↔ routine) */
.fh-hero__photo-wrap--xfade .fh-hero__photo {
  position: absolute;
  inset: 0;
}
.fh-hero__photo-wrap--xfade .fh-hero__photo--2 {
  opacity: 0;
  animation: fh-hero-xfade 11s ease-in-out infinite;
}
@keyframes fh-hero-xfade {
  0%, 40%   { opacity: 0; }   /* visuel 1 affiché ~4,4 s */
  50%, 90%  { opacity: 1; }   /* fondu → visuel 2 affiché ~4,4 s */
  100%      { opacity: 0; }   /* fondu retour visuel 1 */
}
@media (prefers-reduced-motion: reduce) {
  .fh-hero__photo-wrap--xfade .fh-hero__photo--2 { animation: none; opacity: 0; }
}
.fh-hero__photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ftb-peach-light), var(--ftb-sage));
  color: var(--ftb-forest);
  font-family: var(--ftb-serif);
  font-style: italic;
}

/* Sticker rotatif "Made in France" */
.fh-sticker-rotate {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 130px; height: 130px;
  z-index: 3;
  animation: fh-rotate-slow 28s linear infinite;
  filter: drop-shadow(0 12px 24px rgba(58,84,73,0.2));
}
.fh-sticker-rotate__circle {
  width: 100%; height: 100%;
  background: var(--ftb-forest);
  border-radius: 50%;
  position: relative;
}
.fh-sticker-rotate svg { width: 100%; height: 100%; }
.fh-sticker-rotate__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fh-rotate-slow 28s linear infinite reverse;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}
/* Vrai drapeau FR (3 bandes verticales bleu / blanc / rouge) */
.fh-flag-fr {
  display: inline-flex;
  width: 36px; height: 24px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.fh-flag-fr i {
  display: block;
  flex: 1;
  height: 100%;
}
.fh-flag-fr i:nth-child(1) { background: #0055A4; }
.fh-flag-fr i:nth-child(2) { background: #FFFFFF; }
.fh-flag-fr i:nth-child(3) { background: #EF4135; }

/* Badge flottant Ecocert/Cosmébio */
.fh-badge-float {
  position: absolute;
  top: 30px; right: -30px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--ftb-radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--ftb-shadow-md);
  animation: fh-float-soft 5s ease-in-out infinite;
  z-index: 3;
}
.fh-badge-float__icon {
  width: 42px; height: 42px;
  background: var(--ftb-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ftb-forest);
  flex-shrink: 0;
}
.fh-badge-float__icon svg { width: 22px; height: 22px; }
.fh-badge-float__text strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ftb-charcoal);
  margin-bottom: 1px;
  font-family: var(--ftb-sans);
}
.fh-badge-float__text span {
  font-size: 0.74rem;
  color: var(--ftb-mid);
}

/* Carte avis flottante (DYNAMIQUE) */
.fh-review-float {
  position: absolute;
  bottom: 12%; right: -36px;
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--ftb-radius-lg);
  box-shadow: var(--ftb-shadow-md);
  width: 240px;
  z-index: 3;
  animation: fh-float-soft 6s ease-in-out infinite reverse;
}
.fh-review-float__stars {
  display: flex;
  gap: 1px;
  color: var(--ftb-butter-deep);
  margin-bottom: 8px;
}
.fh-review-float__stars svg { width: 14px; height: 14px; fill: currentColor; }
.fh-review-float__quote {
  font-family: var(--ftb-serif);
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ftb-charcoal);
  line-height: 1.45;
  margin: 0 0 10px;
}
.fh-review-float__author {
  font-size: 0.74rem;
  color: var(--ftb-mid);
  font-weight: 500;
  font-family: var(--ftb-sans);
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. MARQUEE
═══════════════════════════════════════════════════════════════════════════ */
.fh-marquee {
  background: var(--ftb-forest);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.fh-marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: fh-marquee 32s linear infinite;
  width: max-content;
}
.fh-marquee:hover .fh-marquee__track { animation-play-state: paused; }
.fh-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ftb-serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.fh-marquee__sep {
  color: var(--ftb-peach);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. TRUST BAR
═══════════════════════════════════════════════════════════════════════════ */
.fh-trust {
  background: var(--ftb-warm-white);
  padding: 44px 0;
}
.fh-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fh-trust__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: var(--ftb-radius-lg);
  background: var(--ftb-cream);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}
.fh-trust__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ftb-shadow-md);
}
.fh-trust__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fh-trust__card--bio    .fh-trust__icon { background: var(--ftb-sage); color: var(--ftb-forest); }
.fh-trust__card--france .fh-trust__icon { background: #fff; color: var(--ftb-forest); border: 1px solid var(--ftb-border); }
.fh-trust__card--ship   .fh-trust__icon { background: var(--ftb-butter); color: var(--ftb-forest-deep); }
.fh-trust__card--return .fh-trust__icon { background: var(--ftb-peach-light); color: var(--ftb-peach-deep); }
.fh-trust__icon svg { width: 26px; height: 26px; }
.fh-trust__card:hover .fh-trust__icon { animation: fh-pulse-soft .6s ease; }
.fh-trust__label {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ftb-charcoal);
  margin-bottom: 2px;
  line-height: 1.3;
}
.fh-trust__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--ftb-mid);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. TROUVE TON SOIN (fusion concerns + routine)
═══════════════════════════════════════════════════════════════════════════ */
.fh-find {
  background: var(--ftb-cream);
  padding: 64px 0;
}
.fh-find__head { text-align: center; }

.fh-find__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 48px;
}
.fh-find__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--ftb-radius-pill);
  background: #fff;
  border: 1.5px solid var(--ftb-border);
  font-family: var(--ftb-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ftb-mid);
  cursor: pointer;
  transition: all .3s ease;
}
.fh-find__tab svg { width: 18px; height: 18px; }
.fh-find__tab:hover {
  border-color: var(--ftb-peach);
  color: var(--ftb-peach-deep);
}
.fh-find__tab[aria-selected="true"] {
  background: var(--ftb-forest);
  color: #fff;
  border-color: var(--ftb-forest);
}

.fh-find__panels { position: relative; }
.fh-find__panel {
  display: none;
  animation: fh-fade-up .5s ease;
}
.fh-find__panel[aria-hidden="false"] { display: block; }

.fh-find__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fh-find__tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, var(--ftb-warm-white) 100%);
  border-radius: var(--ftb-radius-lg);
  text-decoration: none !important;
  color: var(--ftb-charcoal);
  border: 1px solid var(--ftb-border);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .35s ease;
  position: relative;
  overflow: hidden;
}
/* Accent décoratif coin haut-droit (couleur = celle de l'icône) */
.fh-find__tile::after {
  content: "";
  position: absolute;
  top: -48px; right: -48px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ftb-peach-light) 0%, rgba(255,255,255,0) 68%);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .4s ease, transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.fh-find__tile:nth-child(2n)::after { background: radial-gradient(circle, var(--ftb-sage) 0%, rgba(255,255,255,0) 68%); }
.fh-find__tile:nth-child(3n)::after { background: radial-gradient(circle, var(--ftb-butter) 0%, rgba(255,255,255,0) 68%); }
.fh-find__tile > * { position: relative; z-index: 1; }
.fh-find__tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--ftb-shadow-md);
  border-color: var(--ftb-peach-light);
}
.fh-find__tile:hover::after { opacity: .85; transform: scale(1); }
.fh-find__tile-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--ftb-peach-light);
  color: var(--ftb-peach-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(232,155,108,0.10), var(--ftb-shadow-sm);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.fh-find__tile:nth-child(2n) .fh-find__tile-icon { background: var(--ftb-sage); color: var(--ftb-forest); box-shadow: 0 0 0 6px rgba(169,191,160,0.18), var(--ftb-shadow-sm); }
.fh-find__tile:nth-child(3n) .fh-find__tile-icon { background: var(--ftb-butter); color: var(--ftb-forest-deep); box-shadow: 0 0 0 6px rgba(233,200,101,0.16), var(--ftb-shadow-sm); }
.fh-find__tile:hover .fh-find__tile-icon { transform: rotate(-6deg) scale(1.08); }
.fh-find__tile-icon svg { width: 30px; height: 30px; }
.fh-find__tile-label {
  font-family: var(--ftb-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ftb-charcoal);
  letter-spacing: -0.01em;
}
.fh-find__tile-hint {
  font-size: 0.88rem;
  color: var(--ftb-mid);
  line-height: 1.5;
}
.fh-find__tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ftb-peach-deep);
  margin-top: auto;
  letter-spacing: 0.04em;
  transition: gap .3s ease;
}
.fh-find__tile:hover .fh-find__tile-arrow { gap: 12px; }
.fh-find__tile-arrow svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   5. NOS PRODUITS (coup de coeur + bestsellers + nouveautes)
═══════════════════════════════════════════════════════════════════════════ */
.fh-products {
  background: var(--ftb-warm-white);
  padding: 64px 0;
}

/* Coup de coeur en haut, large */
.fh-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: var(--ftb-radius-xl);
  padding: 56px;
  margin-bottom: 56px;
  box-shadow: var(--ftb-shadow-md);
  position: relative;
  overflow: hidden;
}
.fh-feature::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(248,229,168,0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fh-feature__visual {
  position: relative;
  z-index: 1;
}
.fh-feature__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--ftb-radius-lg);
  box-shadow: var(--ftb-shadow-md);
}
.fh-feature__tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ftb-peach);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--ftb-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--ftb-shadow-peach);
  z-index: 2;
}
.fh-feature__content { position: relative; z-index: 1; }
.fh-feature__title {
  font-family: var(--ftb-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ftb-charcoal);
  margin: 16px 0 12px;
}
.fh-feature__title em { font-style: italic; color: var(--ftb-peach-deep); font-weight: 500; }
.fh-feature__product-name {
  display: block;
  font-family: var(--ftb-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ftb-mid);
  margin-bottom: 8px;
}
.fh-feature__quote {
  background: var(--ftb-cream);
  border-left: 3px solid var(--ftb-peach);
  padding: 18px 22px;
  border-radius: 0 var(--ftb-radius) var(--ftb-radius) 0;
  margin: 24px 0 28px;
}
.fh-feature__quote-stars {
  display: flex;
  gap: 1px;
  color: var(--ftb-butter-deep);
  margin-bottom: 8px;
}
.fh-feature__quote-stars svg { width: 14px; height: 14px; fill: currentColor; }
.fh-feature__quote-text {
  font-family: var(--ftb-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ftb-charcoal);
  margin: 0 0 8px;
}
.fh-feature__quote-author {
  font-size: 0.78rem;
  color: var(--ftb-mid);
  font-weight: 500;
}
.fh-feature__price {
  font-family: var(--ftb-sans);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ftb-peach-deep);
  margin-bottom: 24px;
}
.fh-feature__price del { color: var(--ftb-soft); font-weight: 400; margin-right: 8px; }

/* H1 SEO section produits */
.fh-products__h1 {
  font-family: var(--ftb-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ftb-charcoal);
  margin: 0 0 40px;
}
.fh-products__h1 em { font-style: italic; color: var(--ftb-peach-deep); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════════
   STRIPS CAROUSEL — composant partagé (Bestsellers / Nouveautés / Promos)
═══════════════════════════════════════════════════════════════════════════ */

.fh-strip { margin-top: 56px; }

/* En-tête : titre gauche + nav droite */
.fh-strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.fh-strip__heading { flex: 1; min-width: 0; }
.fh-strip__heading .fh-eyebrow { margin-bottom: 8px; }
.fh-strip__heading .fh-title {
  font-family: var(--ftb-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ftb-charcoal);
  margin: 0;
}
.fh-strip__heading .fh-title em { font-style: italic; color: var(--ftb-peach-deep); font-weight: 500; }

/* Navigation : prev · barre · next */
.fh-cnav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.fh-cnav__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ftb-peach);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 16px rgba(232,155,108,0.45);
  transition: background .22s ease, transform .18s ease, box-shadow .22s ease;
}
.fh-cnav__btn svg { display: block; pointer-events: none; width: 20px; height: 20px; }
.fh-cnav__btn:hover:not(:disabled) {
  background: var(--ftb-peach-deep);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(232,155,108,0.55);
}
.fh-cnav__btn:active:not(:disabled) { transform: scale(0.95); }
.fh-cnav__btn:disabled { opacity: 0.3; cursor: default; }

/* Barre de progression */
.fh-cnav__track {
  width: 72px; height: 3px;
  background: rgba(58,84,73,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.fh-cnav__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ftb-peach), var(--ftb-peach-deep));
  border-radius: 2px;
  transition: width .35s ease;
}

/* Viewport — clipe le track */
.fh-strip__viewport { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────────────────
   CAROUSEL — stratégie split desktop / mobile
   Desktop (≥769px) : JS setProperty transform (mesure + translate)
   Mobile  (<769px) : CSS scroll natif (overflow-x:auto + flex + calc)
                      JS = uniquement les flèches (scrollBy)
   ───────────────────────────────────────────────────────────────────────── */

/* Viewport : clipe le track */
.fh-strip__viewport { overflow: hidden; }

/* ── Desktop : CSS base 3 colonnes (pré-JS, évite un flash 4 colonnes WC) ── */
@media (min-width: 769px) {
  .fh-strip .fh-strip__viewport ul.products,
  .fh-strip .fh-strip__viewport ul.products.columns-4,
  .fh-strip .fh-strip__viewport ul.products.columns-3 {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 8px 0 12px !important;
    list-style: none !important;
  }
  /* Largeur CSS = 3 items — le JS affine avec des px exacts */
  .fh-strip .fh-strip__viewport ul.products li.product {
    flex: 0 0 calc(33.333% - 11px) !important;
    width: calc(33.333% - 11px) !important;
    min-width: 0 !important;
    max-width: none !important;
    float: none !important;
    box-sizing: border-box !important;
  }
}

/* Items : styles visuels communs desktop + mobile */
.fh-strip .fh-strip__viewport ul.products li.product {
  background: #fff;
  border-radius: var(--ftb-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(58,84,73,0.07);
  transition: box-shadow .3s ease;
  display: flex !important;
  flex-direction: column !important;
}
.fh-strip .fh-strip__viewport ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--ftb-shadow-md);
}

/* Lien produit principal occupe tout l'espace dispo */
.fh-strip .fh-strip__viewport ul.products li.product > a.woocommerce-loop-product__link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

/* ── Padding interne : titre et contenu pas collés aux bords ── */
.fh-strip .fh-strip__viewport ul.products li.product .woocommerce-loop-product__title {
  padding: 10px 12px 2px !important;
  height: auto !important;
  min-height: calc(1.3em * 2) !important;
}
.fh-strip .fh-strip__viewport ul.products li.product .ftb-loop-rating {
  padding: 2px 12px 4px !important;
}
.fh-strip .fh-strip__viewport ul.products li.product .ftb-card-excerpt {
  padding: 4px 12px 12px !important;
}

/* ── Prix toujours en bas de card (flex-column + margin-top: auto) ─────────
   Le lien wrapper a déjà display:flex + flex-direction:column + flex:1.
   margin-top:auto pousse le prix en bas quelle que soit la hauteur du contenu.
   ────────────────────────────────────────────────────────────────────────── */
.fh-strip .fh-strip__viewport ul.products li.product .price {
  margin-top: auto !important;
}
.fh-strip .fh-strip__viewport ul.products li.product .price:not(:has(.ftb-lpc)) {
  min-height: 80px !important;
  padding: 10px 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  font-size: 1.25rem !important;
}
/* Prix promo : marges latérales uniquement (ne pas écraser margin-top:auto) */
.fh-strip .fh-strip__viewport ul.products li.product .price:has(.ftb-lpc) {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

/* Homepage cards : masquer catégories et bouton ATC */
.fh-strip .fh-strip__viewport ul.products li.product .product__categories,
.fh-strip .fh-strip__viewport ul.products li.product .button,
.fh-strip .fh-strip__viewport ul.products li.product .added_to_cart,
.fh-feature .product__categories {
  display: none !important;
}

/* ── MOBILE carousel — scroll natif + fallback CSS 2 items ─────────────────
   Le JS setProperty affine les largeurs en px.
   Le fallback CSS calc(50vw - 22px) garantit 2 items si le JS tarde.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fh-strip .fh-cnav { display: flex !important; }

  /* Viewport : scroll horizontal natif, barre masquée */
  .fh-strip__viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .fh-strip__viewport::-webkit-scrollbar { display: none; }

  /* Track : flex ligne, override WC grid */
  .fh-strip .fh-strip__viewport ul.products,
  .fh-strip .fh-strip__viewport ul.products.columns-4,
  .fh-strip .fh-strip__viewport ul.products.columns-3 {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 8px 0 12px !important;
    list-style: none !important;
  }

  /* Fallback CSS : exactement 2 items dans la vue.
     calc(50vw - 22px) = 50% viewport - padding fh-wrap (16px) - demi-gap (6px)
     Le JS remplace par une valeur px exacte basée sur viewport.offsetWidth. */
  .fh-strip .fh-strip__viewport ul.products li.product {
    flex: 0 0 calc(50vw - 22px) !important;
    width: calc(50vw - 22px) !important;
    scroll-snap-align: start;
    float: none !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
    padding-bottom: 14px !important;
  }

  /* ── Typographie & espacement cards sur mobile ── */
  .fh-strip .fh-strip__viewport ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.84rem !important;
    padding: 8px 10px 2px !important;
    min-height: 0 !important;
  }
  .fh-strip .fh-strip__viewport ul.products li.product .ftb-loop-rating {
    padding: 1px 10px 3px !important;
  }
  .fh-strip .fh-strip__viewport ul.products li.product .ftb-card-excerpt {
    font-size: 0.75rem !important;
    padding: 2px 10px 6px !important;
    -webkit-line-clamp: 2;
    height: calc(1.5em * 2) !important;
  }
  /* Prix normal */
  .fh-strip .fh-strip__viewport ul.products li.product .price:not(:has(.ftb-lpc)) {
    min-height: 80px !important;
    padding: 8px 10px !important;
    font-size: 1.1rem !important;
  }
  /* Prix promo : latéral seulement — margin-top:auto conservé */
  .fh-strip .fh-strip__viewport ul.products li.product .price:has(.ftb-lpc) {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .fh-strip .fh-strip__viewport ul.products li.product .ftb-lpc ins {
    font-size: 1.25rem !important;
  }
  /* "Tu économises" : empêcher le retour à la ligne */
  .fh-strip .fh-strip__viewport ul.products li.product .ftb-lpc__savings {
    white-space: nowrap !important;
    font-size: 0.62rem !important;
    padding: 3px 7px !important;
  }
}

/* ── Dots indicateurs mobile ── */
@media (max-width: 768px) {
  .fh-strip__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }
  .fh-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(58,84,73,0.18);
    transition: background .25s, transform .25s;
    flex-shrink: 0;
  }
  .fh-strip__dot.is-active {
    background: var(--ftb-peach);
    transform: scale(1.5);
  }
}

/* CTA centré sous le carousel */
.fh-strip__foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* Texte SEO sous strip (lien interne contextuel) */
.fh-strip__seo {
  margin: 20px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--ftb-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ftb-mid);
}
.fh-strip__seo a {
  color: var(--ftb-peach-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.fh-strip__seo a:hover { color: var(--ftb-forest); }

/* Liens internes dans subtitles SEO */
.fh-subtitle a,
.fh-curator__lead a {
  color: var(--ftb-peach-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.fh-subtitle a:hover,
.fh-curator__lead a:hover { color: var(--ftb-forest); }

/* ── Variante Promotions ── */
.fh-strip--promo {
  background: linear-gradient(135deg, rgba(232,155,108,0.07) 0%, rgba(251,229,214,0.12) 100%);
  border-radius: var(--ftb-radius-xl);
  padding: 40px;
}
.fh-strip--promo .fh-eyebrow { color: var(--ftb-peach-deep); }

/* ── Mobile : Tiny Slider gère le responsive (2 items) ─�� */
@media (max-width: 768px) {
  .fh-strip { margin-top: 36px; }
  .fh-strip--promo { padding: 24px 4px; border-radius: var(--ftb-radius-lg); }
  /* Eyebrow compact sur mobile pour les 3 strips (icône reste visible) */
  .fh-strip__heading .fh-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    gap: 6px;
    margin-bottom: 8px;
  }
  .fh-strip__heading .fh-eyebrow svg { width: 11px; height: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. CURATOR (Fanny + Wilson)
═══════════════════════════════════════════════════════════════════════════ */
.fh-curator {
  background: var(--ftb-cream);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.fh-curator__blob {
  position: absolute;
  top: 50%; right: -260px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(248,229,168,0.32) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.fh-curator__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}
.fh-curator__visual { position: relative; }
.fh-curator__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--ftb-radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(58,84,73,0.18);
}
.fh-curator__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fh-curator__sig {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: var(--ftb-radius);
  font-family: var(--ftb-serif);
  font-style: italic;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ftb-forest);
}
.fh-curator__sig small {
  display: block;
  font-family: var(--ftb-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ftb-mid);
  margin-top: 2px;
}
.fh-curator__sticker {
  position: absolute;
  top: -28px; right: -28px;
  width: 110px; height: 110px;
  background: var(--ftb-butter);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ftb-serif);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  color: var(--ftb-forest-deep);
  line-height: 1.15;
  box-shadow: 0 12px 24px rgba(233,200,101,0.4);
  animation: fh-float-soft 6s ease-in-out infinite;
  transform: rotate(-8deg);
  padding: 10px;
}
.fh-curator__sticker b {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  display: block;
  font-family: var(--ftb-serif);
}

.fh-curator__title {
  font-family: var(--ftb-serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ftb-charcoal);
  margin: 16px 0 20px;
}
.fh-curator__title em { font-style: italic; color: var(--ftb-peach-deep); font-weight: 500; }
.fh-curator__lead {
  font-size: 1.04rem;
  color: var(--ftb-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.fh-curator__lead strong { color: var(--ftb-charcoal); font-weight: 600; }
.fh-curator__pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
}
.fh-curator__pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--ftb-radius);
  transition: background .3s ease, transform .3s ease;
}
.fh-curator__pillar:hover {
  background: rgba(255,255,255,0.6);
  transform: translateX(4px);
}
.fh-curator__pillar-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ftb-sage);
  color: var(--ftb-forest);
}
.fh-curator__pillar:nth-child(2) .fh-curator__pillar-icon { background: var(--ftb-peach-light); color: var(--ftb-peach-deep); }
.fh-curator__pillar:nth-child(3) .fh-curator__pillar-icon { background: var(--ftb-butter); color: var(--ftb-forest-deep); }
.fh-curator__pillar-icon svg { width: 22px; height: 22px; }
.fh-curator__pillar-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ftb-charcoal);
  margin-bottom: 2px;
}
.fh-curator__pillar-text span {
  font-size: 0.92rem;
  color: var(--ftb-mid);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. NOS MARQUES
═══════════════════════════════════════════════════════════════════════════ */
.fh-brands {
  background: var(--ftb-warm-white);
  padding: 72px 0;
}
/* ── Carrousel marques ── */
.fh-brands__carousel {
  position: relative;
  margin-top: 24px;
}
.fh-brands__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fh-brands__viewport::-webkit-scrollbar { display: none; }
.fh-brands__track {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 8px 2px 14px;
  list-style: none;
}
.fh-brand-slide {
  flex: 0 0 calc((100% - 18px * 3) / 4); /* 4 visibles desktop */
  scroll-snap-align: start;
  display: flex;
}
/* Flèches navigation */
.fh-brands__nav {
  position: absolute;
  top: calc(50% - 13px);
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ftb-border);
  border-radius: 50%;
  background: var(--ftb-warm-white);
  color: var(--ftb-forest);
  cursor: pointer;
  box-shadow: var(--ftb-shadow-sm);
  transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}
.fh-brands__nav:hover { background: var(--ftb-peach); color: #fff; border-color: var(--ftb-peach); }
.fh-brands__nav svg { width: 20px; height: 20px; }
.fh-brands__nav--prev { left: -14px; }
.fh-brands__nav--next { right: -14px; }
.fh-brands__nav[hidden] { display: none; }
.fh-brands__nav[disabled] { opacity: .35; cursor: default; pointer-events: none; }
/* Dots */
.fh-brands__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.fh-brands__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ftb-sage-deep);
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.fh-brands__dot.is-active { opacity: 1; background: var(--ftb-peach); transform: scale(1.25); }

.fh-brand-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  background: var(--ftb-cream);
  border-radius: var(--ftb-radius-lg);
  text-decoration: none !important;
  color: var(--ftb-charcoal);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--ftb-border);
  position: relative;
  overflow: hidden;
}
/* Logo marque (contain, jamais déformé) */
.fh-brand-card__logo {
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.fh-brand-card__logo img {
  max-height: 46px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.fh-brand-card__mono {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--ftb-forest) 0%, var(--ftb-forest-deep) 100%);
  font-family: var(--ftb-serif);
  font-size: 1.4rem;
  color: var(--ftb-butter);
}
.fh-brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ftb-peach-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.fh-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ftb-shadow-md);
  border-color: var(--ftb-peach);
}
.fh-brand-card:hover::before { opacity: 1; }
.fh-brand-card__origin {
  position: relative;
  font-family: var(--ftb-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ftb-peach-deep);
}
.fh-brand-card__name {
  position: relative;
  font-family: var(--ftb-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ftb-forest);
  margin: 4px 0 6px;
}
.fh-brand-card__tagline {
  position: relative;
  font-size: 0.88rem;
  color: var(--ftb-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.fh-brand-card__count {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ftb-forest);
  font-weight: 500;
  margin-top: auto;
  letter-spacing: 0.04em;
}
.fh-brand-card__count svg {
  width: 8px; height: 8px;
  color: var(--ftb-peach);
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. CHARTE TRANSPARENCE
═══════════════════════════════════════════════════════════════════════════ */
.fh-charter {
  background: var(--ftb-cream);
  padding: 64px 0;
}
.fh-charter__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fh-charter__col-actifs h2 { margin-bottom: 12px; }
.fh-charter__lead {
  font-size: 1.04rem;
  color: var(--ftb-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.fh-charter__actifs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.fh-charter__actif {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border-radius: var(--ftb-radius);
  border: 1px solid var(--ftb-border);
}
.fh-charter__actif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ftb-sage);
  color: var(--ftb-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.fh-charter__actif-icon svg { width: 18px; height: 18px; }
.fh-charter__actif-name {
  font-family: var(--ftb-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ftb-charcoal);
}
.fh-charter__actif-desc {
  font-size: 0.85rem;
  color: var(--ftb-mid);
  line-height: 1.5;
}

/* Refused ingredients banner */
.fh-charter__col-refuse {
  background: var(--ftb-forest-deep);
  color: var(--ftb-cream);
  padding: 48px 40px;
  border-radius: var(--ftb-radius-xl);
  position: sticky;
  top: 100px;
}
.fh-charter__col-refuse h3 {
  font-family: var(--ftb-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 12px 0 18px;
}
.fh-charter__col-refuse h3 em { font-style: italic; color: var(--ftb-peach-light); font-weight: 500; }
.fh-charter__refuse-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fh-charter__refuse-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--ftb-radius);
  font-family: var(--ftb-sans);
}
.fh-charter__refuse-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,155,108,0.2);
  color: var(--ftb-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fh-charter__refuse-icon svg { width: 14px; height: 14px; }
.fh-charter__refuse-name {
  font-weight: 500;
  font-size: 0.94rem;
  color: #fff;
}
.fh-charter__refuse-reason {
  display: block;
  font-size: 0.78rem;
  color: rgba(250,246,239,0.7);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. AVIS VERIFIES
═══════════════════════════════════════════════════════════════════════════ */
.fh-reviews {
  background: var(--ftb-warm-white);
  padding: 72px 0;
}
.fh-reviews__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.fh-reviews__big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fh-reviews__big-rating {
  font-family: var(--ftb-serif);
  font-size: 4.2rem;
  font-weight: 500;
  color: var(--ftb-peach-deep);
  line-height: 1;
}
.fh-reviews__big-rating small {
  font-size: 1.6rem;
  color: var(--ftb-mid);
  font-weight: 400;
}
.fh-reviews__big-stars {
  display: flex;
  gap: 4px;
  color: var(--ftb-butter-deep);
}
.fh-reviews__big-stars svg { width: 22px; height: 22px; fill: currentColor; }
.fh-reviews__count {
  text-align: left;
}
.fh-reviews__count strong {
  display: block;
  font-family: var(--ftb-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ftb-charcoal);
  letter-spacing: -0.01em;
}
.fh-reviews__count span {
  font-size: 0.92rem;
  color: var(--ftb-mid);
}

/* Carousel */
.fh-reviews__carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -32px;
}
.fh-reviews__carousel::before,
.fh-reviews__carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.fh-reviews__carousel::before { left: 0; background: linear-gradient(90deg, var(--ftb-warm-white), transparent); }
.fh-reviews__carousel::after  { right: 0; background: linear-gradient(-90deg, var(--ftb-warm-white), transparent); }

.fh-reviews__track {
  display: flex;
  gap: 24px;
  animation: fh-marquee 80s linear infinite;
  width: max-content;
  padding: 16px 32px;
}
.fh-reviews__carousel:hover .fh-reviews__track { animation-play-state: paused; }
.fh-reviews__item {
  flex: 0 0 360px;
  background: #fff;
  border-radius: var(--ftb-radius-lg);
  padding: 28px;
  box-shadow: var(--ftb-shadow-sm);
  border: 1px solid var(--ftb-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fh-reviews__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ftb-shadow-md);
}
.fh-reviews__item-stars {
  display: flex;
  gap: 2px;
  color: var(--ftb-butter-deep);
}
.fh-reviews__item-stars svg { width: 16px; height: 16px; fill: currentColor; }
.fh-reviews__item-content {
  font-family: var(--ftb-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ftb-charcoal);
  line-height: 1.55;
  margin: 0;
}
.fh-reviews__item-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--ftb-border);
  padding-top: 14px;
  margin-top: auto;
}
.fh-reviews__item-author {
  font-family: var(--ftb-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ftb-charcoal);
}
.fh-reviews__item-date {
  font-size: 0.78rem;
  color: var(--ftb-soft);
  font-weight: 400;
  margin-left: 6px;
}
.fh-reviews__item-product {
  font-size: 0.82rem;
  color: var(--ftb-peach-deep);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.fh-reviews__item-product:hover { text-decoration: underline; }

.fh-reviews__badge {
  margin: 36px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ftb-sage);
  color: var(--ftb-forest);
  border-radius: var(--ftb-radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.fh-reviews__badge svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
  10. FAQ
═══════════════════════════════════════════════════════════════════════════ */
.fh-faq {
  background: var(--ftb-cream);
  padding: 64px 0;
}
.fh-faq__list {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fh-faq__item {
  background: #fff;
  border-radius: var(--ftb-radius);
  border: 1px solid var(--ftb-border);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.fh-faq__item[open] {
  box-shadow: var(--ftb-shadow-sm);
  border-color: var(--ftb-peach-light);
}
.fh-faq__q {
  padding: 22px 60px 22px 26px;
  font-family: var(--ftb-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ftb-charcoal);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .3s ease;
}
.fh-faq__q::-webkit-details-marker { display: none; }
.fh-faq__q::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--ftb-peach-deep);
  transition: transform .3s ease;
  font-weight: 300;
}
.fh-faq__item[open] .fh-faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.fh-faq__a {
  padding: 0 26px 22px;
  font-size: 0.94rem;
  color: var(--ftb-mid);
  line-height: 1.7;
  animation: fh-fade-up .35s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
  11. NEWSLETTER + RESEAUX SOCIAUX
═══════════════════════════════════════════════════════════════════════════ */
.fh-news {
  background: linear-gradient(135deg, var(--ftb-forest-deep) 0%, var(--ftb-forest) 100%);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.fh-news::before {
  content: '';
  position: absolute;
  top: -160px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,155,108,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fh-news::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(248,229,168,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fh-news__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fh-news__title {
  font-family: var(--ftb-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 16px;
}
.fh-news__title em { font-style: italic; color: var(--ftb-peach-light); font-weight: 500; }
.fh-news__lead {
  font-size: 1.02rem;
  color: rgba(250,246,239,0.84);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.fh-news__perks {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fh-news__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: rgba(250,246,239,0.92);
}
.fh-news__perk-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,155,108,0.2);
  color: var(--ftb-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fh-news__perk-icon svg { width: 14px; height: 14px; }

.fh-news__form-card {
  background: #fff;
  color: var(--ftb-charcoal);
  padding: 36px;
  border-radius: var(--ftb-radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.fh-news__form-card h3 {
  font-family: var(--ftb-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ftb-charcoal);
  margin: 0 0 16px;
}
.fh-news__form-card .ftb-news-form,
.fh-news__form-card form {
  margin: 0;
}

.fh-news__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.fh-news__social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.fh-news__social-btn:hover {
  background: var(--ftb-peach);
  transform: translateY(-2px);
}
.fh-news__social-btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
  12. RESPONSIVE & A11Y
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .fh-products .products { grid-template-columns: repeat(3, 1fr) !important; }
  .fh-brand-slide { flex: 0 0 calc((100% - 18px * 2) / 3); } /* 3 visibles */
}
@media (max-width: 960px) {
  .fh-section { padding: 40px 0; }
  .fh-trust { padding: 36px 0; }
  .fh-find, .fh-products, .fh-charter, .fh-faq, .fh-news { padding: 48px 0; }
  .fh-hero { padding: 48px 0 32px; }
  .fh-hero__grid,
  .fh-curator__grid,
  .fh-feature,
  .fh-charter__split,
  .fh-news__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fh-curator__visual,
  .fh-hero__visual { max-width: 480px; margin: 0 auto; }
  .fh-feature { padding: 36px; }
  .fh-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .fh-find__grid { grid-template-columns: repeat(2, 1fr); }
  .fh-products .products { grid-template-columns: repeat(2, 1fr) !important; }
  .fh-brand-slide { flex: 0 0 calc((100% - 18px) / 2); } /* 2 visibles */
  .fh-brands__nav { display: none; } /* tactile : swipe + dots */
  .fh-brands__nav--prev { left: 0; }
  .fh-brands__nav--next { right: 0; }
  .fh-charter__col-refuse { position: static; padding: 36px 28px; }
  .fh-charter__actifs { grid-template-columns: 1fr; }
  .fh-reviews__hero { gap: 24px; }
  .fh-reviews__big-rating { font-size: 3.2rem; }
  .fh-reviews__count { text-align: center; }
  .fh-reviews__item { flex: 0 0 300px; padding: 22px; }

  /* Hide certains floating cards sur mobile pour aérer */
  .fh-review-float { right: -20px; bottom: 4%; width: 200px; padding: 14px 16px; }
  .fh-review-float__quote { font-size: 0.84rem; }
  .fh-badge-float { padding: 10px 14px; right: -15px; top: 18px; }
  .fh-badge-float__icon { width: 36px; height: 36px; }
  .fh-badge-float__icon svg { width: 18px; height: 18px; }
  .fh-badge-float__text strong { font-size: 0.78rem; }
  .fh-badge-float__text span { font-size: 0.68rem; }
  .fh-sticker-rotate { width: 100px; height: 100px; bottom: -16px; left: -10px; }
  .fh-sticker-rotate__center { width: 44px; height: 44px; }
}
@media (max-width: 640px) {
  .fh-wrap { padding: 0 16px; }
  .fh-section { padding: 32px 0; }
  .fh-trust { padding: 24px 0; }
  .fh-find, .fh-products, .fh-charter, .fh-faq, .fh-news { padding: 36px 0; }
  .fh-hero__title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .fh-hero__lead { font-size: 1rem; }
  /* Eyebrow hero : compact + wrap autorisé pour éviter le débordement mobile */
  .fh-hero .fh-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    padding: 7px 14px;
    gap: 6px;
    white-space: normal;
    max-width: 100%;
    text-align: left;
  }
  .fh-hero .fh-eyebrow svg { width: 11px; height: 11px; }
  /* Trust bar : 2 colonnes × 2 lignes sur mobile */
  .fh-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fh-trust__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    gap: 8px;
  }
  .fh-trust__icon { width: 44px; height: 44px; }
  .fh-trust__icon svg { width: 22px; height: 22px; }
  .fh-trust__label { font-size: 0.88rem; }
  .fh-trust__desc  { font-size: 0.76rem; }

  /* Trouve ton soin : 2 colonnes × 2 lignes sur mobile */
  .fh-find__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .fh-find__tile { padding: 18px 14px; gap: 10px; }
  .fh-find__tile-icon { width: 44px; height: 44px; }
  .fh-find__tile-icon svg { width: 22px; height: 22px; }
  .fh-find__tile-label { font-size: 1.1rem; }
  .fh-find__tile-hint { font-size: 0.82rem; }
  .fh-find__tile-arrow { font-size: 0.8rem; }
  /* Tabs horizontaux scrollables */
  .fh-find__tabs { gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; justify-content: flex-start; }
  .fh-find__tab { padding: 10px 16px; font-size: 0.84rem; flex-shrink: 0; }

  .fh-products .products { grid-template-columns: 1fr !important; }
  /* Marques : 2 cartes côte à côte sur mobile */
  .fh-brands__track { gap: 12px; }
  .fh-brand-slide { flex: 0 0 calc((100% - 12px) / 2); }
  .fh-brand-card { padding: 18px 14px; gap: 6px; }
  .fh-brand-card__logo { height: 36px; margin-bottom: 4px; }
  .fh-brand-card__logo img { max-height: 36px; max-width: 100%; }
  .fh-brand-card__mono { width: 38px; height: 38px; font-size: 1.2rem; }
  .fh-brand-card__name { font-size: 1.12rem; margin: 2px 0 4px; }
  .fh-brand-card__tagline { font-size: 0.82rem; }
  .fh-brand-card__count { font-size: 0.74rem; }
  .fh-feature { padding: 24px; border-radius: var(--ftb-radius-lg); }
  .fh-feature__title { font-size: 1.6rem; }
  .fh-news__form-card { padding: 24px; }
  .fh-marquee__item { font-size: 0.96rem; }
  .fh-reviews__item { flex: 0 0 280px; }
  .fh-review-float, .fh-badge-float { display: none; }
  .fh-curator__sticker { width: 90px; height: 90px; top: -16px; right: -16px; }
  .fh-curator__sticker b { font-size: 1.1rem; }

  /* Charter actifs : centrer sur mobile */
  .fh-charter__actif { align-items: center; text-align: center; }
  .fh-charter__actif-icon { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .fh *,
  .fh *::before,
  .fh *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fh-marquee__track,
  .fh-reviews__track { animation: none; }
}
