/* Fiche produit WooCommerce — styles repris de la maquette produit.html (.pp-*). */
.single-product .pp-wrap { padding-top: 40px; }
.pp-wrap { max-width: 1400px; margin: 0 auto; padding: 92px 24px 0; }

/* Breadcrumb */
.pp-crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--ink-mute); padding: 20px 0 28px; }
.pp-crumb a { color: var(--ink-mute); text-decoration: none; transition: color .2s; }
.pp-crumb a:hover { color: var(--ink); }
.pp-crumb .sep { color: oklch(80% 0.01 250); }
.pp-crumb .cur { color: var(--ink); font-weight: 600; }

/* ─── HERO : galerie + achat ────────────────────── */
.pp-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }

.pp-gallery { position: sticky; top: 96px; }
.pp-media {
  position: relative; background: transparent; border: none;
  border-radius: 0; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.pp-media::before {
  content: ''; position: absolute; inset: 3% 3% 6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, oklch(96% 0.012 85 / 0.9), transparent 74%);
}
.pp-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 20px; mix-blend-mode: multiply; animation: ppRise .55s cubic-bezier(.2,.7,.2,1) both; }
.pp-media .pp-fallback { position: relative; z-index: 1; font-size: 96px; opacity: .4; }
@keyframes ppRise { from { opacity: 0; transform: translateY(18px) scale(.95); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pp-media img { animation: none; } }
.pp-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: #fff; border: 1px solid var(--rule); color: var(--ink-soft);
  padding: 7px 13px; border-radius: 100px;
}
.pp-new {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  font-size: 11px; font-weight: 700; background: var(--green-v2); color: #fff;
  padding: 6px 12px; border-radius: 100px;
}
.pp-reassure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.pp-reassure div { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.35; font-weight: 500; }
.pp-reassure svg { width: 17px; height: 17px; color: var(--green-v2); flex-shrink: 0; margin-top: 1px; }

/* Buy column */
.pp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute);
}
.pp-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--ink-mute); }
.pp-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
  font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.035em; line-height: 1.02;
  color: var(--ink); margin: 14px 0 0; text-wrap: balance;
}
.pp-short { font-family: 'Newsreader', serif; font-style: italic; font-size: 18px; color: var(--ink-soft); line-height: 1.55; margin: 18px 0 0; max-width: 520px; }
.pp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.pp-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
  background: var(--green-soft); border: 1.5px solid var(--green-v2); color: var(--green-v2);
  padding: 7px 14px 7px 12px; border-radius: 100px;
}
.pp-tag::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-v2); color: #fff; font-size: 10px; font-weight: 900;
}

.pp-price-row { display: flex; align-items: baseline; gap: 12px; margin: 28px 0 0; padding-top: 26px; border-top: 1px solid var(--rule); }
.pp-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 40px; letter-spacing: -0.035em; color: var(--ink); }
.pp-price .amount, .pp-price .woocommerce-Price-amount, .pp-price bdi { color: var(--ink); }
.pp-price small { font-size: 15px; font-weight: 500; color: var(--ink-mute); letter-spacing: 0; }

.pp-options { margin: 24px 0 0; }
.pp-options h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 12px; }
.pp-opt {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; margin-bottom: 10px;
  border: 1.5px solid var(--rule); border-radius: 14px; cursor: pointer; transition: border-color .2s, background .2s;
  font-size: 14px; color: var(--ink-soft);
}
.pp-opt:hover { border-color: var(--ink-mute); }
.pp-opt.checked { border-color: var(--green-v2); background: var(--green-soft); color: var(--ink); }
.pp-opt input { width: 18px; height: 18px; accent-color: var(--green-v2); flex-shrink: 0; }
.pp-opt .pp-opt-label { flex: 1; }

.pp-buy { display: flex; align-items: stretch; gap: 12px; margin: 28px 0 0; flex-wrap: wrap; }
.pp-qty { display: flex; align-items: center; border: 1.5px solid var(--rule); border-radius: 100px; overflow: hidden; flex-shrink: 0; }
.pp-qty button { width: 46px; height: 54px; border: none; background: #fff; cursor: pointer; font-size: 20px; color: var(--ink); transition: background .2s; }
.pp-qty button:hover { background: var(--cream-2); }
.pp-qty input { width: 54px; height: 54px; border: none; border-left: 1.5px solid var(--rule); border-right: 1.5px solid var(--rule); text-align: center; font-size: 16px; font-weight: 700; font-family: inherit; color: var(--ink); background: #fff; -moz-appearance: textfield; }
.pp-qty input::-webkit-outer-spin-button, .pp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pp-add {
  flex: 1; min-width: 200px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: #fff; border: none; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600; padding: 0 26px; height: 54px; transition: background .2s;
}
.pp-add:hover { background: oklch(28% 0.04 250); }
.pp-add svg { width: 18px; height: 18px; }

.pp-secondary { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 0; }
.pp-sec-btn {
  flex: 1; min-width: 180px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--rule); color: var(--ink); border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; padding: 13px 20px; text-decoration: none; transition: border-color .2s, background .2s;
}
.pp-sec-btn:hover { border-color: var(--ink); background: var(--cream-2); color: var(--ink); }
.pp-sec-btn svg { width: 16px; height: 16px; }

/* ─── ASSURANCES : fiche technique / délai / garantie ── */
.pp-assurances { margin: 18px 0 0; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: 12px; }
.pp-doc-btn {
  display: inline-flex; align-items: center; gap: 13px; width: 100%;
  background: var(--cream-2); border: 1.5px solid var(--rule); color: var(--ink);
  border-radius: 14px; cursor: pointer; font-family: inherit; font-size: 14.5px; font-weight: 600;
  padding: 13px 16px; text-align: left; transition: border-color .2s, background .2s;
}
.pp-doc-btn:hover { border-color: var(--ink); background: #fff; }
.pp-doc-ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--green-soft); color: var(--green-v2); display: flex; align-items: center; justify-content: center; }
.pp-doc-ic svg { width: 21px; height: 21px; }
.pp-doc-txt { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.pp-doc-txt small { font-size: 12px; font-weight: 500; color: var(--ink-mute); margin-top: 1px; }
.pp-doc-arrow { width: 18px; height: 18px; color: var(--ink-mute); flex-shrink: 0; display: flex; }
.pp-doc-arrow svg { width: 100%; height: 100%; display: block; }

.pp-facts { display: grid; grid-template-columns: 1fr; gap: 12px; }
.pp-fact { display: flex; align-items: flex-start; gap: 11px; padding: 13px 15px; border: 1.5px solid var(--rule); border-radius: 14px; }
.pp-fact > svg { width: 21px; height: 21px; color: var(--green-v2); flex-shrink: 0; margin-top: 2px; }
.pp-fact-txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.pp-fact-txt small { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-mute); margin-bottom: 5px; }
.pp-fact-txt b { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); }
.pp-fact-txt span { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 460px) { .pp-facts { grid-template-columns: 1fr; } }

/* ─── DÉTAIL : description / specs / avantages ───── */
.pp-detail { margin: 76px 0 0; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.pp-section-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-mute); margin-bottom: 16px; }
.pp-desc-block h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 16px;
}
.pp-desc-block p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.pp-benefits { list-style: none; margin: 28px 0 0; padding: 0; }
.pp-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); padding: 11px 0; border-bottom: 1px solid var(--rule); line-height: 1.45; }
.pp-benefits li:last-child { border-bottom: none; }
.pp-benefits svg { width: 19px; height: 19px; color: var(--green-v2); flex-shrink: 0; margin-top: 1px; }

.pp-specs { background: var(--cream-2); border: 1px solid var(--rule); border-radius: 20px; padding: 28px; position: sticky; top: 96px; }
.pp-specs h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-mute); margin-bottom: 18px; }
.pp-spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.pp-spec-row:last-child { border-bottom: none; }
.pp-spec-row dt { color: var(--ink-soft); }
.pp-spec-row dd { color: var(--ink); font-weight: 600; text-align: right; }

/* ─── PRODUITS LIÉS ─────────────────────────────── */
.pp-related { margin: 90px 0 0; }
.pp-related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.pp-related-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -0.03em; color: var(--ink); }
.pp-related-head a { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; white-space: nowrap; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.pp-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pp-rel-card {
  display: flex; flex-direction: column; text-decoration: none; background: #fff;
  border: 1px solid var(--rule); border-radius: 18px; overflow: hidden; transition: transform .25s, box-shadow .25s, background .25s;
}
.pp-rel-card:hover { transform: translateY(-4px); background: #fafaf8; box-shadow: 0 18px 40px oklch(0% 0 0 / 0.05); }
.pp-rel-img { height: 168px; background: #fafaf8; display: flex; align-items: center; justify-content: center; }
.pp-rel-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.pp-rel-img .pp-fallback { font-size: 48px; opacity: .45; }
.pp-rel-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.pp-rel-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); }
.pp-rel-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--ink); margin: 6px 0 10px; flex: 1; }
.pp-rel-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); }
.pp-rel-price small { font-size: 12px; font-weight: 500; color: var(--ink-mute); }

/* ─── COMPARATIF MODÈLES ────────────────────────── */
.pp-compare { margin: 84px 0 0; }
.pp-compare-head { max-width: 660px; margin-bottom: 34px; }
.pp-compare-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95; font-weight: 800; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.035em; line-height: 1.04; color: var(--ink); margin: 14px 0 0; text-wrap: balance; }
.pp-compare-head p { font-family: 'Newsreader', serif; font-style: italic; font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 14px 0 0; text-wrap: pretty; }
.pp-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pp-cmp-card { position: relative; display: flex; flex-direction: column; text-decoration: none; background: #fff; border: 1.5px solid var(--rule); border-radius: 20px; padding: 26px 24px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.pp-cmp-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px oklch(0% 0 0 / 0.06); border-color: var(--ink-mute); }
.pp-cmp-card.is-current { border-color: var(--green-v2); background: var(--green-soft); box-shadow: 0 20px 44px oklch(48% 0.13 152 / 0.12); cursor: default; }
.pp-cmp-card.is-current:hover { transform: none; box-shadow: 0 20px 44px oklch(48% 0.13 152 / 0.12); }
.pp-cmp-flag { position: absolute; top: -12px; left: 24px; background: var(--green-v2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; white-space: nowrap; }
.pp-cmp-media { height: 88px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pp-cmp-media img { max-height: 88px; max-width: 78%; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.pp-cmp-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.025em; color: var(--ink); margin: 0; }
.pp-cmp-usage { font-size: 13.5px; color: var(--ink-mute); font-weight: 600; margin: 7px 0 17px; line-height: 1.4; }
.pp-cmp-points { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-cmp-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-soft); line-height: 1.4; }
.pp-cmp-points svg { width: 16px; height: 16px; color: var(--green-v2); flex-shrink: 0; margin-top: 2px; }
.pp-cmp-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pp-cmp-card.is-current .pp-cmp-foot { border-top-color: oklch(48% 0.13 152 / 0.25); }
.pp-cmp-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.pp-cmp-price small { font-size: 12px; font-weight: 500; color: var(--ink-mute); }
.pp-cmp-go { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green-v2); white-space: nowrap; }
.pp-cmp-go svg { width: 15px; height: 15px; transition: transform .2s; }
.pp-cmp-card:hover .pp-cmp-go svg { transform: translateX(3px); }
.pp-cmp-here { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green-v2); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.pp-cmp-here svg { width: 15px; height: 15px; }

/* ─── BLOC AVIS GOOGLE (social proof) ───────────── */
.gproof { margin: 76px 0 0; padding: 0; }
.gproof-inner { position: relative; overflow: hidden; background: var(--ink); border-radius: 28px; padding: clamp(30px,4vw,44px) clamp(26px,4vw,52px); display: grid; grid-template-columns: auto 1px 1fr; align-items: center; gap: clamp(28px,4vw,52px); box-shadow: 0 28px 64px oklch(18% 0.04 250 / 0.24); }
.gproof-stripe { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 14px); opacity: 0.5; }
.gproof-score { position: relative; text-align: center; }
.gproof-badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: oklch(80% 0.02 250); margin-bottom: 14px; }
.gproof-badge .g { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: #fff; color: var(--ink); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; }
.gproof-rate { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(64px,9vw,96px); letter-spacing: -0.05em; color: #fff; line-height: 0.86; }
.gproof-rate span { font-size: 0.4em; color: oklch(70% 0.02 250); font-weight: 700; }
.gproof-stars { position: relative; display: inline-block; margin: 14px 0 6px; font-size: 22px; letter-spacing: 3px; line-height: 1; }
.gproof-stars .base { color: oklch(38% 0.02 250); }
.gproof-stars .fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: #f2b01e; }
.gproof-count { font-size: 13px; color: oklch(78% 0.02 250); font-weight: 600; }
.gproof-sep { align-self: stretch; background: oklch(100% 0 0 / 0.1); }
.gproof-body { position: relative; }
.gproof-body h3 { font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95; color: #fff; font-size: clamp(24px,3vw,34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 0; text-wrap: balance; }
.gproof-body h3 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(78% 0.12 152); }
.gproof-body p { color: oklch(80% 0.02 250); font-size: 16px; line-height: 1.6; margin: 14px 0 0; text-wrap: pretty; }

/* ─── BANDEAU CLIENTS (défilement) ──────────────── */
.pp-clients { margin: 72px 0 0; }
.pp-clients-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.pp-clients-lead { max-width: 640px; }
.pp-clients-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-v2);
}
.pp-clients-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--green-v2); }
.pp-clients-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
  font-weight: 800; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.035em; line-height: 1.04;
  color: var(--ink); margin: 12px 0 0; text-wrap: balance;
}
.pp-clients-title em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
.pp-clients-stat { flex-shrink: 0; text-align: right; }
.pp-clients-stat b { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.pp-clients-stat span { font-size: 12.5px; font-weight: 600; color: var(--ink-mute); }
.pp-clients-band {
  position: relative; overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--rule); border-radius: 20px;
  padding: 34px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pp-clients-track {
  display: inline-flex; align-items: center; gap: 0; white-space: nowrap;
  animation: ppClientsScroll 46s linear infinite; will-change: transform;
}
.pp-clients-band:hover .pp-clients-track { animation-play-state: paused; }
.pp-client { display: inline-flex; align-items: center; justify-content: center; height: 60px; flex-shrink: 0; }
.pp-client img {
  max-height: 46px; max-width: 168px; width: auto; height: auto; object-fit: contain; display: block;
  opacity: 0.72; transition: opacity .25s;
}
.pp-clients-band:hover .pp-client img { opacity: 0.5; }
.pp-clients-band:hover .pp-client:hover img { opacity: 1; }
.pp-client-sep { width: 5px; height: 5px; border-radius: 50%; background: oklch(85% 0.01 250); margin: 0 44px; flex-shrink: 0; }
@keyframes ppClientsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .pp-clients-track { animation: none; flex-wrap: wrap; white-space: normal; gap: 26px 44px; justify-content: center; }
  .pp-client img { opacity: 0.62; }
  .pp-client-sep { display: none; }
}

/* ─── RUPTURE DE STOCK ──────────────────────────── */
.pp-oos { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.pp-oos-media {
  background: transparent; border: none;
  border-radius: 24px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: sticky; top: 96px;
  animation: oosShake .55s .32s cubic-bezier(.36,.07,.19,.97) both;
}
.pp-oos-media::before {
  content: ''; position: absolute; inset: 4% 4% 9%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, oklch(96% 0.012 85 / 0.8), transparent 76%);
}
.pp-oos-media img, .pp-oos-media .pp-fallback { animation: oosDesat .5s .3s ease both; }
.pp-oos-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 20px; mix-blend-mode: multiply; }
.pp-oos-media .pp-fallback { position: relative; z-index: 1; font-size: 96px; opacity: .4; }
.pp-oos-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: #fff; padding: 7px 13px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 7px;
}
.pp-oos-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); animation: oosPulse 1.4s ease-in-out infinite; }

/* Tampon encreur */
.pp-stamp {
  position: absolute; top: 50%; left: 50%; z-index: 3;
  transform: translate(-50%,-50%) rotate(-12deg);
  border: 5px solid var(--terra); color: var(--terra); border-radius: 12px;
  padding: 14px 26px; text-align: center; background: oklch(97% 0.02 40 / 0.35);
  box-shadow: inset 0 0 0 2px oklch(62% 0.14 40 / 0.35);
  animation: stampIn .5s .3s cubic-bezier(.2,1.5,.4,1) both;
}
.pp-stamp .l1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 34px; letter-spacing: 0.02em; line-height: .95; text-transform: uppercase; }
.pp-stamp .l2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 5px; }
.pp-stamp-ring {
  position: absolute; top: 50%; left: 50%; z-index: 2; width: 340px; height: 340px;
  border: 2px solid var(--terra); border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%) scale(.3); opacity: 0;
  animation: impactRing .7s .58s ease-out both;
}

/* Colonne message */
.pp-oos-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terra);
}
.pp-oos-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--terra); }
.pp-oos-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
  font-weight: 800; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.035em; line-height: 1.04;
  color: var(--ink); margin: 14px 0 0; text-wrap: balance;
}
.pp-oos-lede { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 18px 0 0; max-width: 500px; }
.pp-oos-lede strong { color: var(--ink); font-weight: 700; }
.pp-oos-note {
  display: flex; align-items: flex-start; gap: 11px; margin: 22px 0 0; padding: 16px 18px;
  background: var(--cream-2); border: 1px solid var(--rule); border-radius: 14px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.pp-oos-note svg { width: 19px; height: 19px; color: var(--ink-mute); flex-shrink: 0; margin-top: 1px; }
/* Déclencheur de modal rendu comme un lien dans une phrase. */
.pp-linkish {
  display: inline; padding: 0; border: none; background: none; cursor: pointer;
  font: inherit; color: var(--green-v2); text-decoration: underline; text-underline-offset: 2px;
}
.pp-linkish:hover { color: oklch(40% 0.13 152); background: none; }

/* Formulaire alerte retour en stock */
.pp-notify { margin: 24px 0 0; }
.pp-notify h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 12px; }
.pp-notify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pp-notify input {
  flex: 1; min-width: 200px; height: 52px; padding: 0 18px; font-family: inherit; font-size: 15px;
  color: var(--ink); background: #fff; border: 1.5px solid var(--rule); border-radius: 100px; outline: none; transition: border-color .2s;
}
.pp-notify input:focus { border-color: var(--green-v2); }
.pp-notify-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--ink); color: #fff; border: none; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; padding: 0 26px; height: 52px; transition: background .2s;
}
.pp-notify-btn:hover { background: oklch(28% 0.04 250); color: #fff; }
.pp-notify-btn svg { width: 17px; height: 17px; }
.pp-notify-done {
  display: none; align-items: center; gap: 10px; margin-top: 4px; padding: 14px 18px;
  background: var(--green-soft); border: 1.5px solid var(--green-v2); border-radius: 14px;
  font-size: 14.5px; font-weight: 600; color: oklch(38% 0.13 152);
}
.pp-notify-done svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Recommandation à la place */
.pp-alt {
  margin: 34px 0 0; padding-top: 30px; border-top: 1px solid var(--rule);
  opacity: 0; animation: altIn .6s .75s ease both;
}
.pp-alt-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-mute); margin-bottom: 14px; }
.pp-alt-card {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  background: #fff; border: 1.5px solid var(--rule); border-radius: 18px; padding: 16px 18px;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.pp-alt-card:hover { border-color: var(--green-v2); box-shadow: 0 16px 36px oklch(0% 0 0 / 0.06); transform: translateY(-2px); }
.pp-alt-thumb { width: 88px; height: 88px; flex-shrink: 0; background: #fafaf8; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pp-alt-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.pp-alt-info { flex: 1; min-width: 0; }
.pp-alt-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green-v2); }
.pp-alt-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); margin: 4px 0 5px; }
.pp-alt-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.pp-alt-price small { font-size: 12px; font-weight: 500; color: var(--ink-mute); }
.pp-alt-go { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); color: var(--green-v2); display: flex; align-items: center; justify-content: center; }
.pp-alt-go svg { width: 19px; height: 19px; }

/* ─── BOUTON FAVORI ─────────────────────────────── */
.pp-sec-btn.pp-fav svg { fill: none; stroke: currentColor; transition: fill .2s, stroke .2s, transform .2s; }
.pp-sec-btn.pp-fav.active { border-color: var(--terra); background: oklch(96% 0.03 40); color: var(--terra); }
.pp-sec-btn.pp-fav.active svg { fill: var(--terra); stroke: var(--terra); }
@keyframes ppFavPop { 0% { transform: scale(1); } 45% { transform: scale(1.3); } 100% { transform: scale(1); } }
.pp-sec-btn.pp-fav.pop svg { animation: ppFavPop .38s ease; }

.pp-oos-fav {
  display: inline-flex; align-items: center; gap: 9px; margin: 22px 0 0; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; padding: 12px 20px; border-radius: 100px;
  border: 1.5px solid var(--rule); background: #fff; color: var(--ink); transition: border-color .2s, background .2s, color .2s;
}
.pp-oos-fav svg { width: 17px; height: 17px; fill: none; stroke: currentColor; transition: fill .2s, stroke .2s, transform .2s; }
.pp-oos-fav:hover { border-color: var(--ink); background: #fff; }
.pp-oos-fav.active { border-color: var(--terra); background: oklch(96% 0.03 40); color: var(--terra); }
.pp-oos-fav.active svg { fill: var(--terra); stroke: var(--terra); }
.pp-oos-fav.pop svg { animation: ppFavPop .38s ease; }

@keyframes stampIn {
  0%   { opacity: 0; transform: translate(-50%,-50%) rotate(-26deg) scale(2.7); }
  55%  { opacity: 1; transform: translate(-50%,-50%) rotate(-12deg) scale(.9); }
  72%  { transform: translate(-50%,-50%) rotate(-12deg) scale(1.06); }
  100% { opacity: 1; transform: translate(-50%,-50%) rotate(-12deg) scale(1); }
}
@keyframes impactRing {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(.3); }
  30%  { opacity: .45; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.9); }
}
@keyframes oosShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}
@keyframes oosDesat {
  from { filter: grayscale(0) opacity(1); }
  to   { filter: grayscale(1) opacity(.5); }
}
@keyframes oosPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.35); }
}
@keyframes altIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pp-oos-media, .pp-oos-media img, .pp-oos-media .pp-fallback,
  .pp-stamp, .pp-stamp-ring, .pp-alt { animation: none !important; }
  .pp-oos-media img, .pp-oos-media .pp-fallback { filter: grayscale(1) opacity(.5); }
  .pp-alt { opacity: 1; }
  .pp-stamp-ring { display: none; }
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 940px) {
  .pp-hero { grid-template-columns: 1fr; gap: 32px; }
  .pp-oos { grid-template-columns: 1fr; gap: 28px; }
  .pp-oos-media { position: static; }
  .pp-gallery { position: static; }
  .pp-detail { grid-template-columns: 1fr; gap: 36px; margin-top: 56px; }
  .pp-specs { position: static; }
  .pp-rel-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) { .pp-compare-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .pp-media img { padding: 16px; }
  .pp-reassure { grid-template-columns: 1fr; gap: 10px; }
  .pp-rel-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-related { margin-top: 64px; }
  .gproof-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .gproof-sep { display: none; }
  .gproof-body { text-align: center; }
}
@media (max-width: 460px) {
  .pp-buy { flex-direction: column; }
  .pp-qty { align-self: flex-start; }
  .pp-add { width: 100%; min-width: 0; }
  .pp-rel-grid { grid-template-columns: 1fr; }
}
