/* ==========================================================
   Meilleur-Omega-3.fr — feuille de style
   Inspiration visuelle : Upway (violet indigo / pêche / orange)
   ========================================================== */

:root {
  --violet: #4733FF;
  --violet-dark: #2E1FCB;
  --peche: #FFDDCF;
  --peche-light: #FFF3EE;
  --orange: #FF8A57;
  --encre: #1C1535;
  --gris: #6B6685;
  --gris-clair: #E8E6F2;
  --blanc: #FFFFFF;
  --vert: #25A799;
  --radius: 16px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--encre);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; }
h2 { font-size: clamp(25px, 3.4vw, 34px); margin: 56px 0 18px; }
h3 { font-size: clamp(20px, 2.4vw, 24px); margin: 34px 0 12px; font-weight: 700; }
h4 { font-size: 18px; margin: 22px 0 8px; font-weight: 700; }
p { margin-bottom: 20px; }
strong { font-weight: 700; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-clair);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 22px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: var(--encre); letter-spacing: -0.02em; }
.logo:hover { text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; padding: 3px;
  object-fit: contain; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: 0;
}
.footer .logo-icon { box-shadow: 0 0 0 1px rgba(255,255,255,0.18); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--encre); font-size: 15px; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--violet); text-decoration: none; }
.nav a.active { font-weight: 700; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--encre); margin: 4px 0; border-radius: 2px; }

/* ===================== BOUTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-align: center;
  background: var(--violet); color: #fff; border: 2px solid var(--violet);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--violet-dark); border-color: var(--violet-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--violet); }
.btn-outline:hover { background: var(--violet); color: #fff; }
.btn-orange { background: var(--orange); border-color: var(--orange); color: var(--encre); }
.btn-orange:hover { background: #F2723C; border-color: #F2723C; color: var(--encre); }
.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ===================== HERO ===================== */
.hero { background: var(--peche); padding: 60px 0 70px; }
.hero-inner { max-width: 900px; margin: 0 auto; padding: 0 22px; }
.breadcrumb { font-size: 13px; color: var(--gris); margin-bottom: 26px; }
.breadcrumb a { color: var(--gris); }
.hero .lead { font-size: clamp(18px, 2.2vw, 21px); line-height: 1.6; color: #33294F; }
.eyebrow {
  display: inline-block; background: var(--violet); color: #fff;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}

/* Bloc auteur */
.byline {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-size: 14px; color: var(--gris);
  border-top: 1px solid rgba(28,21,53,0.12); padding-top: 18px; margin-top: 26px;
}
.byline strong { color: var(--encre); }
.author-box {
  background: rgba(255,255,255,0.6); border-radius: var(--radius);
  padding: 18px 20px; margin-top: 18px; font-size: 14.5px; line-height: 1.6; color: #33294F;
}
.author-box h4 { margin: 0 0 6px; font-size: 15px; }

/* ===================== CONTENU ARTICLE ===================== */
.article { padding: 50px 0 40px; }
.article p { color: #2B2447; }
.article ul li::marker, .article ol li::marker { color: var(--violet); }

/* Sommaire */
.toc {
  background: var(--peche-light); border: 1px solid var(--peche);
  border-radius: var(--radius); padding: 24px 26px; margin: 0 0 44px;
}
.toc h2 { margin: 0 0 14px; font-size: 17px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gris); font-weight: 800; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--encre); font-weight: 500; }
.toc a:hover { color: var(--violet); }

/* Encadrés */
.callout {
  border-left: 4px solid var(--violet); background: #F5F3FF;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 30px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout-orange { border-left-color: var(--orange); background: var(--peche-light); }
.callout-vert { border-left-color: var(--vert); background: #EEFAF8; }

.alire {
  background: var(--encre); color: #fff; border-radius: var(--radius);
  padding: 16px 22px; margin: 30px 0; font-size: 15px; font-weight: 600;
}
.alire a { color: var(--peche); text-decoration: underline; }

/* Figures / images */
figure { margin: 32px 0; }
figure img { border-radius: var(--radius); width: 100%; }
figcaption { font-size: 13.5px; color: var(--gris); margin-top: 10px; text-align: center; }
.img-ph {
  width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--peche) 0%, #E4DEFF 100%);
  display: flex; align-items: center; justify-content: center;
  color: #6B6685; font-size: 14px; font-weight: 600; text-align: center; padding: 20px;
}

/* ===================== CARTES PRODUITS ===================== */
.product {
  border: 1px solid var(--gris-clair); border-radius: var(--radius-lg);
  padding: 14px 16px; margin: 18px 0; background: #fff;
  box-shadow: 0 2px 14px rgba(28,21,53,0.05);
}
.product.is-top { border: 2px solid var(--violet); box-shadow: 0 8px 30px rgba(71,51,255,0.13); }
.product-head { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-bottom: 12px; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  padding: 4px 10px; border-radius: 999px; background: var(--peche); color: var(--encre);
}
.badge-top { background: var(--violet); color: #fff; }
.badge-orange { background: var(--orange); color: var(--encre); }
.product-grid { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: start; }
.product-visual { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--gris-clair); }
.product-visual .img-ph { aspect-ratio: 1 / 1; }
.product-visual img { aspect-ratio: 1 / 1; object-fit: contain; width: 100%; }
.card > img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.product h3 { margin: 0 0 4px; font-size: 19px; }
.rating { font-size: 13px; color: var(--gris); margin-bottom: 8px; }
.stars { color: var(--orange); letter-spacing: 1px; }
.price { font-size: 19px; font-weight: 800; margin: 10px 0 4px; }
.price small { font-size: 13px; font-weight: 500; color: var(--gris); }
.specs {
  list-style: none; padding: 0; margin: 8px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px 18px;
}
/* Puce en position absolue : le texte reste un seul bloc, sinon le contenu
   en gras et la suite de la phrase deviennent deux elements flex distincts,
   separes par le gap et coupes independamment. */
.specs li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.4; margin-bottom: 0; }
.specs li::before { content: "✓"; color: var(--vert); font-weight: 800; position: absolute; left: 0; top: 0; }
.specs.cons li::before { content: "–"; color: var(--orange); }

/* ===================== TABLEAU ===================== */
.table-wrap { overflow-x: auto; margin: 30px 0; border-radius: var(--radius); border: 1px solid var(--gris-clair); }
table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 680px; background: #fff; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gris-clair); vertical-align: top; }
th { background: var(--encre); color: #fff; font-weight: 700; font-size: 14px; }
tbody tr:nth-child(odd) { background: #FAF9FF; }
tbody tr.is-top { background: #F0EDFF; }
tbody tr:last-child td { border-bottom: 0; }

/* ===================== FAQ ===================== */
.faq { margin: 30px 0; }
.faq details {
  border: 1px solid var(--gris-clair); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 12px; background: #fff;
}
.faq details[open] { border-color: var(--violet); background: #FAF9FF; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--violet); font-size: 24px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 0; }

/* ===================== CTA ===================== */
.cta-band {
  background: var(--violet); color: #fff; border-radius: var(--radius-lg);
  padding: 40px 36px; margin: 50px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 24px; }
.cta-band .btn { background: #fff; color: var(--violet); border-color: #fff; }
.cta-band .btn:hover { background: var(--peche); border-color: var(--peche); color: var(--encre); }

/* ===================== GRILLE BLOG ===================== */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; margin: 34px 0; }
.card {
  border: 1px solid var(--gris-clair); border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(28,21,53,0.09); }
.card .img-ph { aspect-ratio: 16 / 10; border-radius: 0; }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--violet); margin-bottom: 10px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card h3 a { color: var(--encre); }
.card h3 a:hover { color: var(--violet); text-decoration: none; }
.card p { font-size: 15px; color: var(--gris); margin-bottom: 16px; }
.card .more { margin-top: auto; font-weight: 700; font-size: 15px; }

/* Section pêche pleine largeur */
.band-peche { background: var(--peche-light); padding: 60px 0; margin: 60px 0 0; }
.band-peche h2:first-child { margin-top: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin: 34px 0; }
.stat { background: #fff; border: 1px solid var(--gris-clair); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat .num { font-size: 30px; font-weight: 800; color: var(--violet); line-height: 1.1; }
.stat .lab { font-size: 14px; color: var(--gris); margin-top: 6px; }

/* ===================== FOOTER ===================== */
.footer { background: var(--encre); color: #fff; padding: 56px 0 28px; margin-top: 70px; }
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 16px; color: var(--peche); }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 9px; font-size: 15px; }
.footer .desc { font-size: 15px; color: rgba(255,255,255,0.72); max-width: 320px; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); margin-top: 40px; padding-top: 22px;
  font-size: 13.5px; color: rgba(255,255,255,0.6); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.disclaimer { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.6; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 10px 22px 20px; border-bottom: 1px solid var(--gris-clair);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gris-clair); }
  .burger { display: block; }
  .hero { padding: 40px 0 48px; }
  .product { padding: 16px; }
  .cta-band { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Lignes de tableau signalant une donnée non publiée par la marque */
tbody tr.is-alerte { background: #FFF1EC; }
tbody tr.is-alerte td:first-child { border-left: 4px solid var(--orange); }
.flag-rouge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================
   HÉROS EN DEUX COLONNES + VERDICT IMMÉDIAT
   ========================================================== */
.hero-split {
  background: linear-gradient(160deg, var(--peche) 0%, #FFE9DF 55%, #F1EDFF 100%);
  padding: 54px 0 64px;
  overflow: hidden;
}
.hero-split .hero-inner {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-split h1 { margin-bottom: 18px; }
.hero-split .lead { margin-bottom: 16px; }

/* Carte verdict à droite du héros */
.verdict {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  box-shadow: 0 18px 50px rgba(28,21,53,0.16);
  border: 2px solid var(--violet);
  position: relative;
}
.verdict::before {
  content: "NOTRE N°1 EN 2026";
  position: absolute; top: -13px; left: 26px;
  background: var(--violet); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  padding: 5px 14px; border-radius: 999px;
}
.verdict-visuel {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center;
  margin-bottom: 18px;
}
.verdict-visuel img {
  width: 92px; height: 92px; object-fit: contain;
  border-radius: var(--radius); border: 1px solid var(--gris-clair); background: #fff; padding: 6px;
}
.verdict h2 { font-size: 21px; margin: 0 0 4px; }
.verdict .marque { font-size: 13px; color: var(--gris); font-weight: 600; }
.verdict-points { list-style: none; padding: 0; margin: 0 0 20px; }
.verdict-points li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; line-height: 1.45; margin-bottom: 9px;
}
.verdict-points li::before { content: "✓"; color: var(--vert); font-weight: 800; position: absolute; left: 0; top: 0; }
.verdict-points li strong { font-weight: 800; }

/* Bandeau de chiffres clés */
.chiffres {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gris-clair);
  border: 1px solid var(--gris-clair);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 0 0 8px;
}
.chiffre { background: #fff; padding: 20px 16px; text-align: center; }
.chiffre .n {
  font-size: clamp(24px, 3.2vw, 32px); font-weight: 800;
  color: var(--violet); line-height: 1.05; letter-spacing: -0.02em;
}
.chiffre .l { font-size: 12.5px; color: var(--gris); margin-top: 7px; line-height: 1.35; }

/* ==========================================================
   PODIUM
   ========================================================== */
.podium {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; align-items: end; margin: 34px 0 10px;
}
.marche {
  background: #fff; border: 1px solid var(--gris-clair);
  border-radius: var(--radius-lg); padding: 22px 20px 24px;
  text-align: center; position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.marche:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(28,21,53,0.10); }
.marche.or {
  border: 2px solid var(--violet);
  box-shadow: 0 16px 44px rgba(71,51,255,0.18);
  padding: 30px 22px 30px;
}
.marche-rang {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--gris-clair); color: var(--encre);
  font-weight: 800; font-size: 16px; margin-bottom: 14px;
}
.marche.or .marche-rang { background: var(--violet); color: #fff; width: 46px; height: 46px; font-size: 19px; }
.marche img {
  width: 100%; max-width: 130px; margin: 0 auto 14px;
  aspect-ratio: 1/1; object-fit: contain;
}
.marche.or img { max-width: 160px; }
.marche h3 { font-size: 17px; margin: 0 0 6px; }
.marche.or h3 { font-size: 20px; }
.marche .argument {
  font-size: 13.5px; color: var(--gris); line-height: 1.45; margin-bottom: 14px; min-height: 38px;
}
.marche .totox {
  display: inline-block; font-size: 12px; font-weight: 800;
  background: var(--peche-light); color: var(--encre);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.marche.or .totox { background: var(--vert); color: #fff; }

/* ==========================================================
   TUILES "CE QUI LES SÉPARE"
   ========================================================== */
.ecarts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.ecart {
  background: #fff; border: 1px solid var(--gris-clair);
  border-radius: var(--radius); padding: 22px 20px;
}
.ecart .titre { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.ecart .duo { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.ecart .gagnant { font-size: 27px; font-weight: 800; color: var(--vert); line-height: 1; }
.ecart .perdant { font-size: 17px; font-weight: 700; color: var(--gris); }
.ecart p { font-size: 13.5px; color: var(--gris); line-height: 1.5; margin: 0; }

@media (max-width: 980px) {
  .hero-split .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .ecarts { grid-template-columns: repeat(2, 1fr); }
  .chiffres { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .podium { grid-template-columns: 1fr; align-items: stretch; }
  .marche.or { order: -1; }
  .ecarts { grid-template-columns: 1fr; }
  .verdict { padding: 24px 20px 22px; }
  .verdict-visuel { grid-template-columns: 74px 1fr; gap: 13px; }
  .verdict-visuel img { width: 74px; height: 74px; }
}

/* ==========================================================
   FICHES PRODUITS ENRICHIES
   ========================================================== */
.product { padding: 22px 24px; margin: 26px 0; }
.product.is-top { padding: 28px 26px; }
.product-grid { grid-template-columns: 190px 1fr; gap: 26px; }
.product-visual { border: 0; }
.product-visual img { padding: 8px; }

/* Pastille de note */
.note-cercle {
  width: 100%; margin-top: 12px;
  background: var(--peche-light); border: 1px solid var(--peche);
  border-radius: var(--radius); padding: 12px 8px; text-align: center;
}
.product.is-top .note-cercle { background: #EFECFF; border-color: #CFC7FF; }
.note-cercle .v { font-size: 27px; font-weight: 800; line-height: 1; color: var(--encre); }
.product.is-top .note-cercle .v { color: var(--violet); }
.note-cercle .v small { font-size: 14px; font-weight: 700; color: var(--gris); }
.note-cercle .l { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--gris); margin-top: 5px; }

/* En-têtes des deux colonnes de specs */
.specs-titre {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--gris); margin: 14px 0 6px;
}
.specs-titre.contre { color: var(--orange); }

/* Ligne de données clés sous le titre du produit */
.cles {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 4px;
}
.cle {
  background: #F7F6FC; border: 1px solid var(--gris-clair);
  border-radius: 10px; padding: 8px 12px; font-size: 13px; line-height: 1.3;
}
.cle b { display: block; font-size: 15px; font-weight: 800; }
.cle span { color: var(--gris); font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }

@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-visual img { max-width: 190px; margin: 0 auto; }
  .note-cercle { max-width: 190px; margin-left: auto; margin-right: auto; }
}

/* Provenance des avis */
.source-avis {
  display: block; font-size: 11.5px; line-height: 1.4;
  color: var(--gris); font-weight: 500; margin-top: 3px;
}
.source-avis.certifie { color: var(--vert); font-weight: 700; }

/* Vignette produit dans les tableaux */
.cell-produit { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.cell-produit img {
  width: 54px; height: 54px; flex-shrink: 0;
  object-fit: contain; background: #fff;
  border: 1px solid var(--gris-clair); border-radius: 10px; padding: 4px;
}
tbody tr.is-top .cell-produit img { border-color: var(--violet); border-width: 2px; }
@media (max-width: 720px) {
  .cell-produit img { width: 42px; height: 42px; }
  .cell-produit { min-width: 160px; gap: 9px; }
}

/* Lien de source vers la fiche officielle d'une marque tierce */
.source-officielle {
  display: inline-block; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--gris);
  border-bottom: 1px solid var(--gris-clair);
}
.source-officielle:hover { color: var(--violet); border-color: var(--violet); text-decoration: none; }
