/* ============================================
   SOFIBIO — Refonte 2026
   ============================================ */

:root {
  --green: #3D8B22;
  --green-dark: #2E6E18;
  --orange: #C44A1E;
  --orange-light: #D4622A;
  --red: #C03A2B;
  --red-dark: #8B2A2A;
  --teal: #00897B;
  --blue: #1A4178;

  --bg-dark: #11151A;
  --bg-dark-2: #161A20;
  --bg-light: #E8E2D7;
  --bg-cream: #EFE9DD;
  --bg-white: #FFFFFF;

  --text-dark: #14181C;
  --text-mid: #4A4A4A;
  --text-muted: #777;
  --text-on-dark: #F4F2EC;
  --text-on-dark-muted: #B8B4AB;

  --border-dark: rgba(255,255,255,0.10);
  --border-light: rgba(0,0,0,0.08);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1240px;
}

/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.t-green { color: var(--green); }
.t-orange { color: var(--orange-light); }

/* ============ Brand / Logo ============ */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: var(--text-on-dark);
}
.brand__top {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 2px;
}
.brand__name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand__name-bio {
  font-weight: 300;
}
.brand__bottom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.85;
}
.brand__flag {
  display: inline-block;
  width: 14px;
  height: 9px;
  background: linear-gradient(to right, #0055A4 33.33%, #fff 33.33%, #fff 66.66%, #EF4135 66.66%);
  border-radius: 1px;
}

/* Footer brand color override */
.brand--footer, .brand--footer * { color: var(--text-dark); }
.brand--footer .brand__bottom { opacity: 1; }

/* ============ Header ============ */
.site-header {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 0;
  color: var(--text-on-dark);
  transition: opacity .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 3px;
  background: transparent;
  border-radius: 2px;
  transition: background .2s;
}
.nav-link[data-accent="green"]::after { background: var(--green); }
.nav-link[data-accent="blue"]::after { background: var(--blue); }
.nav-link[data-accent="orange"]::after { background: var(--orange-light); }
.nav-link[data-accent="red"]::after { background: var(--red); }
.nav-link[data-accent="teal"]::after { background: var(--teal); }
.nav-link[data-accent="neutral"]::after { background: #FFFFFF; }
.nav-link--home { display: inline-flex; align-items: center; gap: 6px; }
.nav-link--home svg { opacity: 0.85; }
.nav-link:not(.is-active)::after { opacity: 0; }
.nav-link:hover::after { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: background .2s;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.burger { display: none; flex-direction: column; gap: 4px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: currentColor; border-radius: 1px; }

/* ============ Hero ============ */
.hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero__eyebrow .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green);
  opacity: 0.6;
}
.hero__title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text-on-dark);
}
.hero__title span { font-weight: 500; }
.hero__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  margin: 0 0 32px;
  font-weight: 300;
}

.hero__visual {
  position: relative;
  min-height: 460px;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-family.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.hero__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}
.hero__badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 30s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.hero__badge-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 2;
}
.hero__badge-label { font-size: 9px; letter-spacing: 2px; font-weight: 600; }
.hero__badge-year { font-size: 22px; font-weight: 700; letter-spacing: 1px; }

.hero__trustpilot {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(20,24,28,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 200px;
}
.tp__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.tp__stars { display: flex; gap: 3px; margin-bottom: 8px; }
.tp__star {
  display: inline-block;
  width: 18px; height: 18px;
  background: #00B67A;
  position: relative;
}
.tp__star::after {
  content: '★';
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.tp__score { font-size: 12px; color: var(--text-on-dark); margin-bottom: 2px; }
.tp__score strong { color: #00B67A; font-weight: 600; }
.tp__count { font-size: 11px; color: var(--text-on-dark-muted); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .15s, background .2s;
}
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn--sm { padding: 11px 20px; font-size: 11px; }

/* ============ Trust bar ============ */
.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  position: relative;
  z-index: 2;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark);
}
.trust-item svg { flex-shrink: 0; opacity: 0.95; color: var(--text-on-dark); }
.trust-item div { display: flex; flex-direction: column; line-height: 1.25; }
.trust-item strong { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.trust-item span { font-size: 12px; color: var(--text-on-dark-muted); letter-spacing: 0.5px; }

/* ============ Section title ============ */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 36px;
  text-transform: uppercase;
}
.section-title .t-green {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
}

/* ============ JE VEUX (goals) ============ */
.goals {
  background: var(--bg-cream);
  padding: 64px 0 40px;
}
.goals__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.goal-card {
  background: var(--bg, #2a2a2a);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.goal-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
.goal-card__icon {
  margin-bottom: auto;
  opacity: 0.95;
}
.goal-card__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 24px;
}
.goal-card__arrow {
  margin-top: 14px;
  opacity: 0.9;
}

/* Quiz CTA */
.quiz-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.quiz-cta__btn {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.quiz-cta__btn:hover { background: rgba(0,0,0,0.04); }
.quiz-cta__tags {
  display: inline-flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}
.quiz-cta__tags span { color: var(--text-mid); }
.quiz-cta__tags span::first-letter { color: var(--green); }

/* ============ NOS GAMMES ============ */
.gammes {
  background: var(--bg-cream);
  padding: 32px 0 64px;
}
.gammes__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gamme-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  color: #fff;
  background: #d8d2c5;
  transition: transform .2s;
}
.gamme-card:hover { transform: translateY(-3px); }
.gamme-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.gamme-card__media::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
}
.gamme-card__media--expert  { background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=600&q=80'); }
.gamme-card__media--jeveux  { background-image: url('https://images.unsplash.com/photo-1556228720-195a672e8a03?w=600&q=80'); }
.gamme-card__media--kids    { background-image: url('https://images.unsplash.com/photo-1559454403-b8fb88521f9d?w=600&q=80'); }
.gamme-card__media--sport   { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=600&q=80'); }
.gamme-card__media--pet     { background-image: url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=600&q=80'); }
.gamme-card__media--box     { background-image: url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=600&q=80'); background-color: #2a2a2a; }

.gamme-card__label {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.gamme-card__label--orange { color: #F58A50; }
.gamme-card__label--red { color: #F45A4E; }

.round-arrow {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: transform .2s;
}
.round-arrow:hover { transform: translateX(-50%) scale(1.08); }

/* ============ LA BOX ============ */
.box-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 60px 0;
  margin: 0 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
}
.box-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.box-section__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-on-dark-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.box-section__title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 16px;
}
.box-section__lead {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.box-section__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.box-section__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-on-dark);
}
.check {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

/* Box mockup */
.box-section__visual { position: relative; display: flex; justify-content: center; }
.box-mockup {
  background: #b89968;
  border-radius: 4px;
  padding: 14px 18px 0;
  width: 280px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transform: perspective(800px) rotateX(8deg);
}
.box-mockup__lid {
  background: #c4a274;
  padding: 18px 16px 14px;
  border-radius: 3px 3px 0 0;
  text-align: center;
  color: #2A1A0A;
  margin-bottom: 8px;
}
.box-mockup__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.box-mockup__brand .brand__top--small { font-size: 7px; letter-spacing: 2px; color: #2A1A0A; }
.box-mockup__brand .brand__name--small { font-size: 18px; color: #2A1A0A; }
.box-mockup__brand .brand__bottom--small { font-size: 6px; letter-spacing: 1.5px; color: #2A1A0A; opacity: 0.85; }
.box-mockup__label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 8px 0;
  color: #2A1A0A;
}
.box-mockup__icons {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-size: 6px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #2A1A0A;
  border-top: 1px dotted rgba(0,0,0,0.2);
  padding-top: 6px;
}
.box-mockup__icons span {
  white-space: nowrap;
}
.box-mockup__bottles {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px 0 0;
}
.box-bottle {
  width: 38px;
  height: 100px;
  background: var(--bottle, #c4a274);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  box-shadow: inset -4px 0 8px rgba(0,0,0,0.18), 0 4px 6px rgba(0,0,0,0.2);
}
.box-bottle::before {
  content: '';
  position: absolute;
  top: -6px; left: 8px; right: 8px;
  height: 8px;
  background: #2a1a0a;
  border-radius: 2px 2px 0 0;
}
.box-bottle::after {
  content: '';
  position: absolute;
  top: 30px; left: 6px; right: 6px;
  height: 35px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
}

.box-economy-badge {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.bem__top { font-size: 8px; letter-spacing: 1px; }
.bem__mid { font-size: 8px; letter-spacing: 1px; margin-bottom: 2px; }
.bem__big { font-size: 22px; letter-spacing: -0.5px; }

/* Box app side */
.box-section__app {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 24px;
  align-items: center;
}
.box-section__app-copy h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.box-app__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.box-app__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-on-dark);
}
.store-badges { display: flex; gap: 8px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 9px;
}
.store-badge svg { flex-shrink: 0; }
.store-badge small { display: block; font-size: 7px; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.7; }
.store-badge strong { display: block; font-size: 11px; font-weight: 700; }

/* Phone mockup */
.phone-mockup {
  background: #1a1d22;
  border-radius: 24px;
  padding: 8px;
  border: 2px solid #2a2d32;
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.phone-mockup__screen {
  background: #f7f5ef;
  border-radius: 18px;
  padding: 14px 12px 8px;
  color: #111;
  font-size: 9px;
}
.phone-mockup__bar { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; }
.phone-mockup__icon { color: var(--green); }
.phone-mockup__sub { font-size: 7px; color: #555; margin-bottom: 12px; }
.phone-mockup__score {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ps__label { font-size: 6px; letter-spacing: 0.8px; color: #888; font-weight: 700; }
.ps__value { font-size: 18px; font-weight: 800; }
.ps__value span { font-size: 9px; color: #888; font-weight: 600; }
.ps__delta {
  background: var(--green);
  color: #fff;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
}
.phone-mockup__routine {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pr__label { font-size: 8px; font-weight: 700; letter-spacing: 0.5px; }
.pr__label small { font-weight: 500; color: #888; font-size: 7px; letter-spacing: 0.3px; }
.pr__arrow { font-size: 18px; color: #888; }

.phone-mockup__progress {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}
.pp__label { font-size: 6px; letter-spacing: 0.8px; color: #888; font-weight: 700; margin-bottom: 6px; }
.pp__row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pp__row span { font-size: 7px; width: 60px; color: #444; }
.pp__bar { flex: 1; height: 4px; background: #efece4; border-radius: 2px; overflow: hidden; }
.pp__bar i { display: block; height: 100%; background: var(--green); }

.phone-mockup__tabs {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  font-size: 7px;
  font-weight: 600;
  color: #888;
}
.ptab.is-active { color: var(--green); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-cream);
  padding: 56px 0;
}
.testimonials__wrapper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 12px;
  align-items: center;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg, #ccc);
  position: relative;
  overflow: hidden;
}
.testimonial-card__avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.4) 0%, transparent 50%);
}
.testimonial-card__name { font-size: 13px; font-weight: 700; }
.testimonial-card__cat { font-size: 11px; color: var(--text-muted); }
.testimonial-card__quote {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0 0 12px;
  min-height: 60px;
}
.testimonial-card__stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
}
.carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .2s;
}
.carousel-arrow:hover { transform: scale(1.06); }

/* ============ SERVICES ============ */
.services {
  background: var(--bg-cream);
  padding: 28px 0 56px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.services__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
}
.service-item svg { color: var(--text-mid); flex-shrink: 0; }
.service-item div { display: flex; flex-direction: column; }
.service-item strong { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.service-item span { font-size: 12px; color: var(--text-mid); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-cream);
  padding: 32px 0 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr auto;
  gap: 32px;
  align-items: flex-start;
}
.footer-brand .brand { color: var(--text-dark); margin-bottom: 18px; }
.footer-brand .brand__top, .footer-brand .brand__name, .footer-brand .brand__bottom { color: var(--text-dark); }
.socials {
  display: flex;
  gap: 14px;
  color: var(--text-dark);
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s;
}
.socials a:hover { background: rgba(0,0,0,0.06); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color .2s;
}
.footer-col li a:hover { color: var(--green); }

.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tp__label--dark { color: var(--text-dark); }
.tp__score--dark { color: var(--text-dark); }
.tp__count--dark { color: var(--text-muted); }

.footer-badge {
  position: relative;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}
.footer-badge svg { position: absolute; inset: 0; animation: spin 30s linear infinite; }
.footer-badge__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
  z-index: 2;
}
.footer-badge__inner span { font-size: 8px; letter-spacing: 2px; font-weight: 600; }
.footer-badge__inner strong { font-size: 18px; font-weight: 700; letter-spacing: 1px; }

.footer-bottom {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
}
.footer-bottom small { font-size: 11px; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,24,28,0.55);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 14px;
  padding: 28px 36px 24px;
  width: 100%;
  max-width: 460px;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  transition: background .2s;
}
.modal__close:hover { background: rgba(0,0,0,0.06); }
.modal__icon {
  width: 56px;
  height: 56px;
  background: #f1efe8;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}
.modal__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.modal__lead {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0 0 22px;
  line-height: 1.5;
}
.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.modal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: border-color .2s, background .2s;
}
.modal-option:hover { border-color: var(--green); background: rgba(124,179,66,0.05); }
.modal__skip {
  display: block;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 12px;
  text-decoration: underline;
}
.modal__skip:hover { color: var(--text-dark); }

/* ============================================
   EXPERT LANDING PAGE
   ============================================ */

.page-expert { background: #FAFAF7; }

/* Button dark variant */
.btn--dark {
  background: var(--text-dark);
  color: #fff;
}
.btn--dark:hover { background: #000; transform: translateY(-1px); }

.t-blue { color: var(--blue); }

/* ============ Breadcrumb ============ */
.breadcrumb {
  background: #FAFAF7;
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--text-mid);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a {
  color: var(--text-mid);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--text-dark); }
.breadcrumb__sep { color: var(--text-muted); }
.breadcrumb__current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============ Hero Expert (carousel) ============ */
.hero-expert {
  position: relative;
  background: linear-gradient(180deg, #F5F7FA 0%, #E8ECF1 100%);
  padding: 20px 0 56px;
  overflow: hidden;
}
.hero-expert__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(40% 40% at 80% 30%, rgba(220,232,245,0.7) 0%, transparent 70%),
    radial-gradient(35% 30% at 60% 100%, rgba(180,200,230,0.4) 0%, transparent 70%);
}
/* Subtle lab silhouettes in background */
.hero-expert__bg::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 4%;
  width: 12%;
  height: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' fill='none' stroke='%23A8B5C5' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.45'%3E%3Cpath d='M35 10 L35 60 L20 110 Q20 140 50 140 Q80 140 80 110 L65 60 L65 10 Z M30 10 L70 10'/%3E%3Cpath d='M25 100 Q35 95 50 100 Q65 105 75 100'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: blur(0.8px);
  opacity: 0.7;
}
.hero-expert__bg::after {
  content: '';
  position: absolute;
  bottom: 12%;
  right: 10%;
  width: 8%;
  height: 35%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 150' fill='none' stroke='%23A8B5C5' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'%3E%3Cpath d='M30 5 L30 50 L15 100 Q15 130 40 130 Q65 130 65 100 L50 50 L50 5 Z'/%3E%3Cpath d='M40 70 Q40 60 35 50 M40 70 Q40 60 45 50 M40 80 Q40 70 35 60'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: blur(1px);
  opacity: 0.5;
}
.hero-expert__track {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-expert__slide {
  display: none;
}
.hero-expert__slide.is-active {
  display: block;
  animation: slideIn .4s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-expert__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  min-height: 520px;
}
.hero-expert__copy { padding-right: 20px; }
.hero-expert__eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
}
.hero-expert__title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.02;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-expert__lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0 0 28px;
  max-width: 380px;
}

.hero-expert__visual {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  position: relative;
}

/* Single image variant (for hero with composed bottle visual) */
.hero-expert__visual--image {
  justify-content: flex-end;
  padding: 0;
}
.hero-expert__hero-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(20,30,50,0.16));
}
.hero-expert__visual--image::before, .hero-expert__visual--image::after { display: none; }
.hero-expert--static .hero-expert__visual--image .product-photo::before,
.hero-expert--static .hero-expert__visual--image .product-photo::after { display: none; }

/* Carousel arrows */
.hero-expert__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: transform .2s, background .2s;
}
.hero-expert__arrow:hover { background: #000; transform: translateY(-50%) scale(1.05); }
.hero-expert__arrow--prev { left: 20px; }
.hero-expert__arrow--next { right: 20px; }

/* Dots */
.hero-expert__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd2d8;
  transition: background .2s, width .2s;
}
.hero-dot.is-active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ============ Product photo (real images) ============ */
.product-photo {
  margin: 0;
  position: relative;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  position: relative;
  z-index: 2;
}
.product-photo:hover img { transform: translateY(-4px); }
.product-photo__caption {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Blue glowing ring podium under each bottle (hero EXPERT style) */
.product-photo {
  padding-bottom: 28px;
}
.product-photo::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 26px;
  border: 2px solid #2196F3;
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(33,150,243,0.75),
    0 0 38px rgba(33,150,243,0.4),
    inset 0 0 14px rgba(33,150,243,0.45);
  z-index: 3;
  pointer-events: none;
}
.product-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(33,150,243,0.55) 0%, transparent 65%);
  filter: blur(14px);
  z-index: 1;
  pointer-events: none;
}

/* ============ Product bottle (CSS mockup — fallback) ============ */
.product-bottle {
  width: 220px;
  position: relative;
  filter: drop-shadow(0 18px 28px rgba(20,30,50,0.18));
}
.product-bottle__cap {
  width: 130px;
  height: 36px;
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
  border-radius: 8px 8px 4px 4px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.product-bottle__cap::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #1a1a1a;
  border-radius: 0 0 2px 2px;
}
.product-bottle__body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
  border-radius: 14px 14px 18px 18px;
  padding: 18px 16px 14px;
  margin-top: -2px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.04);
  height: 320px;
  display: flex;
  flex-direction: column;
}

/* Bottle brand */
.pb__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}
.pb__brand-top {
  font-size: 6px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #2a2a2a;
}
.pb__brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  line-height: 1;
  margin: 2px 0 1px;
}
.pb__brand-name sup { font-size: 7px; font-weight: 600; vertical-align: super; }
.pb__brand-bio { font-weight: 300; }
.pb__brand-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-top: 2px;
}
.pb__brand-bar {
  display: flex;
  gap: 0;
  margin-top: 5px;
  width: 36px;
  height: 3px;
  border-radius: 1px;
  overflow: hidden;
}
.pb__brand-bar i { flex: 1; }
.pb__brand-bar i:nth-child(1) { background: #0055A4; }
.pb__brand-bar i:nth-child(2) { background: #f5f5f5; }
.pb__brand-bar i:nth-child(3) { background: #EF4135; }

/* Banner */
.pb__banner {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 8px;
  margin: 0 -16px 12px;
  position: relative;
}
.pb__banner::before, .pb__banner::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 0; height: 0;
  border: 4px solid transparent;
}
.pb__banner::before { left: 0; border-top-color: #0E2F5C; border-left-color: #0E2F5C; }
.pb__banner::after { right: 0; border-top-color: #0E2F5C; border-right-color: #0E2F5C; }
.pb__banner--green { background: #5E8E2E; }
.pb__banner--green::before { border-top-color: #466C22; border-left-color: #466C22; }
.pb__banner--green::after { border-top-color: #466C22; border-right-color: #466C22; }
.pb__banner--purple { background: #3D2E5C; }
.pb__banner--purple::before { border-top-color: #2A1E40; border-left-color: #2A1E40; }
.pb__banner--purple::after { border-top-color: #2A1E40; border-right-color: #2A1E40; }

/* Product name */
.pb__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 2px;
  line-height: 1;
}
.pb__sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.pb__desc {
  font-size: 8px;
  line-height: 1.4;
  color: var(--text-mid);
  text-align: center;
  margin: 0 0 10px;
  flex: 1;
}

/* Icons row */
.pb__icons {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 8px;
}
.pb__icon { display: flex; flex-direction: column; align-items: center; }
.pb__icon strong { font-size: 16px; font-weight: 900; color: #1a1a1a; line-height: 1; }
.pb__icon span { font-size: 7px; font-weight: 700; letter-spacing: 1.2px; color: var(--text-mid); margin-top: 2px; }
.pb__icon-center { color: var(--blue); }

.pb__footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px;
  margin: 0 -16px -14px;
  border-radius: 0 0 16px 16px;
}

/* Halo glow under bottle */
.product-bottle__halo {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(60,120,200,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.product-bottle__halo--green { background: radial-gradient(ellipse at center, rgba(94,142,46,0.35) 0%, transparent 70%); }
.product-bottle__halo--purple { background: radial-gradient(ellipse at center, rgba(120,80,180,0.35) 0%, transparent 70%); }

/* ============ Trust bar (floating card v2) ============ */
.trust-card-wrap {
  background: #FAFAF7;
  padding: 0 0 32px;
  margin-top: -8px;
  position: relative;
  z-index: 3;
}
.trust-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  box-shadow: 0 14px 40px rgba(20,30,50,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.trust-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}
.trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(59,130,246,0.1);
  color: #3B82F6;
}
.trust-card__item[data-color="green"] .trust-card__icon { background: rgba(34,197,94,0.12); color: #16A34A; }
.trust-card__item[data-color="orange"] .trust-card__icon { background: rgba(245,158,11,0.12); color: #D97706; }
.trust-card__item[data-color="purple"] .trust-card__icon { background: rgba(167,139,250,0.15); color: #7C3AED; }
.trust-card__item div { display: flex; flex-direction: column; line-height: 1.2; }
.trust-card__item strong { font-size: 12px; font-weight: 700; letter-spacing: 0.6px; }
.trust-card__item span { font-size: 12px; color: var(--text-mid); letter-spacing: 0.4px; }

/* Trust bar light variant — kept for backwards compat (still used elsewhere) */
.trust-bar--light {
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-bar--light .trust-item { color: var(--text-dark); }
.trust-bar--light .trust-item svg { color: var(--text-dark); }
.trust-bar--light .trust-item strong { color: var(--text-dark); }
.trust-bar--light .trust-item span { color: var(--text-mid); }

/* ============ NOTRE GAMME EXPERT (dark cards carousel) ============ */
.notre-gamme {
  background: #FAFAF7;
  padding: 56px 0 64px;
}
.notre-gamme__head {
  text-align: center;
  margin-bottom: 36px;
}
.notre-gamme__eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.notre-gamme__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.notre-gamme__lead {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

.ng-carousel {
  position: relative;
  margin: 0 -8px;
}
.ng-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: transform .2s, background .2s;
}
.ng-arrow:hover { background: #000; transform: translateY(-50%) scale(1.06); }
.ng-arrow--prev { left: -8px; }
.ng-arrow--next { right: -8px; }

.ng-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 12px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ng-track::-webkit-scrollbar { display: none; }

.ng-card {
  flex: 0 0 calc((100% - 5 * 16px) / 6);
  min-width: 170px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #1a1d22 0%, #0f1116 100%);
  color: #fff;
  border-radius: 16px;
  padding: 22px 18px 0;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.ng-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.ng-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--accent, #fff);
  display: grid;
  place-items: center;
  color: var(--accent, #fff);
  margin-bottom: 16px;
}
.ng-card__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ng-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.ng-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: #fff;
  color: var(--text-dark);
  padding: 9px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.ng-card__bottle {
  position: relative;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, #fff 0%, #e6e8eb 100%);
  margin: auto -18px 0;
  border-radius: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ng-card__bottle::after {
  content: '';
  width: 60px;
  height: 80px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f3 100%);
  border-radius: 8px 8px 14px 14px;
  position: relative;
  top: -8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
}
.ng-card__bottle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 4px 4px 2px 2px;
  z-index: 1;
}
.ng-card__bottle--all { background: transparent; height: 0; }
.ng-card__bottle--all::before, .ng-card__bottle--all::after { display: none; }

/* Real product photo variant */
.ng-card__bottle--photo {
  background: linear-gradient(180deg, #f7f7f5 0%, #e6e8eb 100%);
  height: 110px;
  overflow: visible;
  position: relative;
}
.ng-card__bottle--photo::before, .ng-card__bottle--photo::after { display: none; }
.ng-card__bottle--photo img {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 130px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  transition: transform .3s;
}
.ng-card:hover .ng-card__bottle--photo img { transform: translateX(-50%) translateY(-3px); }

.ng-card__edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent, #fff) 50%, transparent 100%);
}

/* Dots */
.ng-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.ng-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d8dd;
  transition: background .2s, width .2s;
}
.ng-dot.is-active {
  background: var(--text-dark);
  width: 22px;
  border-radius: 4px;
}

/* ============ NOS PROTOCOLES EXPERTS ============ */
.protocoles {
  background: var(--text-dark);
  color: #fff;
  padding: 36px 0;
  margin: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(59,130,246,0.3);
  position: relative;
}
.protocoles__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.protocoles__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.protocoles__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--blue);
  padding: 12px 20px;
}
.btn--outline:hover { background: rgba(59,130,246,0.1); transform: none; }

.protocoles__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.protocole {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  border-radius: 10px;
  color: #fff;
  transition: background .2s;
}
.protocole:hover { background: rgba(255,255,255,0.04); }
.protocole__icon {
  color: var(--blue);
  margin-bottom: 12px;
  display: inline-flex;
}
.protocole__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
}
.protocole__label strong {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: #FAFAF7;
  padding: 18px 0 64px;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, #1a1d22 0%, #0f1116 100%);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 14px;
  padding: 18px 24px;
  color: #fff;
  transition: transform .2s, border-color .2s;
  margin: 0 24px;
}
.cta-band__inner:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}
.cta-band__bottle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.cta-mini-bottle {
  width: 32px;
  height: 50px;
  background: linear-gradient(180deg, #fff 0%, #e6e8eb 100%);
  border-radius: 4px 4px 6px 6px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-mini-bottle::before {
  content: '';
  position: absolute;
  top: -4px; left: 25%; right: 25%;
  height: 5px;
  background: #1a1a1a;
  border-radius: 2px 2px 0 0;
}
.cta-mini-bottle::after {
  content: '';
  position: absolute;
  top: 14px; left: 4px; right: 4px;
  height: 6px;
  background: var(--blue);
  border-radius: 1px;
}
.cta-band__brand {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.cta-band__brand i {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 2px;
}
.cta-band__copy h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.cta-band__copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cta-band__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .2s;
}
.cta-band__inner:hover .cta-band__arrow { transform: translateX(4px); }

/* ============ NOS GAMMES EXPERT ============ */
.gammes-expert {
  background: #FAFAF7;
  padding: 72px 0;
}
.gammes-expert__head {
  text-align: center;
  margin-bottom: 44px;
}
.gammes-expert__eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.gammes-expert__title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.gammes-expert__lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.gammes-expert__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gx-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: var(--text-dark);
}
.gx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20,30,50,0.08);
  border-color: rgba(0,0,0,0.12);
}
.gx-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.gx-card__tag {
  background: rgba(26,65,120,0.1);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 4px;
}
.gx-card__tag--green { background: rgba(94,142,46,0.12); color: #5E8E2E; }
.gx-card__tag--purple { background: rgba(61,46,92,0.12); color: #3D2E5C; }
.gx-card__tag--teal { background: rgba(0,137,123,0.12); color: var(--teal); }
.gx-card__tag--orange { background: rgba(196,74,30,0.12); color: var(--orange); }
.gx-card__tag--red { background: rgba(122,31,31,0.12); color: var(--red-dark); }
.gx-card__count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.gx-card__bottles {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 8px 0 20px;
  height: 80px;
  align-items: flex-end;
}
.gx-mini-bottle {
  width: 36px;
  height: 70px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f3 100%);
  border-radius: 4px 4px 6px 6px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.gx-mini-bottle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 25%;
  right: 25%;
  height: 6px;
  background: #1a1a1a;
  border-radius: 2px 2px 0 0;
}
.gx-mini-bottle::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 4px;
  right: 4px;
  height: 10px;
  background: var(--c, var(--blue));
  border-radius: 1px;
}
.gx-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.gx-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 16px;
}
.gx-card__arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: transform .2s;
}
.gx-card:hover .gx-card__arrow { transform: translateX(4px); }

/* ============ EXPERTS BAND ============ */
.experts-band {
  background: var(--text-dark);
  color: #fff;
  padding: 64px 0;
}
.experts-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.experts-band__copy .hero-expert__eyebrow { color: #7ea8e8; margin-bottom: 16px; }
.experts-band__copy h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.experts-band__copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 22px;
}
.link-arrow {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: border-color .2s;
}
.link-arrow:hover { border-color: #fff; }
.experts-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
}
.stat strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ============ Responsive Expert ============ */
@media (max-width: 1100px) {
  .hero-expert__title { font-size: 44px; }
  .hero-expert__visual { gap: 14px; }
  .product-bottle { width: 190px; }
  .product-photo { width: 200px; }
  .gammes-expert__grid { grid-template-columns: repeat(2, 1fr); }
  .experts-band__inner { grid-template-columns: 1fr; gap: 32px; }

  .trust-card { grid-template-columns: repeat(3, 1fr); padding: 18px 20px; }
  .ng-card { flex: 0 0 calc((100% - 3 * 16px) / 4); min-width: 200px; }
  .protocoles__grid { grid-template-columns: repeat(4, 1fr); }
  .protocoles__head { grid-template-columns: 1fr; gap: 16px; }
  .btn--outline { justify-self: flex-start; }
}

@media (max-width: 760px) {
  .breadcrumb { padding-top: 14px; font-size: 12px; }
  .hero-expert {
    padding: 12px 0 40px;
  }
  .hero-expert__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-expert__copy { padding-right: 0; text-align: center; }
  .hero-expert__lead { margin-left: auto; margin-right: auto; }
  .hero-expert__lead br { display: none; }
  .hero-expert__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.05;
  }
  .hero-expert__visual {
    flex-wrap: wrap;
    gap: 16px;
  }
  .product-bottle {
    width: 150px;
  }
  .product-photo { width: 158px; }
  .product-bottle__cap { width: 90px; height: 28px; }
  .product-bottle__body {
    height: 240px;
    padding: 12px 12px 10px;
  }
  .pb__brand-name { font-size: 14px; }
  .pb__brand-tag { font-size: 8px; }
  .pb__banner { font-size: 9px; padding: 4px; margin: 0 -12px 8px; letter-spacing: 1.5px; }
  .pb__name { font-size: 17px; }
  .pb__sub { font-size: 7px; }
  .pb__desc { font-size: 7px; }
  .pb__icon strong { font-size: 13px; }
  .pb__icon span { font-size: 6px; }
  .pb__footer { font-size: 7px; margin: 0 -12px -10px; }
  .product-bottle__halo { width: 150px; height: 22px; bottom: -16px; }

  .hero-expert__arrow {
    width: 36px;
    height: 36px;
  }
  .hero-expert__arrow--prev { left: 4px; }
  .hero-expert__arrow--next { right: 4px; }
  .btn--dark { width: 100%; justify-content: center; }
  .hero-expert__copy .btn { max-width: 320px; margin: 0 auto; }

  .gammes-expert { padding: 44px 0; }
  .gammes-expert__title { font-size: 24px; }
  .gammes-expert__lead { font-size: 14px; }
  .gammes-expert__lead br { display: none; }
  .gammes-expert__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gx-card { padding: 18px; }
  .gx-card__title { font-size: 16px; }

  .experts-band { padding: 44px 0; }
  .experts-band__copy h2 { font-size: 24px; }
  .experts-band__stats { gap: 18px; }
  .stat strong { font-size: 32px; }

  /* Trust card mobile */
  .trust-card-wrap { padding: 0 0 24px; }
  .trust-card {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
  }
  .trust-card__item { gap: 10px; }
  .trust-card__icon { width: 38px; height: 38px; }
  .trust-card__item strong { font-size: 11px; }
  .trust-card__item span { font-size: 11px; }

  /* Notre gamme mobile */
  .notre-gamme { padding: 36px 0 44px; }
  .notre-gamme__title { font-size: 24px; }
  .notre-gamme__lead { font-size: 13px; }
  .notre-gamme__lead br { display: none; }
  .ng-carousel { margin: 0 -20px; }
  .ng-arrow { display: none; }
  .ng-track {
    padding: 8px 20px 20px;
    gap: 12px;
  }
  .ng-card {
    flex: 0 0 76%;
    min-width: 240px;
    scroll-snap-align: center;
    padding: 18px 16px 0;
    min-height: 320px;
  }
  .ng-card__icon { width: 40px; height: 40px; }
  .ng-card__title { font-size: 12px; }
  .ng-card__desc { font-size: 11px; }
  .ng-card__bottle { height: 70px; margin: auto -16px 0; }
  .ng-card__bottle::after { width: 50px; height: 64px; }
  .ng-dots { margin-top: 10px; flex-wrap: wrap; }

  /* Protocoles mobile */
  .protocoles {
    margin: 0 16px;
    padding: 24px 0;
    border-radius: 14px;
  }
  .protocoles__head {
    padding: 0 16px 18px;
    margin-bottom: 18px;
  }
  .protocoles__lead { font-size: 13px; }
  .protocoles__lead br { display: none; }
  .btn--outline { width: 100%; justify-content: center; font-size: 11px; }
  .protocoles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 8px;
  }
  .protocole { padding: 14px 6px; }
  .protocole__icon svg { width: 26px; height: 26px; }
  .protocole__label { font-size: 8px; }
  .protocole__label strong { font-size: 9px; }

  /* CTA band mobile */
  .cta-band { padding: 14px 0 44px; }
  .cta-band__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px 18px;
    margin: 0 16px;
  }
  .cta-band__bottle { display: none; }
  .cta-band__copy h3 { font-size: 14px; }
  .cta-band__copy p { font-size: 12px; }
  .cta-band__arrow { width: 40px; height: 40px; }
}

@media (max-width: 380px) {
  .product-bottle { width: 134px; }
  .product-photo { width: 138px; }
  .product-bottle__body { height: 220px; padding: 10px 10px 8px; }
  .trust-card { grid-template-columns: 1fr; }
  .ng-card { flex: 0 0 86%; }
  .protocoles__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PRODUIT — Fiche produit (template)
   --cat: couleur d'accent catégorie (set via inline style)
   ============================================ */

.page-product {
  background: var(--bg-cream);
  --cat: #1E5BB8;
  --cat-soft: rgba(30,91,184,0.16);
  --cat-dark: #0E2F5C;
}

/* Breadcrumb dark variant */
.breadcrumb--dark {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb--dark .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.breadcrumb--dark a { color: rgba(255,255,255,0.7); transition: color .2s; }
.breadcrumb--dark a:hover { color: #fff; }
.breadcrumb--dark .breadcrumb__current { color: var(--cat); font-weight: 700; }
.breadcrumb--dark .breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* ============ PRODUCT HERO ============ */
.product-hero {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}
.product-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 20% 50%, var(--cat-soft) 0%, transparent 60%),
    radial-gradient(40% 35% at 78% 70%, var(--cat-soft) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46' viewBox='0 0 40 46'%3E%3Cpath d='M10 0L0 6v12l10 6 10-6 10 6 10-6V6L30 0 20 6z' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #11151A 0%, #0a0c10 100%);
  background-size: auto, auto, 60px 70px, auto;
}
.product-hero__bg::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 18%;
  right: 25%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath d='M0 40 L80 40 L100 20 L120 60 L140 10 L160 70 L180 40 L260 40 L280 30 L300 50 L320 40 L400 40' fill='none' stroke='%23E04A4A' stroke-width='2' opacity='0.4'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  filter: drop-shadow(0 0 6px var(--cat));
  opacity: 0.45;
}

.product-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
  min-height: 540px;
}

/* Carousel arrows */
.product-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--cat);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 6;
  transition: background .2s, transform .2s;
}
.product-hero__arrow:hover { background: var(--cat); transform: translateY(-50%) scale(1.05); }
.product-hero__arrow--prev { left: 20px; }
.product-hero__arrow--next { right: 320px; }

/* === Visual side (podium) === */
.product-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.podium {
  position: relative;
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.podium__bottle {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  animation: bottleFloat 5s ease-in-out infinite;
}
/* CSS placeholder bottle (when no real photo) */
.podium__bottle--ph {
  width: 280px;
  height: 380px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
  border-radius: 18px 18px 22px 22px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  animation: bottleFloat 5s ease-in-out infinite;
  border: 1px solid rgba(0,0,0,0.08);
}
.podium__bottle--ph::before {
  content: '';
  position: absolute;
  top: -14px; left: 25%; right: 25%;
  height: 22px;
  background: linear-gradient(180deg, #2a2a2a, #0a0a0a);
  border-radius: 6px 6px 3px 3px;
}
.podium__bottle--ph::after {
  content: '';
  position: absolute;
  top: 120px; left: 12px; right: 12px;
  height: 36px;
  background: var(--c, var(--blue));
  border-radius: 3px;
  box-shadow: 0 0 18px var(--c, var(--blue));
}
.size-ph {
  width: 38px;
  height: 56px;
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  border-radius: 4px 4px 6px 6px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: inline-block;
}
.size-ph::before {
  content: '';
  position: absolute;
  top: -4px; left: 22%; right: 22%;
  height: 5px;
  background: #1a1a1a;
  border-radius: 2px 2px 1px 1px;
}
.size-ph::after {
  content: '';
  position: absolute;
  top: 18px; left: 4px; right: 4px;
  height: 6px;
  background: var(--c, var(--blue));
  border-radius: 1px;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
/* 3D podium disc with glowing blue ring */
.podium__ring {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 80px;
  border-radius: 50%;
  background:
    /* top: dark disc surface */
    radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, transparent 75%);
  z-index: 1;
}
.podium__ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid var(--cat);
  box-shadow:
    0 0 24px var(--cat),
    0 0 48px var(--cat-soft),
    inset 0 0 20px var(--cat-soft);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 24px var(--cat), 0 0 48px var(--cat-soft), inset 0 0 20px var(--cat-soft); }
  50% { box-shadow: 0 0 36px var(--cat), 0 0 70px var(--cat-soft), inset 0 0 28px var(--cat-soft); }
}
.podium__ring::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse at center, var(--cat-soft) 0%, transparent 70%);
  filter: blur(14px);
}
.podium__capsules {
  position: absolute;
  bottom: -2px;
  right: 10%;
  display: flex;
  gap: 4px;
  z-index: 4;
}
.capsule {
  width: 36px;
  height: 14px;
  background: linear-gradient(90deg, #d4d6d8 0%, #f0f2f4 50%, #c8cacc 100%);
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.6);
  transform: rotate(-12deg);
  position: relative;
}
.capsule::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0,0,0,0.18);
}
.capsule:nth-child(2) { transform: rotate(-20deg) translate(-6px, 8px); }
.capsule--orange {
  background: linear-gradient(90deg, #B8742A 0%, #E89A4F 50%, #A66520 100%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,200,120,0.5);
}

/* Heart variant for cholesterum molecule slot */
.product-hero__molecule--heart svg {
  animation: heartPulse 2.5s ease-in-out infinite;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(225,29,72,0.45)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 24px rgba(225,29,72,0.7)); }
}

/* Decorative molecule next to bottle */
.podium__molecule {
  position: absolute;
  right: -6%;
  top: 30%;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.4));
  pointer-events: none;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  text-align: center;
}
.hero-badge--label {
  top: 4%;
  left: -2%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  position: absolute;
  display: grid;
  place-items: center;
}
.hero-badge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--cat);
  box-shadow:
    0 0 22px rgba(33,150,243,0.4),
    inset 0 0 18px rgba(33,150,243,0.18);
  animation: ringPulse 3s ease-in-out infinite;
}
.hero-badge__text {
  position: relative;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 1.6px;
  padding: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.hero-badge--france {
  top: 36%;
  left: -4%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  display: block;
  box-shadow:
    0 0 0 0 transparent,
    0 10px 22px rgba(0,0,0,0.4);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  font-size: 0;
}
.hero-badge--france svg { display: block; }
.hb-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: linear-gradient(to right, #0055A4 33.33%, #fff 33.33%, #fff 66.66%, #EF4135 66.66%);
  border: 1px solid #ddd;
}

/* === Info card === */
.product-hero__card {
  background: linear-gradient(180deg, rgba(20,24,30,0.65) 0%, rgba(15,18,22,0.85) 100%);
  border: 1px solid var(--cat);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
/* Decorative molecule in top-right of card */
.product-hero__molecule {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}
.product-hero__molecule svg,
.product-hero__molecule-img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 24px rgba(59,130,246,0.6));
  animation: moleculeFloat 6s ease-in-out infinite;
  transform-origin: center;
}
.product-hero__molecule-img {
  mix-blend-mode: screen;
  border-radius: 50%;
}
@keyframes moleculeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}
.product-hero__card > * { position: relative; z-index: 1; }
.product-hero__title { max-width: calc(100% - 100px); }
.product-hero__tag {
  display: inline-block;
  background: var(--cat);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}
.product-hero__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.product-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  font-weight: 500;
}
.product-hero__rule {
  border: 0;
  height: 1px;
  background: var(--cat);
  width: 60px;
  margin: 0 0 18px;
}
.product-hero__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 22px;
}

/* Feature icons row */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.product-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.product-feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--cat);
  background: rgba(0,0,0,0.3);
  color: var(--cat);
  display: grid;
  place-items: center;
}
.product-feature__label {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
}

/* Size options */
.product-sizes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.product-sizes--arrows {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.size-arrow {
  color: rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.size-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.size-card input { position: absolute; opacity: 0; pointer-events: none; }
.size-card.is-selected,
.size-card:has(input:checked) {
  border-color: var(--cat);
  background: rgba(30,91,184,0.12);
  box-shadow: 0 0 0 1px var(--cat) inset;
}
.size-card__visual {
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 8px;
}
.size-card__visual img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)) drop-shadow(0 0 6px var(--cat-soft));
}
.size-card__visual--pack {
  gap: 0;
}
.size-card__visual--pack img {
  height: 50px;
  margin: 0 -12px;
}
.size-card__visual--pack img:nth-child(2) { height: 58px; z-index: 2; }
.size-card__visual--protocol {
  color: var(--cat);
}
.size-card__copy { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.size-card__copy strong { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; color: #fff; line-height: 1.2; }
.size-card__copy span { font-size: 10px; color: rgba(255,255,255,0.6); }
.size-card__save {
  font-style: normal;
  background: var(--cat);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* CTA cart */
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--cat);
  color: #fff;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-cart:hover { background: var(--cat-dark); transform: translateY(-1px); }

/* Video card */
.product-video {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  background: rgba(15,18,22,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-video__thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0c10;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.product-video__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.product-video__play {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  transition: transform .2s;
}
.product-video__play:hover { transform: scale(1.08); }
.product-video__meta {
  text-align: center;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}
.product-video__meta strong { display: block; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-video__meta span { color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 4px; font-size: 10px; }

/* ============ PRODUCT TRUST BAR (dark) ============ */
.product-trust-bar {
  background: var(--bg-dark-2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.product-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.ptb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.ptb-item svg { color: #fff; flex-shrink: 0; opacity: 0.9; }
.ptb-item div { display: flex; flex-direction: column; line-height: 1.25; }
.ptb-item strong { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.ptb-item span { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }

/* ============ PRODUCT INFO (light card) ============ */
.product-info {
  background: var(--bg-cream);
  padding: 32px 0 48px;
}
.product-info__card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr 0.9fr;
  gap: 32px;
  box-shadow: 0 14px 40px rgba(20,30,50,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.info-col__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}
.check-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--cat);
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-circle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 5px;
  height: 8px;
  border-right: 1.6px solid var(--cat);
  border-bottom: 1.6px solid var(--cat);
  transform: rotate(45deg);
}

/* Usage card */
.usage-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.usage-card__copy p,
.usage-card__copy .usage-line {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.usage-card__copy p:last-child, .usage-card__copy .usage-line:last-child { margin: 0; }
.usage-card__copy strong { color: var(--text-dark); }
.usage-line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.usage-line__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--cat);
  display: grid;
  place-items: center;
  color: var(--cat);
  flex-shrink: 0;
}
.usage-card__visual {
  width: 70px;
}
.glass {
  width: 60px;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, #d6e9f5 30%, #b8d9ea 100%);
  border: 2px solid #1a1a1a;
  border-top: 1px solid #1a1a1a;
  border-radius: 4px 4px 8px 8px;
  position: relative;
  margin: 0 auto;
}
.glass__pill {
  position: absolute;
  top: -4px;
  right: -10px;
  width: 20px;
  height: 10px;
  background: var(--cat);
  border-radius: 5px;
}

/* Certifications */
.info-col--certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  align-content: center;
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.cert__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--cat);
  position: relative;
  display: grid;
  place-items: center;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
}
/* Strike line for "SANS X" */
.cert--no .cert__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
  height: 2.5px;
  background: var(--cat);
  transform: rotate(-45deg);
  z-index: 3;
  border-radius: 2px;
}
/* Icon bg per child */
.cert:nth-child(1) .cert__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BB8' stroke-width='1.5' stroke-linecap='round'%3E%3Cellipse cx='12' cy='12' rx='4' ry='10'/%3E%3Cellipse cx='12' cy='12' rx='10' ry='4'/%3E%3Cline x1='4' y1='4' x2='20' y2='20'/%3E%3C/svg%3E"); }
.cert:nth-child(2) .cert__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BB8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M9 5c0 1 1 2 3 2s3-1 3-2'/%3E%3Cpath d='M8 9c0 1 2 2 4 2s4-1 4-2'/%3E%3Cpath d='M7 13c0 1 2 2 5 2s5-1 5-2'/%3E%3Cpath d='M6 17c0 1 3 2 6 2s6-1 6-2'/%3E%3C/svg%3E"); }
.cert:nth-child(3) .cert__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BB8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2h8v3l2 4v11a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V9l2-4z'/%3E%3Cpath d='M6 9h12'/%3E%3C/svg%3E"); }
.cert:nth-child(4) .cert__icon {
  background-color: rgba(30,91,184,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BB8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19.2 2.96a1 1 0 0 1 1.8.8c0 9.5-3.92 16.24-10 16.24'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6'/%3E%3C/svg%3E");
}

.cert__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ============ RELATED PRODUCTS ============ */
.related-products {
  background: var(--bg-cream);
  padding: 48px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.related-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  color: var(--text-dark);
  min-height: 280px;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.08); }
.related-card__media {
  height: 140px;
  background: linear-gradient(180deg, #f7f7f5 0%, #e6e8eb 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.related-card__media img {
  height: 140px;
  width: auto;
  object-fit: contain;
}
.related-card__media--more {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0c10 100%);
  color: var(--cat);
}
.related-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cat);
  margin-bottom: 6px;
}
.related-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
  line-height: 1.15;
}
.related-card p {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.related-card__arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform .2s;
}
.related-card:hover .related-card__arrow { transform: translateX(3px); }
.related-card--all { background: linear-gradient(180deg, #1a1d22 0%, #0f1116 100%); color: #fff; }
.related-card--all h3 { color: #fff; }
.related-card--all p { color: rgba(255,255,255,0.65); }

/* ============ Responsive — Product page ============ */
@media (max-width: 1200px) {
  .product-hero__inner { grid-template-columns: 0.9fr 1.2fr; }
  .product-hero__arrow--next { right: 20px; }
  .product-video {
    position: static;
    transform: none;
    width: auto;
    max-width: 360px;
    margin: 24px auto 0;
    flex-direction: row;
    align-items: center;
    grid-column: 1 / -1;
  }
  .product-video__thumb { width: 120px; aspect-ratio: 4 / 3; }
  .product-video__meta { text-align: left; }
}
@media (max-width: 980px) {
  .product-info__card { grid-template-columns: 1fr 1fr; gap: 28px; }
  .info-col--certs { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-card--all { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .product-hero { padding: 28px 0 36px; }
  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }
  .product-hero__arrow { width: 36px; height: 36px; }
  .product-hero__arrow--prev { left: 8px; }
  .product-hero__arrow--next { right: 8px; }
  .product-hero__visual { min-height: 380px; }
  .podium { width: 240px; }
  .podium__ring { width: 260px; height: 60px; bottom: -4px; }
  .hero-badge--label { width: 92px; height: 92px; top: 4%; left: 0; }
  .hero-badge__text { font-size: 9px; }
  .hero-badge--france { width: 78px; height: 78px; top: 38%; left: -10px; font-size: 8px; }

  .product-hero__card { padding: 22px 18px; border-radius: 14px; }
  .product-hero__title { font-size: 34px; }
  .product-hero__sub { font-size: 14px; }
  .product-hero__desc { font-size: 12px; }
  .product-features { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 14px 0; }
  .product-feature__icon { width: 38px; height: 38px; }
  .product-feature__label { font-size: 8px; letter-spacing: 0.5px; }
  .product-sizes,
  .product-sizes--arrows { grid-template-columns: 1fr; gap: 8px; }
  .size-arrow { display: none; }
  .product-hero__molecule { width: 90px; height: 90px; opacity: 0.7; }
  .product-hero__title { max-width: calc(100% - 70px); }
  .podium__molecule { display: none; }
  .size-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 10px 14px;
    gap: 14px;
  }
  .size-card__visual { height: 38px; margin: 0; }
  .size-card__visual img { height: 38px; }
  .size-card__copy { align-items: flex-start; flex-direction: row; gap: 10px; flex-wrap: wrap; align-items: baseline; }
  .size-card__copy strong { font-size: 12px; }
  .btn-cart { font-size: 12px; padding: 14px 18px; }

  .product-video {
    margin: 16px auto 0;
    flex-direction: column;
    padding: 12px;
    max-width: 100%;
  }
  .product-video__thumb { width: 100%; aspect-ratio: 16/9; }
  .product-video__meta { text-align: center; }

  .product-trust-bar__inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 4px;
    scrollbar-width: none;
  }
  .product-trust-bar__inner::-webkit-scrollbar { display: none; }
  .ptb-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
  }
  .ptb-item svg { width: 24px; height: 24px; }
  .ptb-item strong { font-size: 11px; }
  .ptb-item span { font-size: 10px; }

  .product-info { padding: 24px 0 32px; }
  .product-info__card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 14px;
    gap: 26px;
  }
  .info-col--certs { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cert__icon { width: 42px; height: 42px; }

  .related-grid { grid-template-columns: 1fr; gap: 12px; }
  .related-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 100px 1fr 32px;
    align-items: center;
    gap: 14px;
    padding: 14px;
  }
  .related-card__media { width: 100px; height: 100px; margin: 0; flex-shrink: 0; grid-row: 1 / 4; }
  .related-card__media img { height: 90px; }
  .related-card__tag { grid-column: 2; margin: 0; }
  .related-card h3 { grid-column: 2; margin: 4px 0; font-size: 15px; }
  .related-card p { grid-column: 2; font-size: 12px; }
  .related-card__arrow { position: static; grid-column: 3; grid-row: 1 / 4; align-self: center; }
  .related-card--all .related-card__media--more svg { width: 26px; height: 26px; }
}

/* ============================================
   PAGE CATALOGUE V2 (refonte maquette)
   ============================================ */

.page-catalog { background: var(--bg-cream); }

/* --- Top dark strip (above hero) --- */
.cat-strip-top {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cat-strip-top__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cst-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.cst-item svg { color: var(--green); opacity: 0.9; }
.cst-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: linear-gradient(to right, #0055A4 33%, #fff 33%, #fff 66%, #EF4135 66%);
  border-radius: 2px;
}

/* --- Hero catalogue --- */
.cat-hero {
  background: linear-gradient(180deg, #F5F7FA 0%, #EAECEF 100%);
  padding: 48px 0 36px;
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46' viewBox='0 0 40 46'%3E%3Cpath d='M10 0L0 6v12l10 6 10-6 10 6 10-6V6L30 0 20 6z' fill='none' stroke='%23BFC9D6' stroke-opacity='0.18' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 50px 58px;
  opacity: 0.6;
  pointer-events: none;
}
.cat-hero__inner { position: relative; z-index: 2; }
.cat-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-bottom: 18px;
}
.cat-hero__title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.cat-hero__lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 22px;
}
.cat-hero__rule {
  width: 70px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 0 24px;
}
.cat-hero__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ch-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.ch-chip svg { color: var(--blue); }
.ch-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: linear-gradient(to right, #0055A4 33%, #fff 33%, #fff 66%, #EF4135 66%);
  border-radius: 2px;
  border: 1px solid #e0e3e7;
}

/* --- Trust card 5 col --- */
.cat-trust-card-wrap {
  background: linear-gradient(180deg, #EAECEF 0%, #F5F5F0 100%);
  padding: 0 0 28px;
}
.cat-trust-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  box-shadow: 0 14px 36px rgba(20,30,50,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.ctc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px;
}
.ctc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.ctc-item strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-dark);
}
.ctc-desc {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.4;
}

/* --- Category tabs --- */
.cat-tabs-wrap {
  background: var(--bg-cream);
  padding: 28px 0 16px;
}
.cat-tabs {
  display: grid;
  grid-template-columns: 1.4fr repeat(8, 1fr) 1fr;
  gap: 10px;
  align-items: stretch;
}
.ct-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(20,24,30,0.92);
  color: #fff;
  border-radius: 12px;
  padding: 14px 8px;
  gap: 6px;
  min-height: 110px;
  transition: transform .15s, background .2s;
  cursor: pointer;
}
.ct-tab:hover { transform: translateY(-2px); }
.ct-tab--all { background: var(--text-dark); padding: 16px 12px; }
.ct-tab__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.3;
}
.ct-tab__count {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 4px;
}
.ct-tab__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--c, #fff);
  margin-bottom: 4px;
}
.ct-tab__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.25;
}
.ct-tab:not(.ct-tab--all):not(.ct-tab--more) .ct-tab__count {
  font-size: 14px;
  font-weight: 800;
  color: var(--c, #fff);
}
.ct-tab--more {
  background: rgba(20,24,30,0.92);
  text-decoration: none;
}
.ct-tab--more .ct-tab__icon { color: #fff; background: rgba(255,255,255,0.1); }

/* --- Filter bar --- */
.cat-filter-bar {
  background: var(--bg-cream);
  padding: 18px 0 8px;
}
.cat-filter-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cfb-count { font-size: 14px; color: var(--text-mid); }
.cfb-count strong { color: var(--text-dark); font-weight: 800; }
.cfb-actions { display: flex; gap: 12px; align-items: center; }
.cfb-sort {
  font-size: 13px;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cfb-sort select {
  font-size: 13px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
}
.cfb-filter {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cfb-filter:hover { background: var(--text-dark); color: #fff; }

/* --- Grid --- */
.cat-grid-wrap {
  background: var(--bg-cream);
  padding: 16px 0 48px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* --- Product card (dark, premium) --- */
.pcard {
  position: relative;
  background: linear-gradient(180deg, #1a1d24 0%, #0d0f14 100%);
  border-radius: 16px;
  padding: 16px 16px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(255,255,255,0.05);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--c);
}
.pcard.is-hidden { display: none; }
.pcard__ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--rb, linear-gradient(135deg, var(--text-dark) 0%, #2d3036 100%));
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.pcard__stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  opacity: 0.85;
}
.pcard__glow {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse at center, var(--c) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  pointer-events: none;
}
.pcard__bottle {
  position: relative;
  z-index: 2;
  height: 180px;
  margin: 28px 0 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pcard__bottle img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.6));
}
.pcard__bottle--placeholder { align-items: flex-end; }
.pl-bottle {
  width: 80px;
  height: 140px;
  background: linear-gradient(180deg, #f7f7f5 0%, #d8d8d5 100%);
  border-radius: 10px 10px 14px 14px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.pl-bottle::before {
  content: '';
  position: absolute;
  top: -10px; left: 22%; right: 22%;
  height: 14px;
  background: #1a1a1a;
  border-radius: 3px 3px 2px 2px;
}
.pl-bottle::after {
  content: '';
  position: absolute;
  top: 36px; left: 8px; right: 8px;
  height: 16px;
  background: var(--c, #3B82F6);
  border-radius: 1px;
}

.pcard__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin: 4px 0 8px;
  text-align: center;
}
.pcard__tag {
  align-self: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  background: var(--c, var(--blue));
  color: #fff;
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.pcard__desc {
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0 0 12px;
}

.pcard__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pcard__badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
}
.pcard__flag {
  display: inline-block;
  width: 12px; height: 8px;
  background: linear-gradient(to right, #0055A4 33%, #fff 33%, #fff 66%, #EF4135 66%);
  border-radius: 1px;
}

.pcard__price {
  text-align: center;
  margin-bottom: 12px;
}
.pcard__price strong {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.pcard__price s {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.pcard__cta {
  background: var(--c, var(--blue));
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  width: 100%;
  display: block;
  transition: filter .2s, transform .15s;
}
.pcard__cta:hover { filter: brightness(1.1); transform: scale(1.02); }
.pcard__protocol {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pcard__protocol svg { vertical-align: -1px; margin-left: 2px; }

/* --- Bottom highlight cards --- */
.cat-bottom {
  background: var(--bg-cream);
  padding: 24px 0 36px;
}
.cat-bottom__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cb-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.cb-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.cb-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.cb-bottles {
  display: flex;
  gap: 4px;
  height: 50px;
  align-items: flex-end;
  margin-bottom: 14px;
}
.cb-bottles span {
  flex: 1;
  height: 38px;
  background: #d8dde3;
  border-radius: 4px 4px 6px 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: relative;
}
.cb-bottles span::before {
  content: '';
  position: absolute;
  top: -4px; left: 25%; right: 25%;
  height: 5px;
  background: #1a1a1a;
  border-radius: 2px 2px 0 0;
}
.cb-saving {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cb-saving__pct {
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
}
.cb-avatars {
  display: flex;
  margin-bottom: 14px;
}
.cb-avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}
.cb-avatars span:first-child { margin-left: 0; }
.cb-avatars span::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.4) 0%, transparent 50%);
}
.cb-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.cb-link:hover { text-decoration: underline; }
.cb-link--btn {
  background: var(--blue);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  align-self: flex-start;
}
.cb-link--btn:hover { background: var(--cat-dark, #0E2F5C); text-decoration: none; }

/* --- Service bar footer --- */
.cat-service-bar {
  background: var(--bg-cream);
  padding: 20px 0 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cat-service-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.csb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
}
.csb-item svg { color: var(--text-mid); flex-shrink: 0; }
.csb-item div { display: flex; flex-direction: column; line-height: 1.3; }
.csb-item strong { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; }
.csb-item span { font-size: 11px; color: var(--text-mid); }

/* Hide old catalog styles to avoid conflict */
.catalog-head, .catalog-tabs, .catalog-grid-wrap, .catalog-empty { display: none; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .cat-tabs { grid-template-columns: repeat(5, 1fr); }
  .ct-tab--all { grid-column: span 2; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-bottom__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-trust-card { grid-template-columns: repeat(3, 1fr); }
  .cat-service-bar__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .cat-strip-top__inner { gap: 14px; }
  .cst-item { font-size: 10px; gap: 5px; }
  .cat-hero { padding: 28px 0 24px; }
  .cat-hero__title { font-size: 36px; }
  .cat-hero__lead br { display: none; }
  .cat-trust-card { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .ctc-item strong { font-size: 11px; }
  .ctc-desc { font-size: 10px; }
  .cat-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ct-tab--all { grid-column: 1 / -1; }
  .ct-tab__count { font-size: 22px; }
  .cat-filter-bar__inner { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pcard { padding: 14px 12px 16px; }
  .pcard__name { font-size: 18px; }
  .pcard__bottle { height: 140px; }
  .pcard__bottle img { max-height: 160px; }
  .pcard__stamp svg { width: 42px; height: 42px; }
  .pcard__ribbon { font-size: 8px; padding: 4px 8px; }
  .pcard__price strong { font-size: 18px; }
  .pcard__badges span { font-size: 7.5px; }
  .cat-bottom__grid { grid-template-columns: 1fr; }
  .cat-service-bar__inner { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
}

.catalog-head {
  background: var(--bg-cream);
  padding: 36px 0 24px;
  text-align: center;
}
.catalog-head__title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.catalog-head__lead {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0 auto 30px;
  max-width: 620px;
  line-height: 1.55;
}

.catalog-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(20,30,50,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.catalog-tab {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  color: var(--text-mid);
  transition: background .2s, color .2s;
}
.catalog-tab:hover { background: rgba(0,0,0,0.04); color: var(--text-dark); }
.catalog-tab.is-active {
  background: var(--text-dark);
  color: #fff;
}
.catalog-tab.is-active[data-accent] { background: attr(data-accent color); }
.catalog-tab[data-filter="expert"].is-active { background: #1E5BB8; }
.catalog-tab[data-filter="je-veux"].is-active { background: #3D8B22; }
.catalog-tab[data-filter="so-sport"].is-active { background: #C03A2B; }
.catalog-tab[data-filter="so-kids"].is-active { background: #D4622A; }
.catalog-tab[data-filter="so-pet"].is-active { background: #00897B; }

.catalog-grid-wrap {
  padding: 28px 0 48px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.prod-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20,30,50,0.08);
  border-color: var(--cat, var(--text-dark));
}
.prod-card.is-hidden { display: none; }

/* Gamme badge — discreet pill in top-left of card, above image */
.prod-card__gamme {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #fff;
  background: var(--cat);
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.prod-card__media {
  height: 180px;
  background: linear-gradient(180deg, #fafafa 0%, #efefef 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.prod-card__media img {
  height: 170px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform .35s;
}
.prod-card:hover .prod-card__media img { transform: translateY(-3px); }
.prod-card__media--placeholder {
  background: linear-gradient(180deg, #f7f7f5 0%, #e6e8eb 100%);
}
/* Banner inside placeholder bottle — redundant with category text, hidden */
.prod-card__banner { display: none; }

/* Placeholder CSS bottle */
.placeholder-bottle {
  width: 70px;
  height: 130px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f1 100%);
  border-radius: 8px 8px 14px 14px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  margin-top: -10px;
}
.placeholder-bottle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20%;
  right: 20%;
  height: 12px;
  background: #1a1a1a;
  border-radius: 3px 3px 2px 2px;
}
.placeholder-bottle::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 6px;
  right: 6px;
  height: 12px;
  background: var(--c, var(--text-dark));
  border-radius: 1px;
}

.prod-card__cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--cat);
  margin-bottom: 4px;
}
.prod-card__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.prod-card__desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}
.prod-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.prod-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}
.prod-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cat);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.catalog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .catalog-head { padding: 24px 0 16px; }
  .catalog-head__title { font-size: 26px; }
  .catalog-head__lead { font-size: 13px; margin-bottom: 20px; }
  .catalog-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 12px;
    padding: 4px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .catalog-tabs::-webkit-scrollbar { display: none; }
  .catalog-tab { flex-shrink: 0; padding: 9px 14px; font-size: 11px; }
  .catalog-grid-wrap { padding: 20px 0 32px; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-card { padding: 14px; }
  .prod-card__gamme { font-size: 8px; padding: 3px 6px; }
  .prod-card__media { height: 140px; }
  .prod-card__media img { height: 130px; }
  .prod-card__name { font-size: 14px; }
  .prod-card__desc { font-size: 11px; }
  .prod-card__price { font-size: 16px; }
}
@media (max-width: 380px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FICHE PRODUIT JE VEUX (lifestyle light)
   ============================================ */
.page-jv-product { background: #FAF7F2; color: #2A2530; }
.page-jv-product .site-header { background: var(--bg-dark); }

/* Breadcrumb */
.jv-breadcrumb { padding: 18px 0 8px; font-size: 13px; color: #6B6776; background: #FAF7F2; }
.jv-breadcrumb .container { display: flex; align-items: center; gap: 10px; }
.jv-breadcrumb a { color: #6B6776; transition: color .2s; }
.jv-breadcrumb a:hover { color: var(--jv-c); }
.jvbc-sep { color: #c5c0d0; }
.jvbc-current { color: #2A2530; font-weight: 600; }

/* Hero */
.jv-hero {
  padding: 16px 0 56px;
  background:
    radial-gradient(60% 50% at 80% 40%, rgba(139,123,201,0.10) 0%, transparent 70%),
    linear-gradient(180deg, #FAF7F2 0%, #F2EDE4 100%);
  position: relative;
  overflow: hidden;
}
.jv-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: 640px;
}

.jv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jv-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.jv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: #2A2530;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.jv-title__top { font-size: 28px; font-weight: 500; display: inline-block; margin-bottom: 6px; }
.jv-title__accent { color: var(--jv-c); }

.jv-sub {
  font-size: 17px;
  line-height: 1.45;
  color: #58535F;
  margin: 0 0 24px;
}

.jv-mini-benefits {
  display: flex;
  gap: 26px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.jv-mb { display: inline-flex; align-items: center; gap: 10px; }
.jv-mb__icon {
  color: var(--jv-c);
  display: inline-flex;
  flex-shrink: 0;
}
.jv-mb__label { font-size: 12px; font-weight: 600; color: #2A2530; line-height: 1.3; }

.jv-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.jv-rating__stars { color: #F59E0B; font-size: 16px; letter-spacing: 1px; }
.jv-rating__stars .half { opacity: 0.5; }
.jv-rating__count { color: #6B6776; font-size: 13px; }

.jv-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}
.jv-price strong { font-size: 32px; font-weight: 800; color: #2A2530; }
.jv-price__detail { font-size: 14px; color: #6B6776; }

.jv-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  border: 0;
  cursor: pointer;
  transition: transform .15s, filter .2s;
}
.jv-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
.jv-cta--primary { background: #1a1a1a; color: #fff; }
.jv-cta--sub { background: var(--jv-c); color: #fff; }

.jv-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  max-width: 460px;
}
.jv-trust > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 10px;
  color: #6B6776;
}
.jv-trust > span svg { color: var(--jv-c); margin-bottom: 4px; }
.jv-trust > span strong { font-size: 11px; font-weight: 700; color: #2A2530; line-height: 1.2; }
.jv-trust > span em { font-style: normal; font-size: 10px; color: #6B6776; }
.jv-flag {
  display: inline-block;
  width: 22px;
  height: 14px;
  margin-bottom: 4px;
  background: linear-gradient(to right, #0055A4 33%, #fff 33%, #fff 66%, #EF4135 66%);
  border-radius: 1px;
}

/* Hero right — bottle scene */
.jv-hero__right { position: relative; min-height: 580px; display: grid; place-items: center; }
.jv-hero__scene {
  position: relative;
  width: 100%;
  height: 580px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 75%, rgba(212,196,235,0.5) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(220,200,180,0.3) 80%);
  border-radius: 16px;
}

.jv-sparkles { position: absolute; inset: 0; pointer-events: none; }
.jv-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #fff 0%, rgba(255,220,180,0.4) 60%, transparent 100%);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: sparkle 3s ease-in-out infinite;
}
.jv-spark::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 60%);
  border-radius: 50%;
}
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.jv-halo {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border: 1.5px solid rgba(139,123,201,0.5);
  border-radius: 50%;
  box-shadow:
    0 0 60px rgba(139,123,201,0.3),
    inset 0 0 60px rgba(139,123,201,0.15);
  pointer-events: none;
}

/* Jar mockup */
.jv-jar {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  z-index: 3;
  filter: drop-shadow(0 30px 40px rgba(60,40,80,0.25));
  animation: bottleFloat 6s ease-in-out infinite;
}
.jv-jar__cap {
  width: 230px;
  height: 50px;
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
  border-radius: 10px 10px 4px 4px;
  margin: 0 auto;
  position: relative;
}
.jv-jar__cap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px 10px 0 0;
}
.jv-jar__body {
  background: linear-gradient(180deg, #f5ebd9 0%, #e8d8c0 100%);
  border-radius: 4px 4px 12px 12px;
  padding: 26px 22px 22px;
  position: relative;
  margin-top: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.jv-jar__brand { display: flex; flex-direction: column; align-items: center; color: #2a1a0a; margin-bottom: 14px; }
.jv-jar__brand small { font-size: 7px; letter-spacing: 1.5px; font-weight: 700; }
.jv-jar__brand strong { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; line-height: 1; margin: 2px 0 1px; }
.jv-jar__brand em { font-size: 7px; font-style: italic; opacity: 0.7; }
.jv-jar__title { display: flex; flex-direction: column; gap: 4px; color: #2a1a0a; margin-bottom: 10px; }
.jv-jar__title > span:first-child { font-family: 'Montserrat', sans-serif; font-size: 12px; font-style: italic; }
.jv-jar__title-accent { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--jv-c-dark); }
.jv-jar__desc { font-size: 7px; letter-spacing: 1px; color: rgba(42,26,10,0.7); line-height: 1.3; margin-bottom: 10px; }
.jv-jar__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(139,123,201,0.2) 0%, rgba(139,123,201,0.4) 70%, rgba(91,75,153,0.6) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 2px solid rgba(139,123,201,0.4);
}
.jv-jar__alimentaire { font-size: 8px; letter-spacing: 1.2px; font-weight: 700; color: rgba(42,26,10,0.8); line-height: 1.4; margin-bottom: 12px; }
.jv-jar__badges {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(42,26,10,0.15);
  width: 100%;
}
.jv-jar__badges i { font-style: normal; font-size: 6px; font-weight: 600; color: rgba(42,26,10,0.7); letter-spacing: 0.5px; text-align: center; line-height: 1.4; flex: 1; }
.jv-jar__badges i b { font-size: 6.5px; font-weight: 800; color: #2a1a0a; }

.jv-stone {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60px;
  background:
    radial-gradient(ellipse at center, #e8dac4 0%, #c9b89a 100%);
  border-radius: 8px 8px 16px 16px / 6px 6px 30px 30px;
  box-shadow: 0 12px 24px rgba(60,40,30,0.2);
  z-index: 1;
}
.jv-capsules {
  position: absolute;
  bottom: 8%;
  right: 16%;
  display: flex;
  gap: 4px;
  z-index: 4;
}
.jv-capsules span {
  width: 32px;
  height: 14px;
  background: linear-gradient(90deg, #d4c4a8 0%, #f0e2c8 50%, #c4b498 100%);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.jv-capsules span:nth-child(2) { transform: rotate(-25deg) translate(-4px, 6px); }

/* INFO section (3 cols) */
.jv-info { background: #FAF7F2; padding: 50px 0; }
.jv-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  background: linear-gradient(180deg, rgba(245,235,220,0.5) 0%, rgba(250,247,242,0.5) 100%);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
}
.jv-col__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #2A2530;
  margin-bottom: 28px;
  text-align: center;
}
.jv-benefit, .jv-ing {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.jv-benefit__icon {
  color: var(--jv-c);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.jv-benefit strong, .jv-ing strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2A2530;
  margin-bottom: 6px;
  line-height: 1.3;
}
.jv-benefit p, .jv-ing p {
  font-size: 12.5px;
  color: #6B6776;
  line-height: 1.5;
  margin: 0;
}
.jv-footnote { font-size: 10px; color: #8B8694; margin-top: 18px; font-style: italic; }

.jv-ing__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.jv-ing__photo--melatonine {
  background: radial-gradient(circle at 30% 30%, #b3a3d8 0%, #7a6abd 60%, #5b4b99 100%);
  position: relative;
}
.jv-ing__photo--melatonine::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(255,255,255,0.6);
  border-radius: 50%;
}
.jv-ing__photo--magnesium {
  background:
    radial-gradient(circle at 25% 25%, #fff 0%, rgba(255,255,255,0.7) 40%, #d4d8dc 80%),
    linear-gradient(180deg, #e8e8e8 0%, #c8c8c8 100%);
}
.jv-ing__photo--safran {
  background:
    radial-gradient(circle at 50% 60%, #c084e3 0%, #9d6bc6 40%, #5b4b99 100%);
  position: relative;
}
.jv-ing__photo--safran::after {
  content: '✿';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  opacity: 0.6;
}

.jv-col__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--jv-c);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 8px;
}

/* Associez */
.jv-assoc { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.jv-assoc__card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .15s;
}
.jv-assoc__card:hover { border-color: var(--jv-c); transform: translateY(-2px); }
.jv-assoc__jar {
  width: 80px;
  height: 90px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f5ebd9 0%, #e8d8c0 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 4px;
  flex-shrink: 0;
}
.jv-assoc__jar::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 18%; right: 18%;
  height: 12px;
  background: #1a1a1a;
  border-radius: 4px 4px 2px 2px;
}
.jv-assoc__jar span { font-family: 'Montserrat', sans-serif; font-size: 8px; font-style: italic; color: #2a1a0a; }
.jv-assoc__jar strong { font-size: 7px; font-weight: 800; color: #2a1a0a; line-height: 1.1; }
.jv-assoc__copy { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.jv-assoc__icon { display: inline-flex; }
.jv-assoc__cat { font-size: 9px; letter-spacing: 1.5px; font-weight: 600; color: #6B6776; }
.jv-assoc__copy strong { font-size: 13px; font-weight: 800; color: #2A2530; letter-spacing: 0.5px; }
.jv-assoc__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.jv-assoc__price { font-size: 15px; font-weight: 800; color: #2A2530; }
.jv-assoc__add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--jv-c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}
.jv-assoc__note { text-align: center; font-size: 12px; color: #6B6776; line-height: 1.5; margin-top: 14px; }

/* APP + REVIEWS */
.jv-app-reviews { padding: 30px 0 48px; background: #FAF7F2; }
.jv-app-reviews__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.jv-app {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.jv-app__copy h2 { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 16px; line-height: 1.4; }
.jv-app__copy ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.jv-app__copy ul li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #2A2530; }
.jv-app__copy ul li svg { color: var(--jv-c); flex-shrink: 0; }
.jv-app__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.jv-app__phone {
  background: #1a1a1a;
  border-radius: 22px;
  padding: 8px;
  border: 2px solid #2a2a2a;
}
.jv-app__screen { background: #f7f5ef; border-radius: 16px; padding: 14px; }
.jv-app__top { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #1a1a1a; }
.jv-app__top span:last-child { color: var(--jv-c); }
.jv-app__sub { font-size: 7px; color: #6B6776; margin-bottom: 12px; }
.jv-app__score { position: relative; display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.jv-score-circle { position: relative; width: 100px; height: 100px; }
.jv-score-circle__val { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.jv-score-circle__val strong { font-size: 22px; font-weight: 900; color: #1a1a1a; line-height: 1; }
.jv-score-circle__val span { font-size: 6px; color: #6B6776; }
.jv-app__bars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-top: 10px; }
.jv-app__bars > div { background: #fff; border-radius: 6px; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; }
.jv-app__bars > div span { width: 16px; border-radius: 3px 3px 0 0; margin-bottom: 4px; }
.jv-app__bars > div i { font-style: normal; font-size: 8px; font-weight: 700; line-height: 1.2; text-align: center; }
.jv-app__bars > div em { font-style: normal; font-size: 6px; color: #6B6776; }

.jv-reviews {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.jv-reviews h2 { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 14px; }
.jv-reviews__head { display: flex; gap: 12px; align-items: baseline; margin-bottom: 18px; }
.jv-reviews__score { font-size: 18px; color: #F59E0B; }
.jv-reviews__score .half { opacity: 0.5; }
.jv-reviews__score strong { color: #2A2530; font-size: 16px; margin-left: 8px; }
.jv-reviews__count { font-size: 13px; color: #6B6776; }
.jv-review { background: #FAF7F2; border-radius: 10px; padding: 16px; margin-bottom: 14px; }
.jv-review__stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
.jv-review__author { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.jv-review__verif { font-size: 10px; color: #22C55E; font-weight: 600; background: rgba(34,197,94,0.1); padding: 2px 6px; border-radius: 4px; margin-left: 4px; }
.jv-review p { font-size: 13px; color: #4B4654; line-height: 1.5; margin: 0; font-style: italic; }
.jv-review__dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.jv-review__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.15); }
.jv-review__dots span.is-active { background: var(--jv-c); width: 18px; border-radius: 3px; }
.jv-reviews__visual {
  height: 80px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212,180,140,0.4), rgba(180,150,120,0.3)),
    radial-gradient(circle at 70% 60%, rgba(255,200,140,0.4) 0%, transparent 50%);
}

/* ROUTINE CTA */
.jv-routine {
  background: #FAF7F2;
  padding: 30px 0 56px;
}
.jv-routine__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #f5ebd9 0%, #ede1cc 100%);
  border-radius: 18px;
  padding: 28px 36px;
  border: 1px solid rgba(0,0,0,0.04);
}
.jv-routine__box {
  width: 220px;
  height: 160px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}
.jv-routine__box-lid {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.jv-routine__box-lid span { font-size: 6px; letter-spacing: 1.5px; }
.jv-routine__box-lid strong { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; line-height: 1; margin: 2px 0; }
.jv-routine__box-lid em { font-size: 5px; font-style: italic; opacity: 0.7; }
.jv-routine__bottles { display: flex; gap: 4px; justify-content: center; margin-top: auto; }
.jv-routine__bottles span {
  width: 30px; height: 60px;
  background: linear-gradient(180deg, #f5ebd9, #d8c7a4);
  border-radius: 3px 3px 4px 4px;
  position: relative;
}
.jv-routine__bottles span::before {
  content: '';
  position: absolute;
  top: -4px; left: 20%; right: 20%;
  height: 5px;
  background: #fff;
  border-radius: 2px;
}
.jv-routine__plant {
  position: absolute;
  bottom: -10px;
  left: -30px;
  width: 50px;
  height: 80px;
  background: radial-gradient(ellipse at top, #5a7a3f 0%, #2d4a1a 80%);
  border-radius: 0 50% 50% 50%;
  transform: rotate(-15deg);
  z-index: -1;
  opacity: 0.5;
}

.jv-routine__copy h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 600; line-height: 1.2; margin-bottom: 18px; }
.jv-routine__accent { color: var(--jv-c); font-style: italic; }
.jv-routine__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.jv-routine__features > div { display: flex; gap: 8px; align-items: flex-start; }
.jv-rf-icon { color: var(--jv-c); flex-shrink: 0; display: inline-flex; margin-top: 2px; }
.jv-routine__features > div span:not(.jv-rf-icon) { font-size: 11px; color: #4B4654; line-height: 1.4; }

.jv-routine__cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.jv-cta-routine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .15s, background .2s;
}
.jv-cta-routine:hover { background: #000; transform: translateY(-1px); }
.jv-routine__cta small { font-size: 10px; color: #6B6776; }

/* FOOTER TRUST 5 */
.jv-footer-trust {
  background: #FAF7F2;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.jv-footer-trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.jv-footer-trust__inner > div { display: flex; align-items: center; gap: 12px; }
.jv-footer-trust__inner > div svg { color: var(--jv-c); flex-shrink: 0; }
.jv-footer-trust__inner > div span { display: flex; flex-direction: column; line-height: 1.3; }
.jv-footer-trust__inner > div strong { font-size: 12px; font-weight: 700; }
.jv-footer-trust__inner > div em { font-style: normal; font-size: 11px; color: #6B6776; }
.jv-ft-rating { display: flex; flex-direction: column; gap: 2px; }
.jv-ft-stars { color: #F59E0B; font-size: 16px; letter-spacing: 1px; }
.jv-ft-rating strong { font-size: 18px !important; font-weight: 800; }
.jv-ft-rating em { font-size: 10px !important; }

/* ============================================
   PAGE ROUTINE V2 — PREMIUM (split-view 4 colonnes)
   ============================================ */
.page-routine-v2 {
  background:
    radial-gradient(ellipse 800px 600px at 20% 0%, rgba(139,123,201,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 80% 30%, rgba(34,197,94,0.05) 0%, transparent 60%),
    #F8F4EB;
  color: #1F1B26;
}

/* HERO */
.r2-hero { padding: 64px 0 28px; text-align: center; }
.r2-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #1F1B26;
}
.r2-title em {
  font-style: italic;
  color: #5B4B99;
  background: linear-gradient(120deg, #5B4B99 0%, #8B7BC9 50%, #5B4B99 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.r2-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #5C5566;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.04);
}

/* STEPS BAR */
.r2-steps-bar { padding: 12px 0 40px; }
.r2-steps-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.r2-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #B0AAB8;
  text-transform: uppercase;
  transition: color .2s;
}
.r2-step.is-active { color: #1F1B26; }
.r2-step__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  color: #B0AAB8;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.r2-step.is-active .r2-step__num {
  background: linear-gradient(135deg, #1F1B26 0%, #3A3344 100%);
  border-color: #1F1B26;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31,27,38,0.25);
}
.r2-step__sep { color: rgba(0,0,0,0.18); display: inline-flex; }

/* 4 COLUMNS */
.r2-cols { padding: 0 0 72px; }
.r2-cols__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}
.r2-col {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf3 100%);
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.02),
    0 12px 32px -8px rgba(91,75,153,0.08);
}
.r2-col--routine {
  background:
    radial-gradient(ellipse at top, rgba(139,123,201,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #faf3e6 100%);
}
.r2-col--box {
  background:
    radial-gradient(ellipse at top, rgba(34,197,94,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #faf3e6 100%);
}

.r2-col__head { margin-bottom: 22px; }
.r2-col__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 8px;
  color: #1F1B26;
  letter-spacing: -0.3px;
}
.r2-col__title em { font-style: italic; color: #5B4B99; }
.r2-col__sub { font-size: 12px; color: #6B6576; }

/* GOALS — col 1 */
.r2-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.r2-goal {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 18px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.r2-goal:hover {
  transform: translateY(-2px);
  border-color: var(--g);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.12);
}
.r2-goal.is-selected {
  border-color: var(--g);
  background: linear-gradient(180deg, #fff 0%, rgba(139,123,201,0.05) 100%);
  box-shadow: 0 6px 16px -4px rgba(139,123,201,0.25);
}
.r2-goal__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: var(--g);
  display: grid;
  place-items: center;
  transition: all .25s;
}
.r2-goal.is-selected .r2-goal__icon {
  background: var(--g);
  color: #fff;
  box-shadow: 0 6px 14px -4px var(--g);
}
.r2-goal__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #1F1B26;
}
.r2-goal__check {
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all .2s;
}
.r2-goal.is-selected .r2-goal__check {
  background: var(--g);
  border-color: var(--g);
  color: #fff;
}

.r2-secondary-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #6B6576;
  background: rgba(0,0,0,0.025);
  padding: 11px;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px dashed rgba(0,0,0,0.12);
  font-weight: 500;
  transition: background .2s;
}
.r2-secondary-link:hover { background: rgba(0,0,0,0.05); }

.r2-col__btn {
  width: 100%;
  margin-top: auto;
  background: linear-gradient(180deg, #2A2530 0%, #1A1620 100%);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .2s;
  box-shadow: 0 4px 12px -2px rgba(31,27,38,0.3);
}
.r2-col__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(31,27,38,0.4); }

/* SLIDERS — col 2 */
.r2-sliders { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; flex: 1; }
.r2-slider {
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.04);
}
.r2-slider__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.r2-slider__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0,0,0,0.04);
}
.r2-slider__head strong { font-size: 13px; font-weight: 700; color: #1F1B26; }
.r2-slider__pct {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: #1F1B26;
}
.r2-slider__range {
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
}
.r2-slider__track {
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
}
.r2-slider__fill {
  position: absolute;
  left: 0;
  height: 6px;
  border-radius: 3px;
  box-shadow: 0 0 12px var(--sc, currentColor);
}
.r2-slider__thumb {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  transform: translateX(-50%);
  cursor: pointer;
}
.r2-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10.5px;
  color: #8B8593;
  font-weight: 500;
}

/* ROUTINE — col 3 */
.r2-personalized-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  color: #15803D;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-top: 8px;
  box-shadow: 0 2px 8px -2px rgba(34,197,94,0.3);
}

/* Realistic bottle scene */
.r2-routine-scene {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
  margin: 0 -10px 22px;
}
.r2-routine-halo {
  position: absolute;
  width: 92%;
  height: 92%;
  top: 4%;
  left: 4%;
  border: 1.5px dashed rgba(34,197,94,0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.5) 0%, transparent 70%);
}
.r2-routine-halo::before {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(34,197,94,0.08) 0%, transparent 60%);
  filter: blur(20px);
}
.r2-routine-bottles {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.r2-routine-bottles svg {
  filter: drop-shadow(0 14px 22px rgba(31,27,38,0.18));
}
.r2-routine-bottles svg.is-center {
  transform: translateY(-14px) scale(1.12);
  z-index: 2;
}
.r2-routine-stone {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 18px;
  background:
    radial-gradient(ellipse at center top, rgba(31,27,38,0.18) 0%, transparent 70%),
    radial-gradient(ellipse at center, #d4c3a5 0%, #b9a47e 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(0.5px);
}

.r2-pillars-head {
  text-align: center;
  font-size: 11.5px;
  color: #6B6576;
  margin-bottom: 14px;
  font-style: italic;
}
.r2-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.r2-pillars > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.r2-p-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.r2-pillars > div span:last-child {
  font-size: 9px;
  font-weight: 700;
  color: #1F1B26;
  line-height: 1.3;
}

.r2-score-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #FAF7F2 100%);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  margin-top: auto;
}
.r2-score__circle {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.r2-score__circle svg { position: absolute; inset: 0; width: 92px; height: 92px; }
.r2-score__num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  position: relative;
  z-index: 2;
}
.r2-score__num strong {
  font-size: 30px;
  font-weight: 900;
  color: #15803D;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.r2-score__num small { font-size: 11px; color: #6B6576; font-weight: 700; }
.r2-score__label {
  font-size: 11px;
  color: #6B6576;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
  display: block;
}
.r2-score-info { display: flex; flex-direction: column; }
.r2-score-info strong {
  font-size: 12px;
  color: #1F1B26;
  font-weight: 800;
  margin-bottom: 6px;
}
.r2-bullets { display: flex; flex-direction: column; gap: 5px; }
.r2-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #2A2530;
  font-weight: 500;
}

/* BOX — col 4 */
.r2-box-scene {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
  margin: 0 -10px 18px;
}
.r2-box-scene svg {
  filter: drop-shadow(0 18px 30px rgba(31,27,38,0.25));
}

.r2-box-features {
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.03);
}
.r2-box-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  color: #2A2530;
  font-weight: 500;
  line-height: 1.4;
}

.r2-subscription {
  background:
    radial-gradient(ellipse at top, rgba(34,197,94,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #1F1B26 0%, #100D16 100%);
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-top: auto;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px -10px rgba(31,27,38,0.4);
}
.r2-sub__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.r2-sub__label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.r2-sub__type { font-size: 13px; font-weight: 800; letter-spacing: 0.2px; }
.r2-sub__badge {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1.3px;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px -2px rgba(34,197,94,0.5);
}
.r2-sub__price {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.r2-sub__price strong {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  font-family: 'Montserrat', sans-serif;
}
.r2-sub__price small {
  width: 100%;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  text-decoration: line-through;
}
.r2-sub__features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.r2-sub__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.r2-sub__features svg { color: #22C55E; flex-shrink: 0; }
.r2-validate {
  width: 100%;
  background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 0;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 1.8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .2s;
  box-shadow: 0 8px 20px -4px rgba(34,197,94,0.5);
}
.r2-validate:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(34,197,94,0.6);
}
.r2-validate__note {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .r2-cols__inner { grid-template-columns: 1fr 1fr; }
  .r2-title { font-size: 44px; }
}
@media (max-width: 760px) {
  .r2-title { font-size: 32px; }
  .r2-steps-bar__inner { flex-direction: column; gap: 10px; align-items: flex-start; }
  .r2-step__sep { transform: rotate(90deg); }
  .r2-cols__inner { grid-template-columns: 1fr; }
  .r2-pillars { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================
   PAGE ROUTINE (V1 - kept for backward compat, hidden)
   ============================================ */
.page-routine { background: #FAF7F2; color: #2A2530; }

.rt-hero {
  background: linear-gradient(180deg, #FAF7F2 0%, #F0E9DC 100%);
  padding: 56px 0 40px;
  text-align: center;
}
.rt-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--jv-c);
  margin-bottom: 14px;
}
.rt-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.rt-title span { color: var(--jv-c); font-style: italic; }
.rt-sub {
  font-size: 15px;
  color: #58535F;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 620px;
}

.rt-progress {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.rt-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8B8694;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}
.rt-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #8B8694;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  border: 1.5px solid rgba(0,0,0,0.1);
  transition: background .25s, color .25s, border-color .25s;
}
.rt-step.is-active { color: #2A2530; }
.rt-step.is-active span {
  background: var(--jv-c);
  color: #fff;
  border-color: var(--jv-c);
}
.rt-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: rgba(0,0,0,0.1);
}

.rt-step-section { padding: 32px 0 48px; }
.rt-step-head { text-align: center; margin-bottom: 36px; }
.rt-step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--jv-c);
  margin-bottom: 10px;
  background: rgba(139,123,201,0.1);
  padding: 5px 14px;
  border-radius: 999px;
}
.rt-step-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.rt-step-head p { color: #6B6776; font-size: 14px; max-width: 540px; margin: 0 auto; }

.rt-goals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.rt-goal {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  color: #2A2530;
}
.rt-goal:hover {
  transform: translateY(-3px);
  border-color: var(--g);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.rt-goal.is-selected {
  border-color: var(--g);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(139,123,201,0.06) 100%);
  box-shadow: 0 0 0 3px rgba(139,123,201,0.15);
}
.rt-goal__icon {
  color: var(--g);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139,123,201,0.08);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.rt-goal.is-selected .rt-goal__icon { background: var(--g); color: #fff; }
.rt-goal strong { font-size: 14px; font-weight: 700; }
.rt-goal em { font-style: normal; font-size: 11px; color: #6B6776; }

.rt-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  flex-wrap: wrap;
  gap: 16px;
}
.rt-counter { font-size: 14px; color: #6B6776; }
.rt-counter strong { color: var(--jv-c); font-size: 18px; font-weight: 800; }
.rt-next {
  background: var(--jv-c);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, transform .15s, opacity .2s;
}
.rt-next:hover:not(:disabled) { background: var(--jv-c-dark); transform: translateY(-1px); }
.rt-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* PREVIEW */
.rt-preview { padding: 32px 0 60px; background: linear-gradient(180deg, #FAF7F2 0%, #F0E9DC 100%); }
.rt-preview__head { text-align: center; margin-bottom: 32px; }
.rt-preview__head h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 600; margin-bottom: 8px; }
.rt-preview__head p { color: #6B6776; }
.rt-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.rt-prod {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
}
.rt-prod::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c);
  border-radius: 14px 14px 0 0;
}
.rt-prod__jar {
  width: 100px;
  height: 130px;
  margin: 12px auto 16px;
  background: linear-gradient(180deg, #f5ebd9 0%, #e8d8c0 100%);
  border-radius: 6px 6px 12px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
}
.rt-prod__jar::before {
  content: '';
  position: absolute;
  top: -10px; left: 16%; right: 16%;
  height: 14px;
  background: #1a1a1a;
  border-radius: 4px 4px 2px 2px;
}
.rt-prod__label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-style: italic; color: #2a1a0a; }
.rt-prod__name { font-size: 10px; font-weight: 800; color: var(--c); line-height: 1.2; margin-top: 4px; }
.rt-prod__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--c);
  background: rgba(139,123,201,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.rt-prod p { font-size: 12px; color: #58535F; line-height: 1.5; margin: 0 0 12px; }
.rt-prod__price { font-size: 18px; font-weight: 800; color: #2A2530; }

.rt-preview__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
}
.rts-recap h3 { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 16px; }
.rts-recap ul { display: flex; flex-direction: column; gap: 10px; }
.rts-recap li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #FAF7F2;
  border-radius: 8px;
}
.rts-recap li strong { margin-left: auto; font-size: 14px; font-weight: 700; }
.rts-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.rts-price { padding-left: 18px; border-left: 1px solid rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 12px; }
.rts-line { display: flex; justify-content: space-between; font-size: 14px; color: #58535F; }
.rts-line strong { color: #2A2530; font-weight: 700; }
.rts-line--save { color: #22C55E; }
.rts-line--save strong { color: #22C55E; }
.rts-line--final {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #2A2530;
}
.rts-line--final strong { font-size: 22px; font-weight: 900; color: var(--jv-c); }
.rt-cta-final {
  margin-top: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rt-cta-final:hover { background: #000; }
.rts-price small { text-align: center; font-size: 11px; color: #6B6776; }

/* BENEFITS */
.rt-benefits { padding: 48px 0; }
.rt-benefits__title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}
.rt-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rt-b {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.rt-b__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.rt-b strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.rt-b p { font-size: 12px; color: #6B6776; line-height: 1.5; margin: 0; }

@media (max-width: 1100px) {
  .rt-title { font-size: 36px; }
  .rt-goals { grid-template-columns: repeat(3, 1fr); }
  .rt-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .rt-preview__summary { grid-template-columns: 1fr; }
  .rts-price { padding-left: 0; border-left: 0; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08); }
  .rt-benefits__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .rt-title { font-size: 28px; }
  .rt-progress { gap: 14px; }
  .rt-step { font-size: 11px; }
  .rt-step:not(:last-child)::after { display: none; }
  .rt-goals { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rt-goal { padding: 16px 10px; }
  .rt-preview__grid { grid-template-columns: 1fr; }
  .rt-actions { flex-direction: column; align-items: stretch; }
  .rt-benefits__grid { grid-template-columns: 1fr; }
}

/* Responsive JV product */
@media (max-width: 1100px) {
  .jv-hero__inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .jv-hero__right { min-height: 480px; }
  .jv-info__grid { grid-template-columns: 1fr; gap: 28px; }
  .jv-app-reviews__grid { grid-template-columns: 1fr; }
  .jv-routine__inner { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .jv-routine__features { grid-template-columns: 1fr 1fr; }
  .jv-footer-trust__inner { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 760px) {
  .jv-title { font-size: 38px; }
  .jv-title__top { font-size: 22px; }
  .jv-sub { font-size: 14px; }
  .jv-mini-benefits { gap: 14px; }
  .jv-mb__label { font-size: 11px; }
  .jv-cta { font-size: 11px; padding: 14px 18px; }
  .jv-trust { grid-template-columns: 1fr 1fr; }
  .jv-info__grid { padding: 22px; }
  .jv-hero__scene { height: 460px; }
  .jv-jar { width: 200px; }
  .jv-jar__cap { width: 190px; height: 40px; }
  .jv-halo { width: 280px; height: 280px; }
  .jv-app { grid-template-columns: 1fr; }
  .jv-app__phone { max-width: 200px; margin: 0 auto; }
  .jv-footer-trust__inner { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ MOBILE DRAWER ============ */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(20,24,28,0.55);
  backdrop-filter: blur(4px);
  z-index: 60;
  animation: drawerFade .2s ease;
}
.drawer[hidden] { display: none; }
@keyframes drawerFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawerSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 86%;
  max-width: 360px;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  animation: drawerSlide .25s cubic-bezier(.2,.7,.3,1);
  overflow-y: auto;
}
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.brand--drawer, .brand--drawer * { color: var(--text-dark); }
.drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  border-radius: 50%;
}
.drawer__close:active { background: rgba(0,0,0,0.06); }
.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: background .15s;
}
.drawer__nav a[data-accent="green"] { border-left-color: var(--green); }
.drawer__nav a[data-accent="blue"] { border-left-color: var(--blue); }
.drawer__nav a[data-accent="orange"] { border-left-color: var(--orange-light); }
.drawer__nav a[data-accent="red"] { border-left-color: var(--red); }
.drawer__nav a[data-accent="teal"] { border-left-color: var(--teal); }
.drawer__nav a[data-accent="neutral"] { border-left-color: #888; }
.drawer__nav a:active { background: rgba(0,0,0,0.04); }
.drawer__chev { color: var(--text-muted); font-size: 18px; line-height: 1; }
.drawer__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 8px 22px;
}
.drawer__cta {
  margin-top: auto;
  padding: 18px 22px 26px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.drawer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--text-dark);
}
.drawer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.drawer__socials a:active { background: rgba(0,0,0,0.06); }

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  z-index: 40;
}

/* ============ Responsive (tablet) ============ */
@media (max-width: 1100px) {
  .goals__grid { grid-template-columns: repeat(4, 1fr); }
  .gammes__grid { grid-template-columns: repeat(3, 1fr); }
  .box-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .services__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__inner .footer-brand { grid-column: 1 / -1; }
  .site-footer__inner .footer-trust,
  .site-footer__inner .footer-badge { grid-column: span 1; }
}

/* ============ Responsive (mobile <= 760px) ============ */
@media (max-width: 760px) {
  html { overflow-x: hidden; }
  body { overflow-x: hidden; font-size: 15px; }
  .container { padding: 0 20px; }

  /* ----- Header ----- */
  .site-header {
    /* compact mobile header */
  }
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand__top { font-size: 8px; letter-spacing: 2.2px; }
  .brand__name { font-size: 22px; }
  .brand__bottom { font-size: 7px; letter-spacing: 1.5px; gap: 5px; }
  .brand__flag { width: 11px; height: 7px; }
  .main-nav { display: none; }
  .header-actions { gap: 2px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn[aria-label="Recherche"],
  .icon-btn[aria-label="Mon compte"] { display: none; }
  .burger { display: inline-flex; color: var(--text-on-dark); }
  .cart-count { width: 14px; height: 14px; font-size: 9px; top: 4px; right: 4px; }

  /* ----- Hero ----- */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero__title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }
  /* Stop forcing line breaks on small screens — let text wrap */
  .hero__title br { display: none; }
  .hero__lead {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero__lead br { display: none; }
  .btn { padding: 13px 22px; font-size: 11px; letter-spacing: 1.2px; }
  .btn--primary { width: 100%; justify-content: center; }

  .hero__visual {
    min-height: 0;
    height: 280px;
    margin: 0 -4px;
  }
  .hero__photo { border-radius: 14px; }
  .hero__badge { width: 80px; height: 80px; top: 12px; right: 12px; }
  .hero__badge-year { font-size: 16px; }
  .hero__badge-label { font-size: 7px; }
  .hero__trustpilot {
    bottom: 12px;
    right: 12px;
    left: 12px;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
  }
  .hero__trustpilot .tp__label { font-size: 9px; margin: 0; }
  .hero__trustpilot .tp__stars { margin: 0; }
  .hero__trustpilot .tp__star { width: 14px; height: 14px; }
  .hero__trustpilot .tp__star::after { font-size: 10px; }
  .hero__trustpilot .tp__score { font-size: 10px; margin: 0; }
  .hero__trustpilot .tp__count { font-size: 9px; }

  /* ----- Trust bar (horizontal scroll) ----- */
  .trust-bar__inner {
    grid-template-columns: none;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 18px;
    padding-bottom: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar__inner::-webkit-scrollbar { display: none; }
  .trust-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 14px;
    gap: 10px;
  }
  .trust-item svg { width: 24px; height: 24px; }
  .trust-item strong { font-size: 11px; }
  .trust-item span { font-size: 10px; }

  /* ----- Section title ----- */
  .section-title { font-size: 20px; margin-bottom: 24px; letter-spacing: 0.5px; }

  /* ----- JE VEUX (goals) ----- */
  .goals { padding: 40px 0 28px; }
  .goals__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .goal-card {
    min-height: 140px;
    padding: 18px 14px 14px;
    border-radius: 12px;
  }
  .goal-card__icon svg { width: 28px; height: 28px; }
  .goal-card__title { font-size: 12px; margin-top: 16px; letter-spacing: 0.6px; }
  .goal-card__arrow { margin-top: 10px; }
  .goal-card__arrow svg { width: 18px; height: 18px; }

  /* Quiz CTA — full width stack */
  .quiz-cta { flex-direction: column; gap: 12px; }
  .quiz-cta__btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 11px;
    border-radius: 10px;
  }
  .quiz-cta__tags { font-size: 11px; gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* ----- NOS GAMMES ----- */
  .gammes { padding: 20px 0 40px; }
  .gammes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gamme-card {
    aspect-ratio: 4/5;
    padding: 12px;
    border-radius: 12px;
  }
  .gamme-card__label { font-size: 11px; letter-spacing: 1px; }
  .round-arrow { width: 38px; height: 38px; bottom: 12px; }

  /* ----- LA BOX ----- */
  .box-section {
    margin: 0 16px 40px;
    padding: 36px 0;
    border-radius: 14px;
    overflow: hidden;
  }
  .box-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .box-section__title { font-size: 32px; }
  .box-section__lead { font-size: 14px; margin-bottom: 18px; }
  .box-section__features li { font-size: 13px; }
  .btn--sm { width: 100%; justify-content: center; padding: 12px 18px; }

  /* Box mockup scaled down */
  .box-section__visual { min-height: 0; }
  .box-mockup {
    width: 220px;
    transform: perspective(800px) rotateX(6deg);
  }
  .box-mockup__lid { padding: 14px 12px 10px; }
  .box-mockup__brand .brand__name--small { font-size: 14px; }
  .box-mockup__label { font-size: 13px; margin: 6px 0; }
  .box-mockup__icons { font-size: 5px; gap: 2px; letter-spacing: 0.5px; padding: 5px 2px 0; overflow: hidden; }
  .box-bottle { width: 30px; height: 80px; }
  .box-economy-badge {
    width: 76px; height: 76px;
    bottom: -6px;
    right: calc(50% - 130px);
  }
  .bem__big { font-size: 18px; }
  .bem__top, .bem__mid { font-size: 7px; }

  /* App section stacked */
  .box-section__app {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .box-section__app-copy h3 { font-size: 14px; margin-bottom: 14px; }
  .box-app__features li { font-size: 13px; }
  .store-badges { justify-content: flex-start; flex-wrap: wrap; }
  .store-badge { padding: 8px 14px; }
  .store-badge strong { font-size: 12px; }
  .store-badge small { font-size: 8px; }

  /* Phone mockup */
  .phone-mockup {
    width: 220px;
    margin: 0 auto;
    border-radius: 26px;
  }
  .phone-mockup__screen { padding: 14px 12px 10px; }

  /* ----- Testimonials (horizontal scroll-snap) ----- */
  .testimonials { padding: 40px 0 24px; }
  .testimonials__wrapper {
    display: block;
    margin: 0 -20px;
  }
  .testimonials__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 20px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
    padding: 18px;
    border-radius: 12px;
  }
  .testimonial-card__quote { min-height: 0; font-size: 14px; }
  .carousel-arrow { display: none; }

  /* ----- Services ----- */
  .services { padding: 20px 0 32px; }
  .services__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-item {
    background: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
  }

  /* ----- Footer ----- */
  .site-footer { padding: 28px 0 100px; }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-col h4 { font-size: 11px; letter-spacing: 1.2px; margin-bottom: 10px; }
  .footer-col li a { font-size: 13px; }
  .footer-trust { grid-column: 1; align-items: flex-start; }
  .footer-badge { grid-column: 2; justify-self: end; width: 84px; height: 84px; }
  .footer-badge svg { width: 84px; height: 84px; }
  .footer-bottom { margin-top: 18px; }
  .footer-bottom small { font-size: 10px; }

  /* ----- Modal ----- */
  .modal-overlay { padding: 16px; align-items: flex-end; }
  .modal {
    padding: 24px 20px;
    border-radius: 14px 14px 0 0;
    max-width: none;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal__title { font-size: 20px; }
  .modal__lead { font-size: 12px; }
  .modal__lead br { display: none; }
  .modal__title br { display: none; }
  .modal__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .modal-option { padding: 13px 10px; font-size: 11px; }

  /* ----- Show sticky CTA ----- */
  .mobile-sticky-cta { display: inline-flex; }
}

/* ============ Smaller phones (<= 380px) ============ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .brand__name { font-size: 20px; }
  .hero__title { font-size: clamp(26px, 8.5vw, 36px); }
  .goals__grid { gap: 8px; }
  .goal-card { padding: 14px 12px 12px; min-height: 130px; }
  .goal-card__title { font-size: 11px; }
  .gammes__grid { gap: 8px; }
  .box-mockup { width: 200px; }
  .box-bottle { width: 28px; height: 72px; }
  .phone-mockup { width: 200px; }
  .modal__grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE SO KIDS — Hero lifestyle + packs colorés
   ============================================ */
.page-sokids {
  background: #FAF6EF;
  color: #1F1B26;
}

/* HERO */
.sk-hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.sk-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.sk-hero__left { position: relative; z-index: 2; }

/* SO KIDS logo */
.sk-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
}
.sk-logo__bear { display: inline-flex; }
.sk-logo__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, #9B7CC4 0%, #C8A4DC 35%, #F4A852 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1;
}
.sk-logo__text em {
  font-style: normal;
  background: linear-gradient(135deg, #F4A852 0%, #D4622A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sk-logo__sparkles {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: -18px;
}
.sk-logo__sparkle-sm { margin-top: 4px; }

.sk-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #1F1B26;
}
.sk-hero__title em {
  font-style: italic;
  color: #9B7CC4;
}

.sk-hero__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #4A4554;
  margin-bottom: 32px;
}

.sk-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 32px;
}
.sk-hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #1F1B26;
  line-height: 1.35;
  font-weight: 500;
}
.sk-feat__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.sk-hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all .2s;
}
.sk-btn--primary {
  background: linear-gradient(135deg, #F4A852 0%, #D4622A 100%);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(212,98,42,0.45);
}
.sk-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(212,98,42,0.55); }
.sk-btn--ghost {
  background: rgba(0,0,0,0.04);
  color: #1F1B26;
}
.sk-btn--ghost:hover { background: rgba(0,0,0,0.08); }

/* RIGHT - lifestyle photo + packs + card */
.sk-hero__right {
  position: relative;
  min-height: 620px;
}
.sk-hero__photo {
  position: absolute;
  top: 0; right: 0;
  width: 92%;
  height: 480px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(155,124,196,0.35);
}
.sk-hero__photo img,
.sk-hero__photo picture {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sk-hero__photo-svg {
  width: 100%; height: 100%;
  display: block;
}
.sk-hero__photo--illu {
  background: linear-gradient(180deg, #FBE5C8 0%, #F4D8E0 50%, #E8DDF5 100%);
}
/* SVG illustration for engagement cards */
.sk-engcard__visual--illu svg {
  width: 100%; height: 100%;
  display: block;
}
.sk-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244,168,82,0.12) 0%, transparent 40%, rgba(200,164,220,0.18) 100%);
  pointer-events: none;
}
.sk-hero__moon {
  position: absolute;
  top: 40px; left: 60px;
  filter: drop-shadow(0 4px 12px rgba(244,168,82,0.5));
  z-index: 3;
}
.sk-hero__star {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.sk-hero__star--1 { top: 80px; left: 140px; }
.sk-hero__star--2 { top: 130px; left: 50px; }
.sk-hero__cloud {
  position: absolute;
  top: 160px;
  left: -10px;
  z-index: 3;
  opacity: 0.85;
}

/* Floating violet card */
.sk-hero__card {
  position: absolute;
  top: 90px; right: -20px;
  width: 280px;
  background: linear-gradient(180deg, #F3EAFB 0%, #E8DDF5 100%);
  border-radius: 22px;
  padding: 22px 24px 20px;
  box-shadow: 0 20px 40px -12px rgba(155,124,196,0.35);
  z-index: 4;
}
.sk-hero__card-heart {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(155,124,196,0.2);
}
.sk-hero__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: #1F1B26;
  margin-bottom: 10px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}
.sk-hero__card p {
  font-size: 12.5px;
  color: #5A4F6C;
  line-height: 1.5;
  margin: 0;
}
.sk-hero__card-leaf {
  position: absolute;
  bottom: 0;
  right: 10px;
  opacity: 0.55;
}

/* Packs at bottom */
.sk-hero__packs {
  position: absolute;
  bottom: 0;
  left: 8%;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  z-index: 5;
  filter: drop-shadow(0 18px 30px rgba(31,27,38,0.25));
}
.sk-hero__pack--syrop { transform: translateY(0); }
.sk-hero__pack--jar { transform: translateY(20px); }

/* Fruits decorations */
.sk-hero__fruit {
  position: absolute;
  z-index: 6;
  border-radius: 50%;
}
.sk-hero__fruit--berry1 {
  width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 30%, #6B7CB8, #2A3C7B);
  bottom: 8px; left: 5%;
  box-shadow: 0 4px 8px rgba(42,60,123,0.4);
}
.sk-hero__fruit--berry2 {
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #6B7CB8, #2A3C7B);
  bottom: 30px; left: 12%;
}
.sk-hero__fruit--berry3 {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 30% 30%, #6B7CB8, #2A3C7B);
  bottom: 4px; left: 38%;
}
.sk-hero__fruit--strawberry {
  width: 32px; height: 26px;
  background: radial-gradient(circle at 40% 35%, #FF7AA3, #E5588C);
  bottom: 6px; right: 28%;
  border-radius: 50% 50% 60% 60%;
  box-shadow: 0 4px 10px rgba(229,88,140,0.35);
}
.sk-hero__fruit--strawberry::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 8px;
  background: #5BA63D;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 50% 70%);
}
.sk-hero__fruit--orange {
  width: 60px; height: 60px;
  background: radial-gradient(circle at 50% 50%, #FCD08A 25%, #F4A852 60%);
  bottom: 20px; right: 8%;
  box-shadow: 0 6px 14px rgba(244,168,82,0.35);
}
.sk-hero__fruit--orange::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg at center, transparent 0deg, transparent 30deg, rgba(244,168,82,0.4) 30deg, rgba(244,168,82,0.4) 32deg);
}

/* ============ STRIP ============ */
.sk-strip {
  background: #FBF6EC;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sk-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.sk-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sk-strip__item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.06);
  padding-right: 24px;
}
.sk-strip__icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
}
.sk-strip__item span {
  font-size: 12.5px;
  color: #4A4554;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.sk-strip__item span strong {
  font-weight: 800;
  color: #1F1B26;
  font-size: 13.5px;
}

/* ============ PACKS ============ */
.sk-packs {
  padding: 80px 0 60px;
}
.sk-packs__head {
  text-align: center;
  margin-bottom: 44px;
}
.sk-packs__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #1F1B26;
  margin-bottom: 12px;
  line-height: 1.1;
}
.sk-packs__title em {
  font-style: italic;
  background: linear-gradient(135deg, #9B7CC4 0%, #F4A852 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.sk-packs__sub {
  font-size: 15px;
  color: #6B6576;
}

.sk-packs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.sk-pack {
  position: relative;
  background: var(--pk-bg, #FAF6EF);
  border-radius: 24px;
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
}
.sk-pack:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -16px rgba(31,27,38,0.18);
}
.sk-pack__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, #FFD96B 0%, #F4A852 100%);
  color: #1F1B26;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(244,168,82,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}
.sk-pack__badge::before {
  content: '✦ ';
  color: #fff;
  -webkit-text-stroke: 1px rgba(0,0,0,0.1);
}
.sk-pack__icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--pk);
  margin-bottom: 14px;
  box-shadow: 0 6px 14px -2px rgba(31,27,38,0.08);
}
.sk-pack__title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #1F1B26;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sk-pack__desc {
  font-size: 12.5px;
  color: #4A4554;
  line-height: 1.45;
  margin-bottom: 8px;
  min-height: 36px;
}
.sk-pack__visual {
  width: 100%;
  margin: 8px 0 14px;
  display: flex;
  justify-content: center;
}
.sk-pack__age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--pk);
  font-weight: 700;
  margin-bottom: 16px;
}
.sk-pack__btn {
  width: 100%;
  background: var(--pk);
  color: #fff;
  border: 0;
  padding: 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: filter .2s, transform .2s;
  box-shadow: 0 6px 14px -4px var(--pk);
}
.sk-pack__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.sk-packs__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 999px;
  padding: 18px 30px;
  box-shadow: 0 8px 24px -8px rgba(31,27,38,0.08);
}
.sk-packs__features > div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #4A4554;
  line-height: 1.35;
}
.sk-pf__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* ============ ENGAGEMENT CARDS ============ */
.sk-engage {
  padding: 50px 0 70px;
}
.sk-engage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.sk-engcard {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  background: #FBF6EC;
  border: 1px solid rgba(0,0,0,0.04);
}
.sk-engcard__body {
  padding: 26px 24px 18px;
  z-index: 2;
}
.sk-engcard__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: #1F1B26;
}
.sk-engcard__body h3 em {
  font-style: italic;
  color: #D4622A;
}
.sk-engcard--teddy .sk-engcard__body h3 em { color: #9B7CC4; }
.sk-engcard--gummies .sk-engcard__body h3 em { color: #E5588C; }
.sk-engcard__body > p {
  font-size: 13.5px;
  color: #5A4F6C;
  line-height: 1.5;
  margin-bottom: 14px;
}

.sk-engcard__chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sk-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(91,166,61,0.18);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 11.5px;
  color: #4A4554;
}
.sk-chip strong {
  font-weight: 800;
  font-size: 10.5px;
  color: #1F1B26;
  letter-spacing: 0.5px;
  display: block;
}
.sk-chip em {
  font-style: normal;
  font-size: 8.5px;
  color: #6B6576;
  display: block;
}

.sk-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sk-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #4A4554;
}
.sk-bull-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.sk-engcard__visual {
  position: relative;
  flex: 1;
  min-height: 180px;
  overflow: hidden;
}
.sk-engcard__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.sk-engcard__stamp {
  position: absolute;
  bottom: 16px; right: 16px;
  filter: drop-shadow(0 6px 12px rgba(212,98,42,0.4));
  transform: rotate(-12deg);
}
.sk-engcard__logo {
  position: absolute;
  bottom: 16px; right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px -4px rgba(31,27,38,0.2);
}
.sk-engcard__logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #9B7CC4 0%, #F4A852 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
}
.sk-engcard__logo span em {
  font-style: normal;
  background: linear-gradient(135deg, #F4A852 0%, #D4622A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sk-engcard--gummies { background: linear-gradient(135deg, #FCEEF3 0%, #FBE3EC 100%); }
.sk-engcard--sirop { background: linear-gradient(135deg, #FCF4E6 0%, #FBEAD3 100%); }
.sk-engcard--teddy { background: linear-gradient(135deg, #F4ECFB 0%, #EDE0F7 100%); }

/* ============ TRUST FOOTER ============ */
.sk-trust {
  background: linear-gradient(135deg, #FBE6EE 0%, #FCF1E5 50%, #F4ECFB 100%);
  padding: 26px 0;
}
.sk-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.sk-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1F1B26;
}
.sk-trust__item svg { color: #9B7CC4; flex-shrink: 0; }
.sk-trust__item div { display: flex; flex-direction: column; line-height: 1.3; }
.sk-trust__item strong { font-size: 12.5px; font-weight: 800; }
.sk-trust__item span { font-size: 11.5px; color: #5A4F6C; }
.sk-trust__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: 24px;
}
.sk-trust__rating strong {
  font-size: 22px;
  font-weight: 900;
  color: #1F1B26;
  line-height: 1;
}
.sk-stars { color: #F4A852; font-size: 14px; letter-spacing: 1px; margin: 4px 0; }
.sk-trust__rating em {
  font-style: normal;
  font-size: 11px;
  color: #5A4F6C;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
  .sk-packs__grid { gap: 12px; }
  .sk-pack { padding: 22px 12px 18px; }
  .sk-pack__title { font-size: 12.5px; }
  .sk-pack__desc { font-size: 11.5px; min-height: 32px; }
  .sk-pack__btn { font-size: 11px; padding: 11px; }
  .sk-pack__badge { font-size: 8.5px; padding: 4px 8px; top: 10px; left: 10px; }
}
@media (max-width: 1100px) {
  .sk-packs__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 1080px) {
  .sk-hero__inner { grid-template-columns: 1fr; }
  .sk-hero__right { min-height: 540px; max-width: 600px; margin: 0 auto; }
  .sk-hero__title { font-size: 52px; }
  .sk-engage__grid { grid-template-columns: 1fr; }
  .sk-engcard { min-height: 320px; }
}
@media (max-width: 760px) {
  .sk-hero { padding: 32px 0 40px; }
  .sk-hero__title { font-size: 38px; }
  .sk-hero__features { grid-template-columns: 1fr; gap: 14px; }
  .sk-hero__right { min-height: 480px; }
  .sk-hero__photo { width: 100%; height: 360px; }
  .sk-hero__card { right: auto; left: 10px; width: 220px; padding: 16px 18px; }
  .sk-hero__card h3 { font-size: 17px; }
  .sk-hero__card p { font-size: 11.5px; }
  .sk-hero__packs { left: 6%; gap: 8px; transform: scale(0.7); transform-origin: bottom left; }
  .sk-strip__inner { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .sk-strip__item:not(:last-child) { border-right: 0; padding-right: 0; }
  .sk-packs__title { font-size: 32px; }
  .sk-packs__grid { grid-template-columns: 1fr 1fr; }
  .sk-packs__features { border-radius: 18px; padding: 14px; flex-direction: column; }
  .sk-packs__features { grid-template-columns: 1fr; }
  .sk-trust__inner { grid-template-columns: 1fr 1fr; }
  .sk-trust__rating {
    grid-column: 1 / -1;
    flex-direction: row;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-left: 0;
    padding-top: 14px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .sk-packs__grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE MOBILE ULTRA — Override globaux
   ============================================ */

/* Tablet 760-1080 */
@media (max-width: 1080px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .main-nav { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile large 480-760 */
@media (max-width: 760px) {
  body { font-size: 14px; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* HEADER */
  .site-header { padding: 8px 0; }
  .header-inner { gap: 8px; }
  .brand__top { font-size: 7px; }
  .brand__name { font-size: 18px; }
  .brand__bottom { font-size: 8px; }
  .header-actions { gap: 4px; }
  .icon-btn { padding: 6px; }
  .icon-btn svg { width: 18px; height: 18px; }

  /* DRAWER */
  .drawer__panel { width: 86vw; max-width: 320px; }

  /* SECTION PADDINGS */
  section { padding-left: 0; padding-right: 0; }

  /* TYPO */
  h1 { font-size: 28px !important; line-height: 1.15 !important; }
  h2 { font-size: 22px !important; line-height: 1.2 !important; }
  h3 { font-size: 17px !important; }
  p, li { font-size: 13px; line-height: 1.5; }

  /* BUTTONS */
  .btn, .sk-btn, .r2-col__btn, .r2-validate, .sk-pack__btn {
    font-size: 11px !important;
    padding: 12px 18px !important;
    width: 100%;
  }

  /* GRIDS - force 1 col */
  .features-grid, .services__inner, .testimonials__grid,
  .protocoles__grid, .ng-track, .footer-cols { grid-template-columns: 1fr !important; }

  /* PRODUCT cards */
  .prod-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .prod-card { padding: 14px 10px !important; }
  .prod-card__name { font-size: 12px !important; }
  .prod-card__price { font-size: 14px !important; }

  /* HERO INDEX */
  .hero-home { min-height: 70vh; padding: 24px 0 40px; }
  .hero-home__inner { grid-template-columns: 1fr !important; gap: 24px; text-align: center; }
  .hero-home__title { font-size: 36px !important; }
  .hero-home__lead { font-size: 14px; }
  .hero-home__visual { max-width: 320px; margin: 0 auto; }

  /* HERO EXPERT (univers) */
  .hero-expert { padding: 24px 0 40px; min-height: auto; }
  .hero-expert__inner { grid-template-columns: 1fr !important; gap: 24px; }
  .hero-expert__title { font-size: 32px !important; line-height: 1.1 !important; }
  .hero-expert__lead { font-size: 13px; }
  .hero-expert__visual { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
  .product-photo img { max-width: 140px; height: auto; }

  /* TRUST CARD */
  .trust-card { grid-template-columns: 1fr 1fr !important; padding: 14px !important; gap: 12px; }
  .trust-card__item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .trust-card__item strong { font-size: 11px; }

  /* NOTRE GAMME carousel */
  .ng-track { grid-template-columns: 1fr 1fr !important; gap: 12px; padding: 0; }
  .ng-card { padding: 16px !important; min-height: 220px; }
  .ng-arrow { display: none !important; }
  .ng-dots { margin-top: 16px; }

  /* PROTOCOLES */
  .protocoles__head { flex-direction: column; gap: 16px; align-items: flex-start; }
  .protocole { padding: 18px 12px; }

  /* CTA BAND */
  .cta-band__inner { flex-direction: column; gap: 16px; padding: 20px; text-align: center; }
  .cta-band__bottle { transform: scale(0.85); }

  /* JE VEUX product page */
  .jv-hero { padding: 32px 0; }
  .jv-hero__inner { grid-template-columns: 1fr !important; gap: 28px; text-align: center; }
  .jv-hero__title { font-size: 36px !important; }
  .jv-product { max-width: 240px; margin: 0 auto; }
  .jv-assoc__grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .jv-routine__grid { grid-template-columns: 1fr !important; gap: 20px; }
  .jv-footer-trust__inner { grid-template-columns: 1fr 1fr !important; gap: 16px; padding: 16px; }

  /* SO KIDS — ultra mobile */
  .sk-hero { padding: 24px 0 32px; }
  .sk-hero__inner { grid-template-columns: 1fr !important; gap: 28px; }
  .sk-logo { margin-bottom: 18px; gap: 8px; }
  .sk-logo__bear svg { width: 38px; height: 38px; }
  .sk-logo__text { font-size: 24px; }
  .sk-hero__title { font-size: 30px !important; line-height: 1.05 !important; margin-bottom: 14px; }
  .sk-hero__lead { font-size: 13px; margin-bottom: 18px; }
  /* Keep <br> but ensure spacing between words on mobile */
  .sk-hero__features { grid-template-columns: 1fr 1fr !important; gap: 10px; margin-bottom: 20px; }
  .sk-hero__features li { font-size: 11px; gap: 8px; }
  .sk-feat__icon { width: 34px; height: 34px; }
  .sk-feat__icon svg { width: 16px; height: 16px; }
  .sk-hero__cta { flex-direction: column; gap: 10px; }
  .sk-btn { width: 100%; padding: 13px 18px; font-size: 11px !important; }
  .sk-hero__right { min-height: 360px; max-width: 100%; }
  .sk-hero__photo { width: 100%; height: 280px; border-radius: 18px; }
  .sk-hero__card {
    position: absolute;
    top: 14px; right: 14px; left: auto;
    width: 180px;
    padding: 12px 14px;
  }
  .sk-hero__card h3 { font-size: 13px; margin-bottom: 4px; }
  .sk-hero__card p { font-size: 10.5px; }
  .sk-hero__card-heart { width: 28px; height: 28px; margin-bottom: 6px; }
  .sk-hero__card-heart svg { width: 16px; height: 16px; }
  .sk-hero__packs { left: 8%; transform: scale(0.55); transform-origin: bottom left; bottom: -10px; }
  .sk-hero__fruit--orange { width: 36px; height: 36px; }
  .sk-hero__fruit--strawberry { width: 22px; height: 18px; }
  .sk-hero__moon { transform: scale(0.6); transform-origin: top left; }

  /* SK STRIP */
  .sk-strip { padding: 18px 0; }
  .sk-strip__inner { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .sk-strip__item { padding: 0 !important; border: 0 !important; gap: 10px; font-size: 11px; }
  .sk-strip__item strong { font-size: 12px !important; }
  .sk-strip__icon svg { width: 22px; height: 22px; }

  /* SK PACKS */
  .sk-packs { padding: 40px 0 30px; }
  .sk-packs__head { margin-bottom: 24px; }
  .sk-packs__title { font-size: 26px !important; line-height: 1.1; }
  .sk-packs__sub { font-size: 13px; }
  .sk-packs__grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .sk-pack { padding: 18px 12px 14px; border-radius: 18px; }
  .sk-pack__title { font-size: 11.5px !important; }
  .sk-pack__desc { font-size: 11px !important; min-height: 26px; }
  .sk-pack__visual { margin: 4px 0 10px; }
  .sk-pack__age { font-size: 11px; margin-bottom: 10px; }
  .sk-pack__btn { font-size: 10.5px !important; padding: 10px !important; letter-spacing: 1px; }
  .sk-pack__icon { width: 44px; height: 44px; margin-bottom: 8px; }
  .sk-pack__badge { font-size: 7.5px; padding: 4px 6px; top: 8px; left: 8px; }
  .sk-packs__features {
    grid-template-columns: 1fr !important;
    border-radius: 14px;
    padding: 14px;
    gap: 12px;
  }
  .sk-packs__features > div { font-size: 12px; }

  /* SK ENGAGE */
  .sk-engage { padding: 30px 0 40px; }
  .sk-engage__grid { grid-template-columns: 1fr !important; gap: 16px; }
  .sk-engcard { min-height: auto; }
  .sk-engcard__body { padding: 18px 18px 12px; }
  .sk-engcard__body h3 { font-size: 19px !important; line-height: 1.18; }
  .sk-engcard__body > p { font-size: 12px; }
  .sk-engcard__visual { min-height: 200px; }
  .sk-engcard__visual--illu svg { height: 200px; }
  .sk-bullets li { font-size: 11.5px; }
  .sk-chip { padding: 7px 10px; font-size: 10.5px; }
  .sk-chip strong { font-size: 10px; }
  .sk-chip em { font-size: 8px; }
  .sk-engcard__stamp svg { width: 60px; height: 60px; }
  .sk-engcard__logo { padding: 4px 12px 4px 4px; }
  .sk-engcard__logo span { font-size: 13px; }
  .sk-engcard__logo svg { width: 32px; height: 32px; }

  /* SK TRUST FOOTER */
  .sk-trust { padding: 18px 0; }
  .sk-trust__inner { grid-template-columns: 1fr 1fr !important; gap: 14px; row-gap: 16px; }
  .sk-trust__item { font-size: 11px; gap: 10px; }
  .sk-trust__item strong { font-size: 11px; }
  .sk-trust__item span { font-size: 10px; }
  .sk-trust__item svg { width: 22px; height: 22px; }
  .sk-trust__rating {
    grid-column: 1 / -1;
    flex-direction: row;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-left: 0;
    padding-top: 14px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .sk-trust__rating strong { font-size: 18px; }
  .sk-stars { font-size: 12px; }
  .sk-trust__rating em { font-size: 10px; }

  /* ROUTINE V2 */
  .r2-hero { padding: 24px 0 14px; }
  .r2-title { font-size: 28px !important; line-height: 1.05; }
  .r2-sub { font-size: 12px; padding: 8px 14px; }
  .r2-steps-bar { padding: 8px 0 18px; }
  .r2-steps-bar__inner { gap: 8px; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .r2-step { gap: 6px; font-size: 9px !important; }
  .r2-step__num { width: 22px; height: 22px; font-size: 10px; }
  .r2-step__sep { display: none; }
  .r2-step__label { display: none; }
  .r2-step.is-active .r2-step__label { display: inline; }
  .r2-cols { padding: 0 0 32px; }
  .r2-cols__inner { grid-template-columns: 1fr !important; gap: 16px; }
  .r2-col { padding: 18px 14px; }
  .r2-col__title { font-size: 18px !important; }
  .r2-col__sub { font-size: 11px; }
  .r2-goals { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 8px; }
  .r2-goal { padding: 12px 6px 10px; }
  .r2-goal__icon { width: 36px; height: 36px; }
  .r2-goal__label { font-size: 10px; line-height: 1.15; }
  .r2-goal__check { width: 16px; height: 16px; top: 6px; right: 6px; }
  .r2-pillars { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .r2-p-icon { width: 30px; height: 30px; }
  .r2-pillars > div span:last-child { font-size: 8px; }
  .r2-score__circle { width: 76px; height: 76px; }
  .r2-score__circle svg { width: 76px; height: 76px; }
  .r2-score__num strong { font-size: 24px; }
  .r2-routine-scene { height: 200px; }
  .r2-box-features { padding: 12px; }
  .r2-box-features li { font-size: 11px; gap: 8px; }
  .r2-subscription { padding: 16px; }
  .r2-sub__price strong { font-size: 26px; }

  /* CATALOG PRODUITS */
  .catalog-hero { padding: 24px 0; }
  .catalog-hero__title { font-size: 30px !important; }
  .catalog-filters { padding: 12px; gap: 8px; flex-wrap: wrap; }
  .filter-pill { font-size: 11px; padding: 6px 12px; }
  .prod-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }

  /* FOOTER */
  .site-footer { padding: 24px 0; }
  .site-footer__inner { grid-template-columns: 1fr !important; gap: 18px; text-align: center; }
  .footer-trust { justify-self: center; }

  /* TRUST BAR INDEX */
  .truststrip__inner { flex-direction: column; gap: 10px; padding: 14px; }
  .truststrip__item { font-size: 11px; }

  /* MODAL */
  .modal__panel { padding: 24px 18px; max-height: 90vh; overflow-y: auto; }
  .modal__title { font-size: 22px !important; }
  .modal-option { padding: 14px; gap: 12px; }
  .modal-option__icon { width: 38px; height: 38px; }
}

/* Mobile small (<480px) */
@media (max-width: 480px) {
  h1 { font-size: 24px !important; }
  h2 { font-size: 19px !important; }
  .container { padding-left: 14px; padding-right: 14px; }

  /* PROD cards 1 col */
  .prod-grid { grid-template-columns: 1fr !important; }

  /* SK packs 1 col */
  .sk-packs__grid { grid-template-columns: 1fr !important; }

  /* SK strip 1 col */
  .sk-strip__inner { grid-template-columns: 1fr !important; }

  /* SK hero card position adjust */
  .sk-hero__card { width: 160px; padding: 10px 12px; top: 10px; right: 10px; }
  .sk-hero__card h3 { font-size: 12px; }
  .sk-hero__card p { font-size: 10px; }

  /* Routine goals 2 col */
  .r2-goals { grid-template-columns: 1fr 1fr; }
  .r2-pillars { grid-template-columns: repeat(3, 1fr); }

  /* SK trust 1 col */
  .sk-trust__inner { grid-template-columns: 1fr !important; }
  .sk-trust__rating { grid-column: auto; flex-direction: column; padding-top: 10px; }
}

/* ============================================
   PAGE HOME 2 — Copie maquette mobile
   ============================================ */
.page-home2 { background: #fff; color: #1F1B26; }

/* HEADER */
.hh-header {
  background: #0E1117;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.hh-header__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 16px;
  gap: 12px;
}
.hh-burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 38px; height: 38px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
}
.hh-burger span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.hh-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  line-height: 1;
}
.hh-brand__top { font-size: 9px; letter-spacing: 2.5px; font-weight: 600; margin-bottom: 2px; }
.hh-brand__name { font-size: 24px; font-weight: 900; letter-spacing: -0.5px; }
.hh-brand__name-bio { color: #5BA63D; }
.hh-brand__bottom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.3px;
}
.hh-brand__flag {
  width: 14px; height: 9px;
  background:
    linear-gradient(to right, #002654 33%, #fff 33%, #fff 66%, #ED2939 66%);
  border-radius: 1px;
  display: inline-block;
}

.hh-header__actions { display: flex; gap: 6px; align-items: center; }
.hh-icon {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  width: 38px; height: 38px;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.hh-cart__count {
  position: absolute;
  top: 2px; right: 0;
  background: #5BA63D;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* SUBNAV horizontal */
.hh-subnav {
  background: #0E1117;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hh-subnav::-webkit-scrollbar { display: none; }
.hh-subnav__inner {
  display: flex;
  gap: 26px;
  padding: 16px 16px 14px;
  white-space: nowrap;
  justify-content: center;
}
.hh-sub {
  position: relative;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding-bottom: 8px;
  flex-shrink: 0;
  transition: color .2s;
}
.hh-sub::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--ac, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s;
}
.hh-sub[data-accent="blue"] { --ac: #3A7BD5; }
.hh-sub[data-accent="green"] { --ac: #5BA63D; }
.hh-sub[data-accent="orange"] { --ac: #D4622A; }
.hh-sub[data-accent="red"] { --ac: #C03A2B; }
.hh-sub[data-accent="teal"] { --ac: #00897B; }
.hh-sub:hover, .hh-sub.is-active { color: #fff; }
.hh-sub.is-active::after { transform: scaleX(1); }

/* HERO */
.hh-hero {
  position: relative;
  background: #0E1117;
  color: #fff;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hh-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hh-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hh-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,23,0.5) 0%, rgba(14,17,23,0.15) 35%, rgba(14,17,23,0.85) 100%);
}
.hh-hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  padding-bottom: 36px;
}
.hh-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #5BA63D;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hh-eb-dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }
.hh-eb-sep { color: rgba(255,255,255,0.4); margin: 0 -3px; }

.hh-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  color: #fff;
}
.hh-hero__title span {
  color: #5BA63D;
  font-style: normal;
}
.hh-hero__lead {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 380px;
}
.hh-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #5BA63D;
  color: #fff;
  padding: 16px 26px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 8px 20px -6px rgba(91,166,61,0.5);
}
.hh-cta:hover { background: #4a8a2f; transform: translateY(-1px); }

/* Trustpilot floating badge */
.hh-hero__tp {
  position: absolute;
  bottom: 32px;
  right: 16px;
  z-index: 3;
  background: rgba(14,17,23,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 140px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.hh-tp__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}
.hh-tp__stars {
  display: inline-flex;
  gap: 1px;
}
.hh-tp__star {
  width: 18px; height: 18px;
  background: #00B67A;
  display: inline-block;
  position: relative;
}
.hh-tp__star::after {
  content: '★';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.hh-tp__score {
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hh-tp__score strong { color: #00B67A; font-weight: 700; font-size: 12px; }
.hh-tp__avis { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* TRUST BAR DARK */
.hh-trustbar {
  background: #0E1117;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.hh-trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.hh-tb__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
}
.hh-tb__item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 16px;
}
.hh-tb__icon {
  flex-shrink: 0;
  color: #fff;
  display: inline-flex;
}
.hh-tb__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hh-tb__txt strong { font-weight: 800; font-size: 11.5px; letter-spacing: 0.5px; }
.hh-tb__txt em { font-style: normal; font-size: 11px; color: rgba(255,255,255,0.65); }

/* JE VEUX section */
.hh-jeveux {
  background: #FAF7F2;
  padding: 48px 0 40px;
}
.hh-jv__title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.hh-jv__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #5BA63D;
  margin: 8px auto 0;
  border-radius: 2px;
}
.hh-jv__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 28px 0 24px;
}
.hh-jv__card {
  position: relative;
  background: var(--c);
  color: #fff;
  padding: 18px 12px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 160px;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.hh-jv__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hh-jv__card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -6px rgba(0,0,0,0.3); }
.hh-jv__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  margin-top: 4px;
}
.hh-jv__icon svg { width: 28px; height: 28px; }
.hh-jv__card strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.hh-jv__arrow {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-top: auto;
}

/* Routine pill */
.hh-routine-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFCF6;
  border: 1.5px solid #E0D6C0;
  color: #1F1B26;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  max-width: 460px;
  transition: background .2s, transform .2s;
}
.hh-routine-pill:hover { background: #FAF3E2; transform: translateY(-1px); }
.hh-routine-info {
  text-align: center;
  font-size: 12px;
  color: #6B6776;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hh-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #5BA63D;
  display: inline-block;
}

/* NOS GAMMES */
.hh-gammes {
  background: #fff;
  padding: 40px 0 56px;
}
.hh-g__title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #1F1B26;
}
.hh-g__carousel {
  margin: 0 -16px;
  overflow: hidden;
}
.hh-g__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px 8px;
  scroll-padding-left: 16px;
}
.hh-g__track::-webkit-scrollbar { display: none; }

.hh-g__card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  min-height: 220px;
  transition: transform .25s;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.2);
}
.hh-g__card:hover { transform: translateY(-3px); }
.hh-g__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hh-g__bg svg { display: block; width: 100%; height: 100%; }
.hh-g__body {
  position: relative;
  z-index: 2;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
}
.hh-g__body h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hh-g__body p {
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hh-g__btn {
  margin-top: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--cc, #1F1B26);
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  margin-top: 16px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.hh-g__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.hh-g__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hh-g__dot.is-active { background: #1F1B26; transform: scale(1.25); }

/* ENGAGEMENTS */
.hh-engagement {
  background: #FAF7F2;
  padding: 56px 0;
}
.hh-eng__title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.hh-eng__sub {
  text-align: center;
  font-size: 13px;
  color: #6B6776;
  margin-bottom: 28px;
}
.hh-eng__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hh-eng__item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.05);
}
.hh-eng__icon { display: inline-flex; }
.hh-eng__item strong { font-size: 15px; font-weight: 800; line-height: 1.2; }
.hh-eng__item span { font-size: 12px; color: #6B6776; line-height: 1.4; }

/* DESKTOP layout adjustments */
@media (min-width: 900px) {
  .hh-header__top { padding: 18px 24px; }
  .hh-brand__name { font-size: 30px; }
  .hh-subnav__inner { gap: 40px; padding: 16px 24px; }
  .hh-sub { font-size: 14px; }
  .hh-hero { min-height: 760px; }
  .hh-hero__copy { padding-top: 80px; padding-bottom: 90px; }
  .hh-hero__title { font-size: 68px; }
  .hh-hero__lead { font-size: 16px; max-width: 540px; }
  .hh-hero__tp { bottom: 60px; right: 60px; padding: 18px 20px; }
  .hh-jv__grid { gap: 18px; }
  .hh-jv__card { padding: 26px 18px; min-height: 200px; }
  .hh-jv__card strong { font-size: 13px; }
  .hh-jv__icon { width: 56px; height: 56px; }
  .hh-jv__icon svg { width: 32px; height: 32px; }
  .hh-g__card { flex: 0 0 calc(50% - 7px); }
  .hh-g__body { padding: 32px; min-height: 280px; }
  .hh-g__body h3 { font-size: 32px; }
  .hh-g__body p { font-size: 15px; }
  .hh-eng__title, .hh-g__title, .hh-jv__title { font-size: 32px; }
}
@media (min-width: 1200px) {
  .hh-g__card { flex: 0 0 calc(33.33% - 10px); }
}

/* MOBILE responsive (<760) */
@media (max-width: 760px) {
  .hh-brand__top { font-size: 8px; letter-spacing: 2px; }
  .hh-brand__name { font-size: 21px; }
  .hh-brand__bottom { font-size: 9px; }
  .hh-subnav__inner { gap: 22px; padding: 14px 16px 12px; justify-content: flex-start; }
  .hh-sub { font-size: 12px; letter-spacing: 1px; }
  .hh-hero { min-height: 580px; }
  .hh-hero { min-height: 680px; }
  .hh-hero__copy { padding-bottom: 40px; padding-right: 8px; }
  .hh-hero__title { font-size: 38px !important; }
  .hh-hero__lead { font-size: 13px; max-width: 100%; padding-right: 0; }
  .hh-cta { padding: 14px 22px; font-size: 11.5px; max-width: calc(100% - 160px); }
  .hh-hero__tp { padding: 10px 12px; min-width: 130px; bottom: 30px; right: 14px; }
  .hh-tp__label { font-size: 10px; letter-spacing: 1.5px; }
  .hh-tp__star { width: 14px; height: 14px; }
  .hh-tp__star::after { font-size: 11px; }
  .hh-tp__score { font-size: 10.5px; }
  .hh-tp__avis { font-size: 9px; }
  .hh-trustbar { padding: 14px 0; }
  .hh-trustbar__inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hh-tb__item { flex-direction: column; align-items: flex-start; gap: 6px; padding-right: 8px !important; border-right-color: rgba(255,255,255,0.04) !important; }
  .hh-tb__txt strong { font-size: 9.5px; line-height: 1.1; }
  .hh-tb__txt em { font-size: 9px; }
  .hh-tb__icon svg { width: 20px; height: 20px; }
  .hh-jeveux { padding: 36px 0 32px; }
  .hh-jv__title { font-size: 24px !important; }
  .hh-jv__title::after { width: 50px; height: 3px; }
  .hh-jv__grid { grid-template-columns: repeat(5, 1fr); gap: 5px; margin: 22px 0 22px; }
  .hh-jv__card { padding: 10px 4px 8px; min-height: 130px; border-radius: 10px; gap: 6px; }
  .hh-jv__card strong { font-size: 8.5px !important; letter-spacing: 0px; word-spacing: -1px; }
  .hh-jv__icon { width: 32px; height: 32px; }
  .hh-jv__icon svg { width: 20px; height: 20px; }
  .hh-jv__arrow { width: 22px; height: 22px; }
  .hh-jv__arrow svg { width: 12px; height: 12px; }
  .hh-routine-pill { font-size: 11px !important; padding: 14px 18px !important; letter-spacing: 0.8px; }
  .hh-routine-info { font-size: 11px; }
  .hh-gammes { padding: 32px 0 48px; }
  .hh-g__title { font-size: 22px !important; }
  .hh-g__card { flex: 0 0 88%; min-height: 200px; }
  .hh-g__body { padding: 18px 20px; min-height: 200px; }
  .hh-g__body h3 { font-size: 22px !important; line-height: 1.05; }
  .hh-g__body p { font-size: 12.5px; }
  .hh-engagement { padding: 36px 0 40px; }
  .hh-eng__title { font-size: 22px !important; }
  .hh-eng__sub { font-size: 12px; margin-bottom: 20px; }
  .hh-eng__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hh-eng__item { padding: 16px 14px; }
  .hh-eng__item strong { font-size: 13px !important; }
  .hh-eng__item span { font-size: 11px; }
}

@media (max-width: 420px) {
  .hh-hero__title { font-size: 32px !important; }
  .hh-jv__card strong { font-size: 8px !important; }
  .hh-tb__txt strong { font-size: 8.5px; }
  .hh-tb__txt em { font-size: 8.5px; }
}

/* ============================================
   PAGE JE VEUX v2 — Copie maquette
   ============================================ */
.page-jv2 { background: #fff; color: #1F1B26; }

/* HEADER */
.jv2-header {
  background: #0E1117;
  color: #fff;
  position: sticky; top: 0;
  z-index: 50;
}
.jv2-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}
.jv2-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
.jv2-nav__link {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 0;
  transition: color .2s;
}
.jv2-nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--ac);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s;
}
.jv2-nav__link[data-accent="blue"] { --ac: #3A7BD5; }
.jv2-nav__link[data-accent="green"] { --ac: #5BA63D; }
.jv2-nav__link[data-accent="orange"] { --ac: #D4622A; }
.jv2-nav__link[data-accent="red"] { --ac: #C03A2B; }
.jv2-nav__link[data-accent="teal"] { --ac: #00897B; }
.jv2-nav__link:hover, .jv2-nav__link.is-active { color: #fff; }
.jv2-nav__link.is-active::after { transform: scaleX(1); }
.jv2-actions { display: flex; gap: 6px; align-items: center; }
.jv2-actions .hh-burger { display: none; }

/* BREADCRUMB */
.jv2-breadcrumb {
  background: #FAF7F2;
  padding: 12px 0;
  font-size: 12px;
  color: #6B6776;
}
.jv2-breadcrumb a { color: #6B6776; text-decoration: none; transition: color .2s; }
.jv2-breadcrumb a:hover { color: #1F1B26; }
.jv2-bc__sep { margin: 0 8px; opacity: 0.45; }
.jv2-bc__current { color: #1F1B26; font-weight: 600; }

/* HERO */
.jv2-hero { background: #FAF7F2; padding: 0 0 32px; overflow: hidden; }
.jv2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: 540px;
}
.jv2-hero__left { padding: 30px 0; }
.jv2-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #9B9588;
  margin-bottom: 18px;
}
.jv2-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #1F1B26;
}
.jv2-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: #1F1B26;
}
.jv2-hero__title span { font-weight: 500; }

.jv2-hero__lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4A4554;
  margin-bottom: 32px;
}
.jv2-hero__features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 20px 36px;
}
.jv2-hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #1F1B26;
  font-weight: 500;
  line-height: 1.3;
}
.jv2-hf__icon {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

.jv2-hero__right { position: relative; }
.jv2-hero__photo {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.jv2-hero__photo svg { display: block; width: 100%; height: 100%; min-height: 520px; }

/* FILTER PILLS */
.jv2-pills {
  background: #FAF7F2;
  padding: 0 0 28px;
}
.jv2-pills__track {
  display: flex;
  gap: 12px;
  background: #FFF7E5;
  border-radius: 100px;
  padding: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.jv2-pills__track::-webkit-scrollbar { display: none; }
.jv2-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 12px 16px;
  text-decoration: none;
  color: #1F1B26;
  transition: all .2s;
  text-align: center;
  min-width: 110px;
}
.jv2-pill:hover { background: rgba(0,0,0,0.04); }
.jv2-pill.is-active {
  background: var(--pbg, rgba(122,106,188,0.12));
  border-color: var(--pc);
}
.jv2-pill__icon {
  width: 36px; height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--pc);
}
.jv2-pill span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #1F1B26;
  line-height: 1.2;
  text-transform: uppercase;
}

/* FILTER BAR */
.jv2-filterbar {
  background: #FAF7F2;
  padding: 8px 0 24px;
}
.jv2-filterbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.jv2-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1F1B26;
  cursor: pointer;
  transition: background .2s;
}
.jv2-filter-btn:hover { background: #fafafa; }
.jv2-filterbar__mid {
  text-align: center;
  font-size: 12.5px;
  color: #6B6776;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.jv2-fb-deco { color: #C8A4DC; font-size: 10px; }
.jv2-sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #6B6776;
}
.jv2-sort strong { font-weight: 700; color: #1F1B26; }

/* PRODUCT GRID */
.jv2-grid-wrap { background: #FAF7F2; padding: 0 0 56px; }
.jv2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.jv2-card {
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(0,0,0,0.04);
  background: #fff;
}
.jv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -10px rgba(0,0,0,0.12);
}
.jv2-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.jv2-card__img {
  display: block;
  margin: 0 -8px 14px;
  text-decoration: none;
}
.jv2-card__img svg { display: block; width: 100%; height: 220px; }
.jv2-card__title {
  font-size: 13px;
  color: #1F1B26;
  line-height: 1.4;
  margin-bottom: 16px;
  text-decoration: none;
  flex: 1;
}
.jv2-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jv2-card__price {
  font-size: 17px;
  font-weight: 800;
  color: #1F1B26;
}
.jv2-card__cart {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--cc);
  background: #fff;
  color: var(--cc);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.jv2-card__cart:hover { background: var(--cc); color: #fff; }

/* ROUTINE SECTION */
.jv2-routine {
  background: linear-gradient(180deg, #FAF7F2 0%, #F4ECDC 100%);
  padding: 64px 0;
}
.jv2-routine__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.jv2-routine__box {
  max-width: 320px;
  filter: drop-shadow(0 16px 28px rgba(31,27,38,0.2));
}
.jv2-routine__copy {
  text-align: center;
}
.jv2-routine__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  color: #1F1B26;
  line-height: 1.15;
}
.jv2-routine__title em { font-style: italic; color: #1F1B26; font-weight: 500; }
.jv2-routine__sub {
  font-size: 14px;
  color: #6B6776;
  margin-bottom: 26px;
}
.jv2-routine__features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
  justify-content: center;
  margin-bottom: 26px;
}
.jv2-routine__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #4A4554;
  line-height: 1.3;
  font-weight: 500;
}
.jv2-rf__icon {
  display: inline-grid;
  place-items: center;
  color: #9B9588;
}
.jv2-routine__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1F1B26;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-decoration: none;
  transition: all .2s;
}
.jv2-routine__cta:hover { background: #000; transform: translateY(-1px); }

.jv2-routine__phone {
  max-width: 240px;
  position: relative;
}
.jv2-routine__phone > svg {
  filter: drop-shadow(0 20px 40px rgba(31,27,38,0.25));
}
.jv2-routine__apps {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}
.jv2-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1F1B26;
  color: #fff;
  border-radius: 8px;
  padding: 7px 12px;
  text-decoration: none;
  flex: 1;
  font-size: 9px;
  min-width: 0;
}
.jv2-app span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 7px;
}
.jv2-app em { font-style: normal; font-size: 6.5px; color: rgba(255,255,255,0.7); }
.jv2-app strong { font-size: 10px; font-weight: 700; }

/* TRUST BAR */
.jv2-trust {
  background: #FAF7F2;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.jv2-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.jv2-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1F1B26;
}
.jv2-trust__item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.06);
  padding-right: 24px;
}
.jv2-trust__item svg { color: #9B9588; flex-shrink: 0; }
.jv2-trust__item div { display: flex; flex-direction: column; line-height: 1.3; }
.jv2-trust__item strong { font-size: 13px; font-weight: 700; }
.jv2-trust__item span { font-size: 11.5px; color: #6B6776; }

/* FOOTER */
.jv2-footer {
  background: #0E1117;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.jv2-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.4fr;
  gap: 40px;
}
.jv2-foot__brand .brand--footer { color: #fff; margin-bottom: 14px; }
.jv2-foot__brand p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.jv2-foot__flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
}
.jv2-foot__col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.jv2-foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.jv2-foot__col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12.5px;
  transition: color .2s;
}
.jv2-foot__col a:hover, .jv2-foot__col a.is-active { color: #5BA63D; }
.jv2-foot__signup p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}
.jv2-foot__form {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.jv2-foot__form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  outline: none;
}
.jv2-foot__form input::placeholder { color: rgba(255,255,255,0.4); }
.jv2-foot__form button {
  background: #5BA63D;
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s;
}
.jv2-foot__form button:hover { background: #4a8a2f; }
.jv2-foot__socials { display: flex; gap: 8px; }
.jv2-foot__socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: inline-grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.jv2-foot__socials a:hover { background: #5BA63D; color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .jv2-nav { display: none; }
  .jv2-actions .hh-burger { display: inline-flex; }
  .jv2-grid { grid-template-columns: repeat(3, 1fr); }
  .jv2-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .jv2-routine__inner { grid-template-columns: 1fr; gap: 28px; }
  .jv2-routine__box, .jv2-routine__phone { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .jv2-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .jv2-hero__title { font-size: 42px; }
  .jv2-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .jv2-trust__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .jv2-trust__item:not(:last-child) { border-right: 0; padding-right: 0; }
}
@media (max-width: 760px) {
  .jv2-header__inner { padding: 12px 16px; gap: 12px; }
  .jv2-actions { gap: 4px; }
  .jv2-actions .hh-icon { width: 36px; height: 36px; }
  .jv2-actions .hh-icon svg { width: 20px; height: 20px; }
  .jv2-breadcrumb { font-size: 11px; padding: 10px 0; }
  .jv2-hero__title { font-size: 32px !important; line-height: 1.05; }
  .jv2-hero__lead { font-size: 13px; }
  .jv2-hero__lead br { display: none; }
  .jv2-hero__features { grid-template-columns: 1fr 1fr; gap: 12px 16px; }
  .jv2-hero__features li { font-size: 11px; }
  .jv2-hf__icon { width: 34px; height: 34px; }
  .jv2-hero__photo svg { min-height: 380px; }
  .jv2-pills { padding: 4px 0 18px; }
  .jv2-pills__track { padding: 8px; gap: 6px; border-radius: 18px; }
  .jv2-pill { min-width: 88px; padding: 10px 8px; }
  .jv2-pill__icon { width: 30px; height: 30px; }
  .jv2-pill__icon svg { width: 18px; height: 18px; }
  .jv2-pill span { font-size: 9.5px; letter-spacing: 0.3px; }
  .jv2-filterbar__inner { grid-template-columns: 1fr 1fr; gap: 10px; }
  .jv2-filterbar__mid { grid-column: 1 / -1; order: 3; font-size: 11px; }
  .jv2-filter-btn { font-size: 11px; padding: 9px 12px; }
  .jv2-sort { font-size: 11px; padding: 9px 12px; justify-self: end; }
  .jv2-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .jv2-card { padding: 14px 12px 14px; border-radius: 14px; }
  .jv2-card__img svg { height: 170px; }
  .jv2-card__title { font-size: 11.5px; margin-bottom: 12px; }
  .jv2-card__price { font-size: 14.5px; }
  .jv2-card__cart { width: 32px; height: 32px; }
  .jv2-card__cart svg { width: 14px; height: 14px; }
  .jv2-card__badge { font-size: 8px; padding: 4px 7px; top: 10px; left: 10px; }
  .jv2-routine { padding: 40px 0; }
  .jv2-routine__title { font-size: 24px !important; }
  .jv2-routine__sub { font-size: 12.5px; }
  .jv2-routine__features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .jv2-routine__features li { font-size: 11px; }
  .jv2-routine__phone { max-width: 220px; }
  .jv2-routine__phone svg { height: 460px !important; }
  .jv2-trust { padding: 22px 0; }
  .jv2-trust__inner { gap: 14px; }
  .jv2-trust__item strong { font-size: 12px; }
  .jv2-trust__item span { font-size: 10.5px; }
  .jv2-trust__item svg { width: 20px; height: 20px; }
  .jv2-footer { padding: 36px 0 20px; }
  .jv2-footer__inner { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 480px) {
  .jv2-grid { grid-template-columns: 1fr; }
  .jv2-hero__title { font-size: 28px !important; }
}
