/* ========== LUCIDE ICONS ========== */
[data-lucide] { display:inline-block; vertical-align:middle; flex-shrink:0; }
.ic-xs { width:12px; height:12px; stroke-width:2.2; }
.ic-sm { width:15px; height:15px; stroke-width:2; }
.ic-md { width:18px; height:18px; stroke-width:1.9; }
.ic-lg { width:22px; height:22px; stroke-width:1.8; }
.ic-xl { width:28px; height:28px; stroke-width:1.7; }

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --terra: #C1533A;
  --vert: #2D6A4F;
  --jaune: #F4A261;
  --creme: #FFF8F0;
  --terra-dark: #9E3D26;
  --vert-dark: #1E4D38;
  --terra-light: #E8795E;
  --text-dark: #1A1208;
  --text-mid: #4A3728;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--creme);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-scale { transform: scale(.94); }
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
/* délais en cascade */
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .28s; }
.reveal-d4 { transition-delay: .38s; }
.reveal-d5 { transition-delay: .48s; }

/* ========== CARD HOVER OVERLAY (inspiré Product Reveal Card 21st.dev) ========== */
.jus-card { position: relative; overflow: hidden; }
.card-reveal-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.4rem;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  border-radius: inherit;
}
.jus-card:hover .card-reveal-overlay { transform: translateY(0); }
.card-reveal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); margin-bottom: .3rem;
}
.card-reveal-desc {
  font-size: .8rem; color: var(--text-mid); margin-bottom: .85rem; line-height: 1.5;
}
.card-reveal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 900; color: var(--terra);
  margin-bottom: .75rem;
}
.card-reveal-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--terra), #E8733A);
  color: #fff; border: none; border-radius: 999px;
  padding: .6rem 1.2rem; font-size: .82rem; font-weight: 600;
  cursor: pointer; width: 100%;
  transition: transform .2s, box-shadow .2s;
}
.card-reveal-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(193,83,58,.4); }

/* ========== CLIP-PATH SECTION ENTRANCE ========== */
@keyframes clipReveal {
  from { clip-path: inset(0 0 100% 0); opacity: 0; }
  to   { clip-path: inset(0 0 0% 0);   opacity: 1; }
}
.clip-reveal {
  animation: clipReveal .8s cubic-bezier(.22,1,.36,1) both;
}

/* ========== FLOAT ANIMATION (bouteilles hero) ========== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.float-anim { animation: floatY 4s ease-in-out infinite; }
.float-anim-slow { animation: floatY 6s ease-in-out infinite; }
.float-anim-fast { animation: floatY 3s ease-in-out infinite; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  border-bottom: none;
  transition: background .4s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(6,4,16,0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo-img {
  height: 64px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.875rem; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--terra);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--terra); }
.nav-cta {
  background: var(--terra); color: #fff;
  border: none; border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--terra); border-radius: 2px; transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: var(--creme); border-bottom: 1px solid rgba(193,83,58,0.12);
  padding: 1.5rem 2rem; z-index: 99; flex-direction: column; gap: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-mid);
  font-size: 1rem; font-weight: 500; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(193,83,58,0.08);
}
.mobile-menu a.active { color: var(--terra); }
.mobile-logo-link { border-bottom: none !important; padding: 0 0 0.5rem !important; }
.mobile-logo-img { height: 52px; width: auto; display: block; }
.footer-brand-img { height: 72px; width: auto; display: block; margin-bottom: 0.75rem; }

/* ========== PAGE WRAPPER ========== */
.page-content { padding-top: 65px; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; }

/* ========== SECTIONS COMMON ========== */
section { padding: 6rem 2rem; }
.section-label {
  display: inline-block;
  background: rgba(193,83,58,0.1);
  color: var(--terra); border-radius: 999px;
  padding: 0.3rem 1rem; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark); line-height: 1.1; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.7; max-width: 600px;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ========== FADE UP ANIMATION ========== */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--terra); color: #fff;
  border: none; border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(193,83,58,0.35);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(193,83,58,0.45); }
.btn-secondary {
  background: var(--vert); color: #fff;
  border: none; border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: var(--vert-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--terra);
  border: 1.5px solid var(--terra); border-radius: 999px;
  padding: 0.8rem 1.75rem;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--terra); color: #fff; transform: translateY(-2px); }

/* ========== HERO (index) ========== */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding-top: 0;
}
.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  animation: skyShift 12s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { background: linear-gradient(180deg, #FF6B35 0%, #F4A261 35%, #FFD166 65%, #E8D5A3 100%); }
  50%  { background: linear-gradient(180deg, #E05C2B 0%, #F4844F 30%, #FFB347 60%, #D4C4A0 100%); }
  100% { background: linear-gradient(180deg, #C44B22 0%, #E8733A 30%, #F5A623 60%, #C8B898 100%); }
}
.hero-landscape {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  width: 100%; height: 70%;
}
.sun { animation: sunPulse 8s ease-in-out infinite alternate; transform-origin: center; }
@keyframes sunPulse { 0% { opacity: 0.85; r: 44; } 100% { opacity: 1; r: 48; } }
.sun-ray { animation: rayRotate 20s linear infinite; transform-origin: 160px 120px; }
@keyframes rayRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cloud-1 { animation: cloudDrift1 30s linear infinite; }
.cloud-2 { animation: cloudDrift2 40s linear infinite; }
@keyframes cloudDrift1 { from { transform: translateX(-120px); } to { transform: translateX(calc(100vw + 120px)); } }
@keyframes cloudDrift2 { from { transform: translateX(calc(100vw + 80px)); } to { transform: translateX(-80px); } }
.baobab-group { animation: baobabSway 6s ease-in-out infinite alternate; transform-origin: bottom center; }
.baobab-1 { animation-delay: 0s; }
.baobab-2 { animation-delay: -2s; }
.baobab-3 { animation-delay: -4s; }
@keyframes baobabSway { 0% { transform: rotate(-0.8deg); } 100% { transform: rotate(0.8deg); } }
.bird { animation: birdFly 18s linear infinite; }
.bird-1 { animation-delay: 0s; }
.bird-2 { animation-delay: -6s; }
.bird-3 { animation-delay: -12s; }
@keyframes birdFly {
  from { transform: translateX(-60px) translateY(0px); }
  25%  { transform: translateX(25vw) translateY(-15px); }
  50%  { transform: translateX(50vw) translateY(5px); }
  75%  { transform: translateX(75vw) translateY(-10px); }
  to   { transform: translateX(calc(100vw + 60px)) translateY(0px); }
}
.grass-blade { animation: grassWave 3s ease-in-out infinite alternate; transform-origin: bottom center; }
.grass-blade:nth-child(odd) { animation-direction: alternate-reverse; }
.hero-content {
  position: relative; z-index: 10; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 0 1.5rem; margin-top: -6rem;
}
.hero-badge {
  background: rgba(255,248,240,0.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4); color: #fff; border-radius: 999px;
  padding: 0.35rem 1.1rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-logo-ring {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,248,240,0.2); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; text-align: center; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem); color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25); line-height: 1.05; letter-spacing: -1px;
}
.hero-title em { font-style: italic; color: #FFD166; }
.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,248,240,0.95);
  font-weight: 300; letter-spacing: 0.5px; max-width: 520px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-ghost {
  background: rgba(255,255,255,0.2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.6); color: #fff; border-radius: 999px;
  padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 1px;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ========== HOME — TEASER SECTION ========== */
#teaser { background: #FFF8EE; padding: 5rem 2rem; }
.teaser-header { text-align: center; margin-bottom: 3rem; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaser-card {
  border-radius: 1.75rem; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(193,83,58,0.08);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  display: flex; flex-direction: column;
}
.teaser-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.teaser-thumb {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.teaser-thumb.histoire { background: linear-gradient(135deg, #F4A261, #C1533A); }
.teaser-thumb.jus      { background: linear-gradient(135deg, #2D6A4F, #4FA87A); }
.teaser-thumb.commande { background: linear-gradient(135deg, #F4A261, #FFD166); }
.teaser-body { padding: 1.75rem; background: var(--creme); flex: 1; }
.teaser-body h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.teaser-body p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.teaser-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--terra); font-size: 0.875rem; font-weight: 600;
}

/* ========== HOME — MINI STATS ========== */
#home-stats {
  background: var(--terra); padding: 4rem 2rem;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { color: #fff; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; display: block;
  line-height: 1;
}
.stat-item .label { font-size: 0.875rem; opacity: 0.85; margin-top: 0.5rem; }

/* ========== HISTOIRE PAGE ========== */
.page-hero {
  background: linear-gradient(135deg, #F4A261 0%, #C1533A 50%, #2D6A4F 100%);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 1rem; position: relative; }
.page-hero p  { color: rgba(255,248,240,0.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.breadcrumb-current { color: #fff; font-size: 0.875rem; }
.page-hero-green { background: linear-gradient(135deg, #1A5C1C 0%, #2E8B30 40%, #D4A017 100%); }
.catalogue-header { text-align: center; margin-bottom: 1rem; }
.catalogue-subtitle { margin: 0 auto 2rem; }

/* ========== HISTOIRE — CONTENT ========== */
#histoire { background: var(--creme); }
.histoire-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  margin-bottom: 6rem;
}
.histoire-visual {
  position: relative; border-radius: 2rem; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #F4A261 0%, #C1533A 50%, #2D6A4F 100%);
  display: flex; align-items: center; justify-content: center;
}
.histoire-svg { width: 80%; height: 80%; }
.histoire-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,248,240,0.95); border-radius: 1rem;
  padding: 0.8rem 1.2rem; font-size: 0.875rem; color: var(--text-mid);
}
.histoire-tag strong { color: var(--terra); font-weight: 700; font-size: 1.1rem; display: block; }
.histoire-text { display: flex; flex-direction: column; gap: 1.25rem; }
.histoire-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.histoire-pull {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic; color: var(--terra);
  border-left: 3px solid var(--terra); padding-left: 1.5rem;
  line-height: 1.5;
}

/* Valeurs section */
#valeurs { background: #fff; }
.valeurs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.valeur-card {
  background: var(--creme); border-radius: 1.5rem;
  padding: 2rem; border: 1px solid rgba(193,83,58,0.08);
  display: flex; flex-direction: column; gap: 1rem;
}
.valeur-icon { font-size: 2.5rem; }
.valeur-card h3 { font-size: 1.15rem; color: var(--text-dark); }
.valeur-card p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* Stats strip */
.stats-strip {
  background: var(--vert); padding: 4rem 2rem;
}
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.strip-stat { color: #fff; }
.strip-stat .num {
  font-family: 'Playfair Display', serif; font-size: 2.75rem;
  font-weight: 700; display: block; line-height: 1;
}
.strip-stat .label { font-size: 0.875rem; opacity: 0.85; margin-top: 0.5rem; }

/* ========== JUS PAGE ========== */
#nos-jus { background: var(--creme); }
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  border: 1.5px solid rgba(193,83,58,0.2);
  background: transparent; color: var(--text-mid);
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.filter-tab:hover { border-color: var(--terra); color: var(--terra); }
.filter-tab.active {
  background: var(--terra); color: #fff; border-color: var(--terra);
  box-shadow: 0 4px 16px rgba(193,83,58,0.3);
}
.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem;
}
.juice-card {
  background: #fff; border-radius: 1.75rem; overflow: hidden;
  border: 1px solid rgba(193,83,58,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  display: flex; flex-direction: column; cursor: pointer;
}
.juice-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.juice-card:nth-child(1) { grid-column: span 5; }
.juice-card:nth-child(2) { grid-column: span 7; }
.juice-card:nth-child(3) { grid-column: span 4; }
.juice-card:nth-child(4) { grid-column: span 4; }
.juice-card:nth-child(5) { grid-column: span 4; }
.juice-card.hidden { display: none; }
.juice-thumb {
  width: 100%; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.juice-card:nth-child(2) .juice-thumb { aspect-ratio: 16/8; }
.juice-thumb-icon {
  font-size: 4rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  animation: iconFloat 4s ease-in-out infinite alternate;
}
@keyframes iconFloat { from { transform: translateY(0px); } to { transform: translateY(-8px); } }
.juice-thumb::after {
  content: 'Photo à venir'; position: absolute; bottom: 0.75rem; right: 0.75rem;
  background: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.juice-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.juice-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.juice-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.juice-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.juice-tag {
  font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.65rem;
  border-radius: 999px; letter-spacing: 0.3px;
}
.juice-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); margin-top: auto;
}
.juice-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--terra); }
.btn-commander {
  background: var(--vert); color: #fff; border: none; border-radius: 999px;
  padding: 0.55rem 1.25rem; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-commander:hover { background: var(--vert-dark); transform: translateY(-1px); }
.orange-juice .juice-thumb  { background: linear-gradient(135deg, #FF8C42, #F4A261, #FFD166); }
.itakh-juice .juice-thumb   { background: linear-gradient(135deg, #8B2635, #C1553A, #B5451A); }
.bouille-juice .juice-thumb { background: linear-gradient(135deg, #8B5E3C, #C4956A, #E8C49A); }
.bissap-juice .juice-thumb  { background: linear-gradient(135deg, #9B1D6B, #C1203A, #E83A5E); }
.tamarin-juice .juice-thumb { background: linear-gradient(135deg, #A67B00, #D4A017, #F0C040); }
.orange-juice .juice-tag.main  { background: rgba(244,162,97,0.2);  color: #B35A00; }
.itakh-juice .juice-tag.main   { background: rgba(139,38,53,0.15);  color: #8B2635; }
.bouille-juice .juice-tag.main { background: rgba(139,94,60,0.15);  color: #6B3E1E; }
.bissap-juice .juice-tag.main  { background: rgba(155,29,107,0.15); color: #9B1D6B; }
.tamarin-juice .juice-tag.main { background: rgba(212,160,23,0.2);  color: #7A5800; }
.juice-tag.organic { background: rgba(45,106,79,0.12); color: var(--vert-dark); }
.juice-tag.local   { background: rgba(193,83,58,0.1);  color: var(--terra-dark); }

/* ========== COMMANDE PAGE ========== */
#commande-section { background: var(--creme); }
.commande-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.commande-info { display: flex; flex-direction: column; gap: 2rem; }
.commande-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.1rem; align-items: flex-start;
  position: relative; padding-bottom: 1.4rem;
}
.step:last-child { padding-bottom: 0; }
/* Ligne verticale entre les étapes */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra), rgba(193,83,58,0.15));
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), #E8733A);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(193,83,58,0.35);
  position: relative; z-index: 1;
}
.step-text { padding-top: 0.4rem; }
.step-text h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.step-text p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.contact-ways { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-way {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: 1rem;
  background: #fff; border: 1px solid rgba(193,83,58,0.1);
  font-size: 0.875rem; color: var(--text-mid);
  text-decoration: none; transition: all .2s;
}
.contact-way:hover { border-color: var(--terra); color: var(--terra); }
.contact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; flex-shrink: 0;
  background: rgba(193,83,58,.1); border-radius: 50%;
  padding: .38rem; color: var(--terra);
}
.contact-icon svg { width: 100%; height: 100%; }
.form-card {
  background: #fff; border-radius: 2rem; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07); border: 1px solid rgba(193,83,58,0.08);
}
.form-card h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; max-width: 100%; box-sizing: border-box;
  border: 1.5px solid rgba(193,83,58,0.2); border-radius: 0.875rem;
  padding: 0.8rem 1rem; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  color: var(--text-dark); background: var(--creme);
  outline: none; transition: border-color .2s, box-shadow .2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra); box-shadow: 0 0 0 3px rgba(193,83,58,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.quantity-row { display: flex; align-items: center; gap: 1rem; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid rgba(193,83,58,0.2);
  border-radius: 0.875rem; overflow: hidden; background: var(--creme);
}
.qty-btn {
  width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; font-size: 1.2rem; color: var(--terra); font-weight: 700;
  transition: background .15s; display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(193,83,58,0.1); }
.qty-display {
  width: 48px; text-align: center; font-size: 1rem; font-weight: 600;
  color: var(--text-dark); border: none; background: transparent;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--terra); color: #fff;
  border: none; border-radius: 999px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .2s; margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(193,83,58,0.35);
}
.btn-submit:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(193,83,58,0.45); }
.form-contact-row {
  display: flex; gap: 0.75rem; margin-top: 1rem; justify-content: center;
}
.contact-pill {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all .2s;
}
.whatsapp-pill { background: #25D366; color: #fff; }
.whatsapp-pill:hover { background: #128C7E; transform: translateY(-1px); }
.email-pill { background: var(--vert); color: #fff; }
.email-pill:hover { background: var(--vert-dark); transform: translateY(-1px); }

/* ========== FOOTER ========== */
footer {
  background: var(--text-dark); color: rgba(255,248,240,0.8);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--creme); margin-bottom: 0.75rem;
}
.footer-brand h3 span { color: var(--jaune); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: all .2s; color: rgba(255,248,240,0.7);
}
.social-link:hover { background: var(--terra); border-color: var(--terra); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--jaune); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  text-decoration: none; color: rgba(255,248,240,0.65); font-size: 0.875rem; transition: color .2s;
}
.footer-col ul a:hover { color: var(--creme); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,248,240,0.4);
}
.footer-bottom a { color: var(--jaune); text-decoration: none; }
.footer-synkro {
  display: inline-flex; align-items: center; gap: .45rem;
  opacity: .55; text-decoration: none; transition: opacity .2s;
}
.footer-synkro:hover { opacity: .9; }
.footer-synkro-label {
  font-size: .65rem; color: inherit; letter-spacing: .06em; text-transform: uppercase;
}
.footer-synkro img {
  height: 18px; width: auto; filter: brightness(0) invert(1);
}
.footer-made-by {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-made-by-label {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .6rem;
}
.footer-made-by a { display: inline-block; }
.footer-made-by img { height: 54px; max-width: 100%; display: block; }

/* ========== NAV SUIVI PILL ========== */
.nav-suivi {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.09);
  border: 1px solid rgba(34,197,94,.28);
  border-radius: 999px;
  padding: .38rem .9rem .38rem .6rem;
  text-decoration: none; color: #4ade80;
  font-family: 'Inter', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, border-color .2s;
  white-space: nowrap; overflow: hidden;
}
.nav-suivi:hover { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.55); color:#6ee7a0; }
/* Dot live */
.ns-dot {
  display: inline-block; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.9);
  animation: nsDot 1.2s ease-in-out infinite;
}
@keyframes nsDot { 0%,100%{opacity:1;} 50%{opacity:.25;} }
/* Route avec moto qui roule */
.ns-road {
  display: inline-block; flex-shrink: 0;
  width: 44px; height: 18px;
  border-radius: 4px;
  background: rgba(0,0,0,.4);
  border-bottom: 2px solid rgba(255,255,255,.15);
  position: relative; overflow: hidden;
  vertical-align: middle;
}
.ns-moto {
  display: inline-block;
  position: absolute; bottom: 1px; left: -18px;
  font-size: 13px; line-height: 1;
  will-change: transform;
  animation: motoRide 1.3s linear infinite;
}
@keyframes motoRide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(66px); }
}
@media(max-width:900px) { .nav-suivi { display: none; } }

/* ========== FLOATING WHATSAPP ========== */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); cursor: pointer;
  text-decoration: none; transition: all .25s cubic-bezier(.34,1.56,.64,1);
  animation: waPop 2s ease-out 1s both;
}
.wa-fab:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
@keyframes waPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--text-dark); font-size: 0.8rem; font-weight: 600;
  padding: 0.5rem 0.9rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12); opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-fab:hover .wa-tooltip { opacity: 1; }

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 6rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--vert); color: #fff; padding: 0.9rem 1.75rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 200; opacity: 0; pointer-events: none; transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ========== JUS PAGE — extra product colors ========== */
.bouye-juice .juice-thumb         { background: linear-gradient(135deg, #C4956A, #E8C49A, #D4AA78); }
.bouye-fraise-juice .juice-thumb  { background: linear-gradient(135deg, #C8547A, #E8809A, #F4AEC0); }
.bouye-corossol-juice .juice-thumb{ background: linear-gradient(135deg, #5A9060, #8EC490, #C4E4C8); }
.madd-mangue-juice .juice-thumb   { background: linear-gradient(135deg, #8B4A00, #D4880A, #F0B840); }
.mangue-orange-juice .juice-thumb { background: linear-gradient(135deg, #D44A00, #F07820, #F4B050); }
.gingembre-juice .juice-thumb     { background: linear-gradient(135deg, #8B6000, #C49020, #DDB840); }

.bouye-juice .juice-tag.main         { background: rgba(196,149,106,0.2); color: #7A4A1E; }
.bouye-fraise-juice .juice-tag.main  { background: rgba(200,84,122,0.15); color: #8B2040; }
.bouye-corossol-juice .juice-tag.main{ background: rgba(90,144,96,0.15);  color: #2D6030; }
.madd-mangue-juice .juice-tag.main   { background: rgba(212,136,10,0.2);  color: #7A4000; }
.mangue-orange-juice .juice-tag.main { background: rgba(240,120,32,0.2);  color: #8B3000; }
.gingembre-juice .juice-tag.main     { background: rgba(196,144,32,0.2);  color: #6B4000; }

.badge-ss {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(30,112,32,0.12); color: #1E7020;
  border: 1px solid rgba(30,112,32,0.2);
  border-radius: 999px; padding: 0.2rem 0.65rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3px;
}

/* JUS PAGE — Bento layout for 8 cards */
.bento-8 .juice-card:nth-child(1) { grid-column: span 7; }
.bento-8 .juice-card:nth-child(2) { grid-column: span 5; }
.bento-8 .juice-card:nth-child(3) { grid-column: span 4; }
.bento-8 .juice-card:nth-child(4) { grid-column: span 4; }
.bento-8 .juice-card:nth-child(5) { grid-column: span 4; }
.bento-8 .juice-card:nth-child(6) { grid-column: span 5; }
.bento-8 .juice-card:nth-child(7) { grid-column: span 7; }
.bento-8 .juice-card:nth-child(8) { grid-column: span 12; }
.bento-8 .juice-card:nth-child(8) .juice-thumb { aspect-ratio: 21/6; font-size: 6rem; }

/* JUS PAGE — page hero variant */
.page-hero-green {
  background: linear-gradient(135deg, #1A5C1C 0%, #2E8B30 40%, #D4A017 100%);
}

/* JUS PAGE — info strip */
.info-strip-section { background: #fff; padding: 4rem 2rem; }
.info-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.info-strip-card {
  text-align: center; padding: 2rem;
  background: var(--creme); border-radius: 1.5rem;
  border: 1px solid rgba(193,83,58,0.08);
}
.info-strip-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-strip-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.info-strip-card p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* JUS PAGE — catalogue header */
.catalogue-header { text-align: center; margin-bottom: 1rem; }
.catalogue-subtitle { margin: 0 auto 2rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .juice-card:nth-child(1) { grid-column: span 6; }
  .juice-card:nth-child(2) { grid-column: span 6; }
  .juice-card:nth-child(3),
  .juice-card:nth-child(4),
  .juice-card:nth-child(5) { grid-column: span 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .teaser-grid .teaser-card:last-child { grid-column: span 2; }
  .stats-grid, .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .bento-8 .juice-card:nth-child(1) { grid-column: span 6; }
  .bento-8 .juice-card:nth-child(2) { grid-column: span 6; }
  .bento-8 .juice-card:nth-child(6) { grid-column: span 4; }
  .bento-8 .juice-card:nth-child(7) { grid-column: span 8; }
  .bento-8 .juice-card:nth-child(8) { grid-column: span 12; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.25rem; }
  .histoire-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .histoire-visual { aspect-ratio: 16/9; max-height: 280px; }
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .juice-card:nth-child(n) { grid-column: span 1; }
  .juice-card:nth-child(1) { grid-column: span 2; }
  .commande-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-grid .teaser-card:last-child { grid-column: span 1; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .stats-strip-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 6rem 1.5rem 4rem; }
  .bento-8 .juice-card:nth-child(n)  { grid-column: span 1; }
  .bento-8 .juice-card:nth-child(1),
  .bento-8 .juice-card:nth-child(8)  { grid-column: span 2; }
  .bento-8 .juice-card:nth-child(8) .juice-thumb { aspect-ratio: 16/7; font-size: 4rem; }
  .info-strip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-8 { grid-template-columns: 1fr 1fr; }
  .bento-8 .juice-card:nth-child(n) { grid-column: span 1; }
  .juice-card:nth-child(n) { grid-column: span 1; }
  .stats-strip-grid { grid-template-columns: 1fr 1fr; }
  /* Commande page mobile */
  .form-card { padding: 1.5rem 1.25rem; border-radius: 1.25rem; }
  .form-contact-row { flex-wrap: wrap; }
  .contact-pill { flex: 1; min-width: 130px; justify-content: center; }
  .commande-info { gap: 1.25rem; }
  /* Page hero global */
  .page-hero { padding: 5rem 1.25rem 2.5rem; }
  .page-hero h1 { font-size: clamp(1.6rem,6vw,2.4rem); }
  .page-hero p { font-size: 1rem; }
  /* Section padding */
  section { padding: 3rem 1rem; }
}

@media (max-width: 768px) {
  .nav-logo-img { height: 50px !important; }
}

@media (max-width: 375px) {
  .form-card { padding: 1.1rem 1rem; }
  .nav-logo-img { height: 44px !important; }
  .section-title { font-size: clamp(1.4rem,7vw,1.8rem); }
  .contact-way { padding: .75rem 1rem; font-size: .82rem; }
  footer { padding: 3rem 1rem 1.5rem; }
}

/* ================================================================
   PANIER — Icône nav + Drawer latéral
================================================================ */

/* Bouton nav */
.cart-nav-btn {
  position: relative;
  background: linear-gradient(135deg, #C1533A, #E8733A);
  border: none;
  border-radius: 999px;
  padding: .48rem .7rem;
  cursor: pointer;
  color: #fff;
  display: flex; align-items: center;
  transition: transform .2s, box-shadow .2s;
  margin-left: .5rem;
  box-shadow: 0 4px 14px rgba(193,83,58,.45);
}
.cart-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(193,83,58,.55);
}

/* Badge compteur */
.cart-badge {
  position: absolute;
  top: -7px; right: -7px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #C1533A;
  color: #fff;
  font-size: .62rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #000;
  line-height: 1;
}
@keyframes cartBadgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.55); }
  100% { transform: scale(1); }
}
.cart-badge-pop { animation: cartBadgePop .4s cubic-bezier(0.16,1,0.3,1); }

/* ── Sélecteur de quantité inline (boutons panier) ──────── */
.qty-s-btn {
  background: rgba(255,255,255,.22);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  width: 1.55rem; height: 1.55rem;
  font-size: 1rem; font-weight: 800;
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .12s;
  line-height: 1;
}
.qty-s-btn:hover  { background: rgba(255,255,255,.42); transform: scale(1.12); }
.qty-s-btn:active { transform: scale(.94); }

.qty-s-num {
  font-size: .92rem; font-weight: 900;
  color: #fff; min-width: 1.35rem;
  text-align: center; flex-shrink: 0;
}

.qty-s-ok {
  background: #fff;
  border: none; border-radius: 50%;
  width: 1.55rem; height: 1.55rem;
  font-size: .88rem; font-weight: 900;
  color: #C1533A; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.qty-s-ok:hover  { transform: scale(1.15); box-shadow: 0 4px 12px rgba(0,0,0,.22); }
.qty-s-ok:active { transform: scale(.92); }

/* Overlay semi-transparent */
.cart-overlay {
  position: fixed; inset: 0; z-index: 499;
  background: rgba(0,0,0,.6);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* Drawer panneau latéral */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  z-index: 500;
  background: #0d0906;
  border-left: 1px solid rgba(245,197,24,.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -16px 0 70px rgba(0,0,0,.55);
}
.cart-drawer.open { transform: translateX(0); }

/* En-tête drawer */
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(245,197,24,.12);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #F5C518; margin: 0;
}
.cart-drawer-close {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-drawer-close:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Corps drawer — liste articles */
.cart-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 1.1rem 1.25rem;
  display: flex; flex-direction: column; gap: .85rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,197,24,.25) transparent;
}

/* État vide */
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem; padding: 4rem 1rem; flex: 1;
}
.cart-empty > span { font-size: 3.5rem; }
.cart-empty p { color: rgba(255,255,255,.35); font-size: .9rem; }
.cart-btn-browse {
  display: inline-block; margin-top: .4rem;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.28);
  border-radius: 999px; padding: .55rem 1.4rem;
  color: #F5C518; text-decoration: none;
  font-size: .85rem; font-weight: 600;
  transition: background .2s;
}
.cart-btn-browse:hover { background: rgba(245,197,24,.2); }

/* Article panier */
.cart-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem; padding: .85rem 1rem;
}
.cart-item-emoji { font-size: 1.7rem; flex-shrink: 0; }
.cart-item-info {
  flex: 1; display: flex; flex-direction: column; gap: .18rem; min-width: 0;
}
.cart-item-name {
  font-size: .87rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: .78rem; color: #F5C518; font-weight: 600; }

/* Contrôle quantité dans le drawer */
.cart-item-ctrl {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.07);
  border-radius: 999px; padding: .2rem .45rem;
}
.cqty-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .15s;
}
.cqty-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.cqty-num {
  font-size: .85rem; font-weight: 700; color: #fff;
  min-width: 18px; text-align: center;
}
.cart-item-del {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.22); font-size: .75rem;
  flex-shrink: 0; padding: .25rem;
  transition: color .2s;
}
.cart-item-del:hover { color: rgba(220,60,60,.75); }

/* Pied drawer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(245,197,24,.12);
  display: flex; flex-direction: column; gap: .9rem;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
}
.cart-total-row > span:first-child {
  font-size: .84rem; color: rgba(255,255,255,.45);
}
.cart-total-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: #F5C518;
}
.cart-wa-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, #C1533A, #E8733A);
  border: none; border-radius: 999px;
  padding: 1rem 1.25rem;
  color: #fff; font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 24px rgba(193,83,58,.35);
}
.cart-wa-btn:hover { opacity: .9; transform: translateY(-2px); }
.cart-clear-btn {
  width: 100%; background: none;
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px;
  padding: .7rem; color: rgba(255,255,255,.28);
  font-size: .8rem; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.cart-clear-btn:hover { color: rgba(220,60,60,.65); border-color: rgba(220,60,60,.3); }

/* Bouton "Ajouter au panier" sur les cartes jus */
.btn-add-cart {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--terra);
  color: #fff; border: none; border-radius: 999px;
  padding: .58rem 1.2rem;
  font-size: .8rem; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .18s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
}
.btn-add-cart:hover { background: var(--terra-dark); transform: translateY(-2px); }
.btn-add-cart.added { background: var(--vert); }
