/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 64px; background: #fff; overflow-x: hidden; }

/* ── .mm Reset ── */
.mm * { box-sizing: border-box; margin: 0; padding: 0; }
.mm a { text-decoration: none; }

/* ── Wrapper ── */
.mm {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1C2B22;
  line-height: 1.75;
  background: #fff;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Typography ── */
.mm h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.mm-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.mm h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: #1A3D2B;
  margin: 3rem 0 1.25rem;
  font-weight: 400;
}
.mm h3 { font-size: 1.05rem; font-weight: 600; color: #2E6B45; margin: 1.5rem 0 .5rem; }
.mm p { margin-bottom: 1rem; color: #374840; font-size: .97rem; }
.mm ul { margin: .5rem 0 1rem 1.3rem; }
.mm ul li { margin-bottom: .4rem; font-size: .96rem; color: #374840; }
.mm ol { margin: .75rem 0 1rem 1.3rem; }
.mm ol li { margin-bottom: .5rem; font-size: .96rem; color: #374840; }
.mm strong { color: #1A3D2B; font-weight: 600; }
.mm a:not([class]) { color: #4A9668; border-bottom: 1px solid #D6EDDF; transition: .2s; }
.mm a:not([class]):hover { color: #2E6B45; border-color: #85C4A0; }

/* ── Layout order ── */
.mm { display: flex; flex-direction: column; }
.mm > * { order: 3; }
.mm-hero { order: 1; }
.mm-bc { order: 2; }

/* ── Breadcrumb ── */
.mm-bc {
  font-size: .82rem; color: #6B7D74;
  padding: 1rem 0 .5rem;
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  order: 2;
}
.mm-bc a { color: #4A9668; border: none !important; }

/* ── HERO ── */
.mm-hero {
  background: #1A3D2B !important;
  background: linear-gradient(140deg, #1A3D2B 0%, #2E6B45 55%, #3D7A58 100%) !important;
  border-radius: 0;
  padding: 0;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  min-height: calc(88vh - 64px);
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.mm-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(232,160,184,.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.mm-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(133,196,160,.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.mm-hero-inner {
  flex: 1;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── Pills ── */
.mm-pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.mm-pill {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .78rem; font-weight: 500; letter-spacing: .3px;
}
.mm-pill.pink { background: rgba(245,208,222,.25); border-color: rgba(245,208,222,.4); }
.mm-hero p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 600px; margin: 1.25rem 0 2rem; line-height: 1.7; }

/* ── Hero stats ── */
.mm-hero-meta { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: nowrap; align-items: stretch; }
.mm-hero-stat {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,.04);
  border-radius: 0;
  border-left: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 1rem;
}
.mm-hero-stat:first-child { border-left: none; }
.mm-hero-stat strong { color: #fff; font-size: 1.5rem; display: block; line-height: 1.15; font-family: 'DM Serif Display', Georgia, serif; }
.mm-hero-stat span { color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }

/* ── CTA Buttons ── */
.mm-cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #C96B8A !important;
  background: linear-gradient(135deg, #C96B8A, #D4527A) !important;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .97rem;
  padding: .85rem 1.9rem;
  border-radius: 50px;
  border: none !important;
  cursor: pointer;
  transition: .25s;
  box-shadow: 0 8px 28px rgba(201,107,138,.35);
  white-space: nowrap;
  text-decoration: none !important;
}
.mm-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(201,107,138,.45) !important;
  color: #fff !important;
  border: none !important;
}
.mm-cta-btn.green {
  background: #2E6B45 !important;
  background: linear-gradient(135deg, #2E6B45, #4A9668) !important;
  box-shadow: 0 6px 24px rgba(26,61,43,.25) !important;
}
.mm-cta-btn.sm { font-size: .88rem; padding: .65rem 1.4rem; }
.mm-cta-row { display: flex; justify-content: center; margin: 2rem 0; gap: 1rem; flex-wrap: wrap; }

/* ── Updated badge ── */
.mm-updated {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: #6B7D74;
  background: #EEF7F2;
  border: 1px solid #D6EDDF;
  border-radius: 20px;
  padding: .3rem .85rem;
  margin-bottom: 1.5rem;
}
.mm-updated::before { content: "🕒"; }

/* ── Info boxes ── */
.mm-box {
  border-radius: 16px; padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  display: flex; gap: .85rem; align-items: flex-start;
}
.mm-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.mm-box.green { background: #EEF7F2; border: 1px solid #D6EDDF; }
.mm-box.pink { background: #FEF8FA; border: 1px solid #F5D0DE; }
.mm-box.gold { background: #FFF3DC; border: 1px solid #F0D9A0; }
.mm-box p { margin: 0; font-size: .92rem; }

/* ── Ranking Cards ── */
.mm-ranking { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0; }
.mm-card {
  background: #fff;
  border: 1.5px solid #E2EDE7;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.1rem;
  align-items: start;
  transition: .25s;
  box-shadow: 0 2px 8px rgba(26,61,43,.06);
}
.mm-card:hover {
  box-shadow: 0 6px 24px rgba(26,61,43,.12);
  transform: translateY(-2px);
  border-color: #B8DCCA;
}
.mm-card.top {
  border-color: #E8A0B8;
  background: linear-gradient(to right, #FEF8FA, #fff);
  box-shadow: 0 8px 28px rgba(201,107,138,.15);
}
.mm-card.top:hover { box-shadow: 0 10px 36px rgba(201,107,138,.22); }

/* ── Rank bubbles ── */
.mm-rank {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0; color: #fff;
}
.mm-rank.r1 { background: linear-gradient(135deg, #C9993C, #E5BA5A); box-shadow: 0 4px 12px rgba(201,153,60,.35); }
.mm-rank.r2 { background: linear-gradient(135deg, #8C9BA0, #A8B8BE); }
.mm-rank.r3 { background: linear-gradient(135deg, #B07840, #C99460); }
.mm-rank.rn { background: #D6EDDF; color: #2E6B45; }

/* ── Card content ── */
.mm-card-title { font-weight: 700; font-size: 1.02rem; color: #1A3D2B; margin-bottom: .2rem; line-height: 1.35; }
.mm-stars { color: #F5A623; font-size: .9rem; letter-spacing: 1.5px; margin: .2rem 0; }
.mm-note { font-size: .8rem; color: #6B7D74; margin: .2rem 0 .5rem; }
.mm-card p { font-size: .9rem; margin: .4rem 0 .6rem; }

/* ── Tags ── */
.mm-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }
.mm-tag {
  font-size: .72rem; font-weight: 600;
  padding: .22rem .6rem; border-radius: 20px; letter-spacing: .2px;
}
.mm-tag.g { background: #EEF7F2; color: #2E6B45; border: 1px solid #D6EDDF; }
.mm-tag.p { background: #FDF0F5; color: #8B3D5A; border: 1px solid #F5D0DE; }
.mm-tag.gold { background: #FFF3DC; color: #7A5C1A; border: 1px solid #F0D9A0; }

/* ── Card right col ── */
.mm-card-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: .6rem; min-width: 110px;
}
.mm-card-price { font-size: .82rem; color: #6B7D74; text-align: right; }
.mm-card-price strong { color: #1A3D2B; font-size: .95rem; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .82rem;
  padding: .5rem 1.15rem; border-radius: 24px; transition: .2s; white-space: nowrap;
  text-decoration: none !important;
}
.btn.g { background: #2E6B45 !important; color: #fff !important; border: none !important; }
.btn.g:hover { background: #1A3D2B !important; box-shadow: 0 6px 24px rgba(26,61,43,.25) !important; }
.btn.p {
  background: linear-gradient(135deg, #C96B8A, #D4527A) !important;
  color: #fff !important; border: none !important;
}
.btn.p:hover { box-shadow: 0 8px 28px rgba(201,107,138,.35) !important; transform: translateY(-1px); }
.btn.outline {
  background: transparent !important;
  color: #2E6B45 !important;
  border: 1.5px solid #85C4A0 !important;
}
.btn.outline:hover { background: #EEF7F2 !important; border-color: #4A9668 !important; }

/* ── Table ── */
.mm-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 16px; box-shadow: 0 2px 8px rgba(26,61,43,.06); }
.mm-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.mm-table thead tr { background: #1A3D2B; }
.mm-table th { padding: .85rem 1.1rem; color: #fff; font-weight: 600; text-align: left; letter-spacing: .3px; }
.mm-table th:first-child { border-radius: 16px 0 0 0; }
.mm-table th:last-child { border-radius: 0 16px 0 0; }
.mm-table td { padding: .7rem 1.1rem; border-bottom: 1px solid #E2EDE7; }
.mm-table tr:last-child td { border-bottom: none; }
.mm-table tr:nth-child(even) td { background: #EEF7F2; }
.mm-table tr:hover td { background: #FEF8FA; }
.mm-table .y { color: #4A9668; font-weight: 700; }
.mm-table .n { color: #ccc; }
.mm-table .best td { background: #FFF3DC !important; }
.mm-table .best td:first-child { border-left: 3px solid #C9993C; }

/* ── FAQ ── */
.mm-faq { margin: 1.5rem 0; }
.mm-faq details {
  border: 1.5px solid #E2EDE7;
  border-radius: 10px; margin-bottom: .55rem; overflow: hidden;
}
.mm-faq details[open] { border-color: #E8A0B8; box-shadow: 0 2px 12px rgba(201,107,138,.10); }
.mm-faq summary {
  padding: 1rem 1.25rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .95rem; color: #1A3D2B;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.mm-faq summary::-webkit-details-marker { display: none; }
.mm-faq summary:hover { background: #EEF7F2; }
.mm-faq details[open] summary { background: #FEF8FA; color: #8B3D5A; }
.mm-faq summary::after { content: "＋"; font-size: 1.1rem; color: #C96B8A; flex-shrink: 0; margin-left: .5rem; }
.mm-faq details[open] summary::after { content: "－"; }
.mm-faq .faq-body {
  padding: .75rem 1.25rem 1.1rem;
  font-size: .93rem; color: #374840;
  border-top: 1px solid #E2EDE7;
}
.mm-faq .faq-body p { margin: 0; }
.mm-faq .faq-body p + p { margin-top: .5rem; }

/* ── Promo cards ── */
.mm-promos { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.mm-promo {
  background: #fff; border: 1.5px solid #E2EDE7;
  border-radius: 16px; padding: 1.4rem 1.25rem;
  text-align: center; transition: .25s;
  box-shadow: 0 2px 8px rgba(26,61,43,.06);
}
.mm-promo:hover { box-shadow: 0 6px 24px rgba(26,61,43,.12); transform: translateY(-3px); }
.mm-promo.featured {
  border-color: #E8A0B8;
  background: linear-gradient(160deg, #FEF8FA, #fff);
  box-shadow: 0 8px 28px rgba(201,107,138,.15);
}
.mm-promo-brand { font-weight: 700; font-size: 1rem; color: #1A3D2B; margin-bottom: .2rem; }
.mm-promo-desc { font-size: .83rem; color: #6B7D74; margin-bottom: .9rem; line-height: 1.5; }
.mm-code {
  display: inline-block;
  background: linear-gradient(135deg, #EEF7F2, #E0F0E8);
  border: 2px dashed #85C4A0;
  border-radius: 10px;
  padding: .5rem 1.3rem;
  font-family: 'Courier New', monospace;
  font-size: 1.15rem; font-weight: 900;
  color: #2E6B45; letter-spacing: 3px;
  margin-bottom: .6rem; cursor: pointer;
}
.mm-promo.featured .mm-code {
  background: linear-gradient(135deg, #FDF0F5, #FEF8FA);
  border-color: #E8A0B8; color: #8B3D5A;
}
.mm-promo-detail { font-size: .78rem; color: #6B7D74; margin-top: .5rem; line-height: 1.5; }

/* ── Recipe cards ── */
.mm-recipes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin: 1.5rem 0; }
.mm-recipe {
  background: #fff; border: 1.5px solid #E2EDE7;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,61,43,.06); transition: .25s;
}
.mm-recipe:hover { box-shadow: 0 6px 24px rgba(26,61,43,.12); transform: translateY(-3px); }
.mm-recipe-head {
  background: #1A3D2B !important;
  background: linear-gradient(140deg, #1A3D2B 0%, #2E6B45 60%, #4A9668 100%) !important;
  padding: 1.4rem 1.2rem; position: relative; overflow: hidden;
}
.mm-recipe-head::after {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(232,160,184,.25) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.mm-recipe-head h3 { color: #fff !important; margin: 0 0 .25rem; font-size: .97rem; position: relative; z-index: 1; }
.mm-recipe-meta { font-size: .76rem; color: rgba(255,255,255,.75); position: relative; z-index: 1; }
.mm-recipe-body { padding: 1.4rem 1.5rem; }
.mm-recipe-body h3 {
  font-size: .82rem; color: #6B7D74;
  text-transform: uppercase; letter-spacing: .5px;
  margin: .8rem 0 .35rem;
  font-family: 'DM Sans', sans-serif;
}
.mm-recipe-body ul { margin-left: 1.1rem; }
.mm-recipe-body ul li { font-size: .9rem; margin-bottom: .3rem; }
.mm-steps { list-style: none !important; margin-left: 0 !important; counter-reset: s; }
.mm-steps li {
  counter-increment: s; font-size: .87rem;
  margin-bottom: .5rem; padding-left: 2.1em; position: relative;
}
.mm-steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: .05em;
  width: 1.5em; height: 1.5em;
  background: linear-gradient(135deg, #C96B8A, #D4527A);
  color: #fff; border-radius: 50%;
  font-size: .76rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* ── Stats strip ── */
.mm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem; margin: 1.5rem 0;
}
.mm-stat {
  background: #fff; border: 1.5px solid #E2EDE7;
  border-radius: 16px; padding: 1.1rem .9rem;
  text-align: center; box-shadow: 0 2px 8px rgba(26,61,43,.06);
}
.mm-stat-val {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.8rem; color: #2E6B45; line-height: 1; margin-bottom: .2rem;
}
.mm-stat-val.pink { color: #C96B8A; }
.mm-stat-label { font-size: .78rem; color: #6B7D74; }

/* ── Features grid ── */
.mm-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: .85rem; margin: 1.5rem 0;
}
.mm-feat {
  background: #fff; border: 1.5px solid #E2EDE7;
  border-radius: 16px; padding: 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(26,61,43,.06); transition: .2s;
}
.mm-feat:hover { box-shadow: 0 6px 24px rgba(26,61,43,.10); border-color: #B8DCCA; }
.mm-feat-icon { font-size: 1.6rem; margin-bottom: .5rem; display: block; }
.mm-feat-title { font-weight: 700; font-size: .9rem; color: #1A3D2B; margin-bottom: .25rem; }
.mm-feat-desc { font-size: .8rem; color: #6B7D74; line-height: 1.45; }

/* ── Big Banner CTA ── */
.mm-banner {
  background: #8B3D5A !important;
  background: linear-gradient(135deg, #8B3D5A, #C96B8A) !important;
  border-radius: 24px;
  padding: 2.25rem 2rem;
  text-align: center; margin: 2.5rem 0;
  position: relative; overflow: hidden;
}
.mm-banner::before {
  content: ''; position: absolute; top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.mm-banner::after {
  content: ''; position: absolute; bottom: -60px; right: -30px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(133,196,160,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.mm-banner > * { position: relative; z-index: 1; }
.mm-banner h3 {
  color: #fff !important;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 400; margin-bottom: .5rem;
}
.mm-banner p { color: rgba(255,255,255,.85) !important; font-size: .93rem; margin-bottom: 1.25rem; }
.mm-banner .mm-code-big {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 2px dashed rgba(255,255,255,.5);
  border-radius: 10px;
  padding: .55rem 1.75rem;
  font-family: 'Courier New', monospace;
  font-size: 1.7rem; font-weight: 900;
  color: #FFE08A; letter-spacing: 4px;
  margin-bottom: 1.25rem;
}

/* ── Top pick block ── */
.mm-top-pick {
  background: linear-gradient(to right, #FEF8FA, #fff);
  border: 1.5px solid #E8A0B8;
  border-radius: 16px; padding: 1.6rem;
  box-shadow: 0 8px 28px rgba(201,107,138,.15);
  margin: 1.5rem 0;
}
.mm-top-pick-inner { display: flex; gap: 1.25rem; align-items: flex-start; flex-wrap: wrap; }
.mm-top-pick-body { flex: 1; min-width: 200px; }
.mm-top-pick-cta { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .mm h1 { font-size: 1.85rem; }
  .mm h2 { font-size: 1.4rem; }
  .mm-hero { min-height: 70vh; }
  .mm-hero-inner { padding: 3.5rem 1.5rem 2rem; }
  .mm-hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .mm-card { grid-template-columns: 44px 1fr; }
  .mm-card-right { grid-column: 2; flex-direction: row; min-width: auto; flex-wrap: wrap; justify-content: flex-start; }
  .mm-promos, .mm-recipes, .mm-features { grid-template-columns: 1fr; }
  .mm-stats { grid-template-columns: repeat(2, 1fr); }
  .mm-banner { padding: 1.75rem 1.25rem; }
  .mm-hero-meta { gap: .75rem; }
  .mm-top-pick-inner { flex-direction: column; }
}

/* ════════════════════════════════════════
   NAV — identique à la homepage
   ════════════════════════════════════════ */
/* id="mm-sitenav" pour ne pas affecter nav.mm-bc (breadcrumb) */
#mm-sitenav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 107, 69, 0.18);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2E6B45;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #C96B8A; }

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1A3D2B;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span { color: #4A9668; }

.nav-cta {
  display: flex;
  gap: 24px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}

.nav-cta a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2E6B45;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-cta a:hover { color: #C96B8A; }

.nav-cta .nav-btn {
  background: #1A3D2B;
  color: #FFFDF9 !important;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s;
}

.nav-cta .nav-btn:hover { background: #C96B8A; }

/* ── Dropdown nav ── */
.nav-has-dropdown { position: relative; align-self: stretch; display: flex; align-items: center; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 185px;
  background: #FFFDF9;
  border: 1px solid rgba(46, 107, 69, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(26, 61, 43, 0.14);
  padding: 4px 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s 0.1s, visibility 0.15s 0.1s, transform 0.15s 0.1s;
}

.nav-dropdown,
.nav-dropdown li { list-style: none !important; }

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Sélecteur très spécifique pour écraser text-transform: uppercase du nav */
#mm-sitenav .nav-cta .nav-has-dropdown .nav-dropdown li a {
  display: block;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 400;
  color: #1A3D2B !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.15s;
}

#mm-sitenav .nav-cta .nav-has-dropdown .nav-dropdown li a:hover {
  background: #E8F3E6;
  color: #2E6B45 !important;
}

.nav-dropdown li + li {
  border-top: 1px solid rgba(46, 107, 69, 0.08);
}

/* ════════════════════════════════════════
   FOOTER — identique à la homepage
   ════════════════════════════════════════ */
footer {
  background: #1A3D2B;
  color: rgba(255, 253, 249, 0.55);
  padding: 60px 64px 40px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.08);
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #FFFDF9;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}

.footer-logo span { color: #4A9668; }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.35);
  margin-bottom: 16px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.62);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: #FFFDF9; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.75rem;
  color: rgba(255, 253, 249, 0.3);
  font-weight: 300;
}

.footer-bottom a { color: rgba(255, 253, 249, 0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255, 253, 249, 0.65); }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ════════════════════════════════════════
   BIENFAITS SECTION (homepage)
   ════════════════════════════════════════ */
#bienfaits {
  background: #f4faf7;
  padding: 5rem 2rem;
}
.bienfaits-inner {
  max-width: 960px;
  margin: 0 auto;
}
.bienfaits-eyebrow {
  text-align: center;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: #2E6B45; margin-bottom: .5rem;
}
.bienfaits-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.25rem; color: #1A3D2B; text-align: center;
  margin-bottom: .75rem; line-height: 1.15;
}
.bienfaits-headline em { font-style: italic; color: #2E6B45; }
.bienfaits-lead {
  color: #6B7D74; font-size: 1rem; text-align: center;
  max-width: 580px; margin: 0 auto 2.75rem; line-height: 1.65;
}
.bienfait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.bienfait-card {
  background: #fff;
  border: 1.5px solid #E2EDE7;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(26,61,43,.06);
  transition: .25s;
}
.bienfait-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(26,61,43,.12); }
.bienfait-icon { font-size: 1.75rem; margin-bottom: .7rem; display: block; }
.bienfait-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 700; color: #1A3D2B; margin: 0 0 .5rem;
}
.bienfait-card p {
  font-size: .84rem; color: #6B7D74; line-height: 1.6; margin: 0;
}
.bienfaits-regions { margin-top: .5rem; }
.regions-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem; color: #1A3D2B; text-align: center; margin-bottom: 1.25rem;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.region-card {
  background: #fff;
  border: 1.5px solid #E2EDE7;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.region-card strong { color: #1A3D2B; font-size: .92rem; display: block; margin-bottom: .3rem; }
.region-card span { color: #6B7D74; font-size: .82rem; line-height: 1.55; }
@media (max-width: 900px) {
  .bienfait-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #bienfaits { padding: 3rem 1.25rem; }
  .bienfaits-headline { font-size: 1.75rem; }
  .bienfait-grid, .regions-grid { grid-template-columns: 1fr; }
}
/* ════════════════════════════════════════
   PAGE AVIS OHMATCHAA! — v2
   ════════════════════════════════════════ */
#review-ohmatchaa { padding: 0; max-width: none; margin: 0; }
.review-bc-wrap { max-width: 860px; margin: 0 auto; padding: .75rem 2rem; font-size: .8rem; color: #6B7D74; display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.review-bc-wrap a { color: #2E6B45; text-decoration: none; }
.review-bc-wrap a:hover { text-decoration: underline; }

/* ── Hero full-bleed ── */
.review-hero-wrap {
  background: linear-gradient(135deg, #1A3D2B 0%, #2E6B45 60%, #3D7A58 100%);
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  padding: 4rem 3rem 3.5rem;
  color: #fff;
}
.review-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
}
.review-hero-text .review-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .5rem;
}
.review-hero-text h1 {
  font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 700;
  color: #fff; margin: 0 0 .5rem; line-height: 1.15;
}
.review-hero-text h1 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.78); }
.review-subtitle { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0 0 1.25rem; }
.review-hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.rhb-coeur, .rhb-rank { padding: .35rem .9rem; border-radius: 20px; font-size: .82rem; font-weight: 700; }
.rhb-coeur { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.rhb-rank  { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.review-hero-desc { color: rgba(255,255,255,.78); font-size: .93rem; line-height: 1.7; margin: 0 0 1.5rem; max-width: 520px; }
.review-hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.review-hero-meta { font-size: .82rem; color: rgba(255,255,255,.6); font-style: italic; }

/* ── Hero card (droite) ── */
.review-hero-card {
  background: #fff;
  border: none;
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
  min-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.rhc-score { font-family: "Fraunces", serif; font-size: 4.5rem; font-weight: 700; color: #1A3D2B; line-height: 1; }
.rhc-score span { font-size: 1.5rem; font-weight: 400; color: #6B7D74; }
.rhc-label { font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #6B7D74; margin: .15rem 0 .75rem; }
.rhc-coeur { display: inline-block; background: #1A3D2B; border-radius: 20px; padding: .3rem .85rem; font-size: .76rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.rhc-bars { display: flex; flex-direction: column; gap: .5rem; text-align: left; margin-bottom: 1.25rem; }
.rhc-bar-row { display: grid; grid-template-columns: min-content 1fr 2.2rem; align-items: center; gap: .4rem; }
.rhc-bar-name { font-size: .72rem; color: #374840; font-weight: 600; }
.rhc-bar-track { background: #E2EDE7; border-radius: 99px; height: 6px; overflow: hidden; }
.rhc-bar-fill { height: 100%; background: linear-gradient(90deg, #1A3D2B, #4A9668); border-radius: 99px; }
.rhc-bar-val { font-size: .72rem; font-weight: 700; color: #2E6B45; text-align: right; }
.rhc-cta { display: block; text-align: center; background: #C96B8A; color: #fff !important; text-decoration: none !important; padding: .65rem 1rem; border-radius: 12px; font-size: .84rem; font-weight: 700; transition: opacity .18s; margin-top: .25rem; }
.rhc-cta:hover { opacity: .88; }

/* ── Contenu principal ── */
.review-content { max-width: 860px; margin: 0 auto; padding: 3rem 2rem 2rem; font-family: 'DM Sans', sans-serif; }
.review-content p, .review-content li, .review-content td, .review-content th { font-family: 'DM Sans', sans-serif; }

/* ── Verdict rapide ── */
.review-verdict-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 0 0 2.5rem; }
.verdict-col { padding: 1.5rem 1.25rem; border-radius: 16px; }
.verdict-pros { background: #f4faf7; border: 1.5px solid #c8e6d4; }
.verdict-cons { background: #fdf9f2; border: 1.5px solid #e8dfc5; }
.verdict-col h2 { font-size: .95rem; font-weight: 700; margin: 0 0 .9rem; color: #1A3D2B; }
.verdict-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.verdict-col li { font-size: .87rem; color: #374840; padding-left: 1.25rem; position: relative; line-height: 1.45; }
.verdict-pros li::before { content: '✓'; position: absolute; left: 0; color: #4A9668; font-weight: 700; }
.verdict-cons li::before { content: '→'; position: absolute; left: 0; color: #9a7a4a; }

/* ── Gamme 6 saveurs ── */
.review-gamme { margin: 0 0 2.5rem; }
.review-gamme h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 .3rem; }
.review-gamme-intro { font-size: .88rem; color: #6B7D74; margin: 0 0 1.25rem; }
.gamme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: .75rem; }
.gamme-card { background: #f4faf7; border: 1.5px solid #E2EDE7; border-radius: 14px; padding: 1rem .85rem; text-align: center; text-decoration: none; transition: border-color .15s, box-shadow .15s; display: flex; flex-direction: column; align-items: center; }
.gamme-card:hover { border-color: #4A9668; box-shadow: 0 4px 14px rgba(26,61,43,.1); }
.gamme-card.featured { background: #1A3D2B; border-color: #1A3D2B; }
.gamme-card-icon { font-size: 1.6rem; margin-bottom: .35rem; }
.gamme-card-name { font-weight: 700; font-size: .84rem; color: #1A3D2B; }
.gamme-card.featured .gamme-card-name { color: #fff; }
.gamme-card-desc { font-size: .76rem; color: #6B7D74; margin-top: .2rem; line-height: 1.35; }
.gamme-card.featured .gamme-card-desc { color: rgba(255,255,255,.65); }
.gamme-card-price { font-size: .8rem; font-weight: 700; color: #2E6B45; margin-top: .4rem; }
.gamme-card.featured .gamme-card-price { color: #8dcfac; }
.gamme-note { font-size: .78rem; color: #6B7D74; text-align: center; margin: 0; }

/* ── Scores ── */
.review-scores-section { margin: 0 0 2.5rem; }
.review-scores-section h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 1.5rem; }
.score-criteria { display: flex; flex-direction: column; gap: 0; }
.score-criterion { padding: 1.25rem 0; border-bottom: 1px solid #E2EDE7; }
.score-criterion:last-child { border-bottom: none; }
.score-criterion-head { display: flex; align-items: center; gap: 1rem; margin-bottom: .5rem; }
.score-criterion-name { font-weight: 700; color: #1A3D2B; flex: 1; font-size: .95rem; }
.score-criterion-val { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: #2E6B45; white-space: nowrap; }
.score-bar { background: #E2EDE7; border-radius: 99px; height: 7px; overflow: hidden; margin-bottom: .6rem; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, #1A3D2B, #4A9668); border-radius: 99px; }
.score-criterion p { font-size: .84rem; color: #6B7D74; margin: 0; line-height: 1.6; }
.score-total-row { display: flex; justify-content: space-between; align-items: center; background: #1A3D2B; color: #fff; border-radius: 14px; padding: 1rem 1.5rem; margin-top: 1.25rem; }
.score-total-label { font-weight: 600; font-size: .95rem; }
.score-total-val { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; }

/* ── CTA promo ── */
.review-promo-box { background: #1A3D2B; color: #fff; border-radius: 20px; padding: 2rem 1.75rem; text-align: center; margin: 0 0 2.5rem; }
.review-promo-label { font-size: .82rem; opacity: .75; margin: 0 0 .75rem; }
.review-promo-code { font-family: monospace; font-size: 1.8rem; font-weight: 700; background: rgba(255,255,255,.15); padding: .3rem 1rem; border-radius: 10px; letter-spacing: .08em; display: inline-block; margin-bottom: .75rem; }
.review-promo-desc { font-size: .82rem; opacity: .65; margin: 0 0 1.25rem; }

/* ── Avis détaillé ── */
.review-body-section { margin: 0 0 2.5rem; }
.review-body-section h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 1.25rem; }
.review-body-section h3 { font-size: 1.1rem; font-weight: 700; color: #1A3D2B; margin: 1.75rem 0 .5rem; }
.review-body-section p { color: #374840; line-height: 1.75; margin: 0 0 1rem; font-size: .95rem; }
.review-body-section a { color: #2E6B45; }

/* ── Comparatif ── */
.review-compare-section { margin: 0 0 2.5rem; }
.review-compare-section h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 .5rem; }
.review-compare-intro { font-size: .88rem; color: #6B7D74; margin-bottom: 1rem; }
.review-compare-intro a { color: #2E6B45; }
.compare-table-wrapper { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.compare-table th { background: #1A3D2B; color: #fff; padding: .75rem 1rem; text-align: left; font-size: .82rem; font-weight: 700; }
.compare-table td { padding: .75rem 1rem; border-bottom: 1px solid #E2EDE7; color: #374840; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-winner td { background: #f4faf7; font-weight: 500; }
.compare-tag { display: inline-block; background: #C96B8A; color: #fff; font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 6px; margin-left: .3rem; }

/* ── Verdict final ── */
.review-verdict-final { margin: 0 0 2.5rem; }
.review-verdict-final h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 1rem; }
.verdict-final-box { background: #f4faf7; border: 2px solid #2E6B45; border-radius: 18px; padding: 1.75rem 1.5rem; margin-bottom: 1.5rem; }
.verdict-final-box p { color: #374840; line-height: 1.75; margin: 0 0 1rem; font-size: .95rem; }
.verdict-final-box p:last-child { margin: 0; }
.verdict-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline-green { display: inline-flex; border: 2px solid #2E6B45; color: #2E6B45; padding: .8rem 1.5rem; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: .9rem; transition: .2s; }
.btn-outline-green:hover { background: #f4faf7; }

/* ── FAQ ── */
.review-faq-section { margin: 0 0 2.5rem; }
.review-faq-section h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 1.25rem; }
.review-faq-item { padding: 1.1rem 0; border-bottom: 1px solid #E2EDE7; }
.review-faq-item:last-child { border-bottom: none; }
.review-faq-item h3 { font-size: 1rem; font-weight: 700; color: #1A3D2B; margin: 0 0 .5rem; }
.review-faq-item p { font-size: .88rem; color: #374840; line-height: 1.7; margin: 0; }
.review-faq-item a { color: #2E6B45; }

/* ── À lire aussi ── */
.review-related-section { margin: 0 0 2.5rem; }
.review-related-section h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; color: #1A3D2B; margin: 0 0 1.25rem; }
.review-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.related-link-card { display: flex; align-items: flex-start; gap: .85rem; padding: 1rem 1.1rem; background: #f4faf7; border: 1px solid #c8e6d4; border-radius: 14px; text-decoration: none; transition: border-color .15s, box-shadow .15s; }
.related-link-card:hover { border-color: #4A9668; box-shadow: 0 2px 8px rgba(26,61,43,.08); }
.related-link-icon { font-size: 1.35rem; flex-shrink: 0; }
.related-link-card div { display: flex; flex-direction: column; gap: .2rem; }
.related-link-card strong { font-size: .88rem; color: #1A3D2B; }
.related-link-card span { font-size: .78rem; color: #6B7D74; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-hero-card { max-width: 320px; margin: 1.5rem auto 0; }
  .gamme-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .review-hero-wrap { padding: 2.5rem 1.5rem 2.5rem; }
  .review-hero-text h1 { font-size: 1.9rem; }
  .review-content { padding: 2rem 1.25rem; }
  .review-verdict-block, .review-related-grid { grid-template-columns: 1fr; }
  .gamme-grid { grid-template-columns: 1fr 1fr; }
  .verdict-cta-row { flex-direction: column; }
  .rhc-score { font-size: 3rem; }
}
/* ── À lire aussi — maillage ── */
.mm-maillage {
  background: #f4faf7;
  border: 1px solid #c8e6d4;
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.25rem;
  margin: 2.5rem 0 1.5rem;
}
.mm-maillage-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #2E6B45;
  margin: 0 0 .9rem;
}
.mm-maillage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
@media (max-width: 520px) {
  .mm-maillage-grid { grid-template-columns: 1fr; }
}
.mm-maillage-card {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .9rem;
  background: #fff;
  border: 1px solid #E2EDE7;
  border-radius: 10px;
  text-decoration: none !important;
  color: #1A3D2B;
  font-size: .86rem;
  font-weight: 500;
  transition: border-color .15s, box-shadow .15s;
  line-height: 1.3;
}
.mm-maillage-card:hover {
  border-color: #4A9668;
  box-shadow: 0 2px 8px rgba(26,61,43,.08);
  color: #2E6B45;
}
.mm-maillage-icon { font-size: 1rem; flex-shrink: 0; }
/* ── Fix btn-rose haute spécificité (page avis) ── */
.review-cta-btn-rose {
  display: inline-flex !important;
  align-items: center;
  gap: .4rem;
  background: #C96B8A !important;
  color: #fff !important;
  padding: .85rem 1.9rem;
  border-radius: 14px;
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: 700;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
  transition: opacity .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(201,107,138,.35);
}
.review-cta-btn-rose:hover {
  opacity: .9;
  box-shadow: 0 6px 20px rgba(201,107,138,.45);
  color: #fff !important;
}

/* ── Breadcrumb dans le hero ── */
.review-bc-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  list-style: none;
}
.review-bc-hero a { color: rgba(255,255,255,.65); text-decoration: none; }
.review-bc-hero a:hover { color: rgba(255,255,255,.9); text-decoration: underline; }
.review-bc-hero span { color: rgba(255,255,255,.4); }

/* ── CTAs inline entre sections ── */
.review-inline-cta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin: 0 0 2.5rem;
  padding: 1.5rem;
  background: #fdf8fc;
  border: 1.5px solid #e8c4d4;
  border-radius: 16px;
}
.review-inline-cta--compact {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  margin: -1rem 0 2rem;
}
.review-inline-meta {
  font-size: .82rem; color: #6B7D74; font-style: italic;
}
.mm-subnav a:visited{color:#2E6B45\!important;background:#EEF7F2;border-color:#D6EDDF}.mm-subnav a:active{background:#2E6B45\!important;color:#fff\!important;border-color:#2E6B45\!important}.mm-subnav a.active,.mm-subnav a.active:visited,.mm-subnav a.active:hover,.mm-subnav a.active:active{background:#1A3D2B\!important;color:#fff\!important;border-color:#1A3D2B\!important}

/* Subnav pills — pink + DM Sans */
.mm-subnav-label{font-family:DM Sans,system-ui,sans-serif}
.mm-subnav a{font-family:DM Sans,system-ui,sans-serif;color:#C96B8A\!important;background:#FEF8FA;border-color:#F5D0DE}
.mm-subnav a:hover{background:#C96B8A\!important;color:#fff\!important;border-color:#C96B8A\!important}
.mm-subnav a:visited{color:#C96B8A\!important;background:#FEF8FA\!important;border-color:#F5D0DE\!important}
.mm-subnav a:active{background:#C96B8A\!important;color:#fff\!important;border-color:#C96B8A\!important}
.mm-subnav a.active,.mm-subnav a.active:visited,.mm-subnav a.active:hover,.mm-subnav a.active:active{background:#8B3D5A\!important;color:#fff\!important;border-color:#8B3D5A\!important}

/* ── Hero compact (pages codes promo) ── */
.mm-hero-compact { min-height: 0 !important; }
.mm-hero-compact .mm-hero-inner { padding: 2.25rem 3rem 2rem !important; justify-content: flex-start !important; }
.mm-hero-compact .mm-hero-inner > p { display: none; }
.mm-hero-promo { display:inline-flex;align-items:center;gap:.75rem;background:rgba(255,255,255,.13);border:1.5px solid rgba(255,255,255,.2);border-radius:12px;padding:.65rem 1.1rem;margin-top:1rem;flex-wrap:wrap; }
.mm-hero-promo-code { font-size:1.2rem;font-weight:800;color:#fff;letter-spacing:.07em;font-family:'DM Mono','Courier New',monospace; }
.mm-hero-promo-badge { background:rgba(201,107,138,.55);border:1px solid rgba(201,107,138,.7);color:#fff;padding:.22rem .7rem;border-radius:6px;font-weight:700;font-size:.95rem; }
@media(max-width:768px){ .mm-hero-compact .mm-hero-inner { padding:2rem 1.5rem 1.5rem !important; } }

/* ═══ Hamburger menu mobile ═══ */
.nav-burger{display:none;background:none;border:none;font-size:1.5rem;color:#1A3D2B;cursor:pointer;padding:4px 8px;line-height:1;}
@media(max-width:768px){
  #mm-sitenav{flex-wrap:wrap;padding:10px 16px;}
  .nav-burger{display:block;order:0;}
  .nav-logo{order:1;flex:1;text-align:center;}
  .nav-links,.nav-cta{display:none;width:100%;order:3;}
  #mm-sitenav.open .nav-links,#mm-sitenav.open .nav-cta{display:flex;flex-direction:column;gap:4px;padding:12px 0 4px;border-top:1px solid #E2EDE7;margin-top:8px;}
  #mm-sitenav.open .nav-links a,#mm-sitenav.open .nav-cta a{padding:8px 0;font-size:.9rem;}
  #mm-sitenav.open .nav-cta .nav-has-dropdown .nav-dropdown{position:static;opacity:1;pointer-events:auto;box-shadow:none;border:none;background:transparent;padding:0 0 0 16px;}
  #mm-sitenav.open .nav-btn{display:inline-block;margin:8px 0;text-align:center;}
}

/* ═══════════════════════════════════════════
   RESPONSIVE MOBILE FIX — mm-theme
   ═══════════════════════════════════════════ */

/* ── 768px : tablette ── */
@media (max-width: 768px) {
  .mm { padding: 0 16px 40px; }
  .mm h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }

  /* Cards ranking */
  .mm-card { grid-template-columns: 36px 1fr; gap: .6rem; padding: 1rem; }
  .mm-card-right { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: .5rem; min-width: auto; align-items: center; }
  .mm-card-right .btn { font-size: .8rem; padding: .45rem .9rem; }

  /* Tables : scroll horizontal */
  .mm-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -16px; padding: 0 16px; }
  .mm-table { min-width: 520px; font-size: .82rem; }
  .mm-table th, .mm-table td { padding: .5rem .6rem; }

  /* Features grid → 2 col */
  .mm-features, .mm-feats { grid-template-columns: repeat(2, 1fr) !important; }

  /* Recipes → 1 col */
  .mm-recipes { grid-template-columns: 1fr; }

  /* Stats → 2 col */
  .mm-stats { grid-template-columns: repeat(2, 1fr); }
  .mm-hero-meta { flex-wrap: wrap; }
  .mm-hero-stat { min-width: 45%; flex: 1; }

  /* Top pick */
  .mm-top-pick-inner { flex-direction: column; }

  /* Hero code box (pages code promo) */
  .mm-hero-code-box { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Banner */
  .mm-banner { padding: 1.5rem 1.25rem; }

  /* Maillage → 1 col */
  .mm-maillage-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 24px; }

  /* Recipe index */
  .mm-recipe-index { grid-template-columns: 1fr 1fr !important; }
}

/* ── 480px : mobile petit ── */
@media (max-width: 480px) {
  body { padding-top: 56px; }
  .mm { padding: 0 12px 32px; }
  .mm h1 { font-size: 1.65rem; }
  .mm h2 { font-size: 1.25rem; margin: 1.75rem 0 .75rem; }
  .mm p, .mm ul li, .mm ol li { font-size: .9rem; }

  /* Hero */
  .mm-hero { min-height: auto; }
  .mm-hero-inner { padding: 2rem 1.25rem 1.5rem !important; }
  .mm-hero h1 { font-size: 1.75rem; }
  .mm-pill-row { gap: .35rem; }
  .mm-pill { font-size: .7rem; padding: .3rem .6rem; }

  /* Hero stats */
  .mm-hero-meta { gap: 0; }
  .mm-hero-stat { padding: .6rem .4rem; }
  .mm-hero-stat strong { font-size: 1rem; }
  .mm-hero-stat span { font-size: .65rem; }

  /* Cards ranking → full width */
  .mm-card { grid-template-columns: 32px 1fr; gap: .5rem; padding: .85rem; }
  .mm-rank { width: 32px; height: 32px; font-size: .9rem; }
  .mm-card-title { font-size: .95rem; }
  .mm-card-right { gap: .4rem; }
  .mm-card-price { font-size: .85rem; }
  .mm-tags { gap: .25rem; }
  .mm-tag { font-size: .65rem; padding: .2rem .45rem; }
  .mm-stars { font-size: .8rem; }

  /* Features grid → 1 col */
  .mm-features, .mm-feats { grid-template-columns: 1fr !important; }

  /* Stats → 2 col compact */
  .mm-stats { grid-template-columns: repeat(2, 1fr); gap: .5rem; padding: .75rem; }
  .mm-stat-num { font-size: 1.4rem; }
  .mm-stat-label { font-size: .68rem; }

  /* Box */
  .mm-box { padding: 1rem; border-radius: 12px; }
  .mm-box-icon { font-size: 1.1rem; }

  /* Banner */
  .mm-banner { padding: 1.25rem 1rem; border-radius: 12px; }
  .mm-code-big { font-size: 1.5rem; padding: .6rem 1.5rem; }

  /* CTA button */
  .mm-cta-btn { font-size: .85rem; padding: .7rem 1.4rem; width: 100%; text-align: center; }
  .mm-cta-row { flex-direction: column; }
  .mm-cta-row .mm-cta-btn { width: 100%; }
  .btn.p, .btn.outline { font-size: .78rem; padding: .4rem .7rem; }

  /* FAQ */
  .mm-faq summary { font-size: .9rem; padding: .85rem .75rem; }

  /* Recipe */
  .mm-recipe { border-radius: 12px; }
  .mm-recipe-head { padding: 1rem; flex-direction: column; gap: .5rem; }
  .mm-recipe-body { padding: 1rem; }
  .mm-recipe-index { grid-template-columns: 1fr !important; }

  /* Table */
  .mm-table { min-width: 400px; font-size: .78rem; }

  /* Promos */
  .mm-promos { grid-template-columns: 1fr; }

  /* Top pick */
  .mm-top-pick { padding: 1rem; border-radius: 12px; }
  .mm-note { font-size: .8rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr !important; gap: 20px; }

  /* Subnav (pages code promo) */
  .mm-subnav { padding: .5rem .75rem; gap: .3rem; }
  .mm-subnav a { font-size: .7rem; padding: .22rem .55rem; }

  /* Hero code box */
  .mm-hero-code-box { padding: .7rem 1rem; }
  .mm-hero-code-val { font-size: 1.2rem; }
  .mm-hero-code-cta { width: 100%; text-align: center; font-size: .8rem; padding: .5rem 1rem; }

  /* Score box (opinion pages) */
  .mm-score-box { flex-direction: column; text-align: center; padding: 1rem; }
  .mm-score-big { font-size: 2.2rem; }
  .mm-pros-cons { grid-template-columns: 1fr; }

  /* Maillage */
  .mm-maillage-card { padding: .7rem .85rem; font-size: .82rem; }
}

/* ════════════════════════════════════════
   BURGER MENU MOBILE — FIX OPEN STATE
   ════════════════════════════════════════ */
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1A3D2B;
  padding: 4px 8px;
  line-height: 1;
  z-index: 200;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-burger { display: block; }
  body { padding-top: 56px; }
  #mm-sitenav { height: 56px; padding: 0 16px; flex-wrap: wrap; overflow: hidden; transition: height 0.3s ease; }

  /* Quand open : expand la nav */
  #mm-sitenav.open {
    height: auto;
    padding-bottom: 16px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(26,61,43,0.12);
  }
  #mm-sitenav.open .nav-links,
  #mm-sitenav.open .nav-cta {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
    flex: unset;
    justify-content: flex-start;
    border-top: 1px solid rgba(46,107,69,0.1);
    padding-top: 8px;
  }
  #mm-sitenav.open .nav-links li,
  #mm-sitenav.open .nav-cta li {
    border-bottom: 1px solid rgba(46,107,69,0.07);
  }
  #mm-sitenav.open .nav-links a,
  #mm-sitenav.open .nav-cta a {
    display: block;
    padding: 12px 4px;
    font-size: 0.9rem;
  }
  #mm-sitenav.open .nav-cta .nav-btn {
    margin: 12px 0 4px;
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 100px;
  }
  /* Dropdown codes promo → liste plate */
  #mm-sitenav.open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 12px;
  }
  #mm-sitenav.open .nav-dropdown li a {
    font-size: 0.82rem !important;
    color: #4A7C5D !important;
    padding: 8px 4px !important;
  }
  /* Logo reste centré en haut */
  #mm-sitenav .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
}
