/* ============================================================
   HFI · PRODUITS — design system du catalogue & fiches produit
   Étend main.css (tokens --lhima-*, --space-*, --text-*, etc.)
   Mobile-first · a11y · prefers-reduced-motion respecté
   ============================================================ */

:root {
  --prd-bg: #FBF7EF;                 /* ivoire chaud, plus doux que --lhima-cream */
  --prd-surface: #FFFFFF;
  --prd-ink: #1A1A1A;
  --prd-muted: #6E645A;              /* gris chaud */
  --prd-line: #EDE5D8;
  --prd-radius: 20px;
  --prd-radius-sm: 12px;
  --prd-shadow-rest: 0 1px 2px rgba(26, 18, 8, 0.04), 0 6px 18px rgba(26, 18, 8, 0.05);
  --prd-shadow-hover: 0 2px 4px rgba(26, 18, 8, 0.05), 0 18px 44px rgba(26, 18, 8, 0.12);
  --prd-shadow-modal: 0 24px 80px rgba(26, 18, 8, 0.28);
  --prd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.prd-page { background: var(--prd-bg); color: var(--prd-ink); }

/* ---------- HERO catalogue ---------- */
.prd-hero { padding: calc(72px + var(--space-12)) 0 var(--space-6); text-align: center; }
.prd-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--lhima-red);
}
.prd-hero-eyebrow::before, .prd-hero-eyebrow::after {
  content: ''; width: 26px; height: 1.5px; background: currentColor; opacity: 0.5;
}
.prd-hero h1 {
  font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: 800;
  margin: var(--space-4) auto var(--space-4); max-width: 700px; line-height: 1.08;
}
.prd-hero h1 em { font-style: italic; color: var(--lhima-red); }
.prd-hero p { color: var(--prd-muted); max-width: 560px; margin: 0 auto; font-size: var(--text-base); }
.prd-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3);
  justify-content: center; margin-top: var(--space-6); padding: 0; list-style: none;
}
.prd-trust li {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--prd-surface); border: 1px solid var(--prd-line);
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 600; color: var(--prd-ink);
}
.prd-trust svg { width: 14px; height: 14px; color: var(--lhima-red); flex: none; }

/* ---------- Barre de filtres sticky ---------- */
.prd-filters {
  position: sticky; top: 60px; z-index: var(--z-sticky);
  background: rgba(251, 247, 239, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: var(--space-3) 0;
  transition: border-color 200ms var(--prd-ease), box-shadow 200ms var(--prd-ease);
}
.prd-filters.is-stuck { border-color: var(--prd-line); box-shadow: 0 8px 24px rgba(26, 18, 8, 0.06); }
.prd-filters-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }

.prd-search { position: relative; flex: 1 1 220px; max-width: 360px; }
.prd-search svg {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--prd-muted); pointer-events: none;
}
.prd-search input {
  width: 100%; padding: 11px 38px 11px 42px;
  border: 1.5px solid var(--prd-line); border-radius: var(--radius-full);
  background: var(--prd-surface); font: inherit; font-size: 14px; color: var(--prd-ink);
  transition: border-color 160ms, box-shadow 160ms;
}
.prd-search input::placeholder { color: #A99E90; }
.prd-search input:focus {
  outline: none; border-color: var(--lhima-red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}
.prd-search-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border: none; border-radius: 50%;
  background: var(--prd-line); color: var(--prd-ink); cursor: pointer;
  display: none; align-items: center; justify-content: center; font-size: 13px;
}
.prd-search.has-value .prd-search-clear { display: inline-flex; }

.prd-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.prd-chip {
  padding: 9px 16px; border-radius: var(--radius-full);
  border: 1.5px solid var(--prd-line); background: var(--prd-surface);
  font: inherit; font-size: 13px; font-weight: 600; color: var(--prd-ink);
  cursor: pointer; transition: all 160ms var(--prd-ease);
  display: inline-flex; align-items: center; gap: 7px;
}
.prd-chip:hover { border-color: var(--lhima-red); color: var(--lhima-red); }
.prd-chip[aria-pressed="true"] {
  background: var(--lhima-black); border-color: var(--lhima-black); color: #fff;
}
.prd-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dot, var(--lhima-red)); }
.prd-chip svg { width: 13px; height: 13px; }

.prd-select { position: relative; }
.prd-select select {
  appearance: none; -webkit-appearance: none;
  padding: 10px 38px 10px 16px;
  border: 1.5px solid var(--prd-line); border-radius: var(--radius-full);
  background: var(--prd-surface); font: inherit; font-size: 13px; font-weight: 600;
  color: var(--prd-ink); cursor: pointer; transition: border-color 160ms;
}
.prd-select select:focus { outline: none; border-color: var(--lhima-red); box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08); }
.prd-select::after {
  content: ''; position: absolute; right: 16px; top: 50%;
  width: 7px; height: 7px; border-right: 2px solid var(--prd-muted); border-bottom: 2px solid var(--prd-muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.prd-reset {
  border: none; background: none; font: inherit; font-size: 13px; font-weight: 600;
  color: var(--prd-muted); cursor: pointer; padding: 9px 10px; border-radius: 8px;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: transparent;
  transition: all 160ms;
}
.prd-reset:hover { color: var(--lhima-red); text-decoration-color: currentColor; }
.prd-count { font-size: 13px; color: var(--prd-muted); margin-left: auto; white-space: nowrap; }
.prd-count b { color: var(--prd-ink); }

/* ---------- Grille ---------- */
.prd-section { padding: var(--space-8) 0 var(--space-20); }
.prd-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}
@media (min-width: 1400px) { .prd-grid { gap: var(--space-8); } }

/* ---------- Carte produit ---------- */
.prd-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--prd-surface); border-radius: var(--prd-radius);
  box-shadow: var(--prd-shadow-rest); overflow: hidden;
  transition: transform 450ms var(--prd-ease), box-shadow 450ms var(--prd-ease);
  transform-style: preserve-3d; will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .prd-card:hover { transform: translateY(-6px); box-shadow: var(--prd-shadow-hover); }
}
.prd-card-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #FFFFFF 0%, #F7EFE1 100%);
  display: block;
}
.prd-card-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 18px;
  transition: transform 700ms var(--prd-ease);
}
.prd-card:hover .prd-card-media img { transform: scale(1.06) translateY(-2px); }
.prd-card-light {                     /* reflet suivant la souris */
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 255, 255, 0.55), transparent 62%);
  transition: opacity 300ms;
}
.prd-card:hover .prd-card-light { opacity: 1; }

.prd-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92); color: var(--prd-ink);
  backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(26, 18, 8, 0.08);
}
.prd-badge.bestseller { background: var(--lhima-yellow); color: var(--lhima-black); }
.prd-badge.nouveau { background: var(--lhima-red); color: #fff; }

.prd-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: #B4A896; box-shadow: 0 2px 8px rgba(26, 18, 8, 0.08);
  transition: transform 200ms var(--prd-ease), color 200ms;
}
.prd-fav svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; transition: fill 200ms, color 200ms; }
.prd-fav:hover { transform: scale(1.12); color: var(--lhima-red); }
.prd-fav[aria-pressed="true"] { color: var(--lhima-red); }
.prd-fav[aria-pressed="true"] svg { fill: currentColor; }
.prd-fav.pop { animation: prd-pop 400ms var(--prd-ease); }
@keyframes prd-pop { 40% { transform: scale(1.35); } }

.prd-card-body { display: flex; flex-direction: column; gap: 7px; padding: 20px 22px 22px; flex: 1; }
.prd-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prd-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--brand, var(--lhima-red));
}
.prd-brand .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.prd-cat { font-size: 11px; color: var(--prd-muted); font-weight: 600; letter-spacing: 0.4px; }
.prd-name {
  font-family: var(--font-heading); font-size: 21px; font-weight: 700; line-height: 1.2;
  margin: 0; color: var(--prd-ink);
}
.prd-name a { color: inherit; text-decoration: none; }
.prd-name a::after { content: ''; position: absolute; inset: 0; }   /* carte cliquable */
.prd-tagline { font-size: 12px; font-weight: 600; color: var(--lhima-red); font-style: italic; }
.prd-desc {
  font-size: 13.5px; line-height: 1.55; color: var(--prd-muted); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prd-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px;
}
.prd-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700; color: var(--prd-ink); text-decoration: none;
}
.prd-cta svg { width: 15px; height: 15px; transition: transform 250ms var(--prd-ease); }
.prd-card:hover .prd-cta { color: var(--lhima-red); }
.prd-card:hover .prd-cta svg { transform: translateX(4px); }
.prd-quick {
  position: relative; z-index: 2;
  width: 38px; height: 38px; border: 1.5px solid var(--prd-line); border-radius: 50%;
  background: var(--prd-surface); color: var(--prd-ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--prd-ease);
}
.prd-quick svg { width: 16px; height: 16px; }
.prd-quick:hover { background: var(--lhima-black); border-color: var(--lhima-black); color: #fff; transform: scale(1.08); }

/* ---------- Apparition / stagger ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(22px); }
  [data-reveal].is-in {
    opacity: 1; transform: none;
    transition: opacity 650ms var(--prd-ease) var(--rd, 0ms), transform 650ms var(--prd-ease) var(--rd, 0ms);
  }
}

/* ---------- Skeletons ---------- */
.prd-skel { border-radius: var(--prd-radius); background: var(--prd-surface); overflow: hidden; box-shadow: var(--prd-shadow-rest); }
.prd-skel > div { position: relative; overflow: hidden; background: #F1E9DB; }
.prd-skel .s-img { aspect-ratio: 4/3; }
.prd-skel .s-line { height: 14px; border-radius: 7px; margin: 14px 22px 0; }
.prd-skel .s-line.w60 { width: 60%; }
.prd-skel .s-line.w80 { width: 80%; margin-bottom: 26px; }
.prd-skel > div::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: prd-shimmer 1.4s infinite;
}
@keyframes prd-shimmer { 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .prd-skel > div::after { animation: none; } }

/* ---------- États vides / erreur / hors-ligne ---------- */
.prd-state {
  grid-column: 1 / -1; text-align: center;
  background: var(--prd-surface); border: 1.5px dashed var(--prd-line);
  border-radius: var(--prd-radius); padding: var(--space-16) var(--space-6);
}
.prd-state .art { font-size: 44px; margin-bottom: var(--space-4); }
.prd-state h3 { font-family: var(--font-heading); font-size: var(--text-xl); margin: 0 0 var(--space-2); }
.prd-state p { color: var(--prd-muted); font-size: 14px; max-width: 420px; margin: 0 auto var(--space-5); }
.prd-state .btn-row { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.prd-offline {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: var(--lhima-black); color: #fff; font-size: 13px; font-weight: 600;
  padding: 11px 20px; border-radius: var(--radius-full); z-index: var(--z-toast);
  box-shadow: var(--prd-shadow-modal); display: none; align-items: center; gap: 9px;
}
.prd-offline.show { display: inline-flex; }

/* ---------- Boutons ---------- */
.prd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-full); border: none;
  font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: transform 200ms var(--prd-ease), box-shadow 200ms var(--prd-ease), background 200ms;
}
.prd-btn svg { width: 17px; height: 17px; }
.prd-btn:hover { transform: translateY(-2px); }
.prd-btn.primary { background: var(--lhima-red); color: #fff; }
.prd-btn.primary:hover { box-shadow: 0 10px 26px rgba(200, 16, 46, 0.35); background: var(--lhima-red-dark); }
.prd-btn.whatsapp { background: #25D366; color: #fff; }
.prd-btn.whatsapp:hover { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35); }
.prd-btn.ghost { background: var(--prd-surface); border: 1.5px solid var(--prd-line); color: var(--prd-ink); }
.prd-btn.ghost:hover { border-color: var(--prd-ink); }
.prd-btn.dark { background: var(--lhima-black); color: #fff; }

/* ---------- Sentinel pagination ---------- */
.prd-more { text-align: center; padding: var(--space-8) 0 0; }

/* ---------- Quick View ---------- */
.qv-backdrop {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(20, 14, 8, 0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: var(--space-4);
  opacity: 0; transition: opacity 260ms var(--prd-ease);
}
.qv-backdrop.open { opacity: 1; }
.qv-modal {
  background: var(--prd-surface); border-radius: 24px; box-shadow: var(--prd-shadow-modal);
  width: min(880px, 100%); max-height: min(640px, 92vh); overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(18px) scale(0.98); transition: transform 320ms var(--prd-ease);
}
.qv-backdrop.open .qv-modal { transform: none; }
@media (max-width: 720px) { .qv-modal { grid-template-columns: 1fr; max-height: 92vh; } }
.qv-media {
  background: radial-gradient(120% 100% at 50% 0%, #FFFFFF 0%, #F7EFE1 100%);
  display: flex; align-items: center; justify-content: center; min-height: 300px; position: relative;
}
.qv-media img { width: 100%; height: 100%; max-height: 420px; object-fit: contain; padding: 28px; }
.qv-body { padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 12px; }
.qv-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.94); cursor: pointer; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(26,18,8,0.12); transition: transform 180ms;
}
.qv-close:hover { transform: rotate(90deg); }
.qv-name { font-family: var(--font-heading); font-size: 27px; font-weight: 800; margin: 0; line-height: 1.15; }
.qv-format {
  align-self: flex-start; font-size: 12px; font-weight: 700;
  background: var(--prd-bg); border: 1px solid var(--prd-line);
  padding: 6px 13px; border-radius: var(--radius-full);
}
.qv-desc { font-size: 14.5px; line-height: 1.65; color: var(--prd-muted); margin: 0; }
.qv-engagements { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 2px 0 0; list-style: none; }
.qv-engagements li {
  font-size: 11.5px; font-weight: 600; color: var(--prd-ink);
  background: var(--prd-bg); padding: 5px 11px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: 5px;
}
.qv-engagements svg { width: 11px; height: 11px; color: var(--success); }
.qv-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; }

/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.pf-breadcrumb {
  padding: calc(72px + var(--space-6)) 0 var(--space-2);
  font-size: 13px; color: var(--prd-muted);
}
.pf-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.pf-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.pf-breadcrumb li + li::before { content: '›'; color: #C9BCA8; }
.pf-breadcrumb a { color: inherit; text-decoration: none; }
.pf-breadcrumb a:hover { color: var(--lhima-red); }
.pf-breadcrumb [aria-current] { color: var(--prd-ink); font-weight: 600; }

.pf-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--space-10); padding: var(--space-6) 0 var(--space-12); align-items: start; }
@media (max-width: 900px) { .pf-hero { grid-template-columns: 1fr; gap: var(--space-6); } }

.pf-gallery { position: sticky; top: 96px; }
@media (max-width: 900px) { .pf-gallery { position: static; } }
.pf-stage {
  position: relative; border-radius: var(--prd-radius); overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #FFFFFF 0%, #F5ECDC 100%);
  aspect-ratio: 1 / 1; box-shadow: var(--prd-shadow-rest); cursor: zoom-in;
}
.pf-stage img {
  width: 100%; height: 100%; object-fit: contain; padding: 8%;
  transition: transform 500ms var(--prd-ease), opacity 300ms;
  will-change: transform;
}
.pf-stage.zoomed { cursor: zoom-out; }
.pf-stage.zoomed img { transform: scale(2.1); transition: transform 200ms; }
.pf-stage .pf-zoom-hint {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  font-size: 11.5px; font-weight: 600; color: var(--prd-muted);
  padding: 7px 13px; border-radius: var(--radius-full);
  display: inline-flex; gap: 6px; align-items: center; pointer-events: none;
  box-shadow: 0 2px 8px rgba(26,18,8,0.08);
}
.pf-zoom-hint svg { width: 13px; height: 13px; }
.pf-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pf-thumb {
  width: 76px; height: 76px; border-radius: var(--prd-radius-sm);
  border: 2px solid transparent; background: var(--prd-surface);
  overflow: hidden; cursor: pointer; padding: 0; transition: border-color 180ms, transform 180ms;
  box-shadow: var(--prd-shadow-rest);
}
.pf-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pf-thumb:hover { transform: translateY(-2px); }
.pf-thumb[aria-current="true"] { border-color: var(--lhima-red); }

.pf-info { display: flex; flex-direction: column; gap: var(--space-4); }
.pf-badges { display: flex; gap: 8px; }
.pf-badges .prd-badge { position: static; }
.pf-info h1 { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: 800; line-height: 1.1; margin: 0; }
.pf-tagline { font-size: 15px; font-style: italic; color: var(--lhima-red); font-weight: 600; }
.pf-desc { font-size: 15.5px; line-height: 1.7; color: var(--prd-muted); margin: 0; }
.pf-format {
  align-self: flex-start; font-size: 13px; font-weight: 700;
  background: var(--prd-surface); border: 1.5px solid var(--prd-line);
  padding: 8px 16px; border-radius: var(--radius-full);
}
.pf-engagements {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px; list-style: none; padding: 0; margin: var(--space-2) 0 0;
}
.pf-engagements li {
  display: flex; align-items: center; gap: 9px;
  background: var(--prd-surface); border: 1px solid var(--prd-line);
  border-radius: var(--prd-radius-sm); padding: 11px 13px;
  font-size: 12.5px; font-weight: 600;
}
.pf-engagements svg { width: 16px; height: 16px; color: var(--success); flex: none; }
.pf-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--space-2); }
.pf-share-row { display: flex; gap: 8px; align-items: center; }
.pf-icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--prd-line); background: var(--prd-surface);
  color: var(--prd-ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--prd-ease); position: relative;
}
.pf-icon-btn svg { width: 17px; height: 17px; }
.pf-icon-btn:hover { border-color: var(--prd-ink); transform: translateY(-2px); }
.pf-icon-btn.copied { background: var(--success); border-color: var(--success); color: #fff; }

/* Sections d'information (accordéons) */
.pf-sections { max-width: 860px; margin: 0 auto; padding-bottom: var(--space-12); }
.pf-acc { border: 1px solid var(--prd-line); border-radius: var(--prd-radius-sm); background: var(--prd-surface); margin-bottom: 10px; overflow: hidden; }
.pf-acc summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700; font-size: 15px;
}
.pf-acc summary::-webkit-details-marker { display: none; }
.pf-acc summary .chev { width: 26px; height: 26px; border-radius: 50%; background: var(--prd-bg); display: inline-flex; align-items: center; justify-content: center; transition: transform 250ms var(--prd-ease); flex: none; }
.pf-acc summary .chev svg { width: 12px; height: 12px; }
.pf-acc[open] summary .chev { transform: rotate(180deg); }
.pf-acc summary:focus-visible { outline: 2px solid var(--lhima-red); outline-offset: -2px; }
.pf-acc-body { padding: 0 22px 20px; font-size: 14px; line-height: 1.7; color: var(--prd-muted); }
.pf-acc-body a { color: var(--lhima-red); font-weight: 600; }

/* Idées & recettes */
.pf-block { padding: var(--space-10) 0; }
.pf-block-title { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: 800; text-align: center; margin: 0 0 var(--space-2); }
.pf-block-sub { text-align: center; color: var(--prd-muted); font-size: 14px; margin: 0 0 var(--space-8); }
.pf-ideas { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); max-width: 900px; margin: 0 auto; }
.pf-idea {
  background: var(--prd-surface); border-radius: var(--prd-radius-sm);
  padding: 20px 22px; box-shadow: var(--prd-shadow-rest);
  font-size: 14px; font-weight: 600; display: flex; gap: 12px; align-items: flex-start; line-height: 1.5;
}
.pf-idea .num {
  font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  color: var(--lhima-red); line-height: 1; flex: none;
}
.pf-recipes { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-4); max-width: 900px; margin: 0 auto; }
.pf-recipe {
  display: block; background: var(--lhima-black); color: #fff; text-decoration: none;
  border-radius: var(--prd-radius-sm); padding: 24px; position: relative; overflow: hidden;
  transition: transform 300ms var(--prd-ease), box-shadow 300ms var(--prd-ease);
}
.pf-recipe:hover { transform: translateY(-4px); box-shadow: var(--prd-shadow-hover); }
.pf-recipe .tag { font-size: 10px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--lhima-yellow); }
.pf-recipe h3 { font-family: var(--font-heading); font-size: 18px; margin: 10px 0 14px; line-height: 1.3; }
.pf-recipe .go { font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.pf-recipe .go svg { width: 14px; height: 14px; transition: transform 250ms var(--prd-ease); }
.pf-recipe:hover .go svg { transform: translateX(4px); }

/* Produits associés */
.pf-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: var(--space-5); }

/* ---------- Toast ---------- */
.prd-toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--lhima-black); color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 12px 22px; border-radius: var(--radius-full); z-index: var(--z-toast);
  box-shadow: var(--prd-shadow-modal); opacity: 0;
  transition: transform 350ms var(--prd-ease), opacity 350ms;
  pointer-events: none; max-width: 90vw; text-align: center;
}
.prd-toast.show { transform: translateX(-50%); opacity: 1; }

/* ---------- Accessibilité ---------- */
.prd-page :focus-visible { outline: 2px solid var(--lhima-red); outline-offset: 2px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--lhima-black); color: #fff; font-weight: 700; font-size: 13px;
  padding: 12px 18px; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  .prd-page *, .prd-page *::before, .prd-page *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}
