/* =============================================
   AFRIJUS — Le vrai naturel
   Charte graphique & styles principaux V1
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --vert-fonce:  #1B5E20;
  --vert:        #2E7D32;
  --vert-moyen:  #388E3C;
  --vert-clair:  #66BB6A;
  --vert-pale:   #E8F5E9;
  --rouge:       #C0392B;
  --rouge-clair: #E74C3C;
  --or:          #F9A825;
  --blanc:       #FFFFFF;
  --gris-clair:  #F5F5F5;
  --gris:        #757575;
  --noir:        #1A1A1A;
  --shadow:      0 8px 32px rgba(27,94,32,0.15);
  --shadow-lg:   0 20px 60px rgba(27,94,32,0.2);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
  --header-h:    80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--vert-pale); }
::-webkit-scrollbar-thumb { background: var(--vert); border-radius: 3px; }

/* ── Sélection ── */
::selection { background: var(--vert-clair); color: var(--blanc); }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0;
  background: var(--vert-fonce);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader.gone { display: none; }

.preloader-logo {
  width: 120px;
  animation: pulse-logo 1.2s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--vert-clair), var(--or));
  border-radius: 2px;
  animation: loading-bar 1.5s ease-in-out forwards;
}
@keyframes pulse-logo {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes loading-bar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 5%;
}

#header.transparent {
  background: transparent;
}
#header.scrolled {
  background: rgba(27, 94, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: 0 5%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 52px;
  background: white;
  border-radius: 8px;
  padding: 4px 8px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after { display: none; }
.nav-links a:hover { background: rgba(255,255,255,0.12); }
.nav-links a.active {
  background: var(--rouge);
  color: var(--blanc);
  font-weight: 800;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sélecteur de langue */
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--blanc);
  color: var(--vert-fonce);
}


/* ── Icône panier header ── */
.cart-icon-header {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: var(--transition);
}
.cart-icon-header:hover { background: rgba(255,255,255,0.3); transform: scale(1.08); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--rouge); color: white;
  font-size: 0.65rem; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--vert-fonce);
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes badgePop { from { transform:scale(0); } to { transform:scale(1); } }

/* Bouton WhatsApp header */
.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--blanc);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}
.btn-whatsapp-header svg { width: 18px; height: 18px; fill: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  padding: 20px 5% 30px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu ul li a {
  display: block;
  color: var(--blanc);
  text-decoration: none;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}
.mobile-menu ul li a:hover { color: var(--or); padding-left: 8px; }
.mobile-menu ul li a.active {
  color: var(--blanc);
  background: var(--rouge);
  padding-left: 12px;
  border-radius: 8px;
  font-weight: 800;
}

/* =============================================
   HERO SLIDER
   ============================================= */
#hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
  margin-top: var(--header-h);
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

/* Overlay dégradé */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,94,32,0.85) 0%,
    rgba(27,94,32,0.4) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  color: var(--blanc);
  opacity: 0;
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  transform: translateY(calc(-50% + 30px));
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(-50%);
}

.slide-tag {
  display: inline-block;
  background: var(--rouge);
  color: var(--blanc);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-desc {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 480px;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: var(--noir);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(249,168,37,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249,168,37,0.5);
  background: #FFB300;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blanc);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--blanc);
  transform: translateY(-3px);
}

/* Contrôles slider */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.slider-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--or);
  width: 28px;
  border-radius: 4px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--noir);
  transform: scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-slow 2s ease-in-out infinite;
}
.scroll-indicator span { writing-mode: vertical-rl; }
.scroll-indicator::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce-slow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================================
   BANDE ANIMÉE (ticker)
   ============================================= */
.ticker-wrap {
  background: var(--vert-fonce);
  overflow: hidden;
  padding: 12px 0;
  border-top: 3px solid var(--or);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ticker-item span {
  color: var(--or);
  margin-right: 40px;
  font-size: 1rem;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION — PRODUITS PHARES
   ============================================= */
.section {
  padding: 90px 5%;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.08);
  color: var(--rouge);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(192,57,43,0.25);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--vert-fonce);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--gris);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--rouge), var(--or));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* Grille produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(46,125,50,0.08);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--vert-pale);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

/* ── Placeholder produit sans image ── */
.product-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-placeholder { transform: scale(1.04); }
.product-placeholder-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-placeholder-circle { transform: scale(1.1) rotate(6deg); }
.product-placeholder-emoji {
  font-size: 3.2rem;
  line-height: 1;
  display: block;
}
.product-placeholder-bar {
  width: 60px; height: 4px;
  border-radius: 2px;
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rouge);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body {
  padding: 20px;
}
.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vert);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--gris);
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--rouge);
}
.btn-order-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-order-wa:hover {
  background: #1DA851;
  transform: scale(1.05);
}
.btn-order-wa svg { width: 16px; height: 16px; fill: white; }

/* =============================================
   SECTION — À PROPOS
   ============================================= */
#about {
  background: var(--vert-fonce);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(249,168,37,0.06);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--or);
  color: var(--noir);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(249,168,37,0.4);
  line-height: 1.4;
}
.about-badge-float strong { font-size: 1.8rem; display: block; }

.about-content .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--or);
  border-color: rgba(249,168,37,0.3);
}
.about-content .section-title { color: var(--blanc); text-align: left; }
.about-content .section-line { margin: 16px 0; }

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.88;
  margin: 20px 0 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.stat-num {
  color: var(--rouge);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--or);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =============================================
   SECTION — POURQUOI NOUS CHOISIR
   ============================================= */
#why-us { background: var(--gris-clair); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--vert);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 64px; height: 64px;
  background: var(--vert-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--vert);
  transform: rotate(10deg) scale(1.1);
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-fonce);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.65;
}

/* =============================================
   SECTION — CONTACT / CTA WHATSAPP
   ============================================= */
#contact-cta {
  background: linear-gradient(135deg, var(--vert-fonce) 0%, var(--vert-moyen) 100%);
  color: var(--blanc);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact-cta::before {
  content: '🍃';
  position: absolute;
  font-size: 15rem;
  opacity: 0.04;
  top: -40px; right: -40px;
  pointer-events: none;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-wa-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}
.btn-wa-large svg { width: 22px; height: 22px; fill: white; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #000000;
  color: rgba(255,255,255,0.95);
  padding: 70px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 55px;
  background: white;
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--rouge);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--or);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--or); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--rouge);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.footer-contact-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 500;
  text-decoration: none;
  transition: var(--transition);
  animation: fab-pulse 2.5s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.65);
  animation: none;
}
.fab-whatsapp svg { width: 30px; height: 30px; fill: white; }
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* =============================================
   ANIMATIONS D'ENTRÉE (scroll reveal)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Délai staggeré pour les grilles */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-whatsapp-header { display: none; }
  .hamburger { display: flex; }
  .slide-content { left: 5%; max-width: 90%; }
  .slide-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .section { padding: 60px 5%; }
  .slider-arrows { display: none; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
}

/* ── Bouton Détails sur les cards ── */
.card-actions-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-detail-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--vert-pale);
  color: var(--vert-fonce);
  border: 2px solid var(--vert-clair);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-detail-card:hover {
  background: var(--vert);
  color: white;
  border-color: var(--vert);
  transform: translateY(-2px);
}

/* =============================================
   SECTION ABOUT-HOME — refonte complète
   ============================================= */
.about-home {
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #1e6b22 60%, #145216 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.about-home::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.about-home::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(249,168,37,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.about-home .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.about-home .section-title {
  color: #ffffff;
}
.about-home .section-line {
  background: var(--or);
}
.about-home p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-home .btn-primary {
  background: var(--or);
  color: var(--vert-fonce);
  font-weight: 800;
}
.about-home .btn-primary:hover {
  background: #e09800;
  transform: translateY(-2px);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.12), transparent 60%);
}
.about-content {
  position: relative;
  z-index: 1;
}

/* =============================================
   SECTION STATS — refonte complète
   ============================================= */
.stats-section {
  background: linear-gradient(180deg, #f0f7f0 0%, #ffffff 100%);
  padding: 70px 5%;
  border-top: 4px solid var(--vert-pale);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.stats-section .stat-item {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(27,94,32,0.10);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.stats-section .stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert), var(--or));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.stats-section .stat-item:hover {
  border-color: var(--vert-clair);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(27,94,32,0.18);
}
.stats-section .stat-item:hover::before {
  transform: scaleX(1);
}
.stats-section .stat-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--vert-fonce);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stats-section .stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   SECTION CTA
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #0d3d12 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🍹';
  position: absolute;
  font-size: 10rem;
  opacity: 0.04;
  top: -10px; right: 4%;
  pointer-events: none;
}
.cta-section .section-tag {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.cta-section .section-title {
  color: white;
}
.cta-section .section-line {
  background: var(--or);
}
.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-section .btn-cta {
  background: var(--or);
  color: var(--vert-fonce);
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(249,168,37,0.35);
}
.cta-section .btn-cta:hover {
  background: #e09800;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(249,168,37,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-placeholder { max-width: 260px; font-size: 5rem; }
  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }
  .stats-section .stat-num { font-size: 2.2rem; }
  .stats-section .stat-item { padding: 28px 12px; }
  .card-actions-row { flex-direction: column; gap: 8px; }
  .btn-detail-card, .product-footer .btn-order-wa { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 280px; }
}
