/* ============================================
   ZESTO — Base, Variables & Composants
   Fluid design: 320px → 2560px+
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- VARIABLES ---------- */
:root {
  --gold: #D4A853;
  --gold-light: #F0D890;
  --red: #D62828;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --cream: #FFF8E7;
  --gray: #8A8A8A;
  --gray-light: #CFCFCF;
  --white: #FFFFFF;

  --tangerine: #E8891C;
  --coco: #D4A574;
  --jasmin: #2ABFBF;
  --caramel: #C67B30;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: clamp(60px, 8vw, 80px);
  --container-width: 1200px;
  --container-pad: clamp(16px, 4vw, 24px);
  --section-pad: clamp(64px, 10vw, 120px);
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.text-gold {
  color: var(--gold);
}

/* ---------- SKIP LINK (a11y) ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.5vw, 14px) clamp(24px, 3vw, 32px);
  border-radius: 8px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 40px);
  font-size: clamp(13px, 1.3vw, 15px);
}

/* ---------- SECTIONS (commun) ---------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(32px, 5vw, 60px);
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: clamp(10px, 1vw, 11px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--gray);
  line-height: 1.7;
  margin-top: clamp(12px, 1.5vw, 16px);
  max-width: 500px;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Performance --- */

.section {
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ============================================
   ZESTO — Navbar (all screens)
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(2px, 0.5vw, 8px);
}

.nav-link {
  padding: 8px clamp(8px, 1vw, 16px);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 24px);
  background: var(--gold);
  color: var(--dark);
  border-radius: 6px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ========== Hamburger ========== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== Mobile Menu — Premium Fullscreen ========== */
@media (max-width: 900px) {
  .navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: calc(var(--nav-height) + 32px) var(--container-pad) 32px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    animation: menuFadeIn 0.3s ease;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open .nav-link {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    padding: 18px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s;
    letter-spacing: -0.5px;
  }

  .nav-links.open .nav-link:hover {
    color: var(--gold);
  }

  .nav-links.open .nav-link.active::after {
    display: none;
  }

  /* WhatsApp CTA in mobile menu */
  .nav-mobile-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-bottom: none !important;
  }

  .nav-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--gold);
    color: var(--dark) !important;
    border-radius: 10px;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
  }

  .nav-mobile-btn:hover {
    background: var(--gold-light);
  }
}

/* Hide mobile CTA on desktop */
.nav-mobile-cta {
  display: none;
}


/* ============================================
   ZESTO — Hero Section — Clean Grid
   ============================================ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  padding: 0 var(--container-pad);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--dark);
}

.hero-glow { display: none; }

/* ========== LEFT — Text ========== */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.hero-subtitle {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: btnShine 5s ease-in-out 1;
}

@keyframes btnShine {
  0%, 80%, 100% { left: -100%; }
  90% { left: 150%; }
}

/* ========== RIGHT — Image ========== */
.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blur glow */
.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212,168,83,0.12) 0%, rgba(232,137,28,0.06) 30%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.7;
}

.hero-image::after { display: none; }

.hero-product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  will-change: transform;
  animation: breathe 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ========== SCROLL ========== */
.hero-scroll {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.hero-scroll span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 16px;
    min-height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .hero-subtitle { max-width: 100%; }
  .hero-buttons { justify-content: center; width: 100%; }

  .hero-image {
    order: 0;
    margin: 0 calc(-1 * var(--container-pad));
    width: calc(100% + 2 * var(--container-pad));
    margin-bottom: 24px;
  }

  .hero-product-img {
    transform: none;
  }

  .hero-scroll { display: none; }
  .hero-proof { justify-content: center; }
  .hero-badges { justify-content: center; }
}

@media (max-width: 400px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================
   ZESTO — Notre Histoire (all screens)
   ============================================ */

.story {
  background: var(--dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.story-text {
  max-width: 500px;
}

.story-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: var(--white);
}

.story-text p {
  font-size: clamp(14px, 1.2vw, 15px);
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.story-img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .story-text {
    max-width: 100%;
  }
}

/* ============================================
   ZESTO — Section Saveurs — Premium Cards
   ============================================ */

.flavors {
  background: var(--dark-2);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.flavor-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: clamp(14px, 2vw, 20px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.flavor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

/* Glow removed */
.flavor-card-glow { display: none; }

.flavor-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  margin: 0;
  height: auto;
}

.flavor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flavor-card:hover .flavor-img {
  transform: scale(1.06);
}

.flavor-info {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.flavor-name {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

.flavor-desc {
  font-size: clamp(12px, 1vw, 13px);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  flex: 1;
}

.flavor-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.flavor-tag {
  font-size: clamp(9px, 0.85vw, 10px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.flavor-price {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  color: var(--white);
}

.flavor-details {
  display: flex;
  justify-content: space-between;
  font-size: clamp(10px, 0.9vw, 11px);
  color: var(--gray);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  padding-top: clamp(8px, 1vw, 10px);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.flavor-cta {
  display: block;
  text-align: center;
  padding: clamp(10px, 1.2vw, 12px);
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}

.flavor-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.flavors-cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .flavors-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================
   ZESTO — Pourquoi Zesto (all screens)
   ============================================ */

.why {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease;
}

.why-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  border-radius: 16px;
  background: rgba(212, 168, 83, 0.08);
  margin: 0 auto clamp(14px, 2vw, 20px);
  font-size: 36px;
}

.why-card h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.why-card p {
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   ZESTO — Hero extras, Find, Testimonials,
   Revendeurs, FAQ, CTA & Footer
   ============================================ */

/* ---------- HERO EXTRAS ---------- */
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.badge-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(212,168,83,0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}

.trust-item {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--gray);
}

.trust-item strong {
  color: var(--white);
  font-weight: 700;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

/* ---------- PRODUCT INFO BAR ---------- */
.product-info-bar {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(20px, 2.5vw, 32px);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--gray-light);
  font-weight: 500;
}

/* ---------- FIND SECTION ---------- */
.find-section {
  background: var(--dark);
}

.cities-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.city-tag:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-2px);
}

.city-tag-more {
  border-style: dashed;
  border-color: rgba(212,168,83,0.3);
  color: var(--gold);
  cursor: pointer;
}

.find-cta {
  text-align: center;
}

/* ---------- SOCIAL PROOF ---------- */
.social-proof {
  background: var(--dark-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--gray-light);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

/* ---------- GOOGLE REVIEW CTA ---------- */
.google-review-cta {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.google-review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, rgba(66,133,244,0.06) 0%, rgba(52,168,83,0.06) 50%, rgba(251,188,5,0.06) 100%);
  border: 1px solid rgba(66,133,244,0.15);
  border-radius: 16px;
  flex-wrap: wrap;
}

.google-review-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-review-title {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.google-review-subtitle {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--gray-light);
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.google-review-btn svg {
  color: #FBBC05;
}

.google-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

@media (max-width: 600px) {
  .google-review-card {
    flex-direction: column;
    text-align: center;
  }
  .google-review-left {
    flex-direction: column;
  }
  .google-review-btn {
    width: 100%;
    justify-content: center;
  }
}

.testimonial-city {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* Social Feed */
.social-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.social-feed-links {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  flex-wrap: wrap;
}

.social-feed-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.social-feed-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
}

.social-gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.social-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

@media (max-width: 600px) {
  .social-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ---------- REVENDEURS B2B ---------- */
.revendeurs {
  background: var(--dark);
  border-top: 1px solid rgba(212,168,83,0.08);
  border-bottom: 1px solid rgba(212,168,83,0.08);
}

.revendeur-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.revendeur-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--gray-light);
  line-height: 1.7;
  margin: clamp(16px, 2vw, 24px) 0;
  max-width: 500px;
}

.revendeur-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.revendeur-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--gray-light);
}

.revendeur-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revendeur-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    ellipse,
    rgba(212, 168, 83, 0.15) 0%,
    rgba(232, 137, 28, 0.08) 35%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  will-change: transform, opacity;
}

.revendeur-img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
  will-change: transform;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--dark-2);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(212,168,83,0.2);
}

.faq-item summary {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 24px);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 clamp(16px, 2vw, 24px) clamp(16px, 2vw, 20px);
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--gray-light);
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  text-align: center;
  padding: var(--section-pad) 0 clamp(48px, 7vw, 80px);
}

.cta-title {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.cta-text {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--gray-light);
  margin-bottom: clamp(24px, 3.5vw, 40px);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.cta-social {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: 24px;
}

.social-link {
  width: clamp(44px, 4.5vw, 52px);
  height: clamp(44px, 4.5vw, 52px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.1);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: clamp(40px, 5vw, 64px) 0 clamp(24px, 3vw, 32px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.footer-logo {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(11px, 1vw, 12px);
  color: rgba(255,255,255,0.6);
}

/* ---------- HOVER (touch-safe) ---------- */
@media (hover: hover) {
  .city-card:hover {
    border-color: rgba(212,168,83,0.2);
    transform: translateY(-2px);
  }

  .testimonial-card:hover {
    border-color: rgba(212,168,83,0.2);
    transform: translateY(-3px);
  }

  .social-gallery-item:hover img {
    transform: scale(1.08);
  }

  .gamme-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-accent, var(--gold));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .gamme-card:hover .gamme-card-img {
    transform: scale(1.08);
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .revendeur-img,
  .hero-product-img,
  .wa-float {
    animation: none !important;
  }
  .revendeur-visual::before,
  .hero-image::before {
    animation: none !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .revendeur-grid {
    grid-template-columns: 1fr;
  }

  .revendeur-visual {
    text-align: center;
    order: -1;
  }

  .revendeur-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .social-feed-header {
    flex-direction: column;
    text-align: center;
  }

  .social-feed-links {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-sep {
    display: none;
  }

  .hero-trust {
    gap: 8px;
    flex-direction: column;
  }

  .product-info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
}

/* ============================================
   ZESTO — Animations & Transitions
   ============================================ */

/* ---------- HERO ANIMATIONS ---------- */
/* Hidden only when JS is available */
.js .hero-tagline,
.js .hero-title,
.js .hero-subtitle,
.js .hero-buttons,
.js .hero-image {
  opacity: 0;
  transform: translateY(30px);
}

.js .hero-tagline.visible { animation: fadeUp 0.8s ease forwards 0.2s; }
.js .hero-title.visible   { animation: fadeUp 0.8s ease forwards 0.4s; }
.js .hero-subtitle.visible { animation: fadeUp 0.8s ease forwards 0.6s; }
.js .hero-buttons.visible  { animation: fadeUp 0.8s ease forwards 0.8s; }
.js .hero-image.visible    { animation: fadeUp 1s ease forwards 0.5s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* Staggered children — flavors */
.flavors-grid .flavor-card:nth-child(1) { transition-delay: 0.05s; }
.flavors-grid .flavor-card:nth-child(2) { transition-delay: 0.15s; }
.flavors-grid .flavor-card:nth-child(3) { transition-delay: 0.25s; }
.flavors-grid .flavor-card:nth-child(4) { transition-delay: 0.35s; }

/* Staggered children — why */
.why-grid [data-animate]:nth-child(1) { transition-delay: 0.05s; }
.why-grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.why-grid [data-animate]:nth-child(3) { transition-delay: 0.25s; }

/* Staggered children — testimonials */
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.25s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.35s; }

/* ---------- HOVER EFFECTS ---------- */
.flavor-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.why-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease;
}

/* ---------- NAVBAR TRANSITION ---------- */
.navbar {
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-tagline,
  .hero-title,
  .hero-subtitle,
  .hero-buttons,
  .hero-image {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   ZESTO — Page Saveurs (all screens)
   ============================================ */

/* ---------- SAVEUR DETAIL SECTIONS ---------- */
.saveur-detail {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.saveur-alt {
  background: var(--dark-2);
}

.saveur-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.saveur-grid-reverse {
  grid-template-columns: 0.8fr 1.2fr 1fr;
}

@media (max-width: 900px) {
  .saveur-grid,
  .saveur-grid-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .saveur-pack {
    grid-column: span 2;
    justify-content: center;
  }

  .saveur-grid-reverse .saveur-pack {
    grid-column: span 2;
    order: 3;
  }
}

@media (max-width: 600px) {
  .saveur-grid,
  .saveur-grid-reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .saveur-pack {
    grid-column: auto;
  }

  .saveur-grid-reverse .saveur-pack {
    grid-column: auto;
    order: 0;
  }

  .saveur-detail-item {
    justify-content: center;
  }
}

/* Visual (3D illustration) */
.saveur-img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
}

.saveur-glow {
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.saveur-3d-img {
  max-width: clamp(180px, 22vw, 280px);
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saveur-img-container:hover .saveur-3d-img {
  transform: scale(1.08) rotate(3deg);
}

/* Info */
.saveur-badge {
  display: inline-block;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border: 1.5px solid;
  border-radius: 50px;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.saveur-title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.saveur-tagline {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.saveur-description {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  max-width: 420px;
}

@media (max-width: 600px) {
  .saveur-description {
    max-width: 100%;
  }
}

/* Details / specs */
.saveur-details {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
}

.saveur-detail-item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.detail-label {
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 70px;
}

.detail-value {
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 500;
  color: var(--gray-light);
}

.intensity-bar {
  flex: 1;
  max-width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.intensity-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

/* Pack image */
.saveur-pack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.saveur-pack-img {
  max-width: clamp(160px, 20vw, 240px);
  width: 100%;
  border-radius: 16px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.saveur-pack:hover .saveur-pack-img {
  transform: scale(1.05);
}

/* ---------- GAMME SECTION ---------- */
.gamme {
  background: var(--dark-2);
}

.gamme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}

@media (min-width: 860px) {
  .gamme-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gamme-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: clamp(14px, 2vw, 20px);
  padding: clamp(20px, 2.5vw, 32px) clamp(14px, 1.5vw, 20px) clamp(16px, 2vw, 24px);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  display: block;
}

.gamme-card-img {
  max-width: clamp(100px, 12vw, 140px);
  width: 100%;
  margin: 0 auto clamp(12px, 1.5vw, 20px);
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.gamme-card h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  margin-bottom: 8px;
}

.gamme-card-tag {
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--card-accent, var(--gold));
}

/* ============================================
   ZESTO — Responsive overrides
   Most responsiveness is now handled by
   clamp() and auto-fit in each CSS module.
   This file handles edge cases only.
   ============================================ */

/* ---------- LARGE SCREENS (1440px+) ---------- */
@media (min-width: 1440px) {
  :root {
    --container-width: 1320px;
  }
}

/* ---------- 2K+ SCREENS ---------- */
@media (min-width: 1920px) {
  :root {
    --container-width: 1400px;
  }

  .hero-image {
    width: 45vw;
    max-width: 850px;
  }
}

/* ---------- TOUCH DEVICES ---------- */
@media (hover: none) {
  .flavor-card:hover,
  .why-card:hover,
  .find-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .flavor-card:active {
    transform: scale(0.97);
  }
}

/* ---------- LANDSCAPE PHONES ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-scroll {
    display: none;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .navbar,
  .hero-scroll,
  .nav-toggle {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    page-break-inside: avoid;
  }
}


.wa-float{position:fixed;bottom:24px;right:24px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.4);z-index:900;transition:transform 0.3s,box-shadow 0.3s}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 30px rgba(37,211,102,0.5)}
.wa-float svg{width:28px;height:28px;fill:#fff}
.flavor-badge{position:absolute;top:12px;right:12px;padding:4px 12px;border-radius:50px;font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;z-index:5}
.flavor-badge-best{background:var(--gold);color:var(--dark)}
.flavor-badge-new{background:var(--jasmin);color:var(--dark)}
.btn-secondary{background:rgba(255,255,255,0.06);color:var(--white);border:1px solid rgba(255,255,255,0.1)}
.btn-secondary:hover{background:rgba(255,255,255,0.1);transform:translateY(-2px)}
.flavor-cta-outline{display:block;text-align:center;padding:clamp(10px,1.2vw,12px);background:transparent;color:var(--gold);border:1px solid rgba(212,168,83,0.3);border-radius:8px;font-size:clamp(11px,1vw,12px);font-weight:700;text-transform:uppercase;letter-spacing:0.5px;transition:all 0.3s;margin-top:auto}
.flavor-cta-outline:hover{background:var(--gold);color:var(--dark)}
.hero-proof{display:flex;align-items:center;gap:8px;margin-top:clamp(20px,2.5vw,32px);font-size:clamp(12px,1.1vw,13px);color:var(--gray)}
.hero-proof-dot{width:8px;height:8px;background:#25D366;border-radius:50%;animation:pulse-dot 2s infinite}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:0.4}}
.phone-fallback{font-size:clamp(12px,1.1vw,13px);color:var(--gray);margin-top:12px;text-align:center}
.phone-fallback a{color:var(--gold);font-weight:600}
@media(max-width:768px){.wa-float{bottom:16px;right:16px;width:52px;height:52px}.wa-float svg{width:24px;height:24px}}
