    :root{
      --ink:#141414;
      --muted:rgba(0,0,0,.62);
      --line:rgba(0,0,0,.10);
      --line2:rgba(0,0,0,.14);

      --paper:#FCFCFA;
      --card:#ffffff;
      --hero:#EEF6FB;

      --shadow: 0 18px 60px rgba(0,0,0,.08);
      --shadow2: 0 10px 28px rgba(0,0,0,.07);

      --r:22px;
      --r2:16px;
      --max:1120px;

      --chip: rgba(0,0,0,.04);
      --chipbd: rgba(0,0,0,.10);

      --accent:#1F7FA3; /* Nutrition / lien */
      --good:#2f8f5a;
      --warn:#f2b705;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
      background:var(--paper);
      line-height:1.35;
    }
    img{max-width:100%;height:auto;display:block}
    a{color:inherit;text-decoration:none}
    button{font-family:inherit}
    :focus-visible{outline:3px solid rgba(31,127,163,.35); outline-offset:2px; border-radius:12px}

    /* Layout */
    .wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
    .grid{display:grid; gap:14px}
    .row{display:flex; gap:12px; align-items:center}
    .sp{flex:1}

    /* Header */
    header.site{
      position:sticky; top:0; z-index:30;
      background:rgba(252,252,250,.78);
      backdrop-filter:saturate(1.2) blur(10px);
      border-bottom:1px solid var(--line);
    }
    .topbar{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:14px 0;
    }
    .brand{display:flex; align-items:center; gap:10px}
    .brand img{height:56px; width:auto}
    nav.main{display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end}
    .navlink{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:13px;
      color:rgba(0,0,0,.76);
      background:transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .navlink:hover{transform:translateY(-1px); background:rgba(0,0,0,.03); border-color:var(--line2)}
    .navlink.active{background:rgba(0,0,0,.04); border-color:rgba(0,0,0,.18); color:rgba(0,0,0,.88)}

    /* Hero */
    .hero{
      background:linear-gradient(180deg,var(--hero),rgba(238,246,251,.55) 55%,rgba(252,252,250,1) 100%);
      padding:14px 0 6px;
    }
    .heroCard{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--r);
      box-shadow:var(--shadow);
      padding:16px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:stretch;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      font-size:12px; letter-spacing:.08em; text-transform:uppercase;
      color:rgba(0,0,0,.58);
    }
    .kicker i{
      width:10px;height:10px;border-radius:999px;
      background:rgba(0,0,0,.20);
      box-shadow:0 0 0 6px rgba(0,0,0,.05);
      display:inline-block;
    }
    h1{
      font-family:"Playfair Display", serif;
      font-weight:600;
      letter-spacing:-.02em;
      font-size:40px;
      line-height:1.05;
      margin:8px 0 8px;
    }
    .lead{margin:0; color:rgba(0,0,0,.80); font-size:15px}
    .mini{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid var(--chipbd);
      background:var(--chip);
      color:rgba(0,0,0,.74);
      white-space:nowrap;
    }
    .pill strong{font-weight:600;color:rgba(0,0,0,.86)}
    .heroVisual{
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(0,0,0,.02);
      box-shadow:var(--shadow2);
      overflow:hidden;
      display:grid;
      grid-template-rows:auto 1fr;
      min-height:210px;
    }
    .heroVisual .cap{
      padding:10px 12px;
      border-bottom:1px solid rgba(0,0,0,.06);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .heroVisual .cap b{font-size:13px}
    .heroVisual .cap span{font-size:12px;color:var(--muted)}
    .heroVisual .img{
      display:flex; align-items:center; justify-content:center;
      padding:10px;
    }
    .heroVisual .img img{border-radius:14px;}

    /* Sections */
    main{padding:10px 0 26px}
    .section{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--r);
      box-shadow:0 12px 35px rgba(0,0,0,.05);
      overflow:hidden;
    }
    .sectionHead{
      padding:14px 16px 10px;
      border-bottom:1px solid rgba(0,0,0,.06);
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .sectionHead h2{
      margin:0;
      font-family:"Playfair Display", serif;
      font-size:20px;
      letter-spacing:-.01em;
    }
    .hint{font-size:12px;color:rgba(0,0,0,.58)}
    .sectionBody{padding:14px 16px 16px}

    /* Compact “catalog” layout */
    .catalog-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .catalog-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }

    /* Compare cards */
    .compareCard{
      border:1px solid var(--line);
      background:rgba(0,0,0,.02);
      border-radius:18px;
      padding:12px;
      display:grid;
      gap:10px;
      overflow:hidden;
    }
    .compareTop{
      display:flex; align-items:center; gap:10px; min-width:0;
    }
    .thumb{
      width:64px;height:64px;border-radius:16px;
      border:1px solid var(--line);
      background:#fff;
      overflow:hidden;
      flex:0 0 64px;
      display:flex; align-items:center; justify-content:center;
    }
    .thumb img{width:100%;height:100%;object-fit:cover}
    .tmeta{min-width:0}
    .tmeta .name{margin:0; font-weight:700; letter-spacing:-.01em}
    .tmeta .sub{margin:2px 0 0; font-size:12px; color:var(--muted)}
    .miniBadges{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px}
    .chip{
      font-size:12px;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid var(--chipbd);
      background:rgba(255,255,255,.65);
      color:rgba(0,0,0,.72);
      white-space:nowrap;
    }
    .lineNote{
      font-size:13px;
      color:rgba(0,0,0,.78);
      background:rgba(255,255,255,.65);
      border:1px solid rgba(0,0,0,.08);
      border-radius:14px;
      padding:10px 10px;
    }

    /* Gauge rows (fast / duration / water) */
    .gauges{display:grid; gap:10px}
    .g{
      display:grid;
      grid-template-columns: 110px 1fr 44px;
      gap:10px;
      align-items:center;
    }
    .g label{
      font-size:12px;
      color:rgba(0,0,0,.70);
      display:flex; gap:8px; align-items:center;
      white-space:nowrap;
    }
    .bar{
      height:10px;
      border-radius:999px;
      border:1px solid rgba(0,0,0,.10);
      background:rgba(0,0,0,.04);
      overflow:hidden;
      position:relative;
    }
    .bar > i{
      position:absolute; inset:0 auto 0 0;
      width:0%;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(31,127,163,.25), rgba(31,127,163,.75));
    }
    .g .val{
      font-size:12px;
      color:rgba(0,0,0,.66);
      text-align:right;
    }

    /* Products + Recipes cards */
    .cardGrid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:12px;
    }
    .itemCard{
      border:1px solid var(--line);
      background:rgba(0,0,0,.02);
      border-radius:18px;
      overflow:hidden;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
      display:grid;
      grid-template-rows:auto 1fr;
      min-height:160px;
    }
    .itemCard:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.07); background:rgba(0,0,0,.025)}
    .itemMedia{
      aspect-ratio: 4 / 3;
      background:#fff;
      border-bottom:1px solid rgba(0,0,0,.06);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .itemMedia img{width:100%;height:100%;object-fit:cover}
    .itemBody{
      padding:12px;
      display:grid;
      gap:8px;
      align-content:start;
    }
    .itemTitle{
      margin:0;
      font-size:14px;
      font-weight:700;
      letter-spacing:-.01em;
      line-height:1.2;
    }
    .itemMeta{
      display:flex; flex-wrap:wrap; gap:6px;
      font-size:12px; color:rgba(0,0,0,.66);
    }
    .scoreRow{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
      margin-top:2px;
    }
    .scoreMini{
      display:grid;
      grid-template-columns: 1fr;
      gap:8px;
    }
    .scoreMini .g{grid-template-columns: 92px 1fr 40px; gap:8px}
    .scoreMini .bar{height:9px}
    .ctaRow{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-top:4px;
    }
    .btn{
      appearance:none;
      border:1px solid rgba(0,0,0,.14);
      background:rgba(0,0,0,.02);
      border-radius:999px;
      padding:8px 10px;
      font-size:12px;
      font-weight:700;
      color:rgba(0,0,0,.82);
      cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px); background:rgba(0,0,0,.04); border-color:rgba(0,0,0,.20)}
    .btn.primary{
      background:rgba(31,127,163,.10);
      border-color:rgba(31,127,163,.24);
      color:rgba(0,0,0,.84);
    }
    .btn.primary:hover{background:rgba(31,127,163,.14)}

    /* Recipes: horizontal scroll like a catalog strip */
    .strip{
      display:flex;
      gap:12px;
      overflow-x:auto;
      padding-bottom:6px;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
    }
    .strip::-webkit-scrollbar{height:6px}
    .strip::-webkit-scrollbar-thumb{background:rgba(0,0,0,.15); border-radius:6px}
    .strip .itemCard{
      flex:0 0 clamp(220px, 78vw, 280px);
      width:clamp(220px, 78vw, 280px);
      scroll-snap-align:start;
    }

    /* Footer */
    footer.site{
      border-top:1px solid var(--line);
      background:rgba(252,252,250,.78);
      backdrop-filter:saturate(1.2) blur(10px);
    }
    .foot{
      display:flex; gap:14px; justify-content:space-between; padding:18px 0; flex-wrap:wrap;
    }
    .foot p{margin:0; font-size:13px; color:rgba(0,0,0,.70)}
    .footLinks{display:flex; gap:12px; flex-wrap:wrap}
    .footLinks a{
      font-size:13px; color:rgba(0,0,0,.72);
      border-bottom:1px solid rgba(0,0,0,.10);
      padding-bottom:2px;
    }

.card-image {
  height: 170px;          /* hauteur voulue du bloc image */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* ou cover selon le rendu souhaité */
}

.nn-conseil{
  margin:48px auto 32px;
  padding:28px 32px;
  max-width:980px;
  background:#F3F7F2;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
}

.nn-conseil-badge{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#5E8F1D;
  font-weight:600;
  margin-bottom:10px;
}

.nn-conseil h3{
  margin:0 0 14px;
  font-size:1.35rem;
}

.nn-conseil p{
  margin:0 0 12px;
  color:#333;
  line-height:1.55;
}

.nn-conseil-highlight{
  margin-top:14px;
  font-weight:600;
}

.nn-share{
  margin:32px auto 40px;
  max-width:980px;
  padding:22px 28px;
  border-radius:16px;
  background:#FAFAF8;
  border:1px solid rgba(0,0,0,.06);
}

.nn-share h4{
  margin:0 0 6px;
  font-size:1.1rem;
}

.nn-share p{
  margin:0 0 14px;
  color:#555;
  font-size:.95rem;
}

.nn-share-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.nn-share-btn,
.nn-share-copy{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-size:.85rem;
  cursor:pointer;
  text-decoration:none;
  color:#111;
}

.nn-share-btn:hover,
.nn-share-copy:hover{
  background:#F0F3EF;
}

/* ===============================
   PARTAGE — ALIGNEMENT CATALOGUE
=============================== */

.section-share .sectionBody {
  max-width: 100%;
}

.share-intro{
  margin-bottom: 16px;
  color: var(--muted);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease, transform .15s ease;
}

.share-btn:hover {
  background: #F6F8F7;
  transform: translateY(-1px);
}

/* ===============================
   CONSEIL NUTRITION.NELLES
=============================== */

.section-conseil {
  margin-bottom: 10px;
}

.conseil-card {
  background: #F3F7F2; /* vert Nutrition doux */
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(0,0,0,.06);
}

.conseil-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.conseil-card p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.conseil-highlight {
  margin-top: 16px;
  font-weight: 500;
}

    /* Responsive */
    @media (max-width: 980px){
      .heroCard{grid-template-columns:1fr; padding:14px}
      h1{font-size:36px}
      .catalog-3{grid-template-columns:1fr}
      .cardGrid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width: 680px){
      .catalog-2{grid-template-columns:1fr}
      .cardGrid{grid-template-columns:1fr}
      .brand img{height:52px}
    }
    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .navlink,.itemCard,.btn{transition:none !important}
      .navlink:hover,.itemCard:hover,.btn:hover{transform:none !important}
    }