:root {
  --teal: #0e9e8e;
  --teal-dark: #0a7a6d;
  --teal-light: #e8f7f6;
  --teal-mid: #c2ede9;
  --gold: #c9a84c;
  --gold-light: #f5e6c0;
  --dark: #0f1f1e;
  --dark-mid: #1a3432;
  --text: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --bg: #f8fffe;
  --border: #e2f0ef;
  --red: #e53e3e;
  --orange: #dd6b20;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.92;
}
.trust-bar .star-rating {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 1px;
}
.trust-bar strong { color: var(--teal); }



/* ===== HERO STATIQUE ===== */
.hero-static {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-static-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-static-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.97) 0%,
    rgba(10, 22, 40, 0.82) 22%,
    rgba(10, 22, 40, 0.0) 45%,
    transparent 55%
  );
}

.hero-static-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-static-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,158,142,0.2);
  border: 1px solid rgba(14,158,142,0.5);
  color: #4dd9cc;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  width: fit-content;
}

.hero-static-title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
}
.hero-static-title .teal { color: #0e9e8e; }
.hero-static-title .gold { color: #c9a84c; }

.hero-static-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  line-height: 1.6;
}

.hero-static-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-static-features span {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
}

.hero-static-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0e9e8e;
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14,158,142,0.4);
}
.btn-hero-primary:hover {
  background: #0a7a6d;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(14,158,142,0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Mobile hero statique */
@media (max-width: 768px) {
  .hero-static {
    flex-direction: column;
    min-height: auto;
  }
  .hero-static-bg {
    position: relative;
    width: 100%;
    height: 320px;
    background-image: url(https://farmaplus.cobrapixel.com/wp-content/uploads/2026/03/colon-prostat-gastro-mobil-Gemini-800-800.png) !important;
    background-position: center center;
    background-size: cover;
    order: 2;
  }
  .hero-static-overlay {
    display: none;
  }
  .hero-static-content {
    position: relative;
    padding: 36px 20px 28px;
    max-width: 100%;
    gap: 14px;
    background: linear-gradient(135deg, #0a1628, #0e4a42);
    order: 1;
    z-index: 1;
  }
  .hero-static-title {
    font-size: clamp(26px, 7vw, 38px);
  }
  .hero-static-features {
    gap: 10px;
  }
  .hero-static-features span {
    font-size: 12px;
  }
  .btn-hero-primary {
    font-size: 14px;
    padding: 13px 24px;
  }
  .btn-hero-secondary {
    font-size: 13px;
    padding: 13px 18px;
  }
}


/* ===== TRUST ICONS BAR ===== */
.trust-icons-bar {
  background: white;
  border-top: 3px solid var(--teal);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  border-right: 1px solid var(--border);
}
.trust-icon-item:last-child { border-right: none; }
.trust-icon-circle {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.trust-icon-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.trust-icon-text span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== SECTION HEADERS ===== */
.section { padding: 70px 40px; }
.section-alt { background: white; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title .teal { color: var(--teal); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== PRODUITS VEDETTES ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14,158,142,0.15);
  border-color: var(--teal-mid);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.product-badge.bestseller { background: var(--gold); }
.product-badge.new { background: var(--teal); }

.product-img-zone {
  background: linear-gradient(135deg, var(--teal-light), #f0fdfc);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.product-placeholder {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(14,158,142,0.2);
  gap: 8px;
}
.product-placeholder .pill-icon { font-size: 36px; }
.product-placeholder .prod-name-mini {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
  padding: 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info { padding: 18px 20px; }
.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.product-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
}
.product-price span { font-size: 14px; font-weight: 600; }
.product-pack-hint {
  font-size: 11px;
  color: var(--text-light);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.btn-add-cart {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}
.btn-add-cart:hover { background: var(--teal-dark); }

/* ===== CATÉGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.cat-card {
  background: white;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cat-card:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14,158,142,0.15);
}

.cat-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  transition: all 0.3s;
}
.cat-card:hover .cat-icon { transform: scale(1.1); }

.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.cat-count {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== SECTION INTIMITÉ MASCULINE ===== */
.intimite-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.intimite-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,158,142,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.intimite-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intimite-text .section-label-dark {
  display: inline-block;
  background: rgba(14,158,142,0.2);
  border: 1px solid rgba(14,158,142,0.3);
  color: #4dd9cc;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intimite-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.intimite-title .accent { color: var(--teal); }
.intimite-title .gold { color: var(--gold); }

.intimite-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.intimite-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.benefit-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(14,158,142,0.6);
}

.intimite-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intimite-product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.intimite-product-card:hover {
  background: rgba(14,158,142,0.15);
  border-color: rgba(14,158,142,0.4);
  transform: translateY(-4px);
}
.intimite-product-icon {
  width: 100%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 220px;
}
.intimite-product-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  padding: 10px 12px 2px;
  line-height: 1.3;
}
.intimite-product-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-bottom: 12px;
}
.intimite-product-price {
  font-size: 16px;
  font-weight: 800;
  color: #0e9e8e;
  padding: 2px 12px 14px;
}

/* ===== SECTION FEMME ===== */
.femme-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce4ec 30%, #f0fdfc 100%);
}

.femme-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.femme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.femme-promo-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.femme-promo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

.femme-card-1 {
  background: linear-gradient(135deg, #1a0a2e, #4a0e5e, #0e2d3a);
}
.femme-card-2 {
  background: linear-gradient(135deg, #0a2820, #0e4a38, #1a6a4a);
}

.femme-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.femme-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.femme-card-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.femme-card-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.femme-card-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.femme-card-products {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.femme-prod-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.femme-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.femme-promo-card:hover .femme-card-cta {
  background: var(--teal);
  color: white;
}

/* ===== SOCIAL PROOF ===== */
.reviews-section {
  background: white;
  padding: 70px 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 30px rgba(14,158,142,0.1);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  color: var(--teal-mid);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars { color: #ffd700; font-size: 16px; margin-bottom: 12px; }
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.review-meta { font-size: 12px; color: var(--text-light); }
.review-verified {
  margin-left: auto;
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== ESSENTIELS POPULAIRES ===== */
.essentiels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.essentiel-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.essentiel-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 25px rgba(14,158,142,0.12);
  transform: translateY(-3px);
}
.essentiel-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.essentiel-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.essentiel-desc { font-size: 12px; color: var(--text-light); margin-bottom: 14px; line-height: 1.4; }
.essentiel-price { font-size: 20px; font-weight: 800; color: var(--teal); margin-bottom: 12px; }
.btn-essentiel {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-essentiel:hover { background: var(--teal); color: white; }

/* ===== CLUB FARMAPLUS ===== */
.club-section {
  background: linear-gradient(135deg, #f0fdfc 0%, #e8f7f6 50%, #fff9e6 100%);
  padding: 80px 40px;
}

.club-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.club-header { text-align: center; margin-bottom: 48px; }
.club-crown { font-size: 40px; margin-bottom: 12px; }

.club-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.club-step {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.club-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.club-step:hover::after { transform: scaleX(1); }
.club-step:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 12px 40px rgba(14,158,142,0.12);
  transform: translateY(-4px);
}

.club-step-number {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 16px;
}
.club-step-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.club-step-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.club-step-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.club-step-reward {
  display: inline-block;
  background: var(--gold-light);
  color: #7a5c00;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.club-btn {
  display: block;
  background: var(--teal);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  border: none;
  cursor: pointer;
  width: 100%;
}
.club-btn:hover { background: var(--teal-dark); }

.club-members {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}
.club-members strong { color: var(--teal); }

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--dark);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(14,158,142,0.15) 0%, transparent 70%);
}
.cta-final-text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.cta-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta-final-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-final-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.cta-final-feature .check { color: var(--teal); font-size: 18px; }
.cta-final .btn-primary {
  font-size: 17px;
  padding: 16px 40px;
  position: relative;
  z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .intimite-inner { grid-template-columns: 1fr; gap: 40px; }
  .femme-grid { grid-template-columns: 1fr; }
  .essentiels-grid { grid-template-columns: repeat(2, 1fr); }
  .club-steps { grid-template-columns: 1fr; }
  .trust-icons-bar { flex-wrap: wrap; gap: 16px; }
  .trust-icon-item { border-right: none; padding: 8px 20px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 40px 24px; max-width: 100%; }
  .hero-image-zone { display: none; }
  .hero-slide { min-height: 400px; }
  .section { padding: 50px 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 16px; font-size: 12px; }
  .intimite-products { grid-template-columns: 1fr 1fr; }
  .cta-final-features { gap: 16px; }
}

/* Fix étoiles — propre */
.trust-bar .star-rating { display: none; }
.trust-bar span:first-child::before { content: ""; }

/* Mobile trust icons bar - 4 badges alignés */
@media (max-width: 768px) {
  .trust-icons-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px 8px;
    align-items: center;
    justify-content: space-around;
  }
  .trust-icon-item {
    flex: 1;
    min-width: 0;
    border-right: 1px solid var(--border);
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 6px;
    height: 70px;
  }
  .trust-icon-item:last-child {
    border-right: none;
  }
  .trust-icon-circle {
    width: 34px;
    height: 34px;
    min-height: 34px;
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-icon-text strong {
    font-size: 9px;
    line-height: 1.3;
    display: block;
  }
  .trust-icon-text span {
    display: none;
  }
}

@media (max-width: 768px) {
  .intimite-product-card img {
    width: 100% !important;
    height: 150px !important;
  }
  .intimite-product-icon {
    min-height: 170px !important;
    padding: 16px !important;
  }
}

.intimite-product-card:hover .intimite-product-icon img {
  transform: scale(1.55) !important;
}
@media (max-width: 768px) {
  .intimite-product-icon img {
    transform: scale(1.7) !important;
    -webkit-transform: scale(1.7) !important;
  }
}

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  border: 2px solid white; padding: 13px 28px;
  border-radius: 50px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
}
.btn-white-outline:hover { background: white; color: #0a1628; }

.intimite-photo-wrap { display: flex; align-items: center; justify-content: center; }

.pour-elle-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d0a1e 50%, #0e2d3a 100%);
}
.elle-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.elle-photo { width: 100%; border-radius: 20px; object-fit: cover; max-height: 520px; }
.elle-title { font-size: clamp(26px,3vw,42px); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; }
.elle-desc { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.7; }
.elle-benefits { display: flex; flex-direction: column; gap: 12px; }
.elle-cat-btn {
  display: inline-flex; align-items: center;
  background: rgba(233,30,140,0.15); border: 1px solid rgba(233,30,140,0.4);
  color: white; padding: 13px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.3s; width: fit-content;
}
.elle-cat-btn:hover { background: rgba(233,30,140,0.35); }

.categories-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.cat-card-new {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
  text-decoration: none; display: block;
  transition: transform 0.3s;
}
.cat-card-new:hover { transform: translateY(-4px); }
.cat-img-new { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.cat-card-new:hover .cat-img-new { transform: scale(1.05); }
.cat-overlay-new {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.cat-name-new { font-size: 16px; font-weight: 800; color: white; margin-bottom: 4px; }
.cat-sub-new { font-size: 13px; color: #0e9e8e; font-weight: 600; }

@media (max-width: 768px) {
  .elle-inner { grid-template-columns: 1fr; gap: 30px; }
  .pour-elle-section { padding: 50px 20px; }
  .categories-grid-new { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-name-new { font-size: 13px; }
  .elle-image-wrap { order: -1; }
}

/* ===== PRODUITS VEDETTES ===== */
.vedettes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.vedette-card {
  background: white; border-radius: 20px;
  overflow: hidden; text-decoration: none;
  border: 1px solid #e2f0ef;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.vedette-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(14,158,142,0.12); }
.vedette-badge {
  position: absolute; top: 12px; left: 12px;
  background: #0a1628; color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.vedette-img-wrap {
  position: relative; background: #f8fffe;
  padding: 20px; display: flex;
  align-items: center; justify-content: center;
  min-height: 200px; overflow: hidden;
}
.vedette-img {
  width: 100%; max-height: 180px;
  object-fit: contain;
  transform: scale(1.4);
  transition: transform 0.3s;
}
.vedette-card:hover .vedette-img { transform: scale(1.55); }
.vedette-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.vedette-cat { font-size: 11px; font-weight: 700; color: #0e9e8e; text-transform: uppercase; letter-spacing: 1px; }
.vedette-name { font-size: 16px; font-weight: 800; color: #0f1f1e; line-height: 1.2; }
.vedette-desc { font-size: 12px; color: #718096; line-height: 1.5; flex: 1; }
.vedette-price {
  font-size: 18px; font-weight: 800; color: #0f1f1e;
  white-space: nowrap; display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.vedette-pack {
  font-size: 12px; color: #718096; font-weight: 400;
  white-space: nowrap; display: inline;
}
.vedette-btn {
  display: block; background: #0e9e8e; color: white;
  padding: 10px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-align: center;
  margin-top: 8px; transition: background 0.3s;
}
.vedette-card:hover .vedette-btn { background: #0a7a6d; }

/* ===== ESSENTIELS ===== */
.essentiels-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.essentiel-card {
  background: white; border-radius: 16px;
  overflow: hidden; text-decoration: none;
  border: 1px solid #e2f0ef;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.essentiel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(14,158,142,0.1); }
.essentiel-img-wrap {
  background: #f8fffe; padding: 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 160px; overflow: hidden;
}
.essentiel-img {
  width: 100%; max-height: 140px; object-fit: contain;
  transform: scale(1.4); transition: transform 0.3s;
}
.essentiel-card:hover .essentiel-img { transform: scale(1.55); }
.essentiel-info { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.essentiel-name { font-size: 15px; font-weight: 800; color: #0f1f1e; }
.essentiel-desc { font-size: 12px; color: #718096; line-height: 1.5; flex: 1; }
.essentiel-price { font-size: 17px; font-weight: 800; color: #0e9e8e; }

/* CTA button fix */
.btn-cta-fixed {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: #0a1628;
  padding: 15px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 800;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-cta-fixed:hover { background: #0e9e8e; color: white; }

/* Responsive */
@media (max-width: 900px) {
  .vedettes-grid { grid-template-columns: repeat(2, 1fr); }
  .essentiels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vedettes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .essentiels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== SEPARATION 1 ===== */
.sep-1 {
  background: linear-gradient(135deg, #0a1628, #0e3d32);
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.sep-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
}
.sep-1-content { text-align: center; }
.sep-1-slogan { font-size: 18px; font-weight: 800; color: white; }
.sep-1-slogan span { color: #c9a84c; }
.sep-1-sub { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ===== SEPARATION 2 ===== */
.sep-2 {
  background: linear-gradient(135deg, #0a1f2e 0%, #0a1628 45%, #1a0a2e 55%, #1a0818 100%);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.sep-2::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(233,30,140,0.06) 0%, transparent 60%);
}
.sep-2-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center; position: relative; z-index: 1;
}
.sep-card { border-radius: 20px; overflow: hidden; position: relative; }
.sep-card-label {
  text-align: center; padding: 14px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
}
.sep-card-label.lui { background: rgba(14,158,142,0.15); color: #4dd9cc; border-bottom: 1px solid rgba(14,158,142,0.2); }
.sep-card-label.elle { background: rgba(233,30,140,0.15); color: #f06292; border-bottom: 1px solid rgba(233,30,140,0.2); }
.sep-card-img {
  width: 100%; height: 300px; object-fit: cover;
  object-position: top center; display: block;
  filter: brightness(0.85); transition: filter 0.3s;
}
.sep-card:hover .sep-card-img { filter: brightness(1); }
.sep-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
}
.sep-card-overlay.elle-overlay { background: linear-gradient(to top, rgba(26,8,24,0.9), transparent); }
.sep-card-btn {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.3s;
}
.sep-card-btn.lui-btn { background: rgba(14,158,142,0.25); border: 1px solid #0e9e8e; color: #4dd9cc; }
.sep-card-btn.elle-btn { background: rgba(233,30,140,0.25); border: 1px solid #e91e8c; color: #f06292; }
.sep-2-center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sep-center-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(77,217,204,0.4), rgba(233,30,140,0.4)); }
.sep-heart {
  font-size: 32px;
  animation: heartbeat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(233,30,140,0.5));
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.sep-quote { font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; text-align: center; line-height: 1.6; max-width: 140px; }

/* Mobile séparations */
@media (max-width: 768px) {
  .sep-1 { padding: 20px; }
  .sep-1-slogan { font-size: 14px; }
  .sep-2 { padding: 20px; }
  .sep-2-inner { grid-template-columns: 1fr; gap: 0; }
  .sep-card { display: none; }
  .sep-2-center {
    flex-direction: row; justify-content: center;
    padding: 8px 0; gap: 20px;
  }
  .sep-center-line {
    width: 80px; height: 1px;
    background: linear-gradient(to right, rgba(77,217,204,0.4), rgba(233,30,140,0.4));
  }
  .sep-quote { display: none; }
  .sep-heart { font-size: 24px; }
}

/* ===== DUAL BANNER ===== */
.dual-banner {
  background: #0a1628;
  padding: 32px 0;
  overflow: hidden;
}
.dual-banner-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 20px;
}
.dual-banner-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  width: 80px;
}
.lui-label { color: #4dd9cc; }
.elle-label { color: #e91e8c; }
.dual-banner-track-wrap { overflow: hidden; flex: 1; }
.dual-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
}
.dual-track-left { animation: scrollLeft 20s linear infinite; }
.dual-track-right { animation: scrollRight 20s linear infinite; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.dual-banner-img {
  width: 80px; height: 80px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.3s;
}
.dual-banner-img:hover { transform: scale(1.15); }
.dual-banner-center {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  padding: 8px 20px;
}
.dual-center-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(77,217,204,0.3), rgba(233,30,140,0.3));
}
.dual-heart {
  font-size: 20px;
  animation: heartbeat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(233,30,140,0.5));
}

/* Pour Elle product detail */
.intimite-product-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 0 8px;
  line-height: 1.4;
}
.intimite-product-price {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding-bottom: 8px;
}

/* ===== POUR LUI / POUR ELLE ===== */
.pour-lui-section {
  background: linear-gradient(135deg, #0a1628, #0e3d32);
  overflow: hidden;
}
.pour-elle-section {
  background: linear-gradient(135deg, #1a0a2e, #0a1628);
  overflow: hidden;
}
.full-width-photo {
  width: 100%; height: 460px;
  object-fit: cover; object-position: top center;
  display: block; filter: brightness(0.88);
}
.gender-text-zone {
  padding: 48px 60px 32px;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.gender-pill {
  display: inline-block; padding: 6px 18px;
  border-radius: 50px; font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.lui-pill { background: rgba(14,158,142,0.2); color: #4dd9cc; border: 1px solid rgba(14,158,142,0.4); }
.elle-pill { background: rgba(233,30,140,0.2); color: #f06292; border: 1px solid rgba(233,30,140,0.4); }
.gender-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px;
}
.pink { color: #e91e8c; }
.gender-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 24px;
}
.gender-benefits {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 400px; margin: 0 auto; text-align: left;
}

/* Products grid */
.gender-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; padding: 0 40px 32px;
  max-width: 1200px; margin: 0 auto;
}
.gender-product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; text-align: center;
  transition: all 0.3s;
}
.gender-product-card:hover { transform: translateY(-4px); border-color: rgba(14,158,142,0.4); }
.gender-product-img-wrap {
  background: rgba(255,255,255,0.06);
  padding: 16px; display: flex;
  align-items: center; justify-content: center;
  min-height: 160px; overflow: hidden;
}
.gender-product-img {
  width: 100%; max-height: 140px;
  object-fit: contain;
  transform: scale(1.4); -webkit-transform: scale(1.4);
  transition: transform 0.3s;
}
.gender-product-card:hover .gender-product-img { transform: scale(1.55); -webkit-transform: scale(1.55); }
.gender-product-name {
  font-size: 13px; font-weight: 700; color: white;
  padding: 10px 10px 4px; line-height: 1.3;
}
.teal-price { font-size: 16px; font-weight: 800; color: #0e9e8e; padding: 0 10px 14px; }
.pink-price { font-size: 16px; font-weight: 800; color: #e91e8c; padding: 0 10px 14px; }

/* CTA zone */
.gender-cta-zone {
  display: flex; align-items: center;
  padding: 0 40px 48px; gap: 0; overflow: hidden;
}
.gender-banner-wrap {
  flex: 1; overflow: hidden; height: 64px;
  display: flex; align-items: center;
  mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
}
.gender-banner-track {
  display: flex; gap: 24px; align-items: center; width: max-content;
}
.track-left { animation: scrollLeft 18s linear infinite; }
.track-right { animation: scrollRight 18s linear infinite; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.gender-mini-img {
  width: 52px; height: 52px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.gender-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 800; text-decoration: none;
  transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
  min-width: 140px; text-align: center; line-height: 1.3;
}
.teal-btn { background: #0e9e8e; color: white; box-shadow: 0 8px 25px rgba(14,158,142,0.4); justify-content: center; }
.teal-btn:hover { background: #0a7a6d; transform: translateY(-2px); }
.pink-btn { background: #e91e8c; color: white; box-shadow: 0 8px 25px rgba(233,30,140,0.4); justify-content: center; }
.pink-btn:hover { background: #c2185b; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {
  .full-width-photo { height: 280px; }
  .gender-text-zone { padding: 32px 20px 24px; }
  .gender-products-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px 24px; gap: 12px; }
  .gender-cta-zone { padding: 0 16px 36px; }
  .gender-cta-btn { font-size: 13px; padding: 12px 20px; }
  .gender-product-img-wrap { min-height: 120px; }
}

/* ===== SOFT SEPARATOR ===== */
.soft-separator {
  background: #0a1628;
  padding: 20px 40px;
  display: flex; align-items: center; gap: 20px;
}
.soft-sep-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}
.soft-sep-content {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.soft-sep-icon { font-size: 16px; }
.soft-sep-text {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.7); letter-spacing: 1px;
}
.soft-sep-text .gold { color: #c9a84c; }

/* ===== BANDEAU LOGISTIQUE ===== */
.logistic-banner {
  background: linear-gradient(135deg, #0a1628, #0e3d32);
  padding: 60px 40px;
  border-top: 1px solid rgba(14,158,142,0.2);
}
.logistic-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.logistic-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 16px; flex: 1; min-width: 200px; max-width: 260px;
}
.logistic-img-wrap {
  width: 160px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.logistic-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(14,158,142,0.2));
  transition: transform 0.3s;
}
.logistic-step:hover .logistic-img { transform: scale(1.05); }
.logistic-text { display: flex; flex-direction: column; gap: 6px; }
.logistic-num {
  font-size: 11px; font-weight: 800; color: #0e9e8e;
  letter-spacing: 2px;
}
.logistic-title {
  font-size: 22px; font-weight: 800; color: white;
}
.logistic-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.logistic-arrow {
  font-size: 24px; color: #c9a84c;
  font-weight: 800; flex-shrink: 0;
}

@media (max-width: 768px) {
  .logistic-inner { flex-direction: column; gap: 32px; }
  .logistic-arrow { transform: rotate(90deg); }
  .logistic-banner { padding: 40px 20px; }
  .soft-separator { padding: 16px 20px; }
  .soft-sep-text { font-size: 11px; }
}

/* ===== LOGISTIC SECTION ===== */
.logistic-section { overflow: hidden; }

/* Bloc 1 */
.logistic-why {
  background: linear-gradient(135deg, #0a1628, #0e3d32);
  padding: 60px 40px;
  border-top: 1px solid rgba(14,158,142,0.2);
}
.logistic-why-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.logistic-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; color: white;
  text-align: center; margin-bottom: 32px;
}

/* Compare grid */
.compare-grid {
  display: flex; align-items: stretch;
  gap: 0; max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.compare-col { flex: 1; padding: 24px; }
.compare-col.bad { background: rgba(220,53,69,0.06); }
.compare-col.good { background: rgba(14,158,142,0.08); }
.compare-header {
  font-size: 14px; font-weight: 800;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.compare-col.bad .compare-header { color: #ff6b6b; }
.compare-col.good .compare-header { color: #0e9e8e; }
.compare-item {
  font-size: 13px; color: rgba(255,255,255,0.7);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}
.compare-item:last-child { border-bottom: none; }
.compare-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* Logistic steps */
.logistic-steps {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.logistic-step-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  flex: 1; min-width: 160px; max-width: 220px;
}
.logistic-step-img-wrap {
  width: 180px; height: 180px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(14,158,142,0.2);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}
.logistic-step-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.logistic-step-item:hover .logistic-step-img { transform: scale(1.05); }
.logistic-step-label {
  display: flex; align-items: center; gap: 8px;
}
.logistic-step-num {
  font-size: 11px; font-weight: 800;
  color: #0e9e8e; letter-spacing: 2px;
}
.logistic-step-name {
  font-size: 15px; font-weight: 800; color: white;
}
.logistic-step-arrow {
  font-size: 28px; color: #c9a84c;
  font-weight: 800; flex-shrink: 0;
}

/* Bloc 2 — Fondateur */
.founder-bloc {
  background: #060f1e;
  padding: 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.founder-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
}
.founder-photo-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; flex-shrink: 0;
}
.founder-photo {
  width: 160px; height: 160px;
  border-radius: 50%; object-fit: cover;
  object-position: top center;
  border: 3px solid #c9a84c;
  box-shadow: 0 0 30px rgba(201,168,76,0.2);
}
.founder-name {
  font-size: 15px; font-weight: 800; color: white;
}
.founder-role {
  font-size: 12px; color: #c9a84c;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}
.founder-content {
  display: flex; flex-direction: column; gap: 20px;
}
.founder-logo {
  height: 50px; object-fit: contain;
  filter: brightness(1.1);
}
.founder-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: white;
  line-height: 1.4; font-style: italic;
  border-left: 3px solid #c9a84c;
  padding-left: 20px;
}
.founder-slogan {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.founder-slogan .gold { color: #c9a84c; font-weight: 700; }

/* Responsive */
@media (max-width: 768px) {
  .logistic-why { padding: 40px 20px; }
  .founder-bloc { padding: 40px 20px; }
  .founder-inner { flex-direction: column; gap: 32px; text-align: center; }
  .founder-quote { font-size: 18px; }
  .logistic-steps { gap: 12px; }
  .logistic-step-arrow { transform: rotate(90deg); }
  .logistic-step-img-wrap { width: 140px; height: 140px; }
  .compare-grid { flex-direction: column; }
  .compare-divider { width: 100%; height: 1px; }
  .founder-quote { border-left: none; border-top: 3px solid #c9a84c; padding-left: 0; padding-top: 16px; }
}

/* Founder slide image */
.founder-slide-img {
  width: 100%; display: block; object-fit: cover;
}
.founder-bloc { overflow: hidden; padding: 0 !important; }

/* Mobile logistic fixes */
@media (max-width: 768px) {
  .logistic-why { padding: 32px 16px; }

  /* Comparatif côte à côte */
  .compare-grid { flex-direction: row !important; gap: 0; }
  .compare-col { padding: 14px 10px; }
  .compare-header { font-size: 11px; margin-bottom: 10px; }
  .compare-item { font-size: 10px; padding: 5px 0; }
  .compare-divider { width: 1px; height: auto; }

  /* Photos logistique sur une ligne */
  .logistic-steps {
    flex-direction: row !important;
    flex-wrap: nowrap; gap: 6px;
    justify-content: center;
  }
  .logistic-step-item { min-width: 80px; max-width: 100px; }
  .logistic-step-img-wrap { width: 80px; height: 80px; border-radius: 10px; }
  .logistic-step-arrow { font-size: 16px; flex-shrink: 0; }
  .logistic-step-name { font-size: 11px; }
  .logistic-step-num { font-size: 9px; }
}

/* ===== SECTION FONDATEUR VIDEO ===== */
.fondateur-section {
  background: #0a0a0a;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}
.fondateur-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(0,168,150,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.moroccan-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a896' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.fondateur-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.fondateur-content-left { color: #fff; }
.fondateur-tag {
  display: inline-block;
  background: rgba(0,168,150,0.15);
  border: 1px solid rgba(0,168,150,0.4);
  color: #00a896;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.fondateur-name {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.fondateur-title {
  font-size: 14px;
  color: #C9A84C;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fondateur-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #00a896, transparent);
  margin-bottom: 28px;
}
.fondateur-quote {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 16px;
  font-style: italic;
  border-left: 2px solid #C9A84C;
  padding-left: 20px;
}
.fondateur-quote-ar {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  direction: rtl;
  text-align: right;
  margin-bottom: 32px;
  font-style: italic;
}
.fondateur-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.fondateur-stat { text-align: center; }
.fondateur-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #C9A84C;
  display: block;
}
.fondateur-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fondateur-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00a896;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 4px;
}
.fondateur-cta-btn:hover { background: #C9A84C; color: #0a0a0a; }
.fondateur-media-right { position: relative; }
.fondateur-video-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9/16;
  max-height: 460px;
  cursor: pointer;
}
.fondateur-video-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.fondateur-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
}
.fondateur-video-overlay.hidden { opacity: 0; pointer-events: none; }
.fondateur-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.15);
}
.fondateur-play-btn:hover { transform: scale(1.1); }
.fondateur-video-border {
  position: absolute;
  top: -8px; right: -8px; bottom: 8px; left: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}
.fondateur-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: #C9A84C;
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .fondateur-container { grid-template-columns: 1fr; padding: 40px 20px; gap: 40px; }
  .fondateur-media-right { order: -1; max-width: 280px; margin: 0 auto; }
  .fondateur-name { font-size: 36px; }
  .fondateur-stats { gap: 20px; }
}

/* Founder JS script */

/* ===== CLUB FARMAPLUS ===== */
.club-section {
  background: linear-gradient(135deg, #0a1628, #0e3d32);
  padding: 70px 40px;
}
.club-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.club-quiz-block,
.club-parrain-block,
.club-vip-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.club-block-header { display: flex; flex-direction: column; gap: 8px; }
.club-icon { font-size: 32px; }
.club-block-title { font-size: 18px; font-weight: 800; color: white; }
.club-block-sub { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.club-block-sub strong { color: #0e9e8e; }

/* Quiz */
.quiz-step { display: none; flex-direction: column; gap: 16px; }
.quiz-step.active { display: flex; }
.quiz-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 50px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: #0e9e8e; border-radius: 50px; transition: width 0.4s ease; }
.quiz-question { font-size: 15px; font-weight: 700; color: white; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-option {
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.quiz-option:hover { background: rgba(14,158,142,0.2); border-color: #0e9e8e; color: white; }
.quiz-option.selected { background: rgba(14,158,142,0.25); border-color: #0e9e8e; color: white; }

/* Quiz result */
.quiz-result-content { display: flex; flex-direction: column; gap: 14px; }
.quiz-result-icon { font-size: 40px; text-align: center; }
.quiz-result-bilan { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; padding: 14px; background: rgba(255,255,255,0.06); border-radius: 12px; border-left: 3px solid #c9a84c; }
.quiz-result-product { font-size: 16px; font-weight: 800; color: white; text-align: center; }
.quiz-result-promo { font-size: 22px; font-weight: 900; color: #0e9e8e; text-align: center; }
.quiz-result-prices { text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }
.quiz-result-prices s { color: rgba(255,255,255,0.3); }
.quiz-whatsapp-btn {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}
.quiz-whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }
.quiz-restart { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); cursor: pointer; margin-top: 4px; }
.quiz-restart:hover { color: rgba(255,255,255,0.7); }

/* Parrainage */
.parrain-form { display: flex; flex-direction: column; gap: 12px; }
.parrain-field { display: flex; flex-direction: column; gap: 6px; }
.parrain-field label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }
.parrain-field input {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 13px;
  color: white;
  font-family: 'Outfit', sans-serif;
  outline: none;
}
.parrain-field input::placeholder { color: rgba(255,255,255,0.3); }
.parrain-field input:focus { border-color: #0e9e8e; }
.parrain-btn {
  width: 100%;
  background: #0e9e8e;
  color: white;
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}
.parrain-btn:hover { background: #0a7a6d; }
.parrain-note { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; }

/* VIP */
.vip-levels { display: flex; gap: 8px; }
.vip-level {
  flex: 1;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vip-level.bronze { background: rgba(205,127,50,0.15); border: 1px solid rgba(205,127,50,0.3); }
.vip-level.silver { background: rgba(192,192,192,0.15); border: 1px solid rgba(192,192,192,0.3); }
.vip-level.gold { background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); }
.vip-badge { font-size: 24px; }
.vip-name { font-size: 13px; font-weight: 800; color: white; }
.vip-condition { font-size: 10px; color: rgba(255,255,255,0.5); }
.vip-avantage { font-size: 12px; font-weight: 700; color: #0e9e8e; }
.vip-form { display: flex; flex-direction: column; gap: 10px; }
.vip-btn {
  width: 100%;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}
.vip-btn:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .club-inner { grid-template-columns: 1fr; }
  .club-section { padding: 48px 20px; }
}