/*
 * LPVS Redesign — main stylesheet
 * Extrait du HTML statique du redesign v4
 * Variables, composants et media queries.
 */

/* ============================================================
   LPVS — DESIGN SYSTEM PARTAGÉ
   Toutes les pages utilisent cette feuille de style.
   ============================================================ */

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

:root {
  --ivory: #F5F2EC;
  --ivory-deep: #ECE7DC;
  --ink: #0A0A09;
  --ink-soft: #2A2826;
  --kraft: #B8895A;
  --kraft-deep: #8C5A2E;
  --bleu: #00337A;
  --rouge: #C8102E;
  --line: rgba(10,10,9,0.12);
  --line-soft: rgba(10,10,9,0.06);
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --space-1: 4px; --space-2: 8px; --space-3: 16px;
  --space-4: 24px; --space-5: 32px; --space-6: 48px;
  --space-7: 64px; --space-8: 96px; --space-9: 128px;
  --content-max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
}

body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.5;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
::selection { background: var(--ink); color: var(--ivory); }

/* ============================================================
   TOPBAR + HEADER (partagés)
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}
.topbar-track span {
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.topbar-track span::before { content: "★"; color: var(--kraft); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: var(--space-4);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand sup { font-size: 9px; vertical-align: top; opacity: 0.5; letter-spacing: 0; }
.nav { display: flex; justify-content: center; gap: 28px; }
.nav a {
  font-size:  13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--ink);
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.header-actions { display: flex; gap: var(--space-3); align-items: center; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--ivory-deep); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s;
}
.cart-pill:hover { transform: scale(1.04); }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
}

/* ============================================================
   HERO (utilisé sur home + variations sur autres pages)
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-7);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10,10,9,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--ink);
}
.hero-eyebrow strong { color: var(--rouge); font-weight: 700; }
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 9.5vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  color: var(--kraft-deep);
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero p.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  max-width: 480px;
  color: var(--ink-soft);
  margin-bottom: var(--space-6);
}
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Boutons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary:hover { background: var(--kraft-deep); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--ink);
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--ink); color: var(--ivory); }
.btn-pro-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--kraft);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
}
.btn-pro-primary:hover { background: var(--ivory); transform: translateY(-2px); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ivory-deep);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184,137,90,0.18), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,51,122,0.12), transparent 65%);
  pointer-events: none;
}
.hero-visual img {
  width: 78%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute;
  top: 28px; right: 28px;
  width: 124px; height: 124px;
  display: grid; place-items: center;
  background: var(--rouge);
  color: var(--ivory);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: spin 22s linear infinite;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(200,16,46,0.35);
}
.hero-badge span { display: block; }
.hero-badge .big { font-size: 26px; font-weight: 800; line-height: 1; margin: 4px 0; letter-spacing: -0.02em; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.hero-tag .price-old { text-decoration: line-through; opacity: 0.5; font-size: 12px; }
.hero-tag .price-new { font-weight: 700; font-size: 17px; color: var(--rouge); }
.hero-tag .name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero { padding: var(--space-6) 0; }
}

/* ============================================================
   PAGE HEADER (variante du hero pour pages internes)
   ============================================================ */
.page-header {
  padding: var(--space-7) var(--gutter) var(--space-6);
  max-width: var(--content-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-header .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  display: flex; gap: 8px; align-items: center;
}
.page-header .breadcrumb a { opacity: 0.6; transition: opacity 0.2s; }
.page-header .breadcrumb a:hover { opacity: 1; }
.page-header .breadcrumb span:not(:last-child)::after {
  content: "→"; margin-left: 8px; opacity: 0.4;
}
.page-header h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
  max-width: 1200px;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--kraft-deep);
}
.page-header .lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}
.page-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-4);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.page-header-meta .count {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============================================================
   TRUST STRIP (chiffres)
   ============================================================ */
.trust-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-6) var(--gutter);
}
.trust-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}
.trust-item .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.trust-item .num em {
  font-style: italic;
  color: var(--kraft);
  font-weight: 500;
}
.trust-item .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}

/* ============================================================
   SECTION GÉNÉRIQUE
   ============================================================ */
.section {
  padding: var(--space-8) var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kraft-deep);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head .eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--kraft-deep);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 720px;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--kraft-deep);
}
.section-head .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
}
.section-head .link-arrow:hover { color: var(--kraft-deep); border-color: var(--kraft-deep); }

/* ============================================================
   GRILLE CATÉGORIES (cartes)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  grid-auto-rows: 380px;
  gap: var(--space-3);
}
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ivory-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover::before { opacity: 1; }
.cat-card .cat-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-card .cat-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.cat-card .cat-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ivory);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
}
.cat-card h3 {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.cat-card h3 svg {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s;
}
.cat-card:hover h3 svg { transform: rotate(-45deg); }
.cat-card.dark { background: var(--ink); color: var(--ivory); }
.cat-card.dark h3 { color: var(--ivory); }
.cat-card.dark .cat-count { background: var(--ivory); color: var(--ink); }
.cat-card.dark h3 svg { background: var(--ivory); color: var(--ink); }
.cat-card.feature { grid-column: span 2; grid-row: span 1; }

@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .cat-card.feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.feature { grid-column: span 1; }
}

/* ============================================================
   STORY (section éditoriale dark)
   ============================================================ */
.story {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-9) var(--gutter);
  position: relative;
  overflow: hidden;
}
.story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.story-text .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-text .eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--kraft);
}
.story-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
}
.story-text h2 em { font-style: italic; color: var(--kraft); }
.story-text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,242,236,0.78);
  max-width: 520px;
  margin-bottom: var(--space-3);
}
.story-text .quote {
  border-left: 2px solid var(--kraft);
  padding-left: var(--space-4);
  margin-top: var(--space-5);
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  color: var(--ivory);
}
.story-stats {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(245,242,236,0.15);
}
.story-stats div .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  color: var(--kraft);
  line-height: 1;
}
.story-stats div .lab {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
}
.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ivory-deep);
  display: grid;
  place-items: center;
}
.story-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,137,90,0.25), rgba(140,90,46,0.15));
}
.story-visual img {
  width: 70%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  position: relative; z-index: 2;
}
.story-visual .label {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.story-visual .label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rouge);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .story { padding: var(--space-7) var(--gutter); }
}

/* ============================================================
   PRODUITS (cartes)
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.product-card {
  position: relative;
  background: var(--ivory-deep);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover { transform: translateY(-4px); }
.product-image {
  aspect-ratio: 1/1;
  background: var(--ivory);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 70%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.06) rotate(-2deg); }
.product-flag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--rouge);
  color: var(--ivory);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-flag.bestseller { background: var(--ink); color: var(--ivory); }
.product-flag.eco { background: #2D5F3F; color: var(--ivory); }
.product-flag.new { background: var(--bleu); color: var(--ivory); }
.product-quick {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--ivory);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.product-card:hover .product-quick { opacity: 1; transform: translateY(0); }
.product-quick svg { width: 18px; height: 18px; }
.product-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kraft-deep);
}
.product-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  min-height: 46px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.product-rating::before { content: "★"; color: var(--kraft); }
.product-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.product-price .old { text-decoration: line-through; opacity: 0.4; font-size: 14px; margin-right: 6px; font-weight: 500; }
.product-price .new { color: var(--rouge); }

@media (max-width: 1100px) { .product-grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .product-grid, .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .product-grid, .product-grid.cols-4 { grid-template-columns: 1fr; } }

/* ============================================================
   FILTRES (catalogue)
   ============================================================ */
.filters {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-4) var(--gutter);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.filter-pill {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.filter-pill .count { opacity: 0.6; margin-left: 4px; font-size: 11px; }
.filter-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.filter-sort select {
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0A09' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
  cursor: pointer;
}

/* ============================================================
   STEPS (3 étapes)
   ============================================================ */
.steps {
  padding: var(--space-9) var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  z-index: 0;
}
.step {
  position: relative;
  background: var(--ivory);
  padding-top: 8px;
  z-index: 1;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.step:nth-child(2) .step-num { background: var(--kraft-deep); }
.step:nth-child(3) .step-num { background: var(--rouge); }
.step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}
.step p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 360px; }

@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .steps-grid::before { display: none; }
}

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: var(--kraft);
  padding: var(--space-7) var(--gutter);
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: "PROMO • PROMO • PROMO • PROMO • PROMO • PROMO • PROMO • PROMO •";
  position: absolute;
  top: -20px; left: 0;
  font-family: var(--display);
  font-size: 90px;
  font-weight: 700;
  color: var(--kraft-deep);
  white-space: nowrap;
  opacity: 0.18;
  letter-spacing: -0.04em;
  pointer-events: none;
  animation: scroll-left 28s linear infinite;
}
.promo-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  position: relative;
  z-index: 2;
}
.promo-card {
  background: var(--ivory);
  border-radius: 18px;
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: var(--space-4);
  align-items: center;
}
.promo-card .promo-info .save {
  display: inline-block;
  background: var(--rouge);
  color: var(--ivory);
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.promo-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.promo-card .promo-prices {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px;
}
.promo-card .promo-prices .old { text-decoration: line-through; opacity: 0.5; font-size: 14px; }
.promo-card .promo-prices .new {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--rouge);
  letter-spacing: -0.02em;
}
.promo-card a.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.promo-card .promo-img {
  background: var(--ivory-deep);
  border-radius: 12px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
}
.promo-card .promo-img img { width: 80%; }

@media (max-width: 800px) {
  .promo-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.commit-card {
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ivory);
  transition: all 0.3s;
}
.commit-card:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.commit-card:hover .commit-icon { background: var(--kraft); color: var(--ink); }
.commit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  transition: all 0.3s;
}
.commit-icon svg { width: 24px; height: 24px; }
.commit-card h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.commit-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.commit-card:hover p { color: rgba(245,242,236,0.78); }

@media (max-width: 1000px) { .commit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .commit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AVIS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.review-card {
  padding: var(--space-5);
  background: var(--ivory-deep);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card.dark { background: var(--ink); color: var(--ivory); }
.review-stars { font-size: 16px; color: var(--kraft); letter-spacing: 2px; }
.review-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  flex-grow: 1;
}
.review-meta {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.review-card.dark .review-meta { border-color: rgba(245,242,236,0.15); }
.review-author { font-weight: 600; font-size: 14px; }
.review-source { font-size: 11px; opacity: 0.6; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRO SECTION
   ============================================================ */
.pro-section {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-9) var(--gutter);
  position: relative;
  overflow: hidden;
}
.pro-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 2;
}
.pro-section::before {
  content: "PRO";
  position: absolute;
  bottom: -80px; right: -30px;
  font-family: var(--display);
  font-size: 480px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(184,137,90,0.07);
  pointer-events: none;
  z-index: 1;
}
.pro-text .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pro-text .eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--kraft);
}
.pro-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-4);
}
.pro-text h2 em { font-style: italic; color: var(--kraft); }
.pro-text p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,242,236,0.78);
  max-width: 480px;
  margin-bottom: var(--space-5);
}
.pro-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.pro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.pro-list li::before {
  content: ""; width: 6px; height: 6px;
  background: var(--kraft);
  border-radius: 50%;
  flex-shrink: 0;
}
.pro-cta { margin-top: var(--space-5); display: flex; gap: var(--space-3); flex-wrap: wrap; }

@media (max-width: 900px) { .pro-inner { grid-template-columns: 1fr; } }

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
  padding: var(--space-9) var(--gutter);
  max-width: 980px;
  margin: 0 auto;
}
.seo-content h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  max-width: 800px;
}
.seo-content h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: var(--space-6) 0 var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.seo-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
  max-width: 720px;
}
.seo-content p strong { color: var(--ink); font-weight: 700; }
.seo-content a {
  color: var(--kraft-deep);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.seo-content a:hover { color: var(--rouge); }
.seo-content ul {
  list-style: none;
  margin: var(--space-3) 0;
  padding-left: var(--space-3);
}
.seo-content ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.seo-content ul li::before {
  content: ""; width: 8px; height: 1px;
  background: var(--kraft);
  position: absolute;
  left: 0; top: 13px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--space-8) var(--gutter);
  max-width: 1080px;
  margin: 0 auto;
}
.faq-list { margin-top: var(--space-5); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--kraft-deep); }
.faq-toggle {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.25s;
}
.faq-item[open] .faq-toggle {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-toggle svg { width: 16px; height: 16px; }
.faq-answer {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
}
.faq-answer strong { color: var(--ink); font-weight: 700; }
.faq-item[open] summary { color: var(--kraft-deep); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--ivory-deep);
  padding: var(--space-9) var(--gutter);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 1000px;
  margin: 0 auto var(--space-4);
}
.final-cta h2 em { font-style: italic; color: var(--kraft-deep); }
.final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto var(--space-5);
}
.final-cta .ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-8) var(--gutter) var(--space-5);
}
.footer-inner { max-width: var(--content-max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(245,242,236,0.12);
}
.footer-brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.footer-brand sup { font-size: 12px; opacity: 0.6; vertical-align: top; letter-spacing: 0; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,242,236,0.7);
  max-width: 360px;
  margin-bottom: var(--space-4);
}
.footer-contact { font-size: 13px; line-height: 1.7; color: rgba(245,242,236,0.6); }
.footer-contact strong { color: var(--ivory); font-weight: 600; }
.footer h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: var(--space-3);
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(245,242,236,0.78);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--kraft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  font-size: 12px;
  color: rgba(245,242,236,0.5);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-methods { display: flex; gap: 10px; align-items: center; }
.payment-methods span {
  padding: 5px 11px;
  background: rgba(245,242,236,0.08);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.product-detail {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-6) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
}
.pd-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-3);
  position: sticky;
  top: 80px;
  align-self: start;
}
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-thumbs button {
  width: 80px; height: 80px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory-deep);
  display: grid; place-items: center;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-thumbs button:hover,
.pd-thumbs button.active { border-color: var(--ink); }
.pd-thumbs img { width: 100%; }
.pd-main {
  aspect-ratio: 1;
  background: var(--ivory-deep);
  border-radius: 18px;
  display: grid; place-items: center;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.pd-main img { width: 75%; }
.pd-main .pd-flag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--rouge);
  color: var(--ivory);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-info { padding: var(--space-3) 0; }
.pd-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kraft-deep);
  margin-bottom: 12px;
}
.pd-info h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.pd-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.pd-rating .stars { color: var(--kraft); letter-spacing: 2px; }
.pd-rating .count { opacity: 0.6; }
.pd-rating a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.pd-price {
  margin-bottom: var(--space-4);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.pd-price .new {
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--rouge);
}
.pd-price .old { text-decoration: line-through; opacity: 0.5; font-size: 20px; }
.pd-price .save {
  background: var(--rouge);
  color: var(--ivory);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pd-price .tax { font-size: 13px; opacity: 0.6; margin-left: 4px; }

.pd-options { margin-bottom: var(--space-4); }
.pd-options-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 12px;
  display: flex; justify-content: space-between;
}
.pd-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pd-option {
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-option:hover { border-color: var(--ink); }
.pd-option.active { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.pd-option .opt-name { font-weight: 700; font-size: 14px; }
.pd-option .opt-meta { font-size: 11px; opacity: 0.6; margin-top: 4px; letter-spacing: 0.04em; }

.pd-quantity {
  display: flex; align-items: center;
  background: var(--ivory-deep);
  border-radius: 999px;
  padding: 6px;
  width: max-content;
  margin-bottom: var(--space-4);
}
.pd-quantity button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  font-size: 16px;
  font-weight: 700;
}
.pd-quantity input {
  width: 56px;
  text-align: center;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 16px;
}

.pd-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.pd-actions .btn-primary { flex: 1; min-width: 200px; justify-content: center; padding: 22px; font-size: 15px; }
.pd-fav {
  width: 60px; height: 60px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.pd-fav:hover { background: var(--ink); color: var(--ivory); }

.pd-perks {
  display: grid;
  gap: 12px;
  padding: var(--space-4);
  background: var(--ivory-deep);
  border-radius: 14px;
  margin-bottom: var(--space-5);
}
.pd-perk { display: flex; gap: 14px; align-items: center; font-size: 13px; }
.pd-perk svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--kraft-deep);
}
.pd-perk strong { font-weight: 600; }

.pd-tabs {
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}
.pd-tabs-nav {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.pd-tab-btn {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  cursor: pointer;
}
.pd-tab-btn.active { color: var(--ink); }
.pd-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ink);
}
.pd-tab-content { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.pd-tab-content p { margin-bottom: 12px; }
.pd-tab-content strong { color: var(--ink); }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: var(--space-5); }
  .pd-gallery { position: static; grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; order: 2; }
  .pd-main { order: 1; }
}
@media (max-width: 500px) {
  .pd-options-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PANIER
   ============================================================ */
.cart-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-7) var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-6);
}
.cart-items { display: flex; flex-direction: column; }
.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line .img {
  width: 100px; height: 100px;
  background: var(--ivory-deep);
  border-radius: 12px;
  display: grid; place-items: center;
  padding: 12px;
}
.cart-line .img img { width: 80%; }
.cart-line .info .cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kraft-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-line .info .name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cart-line .info .opt { font-size: 13px; opacity: 0.6; }
.cart-line .actions { text-align: right; }
.cart-line .actions .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cart-line .actions .qty-mini {
  display: inline-flex;
  background: var(--ivory-deep);
  border-radius: 999px;
  padding: 4px;
}
.cart-line .actions .qty-mini button {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.cart-line .actions .qty-mini span {
  display: inline-flex; align-items: center;
  padding: 0 12px;
  font-weight: 600; font-size: 13px;
}
.cart-line .actions .remove {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: underline;
}

.cart-summary {
  background: var(--ivory-deep);
  border-radius: 18px;
  padding: var(--space-5);
  align-self: start;
  position: sticky;
  top: 80px;
}
.cart-summary h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.cart-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}
.cart-summary .row .free { color: var(--kraft-deep); font-weight: 600; }
.cart-summary .total {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cart-summary .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-4);
  padding: 20px;
}
.cart-summary .promo-input {
  display: flex;
  gap: 8px;
  margin-top: var(--space-3);
}
.cart-summary .promo-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  font-size: 13px;
}
.cart-summary .promo-input button {
  padding: 12px 20px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.cart-perks {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 13px;
}
.cart-perks .row { display: flex; gap: 12px; align-items: center; padding: 0; }
.cart-perks svg { width: 18px; height: 18px; color: var(--kraft-deep); }

@media (max-width: 900px) {
  .cart-page { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
  grid-auto-rows: auto;
}
.blog-card {
  position: relative;
  background: var(--ivory-deep);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card.feature { grid-row: span 2; }
.blog-img {
  aspect-ratio: 4/3;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.blog-card.feature .blog-img { aspect-ratio: 4/5; }
.blog-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,137,90,0.18), rgba(0,51,122,0.1));
  z-index: 1;
}
.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  z-index: 0;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--ivory);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-info {
  padding: var(--space-4);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-meta {
  display: flex; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.blog-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.blog-card.feature h3 { font-size: clamp(28px, 3vw, 38px); }
.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.blog-card .read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  width: max-content;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feature { grid-row: span 1; grid-column: span 2; }
  .blog-card.feature .blog-img { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.feature { grid-column: span 1; }
}

/* ============================================================
   ARTICLE (single blog post)
   ============================================================ */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-7) var(--gutter);
}
.article-body .meta {
  display: flex; gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.article-body .meta .tag {
  background: var(--kraft);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.article-body h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-4);
}
.article-body .lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.article-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: var(--space-6) 0 var(--space-3);
}
.article-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: var(--space-5) 0 var(--space-3);
}
.article-body p { font-size: 17px; line-height: 1.75; margin-bottom: var(--space-3); color: var(--ink-soft); }
.article-body p strong { color: var(--ink); font-weight: 700; }
.article-body ul, .article-body ol {
  margin: var(--space-3) 0;
  padding-left: var(--space-4);
  color: var(--ink-soft);
}
.article-body li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--kraft);
  padding: var(--space-3) var(--space-4);
  margin: var(--space-5) 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  background: var(--ivory-deep);
  border-radius: 0 14px 14px 0;
}
.article-body img { border-radius: 14px; margin: var(--space-4) 0; }
.article-body a { color: var(--kraft-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-7) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-7);
}
.contact-info h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.contact-info p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
}
.contact-info .channels { display: grid; gap: var(--space-3); }
.contact-info .channel {
  display: flex;
  gap: 14px;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
}
.contact-info .channel .ic {
  width: 48px; height: 48px;
  background: var(--ivory-deep);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-info .channel .ic svg { width: 22px; height: 22px; }
.contact-info .channel strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
}
.contact-info .channel span { font-size: 13px; color: var(--ink-soft); }

.contact-form {
  background: var(--ivory-deep);
  border-radius: 18px;
  padding: var(--space-6);
}
.contact-form h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.field { margin-bottom: var(--space-3); }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  font-size: 15px;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; font-family: var(--body); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: var(--space-3); padding: 20px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS / UTIL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.4s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-7) var(--gutter);
}
.legal-page h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
}
.legal-page h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  margin: var(--space-5) 0 var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.legal-page p { font-size: 16px; line-height: 1.7; margin-bottom: var(--space-3); color: var(--ink-soft); }
.legal-page strong { color: var(--ink); }

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


/* Animations au scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Header — ombre quand scrollé */
.header.scrolled { box-shadow: 0 2px 20px rgba(10,10,9,0.06); }

/* Hamburger button (mobile) */
.hamburger-btn { display: none; width: 40px; height: 40px; border-radius: 999px; align-items: center; justify-content: center; position: relative; }
.hamburger-btn:hover { background: var(--ivory-deep); }
.hamburger-btn span { display: block; position: absolute; width: 18px; height: 1.5px; background: var(--ink); transition: all .25s ease; }
.hamburger-btn span:nth-child(1) { top: 14px; }
.hamburger-btn span:nth-child(2) { top: 19px; }
.hamburger-btn span:nth-child(3) { top: 24px; }
.hamburger-btn[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger-btn[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile nav (overlay) */
.mobile-nav {
  position: fixed; inset: 0; background: var(--ivory); z-index: 49;
  padding: 100px var(--gutter) var(--gutter);
  transform: translateY(-100%); transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a { font-family: var(--display); font-weight: 500; font-size: 32px; letter-spacing: -0.02em; color: var(--ink); display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-nav a::after { content: "→"; opacity: 0.4; }
.mobile-nav .mobile-foot { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); display: grid; gap: 8px; }
.mobile-nav .mobile-foot a { font-size: 14px; font-family: var(--body); border: 0; padding: 4px 0; }
.mobile-nav .mobile-foot a::after { content: ""; }

@media (max-width: 900px) {
  .hamburger-btn { display: flex; }
  .nav { display: none; }
}

/* Skip-to-content (accessibilité) */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--ink); color: var(--ivory); padding: 8px 16px; z-index: 100; text-decoration: none; border-radius: 0 0 8px 0; font-size: 14px; font-weight: 600; }
.skip-link:focus { top: 0; }

/* Focus visible (accessibilité clavier) */
*:focus-visible { outline: 2px solid var(--rouge); outline-offset: 3px; border-radius: 4px; }

/* Reduced motion : on respecte les préférences système */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* ============================================================
   LPVS v4.1 — OVERRIDES couleurs (mai 2026)
   Suppression de tous les fonds noirs au profit de marron / crème.
   Charte appliquée : marron (kraft / kraft-deep), ivoire, ink uniquement
   pour le texte (jamais en fond plein).
   ============================================================ */

/* Topbar : bandeau scrolling */
.topbar { background: var(--kraft-deep); color: var(--ivory); }
.topbar-track span::before { color: var(--ivory); opacity: .55; }

/* Header / cart-pill */
.cart-pill { background: var(--kraft-deep); color: var(--ivory); padding: 8px 14px; }
.cart-pill:hover { background: #6f4621; transform: scale(1.04); }

/* Compact menu desktop */
.header-inner { padding: 14px var(--gutter); grid-template-columns: auto 1fr auto; }
.brand { font-size: 22px; }
.nav { gap: 28px; }
.nav a { font-size: 13px; }
.icon-btn { width: 36px; height: 36px; }
.icon-btn svg { width: 18px; height: 18px; }

/* Trust strip : gros bandeau "N°1 / 4.7/5 / 13h" */
.trust-strip { background: var(--kraft-deep); color: var(--ivory); }

/* Story section : la grande section Aesop-like */
.story { background: var(--ivory-deep); color: var(--ink); }
.story-text .quote, .story-text p { color: var(--ink-soft); }
.story-text h2 em { color: var(--kraft-deep); }

/* Cat-card homogeneisation : plus de fond noir, on uniformise sur ivoire */
.cat-card.dark { background: var(--kraft); color: var(--ivory); }
.cat-card.dark h3 { color: var(--ivory); }
.cat-card.dark .cat-count { background: var(--ivory); color: var(--ink); }
.cat-card.dark h3 svg { background: var(--ivory); color: var(--kraft-deep); }
.cat-card.dark p, .cat-card.dark span { color: var(--ivory); opacity: .92; }

/* Filter pills (Best Sellers / Promo / En stock) */
.filter-pill.active { background: var(--kraft-deep); color: var(--ivory); border-color: var(--kraft-deep); }
.filter-pill:hover { border-color: var(--kraft-deep); color: var(--kraft-deep); }

/* Product flag bestseller : pastille produit */
.product-flag.bestseller { background: var(--kraft-deep); color: var(--ivory); }

/* Commit cards (engagements / valeurs) */
.commit-card:hover { background: var(--kraft); color: var(--ivory); }
.commit-card:hover .commit-icon { background: var(--ivory); color: var(--kraft-deep); }

/* Review cards : avis client */
.review-card.dark { background: var(--ivory-deep); color: var(--ink); }
.review-card.dark .review-author { color: var(--kraft-deep); }
.review-card.dark .stars { color: var(--kraft-deep); }

/* Pro section : bandeau B2B */
.pro-section { background: var(--kraft); color: var(--ivory); }
.pro-section h2 em { color: var(--ivory); text-decoration: underline; text-decoration-color: var(--kraft-deep); }

/* FAQ toggle (petit bouton +/- a droite) */
.faq-item[open] .faq-toggle { background: var(--kraft-deep); color: var(--ivory); }

/* Footer : suppression du fond noir */
.footer { background: var(--kraft-deep); color: var(--ivory); }
.footer a { color: var(--ivory); opacity: .92; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer-tagline { color: var(--ivory); opacity: .75; }
.footer-bottom { border-top-color: rgba(245,242,236,.18); }

/* Bouton secondaire au hover : pas de fond noir */
.btn-secondary:hover { background: var(--kraft-deep); color: var(--ivory); border-color: var(--kraft-deep); }

/* Pages produits : fond noir des options actives */
.pd-option.active { border-color: var(--kraft-deep); background: var(--kraft-deep); color: var(--ivory); }
.pd-fav:hover { background: var(--kraft-deep); color: var(--ivory); }

/* Cart summary bouton promo */
.cart-summary .promo-input button { background: var(--kraft-deep); color: var(--ivory); }
.cart-summary .promo-input button:hover { background: #6f4621; }

/* Card produit : fond toujours ivoire (homogeneise carton vs papier bulle vs kit) */
.product-card { background: var(--ivory); color: var(--ink); }
.product-card.dark { background: var(--ivory); color: var(--ink); }

/* Page produit (single) : fond global ivoire, plus jamais sombre */
.pd-gallery, .pd-info, .pd-tabs, .pd-suggestions { background: var(--ivory); color: var(--ink); }

/* WooCommerce overrides : pas de fond sombre WooCommerce sur l'app cart */
.lpvs-cart .woocommerce-cart-form, .cart-collaterals { background: var(--ivory); color: var(--ink); }

/* Skip-link : on garde pas en noir mais en kraft-deep si visible */
.skip-link.lpvs-skip-link { background: var(--kraft-deep); color: var(--ivory); }

/* Hero : si le hero avait un overlay sombre, l'eclaircir */
.hero { background: var(--ivory); }

/* End overrides */

/* ============================================================
   LPVS v4.1.2 — Overrides ULTRA spécifiques (mai 2026)
   - Header encore plus compact
   - Hamburger visible mobile, masqué desktop
   - WooCommerce buttons en couleur du site
   - Cat-card homogène (plus aucune carte sombre)
   ============================================================ */

/* Header compact 2.0 — spécificité forcée via body class */
body.lpvs-redesign-v4 .header-inner {
  padding: 10px var(--gutter) !important;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
}
body.lpvs-redesign-v4 .brand { font-size: 20px; }
body.lpvs-redesign-v4 .nav { gap: 22px; }
body.lpvs-redesign-v4 .nav a { font-size: 12.5px; letter-spacing: .01em; padding: 2px 0; }
body.lpvs-redesign-v4 .icon-btn { width: 34px; height: 34px; }
body.lpvs-redesign-v4 .icon-btn svg { width: 17px; height: 17px; }
body.lpvs-redesign-v4 .cart-pill { padding: 7px 12px; font-size: 12.5px; gap: 6px; }
body.lpvs-redesign-v4 .topbar { height: 30px; font-size: 11.5px; }

/* Hamburger / menu mobile : visible mobile, masqué desktop */
.lpvs-menu-toggle { display: none; }
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .nav { display: none !important; }
  body.lpvs-redesign-v4 .lpvs-menu-toggle { display: inline-flex !important; }
  body.lpvs-redesign-v4 .header-inner { grid-template-columns: auto 1fr auto; }
  body.lpvs-redesign-v4 .lpvs-cart-label { display: none; }
}
@media (min-width: 1025px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle { display: none !important; }
}

/* Mobile nav overlay */
body.lpvs-redesign-v4 .mobile-nav {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 1000;
  padding: 80px 24px 32px;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  visibility: hidden;
}
body.lpvs-redesign-v4 .mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}
body.lpvs-redesign-v4 .mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--ivory-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
body.lpvs-redesign-v4 .mobile-nav ul,
body.lpvs-redesign-v4 .mobile-nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
body.lpvs-redesign-v4 .mobile-nav li a,
body.lpvs-redesign-v4 .mobile-nav-list li a {
  display: block;
  padding: 14px 8px;
  font-size: 18px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
body.lpvs-redesign-v4 .mobile-nav li a:hover { color: var(--kraft-deep); }
body.lpvs-redesign-v4 .mobile-foot {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: var(--text-3);
}
body.lpvs-redesign-v4 .mobile-foot a {
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}

/* Cat-card homogénéisée : toutes en ivoire */
body.lpvs-redesign-v4 .cat-card,
body.lpvs-redesign-v4 .cat-card.dark,
body.lpvs-redesign-v4 .cat-card.feature {
  background: var(--ivory) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
body.lpvs-redesign-v4 .cat-card:hover,
body.lpvs-redesign-v4 .cat-card.dark:hover,
body.lpvs-redesign-v4 .cat-card.feature:hover {
  border-color: var(--kraft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(140, 90, 46, 0.12);
}
body.lpvs-redesign-v4 .cat-card h3,
body.lpvs-redesign-v4 .cat-card.dark h3 { color: var(--ink) !important; }
body.lpvs-redesign-v4 .cat-card p,
body.lpvs-redesign-v4 .cat-card span,
body.lpvs-redesign-v4 .cat-card.dark p,
body.lpvs-redesign-v4 .cat-card.dark span { color: var(--ink-soft) !important; opacity: 1; }
body.lpvs-redesign-v4 .cat-card .cat-count,
body.lpvs-redesign-v4 .cat-card.dark .cat-count {
  background: var(--kraft) !important;
  color: var(--ivory) !important;
}
body.lpvs-redesign-v4 .cat-card h3 svg,
body.lpvs-redesign-v4 .cat-card.dark h3 svg {
  background: var(--kraft) !important;
  color: var(--ivory) !important;
}

/* WooCommerce — boutons add to cart, button général, checkout button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce .single_add_to_cart_button,
.woocommerce .add_to_cart_button,
.wc-block-components-button,
button.checkout-button,
.checkout-button.button.alt,
.woocommerce-cart .checkout-button,
.woocommerce .button.alt {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  padding: 12px 28px !important;
  border: 1px solid var(--kraft-deep) !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease !important;
  text-transform: none !important;
  font-family: var(--body) !important;
  box-shadow: 0 4px 12px rgba(140, 90, 46, 0.18) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .add_to_cart_button:hover,
.wc-block-components-button:hover,
button.checkout-button:hover,
.checkout-button.button.alt:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce .button.alt:hover {
  background: #6f4621 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(140, 90, 46, 0.28) !important;
}

/* WooCommerce update cart / coupon button (secondaire) */
.woocommerce button[name="update_cart"],
.woocommerce button[name="apply_coupon"] {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.woocommerce button[name="update_cart"]:hover,
.woocommerce button[name="apply_coupon"]:hover {
  background: var(--ink) !important;
  color: var(--ivory) !important;
}

/* WooCommerce notices / messages */
.woocommerce-message, .woocommerce-info { border-top-color: var(--kraft-deep) !important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--kraft-deep) !important; }
.woocommerce-error { border-top-color: var(--rouge) !important; }

/* Quantity picker */
.woocommerce .quantity input.qty {
  border-radius: 8px !important;
  padding: 8px 4px !important;
  border: 1px solid var(--line) !important;
}

/* Liens / titres produits sur catalogue Woo */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink) !important;
}
.woocommerce ul.products li.product .price ins {
  color: var(--kraft-deep) !important;
  font-weight: 700;
}

/* Filter pills sur catalogue */
body.lpvs-redesign-v4 .filter-pill {
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
}
body.lpvs-redesign-v4 .filter-pill:hover { border-color: var(--kraft-deep); color: var(--kraft-deep); }
body.lpvs-redesign-v4 .filter-pill.active {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border-color: var(--kraft-deep) !important;
}

/* Product flag bestseller : pastille */
body.lpvs-redesign-v4 .product-flag,
body.lpvs-redesign-v4 .product-flag.bestseller,
body.lpvs-redesign-v4 .pd-flag {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}
body.lpvs-redesign-v4 .product-flag.eco { background: var(--kraft) !important; }
body.lpvs-redesign-v4 .product-flag.new { background: var(--bleu) !important; }

/* End v4.1.2 overrides */

/* ============================================================
   LPVS v4.1.3 — Fix menu desktop (dropdowns) + mobile
   Reset complet ul/li, dropdowns hover, nav vraiment compact.
   ============================================================ */

/* Reset list-style sur tous les niveaux du menu */
body.lpvs-redesign-v4 .nav-wrap,
body.lpvs-redesign-v4 .nav-wrap ul,
body.lpvs-redesign-v4 .nav,
body.lpvs-redesign-v4 .nav ul,
body.lpvs-redesign-v4 .nav li,
body.lpvs-redesign-v4 .mobile-nav ul,
body.lpvs-redesign-v4 .mobile-nav li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
body.lpvs-redesign-v4 .nav li::before,
body.lpvs-redesign-v4 .nav li::marker,
body.lpvs-redesign-v4 .mobile-nav li::before,
body.lpvs-redesign-v4 .mobile-nav li::marker { content: none !important; display: none !important; }

/* Menu desktop : ligne unique horizontale */
body.lpvs-redesign-v4 .nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.lpvs-redesign-v4 .nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: nowrap;
}
body.lpvs-redesign-v4 .nav > li {
  position: relative;
  display: inline-flex;
  align-items: center;
}
body.lpvs-redesign-v4 .nav > li > a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding: 18px 0;
  display: inline-block;
  position: relative;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
body.lpvs-redesign-v4 .nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 0;
  height: 1.5px;
  background: var(--kraft-deep);
  transition: width 0.25s cubic-bezier(.4, 0, .2, 1);
}
body.lpvs-redesign-v4 .nav > li:hover > a::after,
body.lpvs-redesign-v4 .nav > li.current-menu-item > a::after,
body.lpvs-redesign-v4 .nav > li > a.active::after { width: 100%; }

/* Indicateur chevron pour les items à enfants */
body.lpvs-redesign-v4 .nav > li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg) translateY(-2px);
  margin-right: 6px;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity .2s ease, transform .2s ease;
  position: relative;
  top: -2px;
  order: 2; /* après le texte */
}
/* L'astuce flex order : le chevron vient APRÈS le texte */
body.lpvs-redesign-v4 .nav > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Dropdown : sous-menu au survol */
body.lpvs-redesign-v4 .nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 240px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(10, 10, 9, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.lpvs-redesign-v4 .nav > li:hover > .sub-menu,
body.lpvs-redesign-v4 .nav > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease;
}
body.lpvs-redesign-v4 .nav .sub-menu li {
  display: block;
}
body.lpvs-redesign-v4 .nav .sub-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.3;
}
body.lpvs-redesign-v4 .nav .sub-menu li a:hover,
body.lpvs-redesign-v4 .nav .sub-menu li.current-menu-item a {
  background: var(--ivory-deep);
  color: var(--kraft-deep);
}

/* Header pas trop écrasé : laisse de l'air */
body.lpvs-redesign-v4 .header-inner {
  padding: 0 var(--gutter) !important;
  min-height: 64px;
  align-items: center;
}
body.lpvs-redesign-v4 .brand {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}

/* Mobile : hamburger visible, dropdowns en accordéon */
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .nav,
  body.lpvs-redesign-v4 .nav-wrap { display: none !important; }
  body.lpvs-redesign-v4 .lpvs-menu-toggle { display: inline-flex !important; }

  body.lpvs-redesign-v4 .mobile-nav .sub-menu {
    display: block;
    padding: 0 0 0 16px;
    margin-top: 4px;
    border-left: 2px solid var(--ivory-deep);
  }
  body.lpvs-redesign-v4 .mobile-nav .sub-menu li a {
    font-size: 15px;
    font-family: var(--body);
    font-weight: 400;
    padding: 10px 8px;
    color: var(--ink-soft);
    border-bottom: none;
  }
}

/* Desktop ≥ 1025px : hamburger caché */
@media (min-width: 1025px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle { display: none !important; }
}

/* End v4.1.3 menu fix */

/* ============================================================
   LPVS v4.1.4 — Logo size + mobile menu fix
   - Logo cap max-height
   - Hamburger menu mobile robuste (Astra-proof)
   - Cart pill + actions adaptés à la nouvelle hauteur du header
   ============================================================ */

/* Logo : contrainte stricte de taille */
body.lpvs-redesign-v4 .brand img,
body.lpvs-redesign-v4 .brand-logo,
body.lpvs-redesign-v4 .custom-logo,
body.lpvs-redesign-v4 .header .brand img,
body.lpvs-redesign-v4 .ast-site-identity img.custom-logo {
  max-height: 44px !important;
  height: auto !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain;
}
body.lpvs-redesign-v4 .brand {
  max-height: 48px;
  display: inline-flex;
  align-items: center;
}

/* Hauteur header recalibrée */
body.lpvs-redesign-v4 .header-inner {
  min-height: 70px !important;
  padding: 8px var(--gutter) !important;
}

/* === Hamburger / menu mobile : forcé visible === */
body.lpvs-redesign-v4 .lpvs-menu-toggle {
  border: 1px solid var(--line) !important;
  background: var(--ivory) !important;
  border-radius: 999px !important;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
body.lpvs-redesign-v4 .lpvs-menu-toggle:hover {
  background: var(--ivory-deep) !important;
  border-color: var(--kraft) !important;
}
body.lpvs-redesign-v4 .lpvs-menu-toggle svg {
  width: 22px !important;
  height: 22px !important;
  stroke: var(--ink) !important;
  stroke-width: 2 !important;
}

/* Visibility règles */
@media (min-width: 1025px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle { display: none !important; }
  body.lpvs-redesign-v4 .nav,
  body.lpvs-redesign-v4 .nav-wrap { display: flex !important; }
}
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.lpvs-redesign-v4 .nav,
  body.lpvs-redesign-v4 .nav-wrap > .nav,
  body.lpvs-redesign-v4 .nav-wrap { display: none !important; }
  body.lpvs-redesign-v4 .header-inner {
    grid-template-columns: auto 1fr auto !important;
    min-height: 60px !important;
  }
  body.lpvs-redesign-v4 .lpvs-cart-label { display: none !important; }
  body.lpvs-redesign-v4 .header-actions { gap: 6px !important; }
  body.lpvs-redesign-v4 .icon-btn { width: 38px !important; height: 38px !important; }
  body.lpvs-redesign-v4 .brand img,
  body.lpvs-redesign-v4 .brand-logo { max-height: 36px !important; max-width: 120px !important; }
  body.lpvs-redesign-v4 .topbar { font-size: 10.5px !important; height: 28px !important; padding: 0 8px; }
}

/* Mobile nav overlay : robuste */
body.lpvs-redesign-v4 .mobile-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ivory) !important;
  z-index: 9999 !important;
  padding: 80px 20px 32px !important;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  visibility: hidden;
  display: block !important;
}
body.lpvs-redesign-v4 .mobile-nav.open {
  transform: translateY(0) !important;
  visibility: visible !important;
}
body.lpvs-redesign-v4 .mobile-nav-close {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ivory-deep) !important;
  border: 1px solid var(--line) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
}
body.lpvs-redesign-v4 .mobile-nav-close:hover { background: var(--kraft) !important; color: var(--ivory) !important; }
body.lpvs-redesign-v4 .mobile-nav-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  stroke-width: 2;
}
body.lpvs-redesign-v4 .mobile-nav .menu,
body.lpvs-redesign-v4 .mobile-nav .mobile-nav-list,
body.lpvs-redesign-v4 .mobile-nav > ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 0;
}
body.lpvs-redesign-v4 .mobile-nav li {
  list-style: none !important;
  border-bottom: 1px solid var(--line-soft);
}
body.lpvs-redesign-v4 .mobile-nav li::marker,
body.lpvs-redesign-v4 .mobile-nav li::before { content: none !important; display: none !important; }
body.lpvs-redesign-v4 .mobile-nav li a {
  display: block !important;
  padding: 16px 8px !important;
  font-size: 17px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
body.lpvs-redesign-v4 .mobile-nav li a:hover { color: var(--kraft-deep); }
body.lpvs-redesign-v4 .mobile-nav .sub-menu {
  display: block !important;
  padding: 0 0 12px 16px !important;
  margin-top: -4px !important;
  border-left: 2px solid var(--ivory-deep);
  list-style: none !important;
}
body.lpvs-redesign-v4 .mobile-nav .sub-menu li {
  border-bottom: none !important;
}
body.lpvs-redesign-v4 .mobile-nav .sub-menu li a {
  font-size: 14px !important;
  font-family: var(--body) !important;
  font-weight: 400 !important;
  padding: 10px 8px !important;
  color: var(--ink-soft) !important;
}
body.lpvs-redesign-v4 .mobile-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
body.lpvs-redesign-v4 .mobile-foot a {
  display: block;
  padding: 10px 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
}

/* Astra peut imposer son own hamburger : on le neutralise */
body.lpvs-redesign-v4 .ast-mobile-menu-buttons,
body.lpvs-redesign-v4 .ast-button-wrap,
body.lpvs-redesign-v4 .menu-toggle.ast-mobile-menu-buttons-fill {
  display: none !important;
}

/* End v4.1.4 */

/* ============================================================
   LPVS v4.1.5 — Patch WooCommerce complet + chasse aux fonds noirs
   Charte : noir = TEXTE only. Aucun fond noir.
   ============================================================ */

/* 1. Re-force tous les fonds qui peuvent encore etre noirs ----- */
body .topbar,
body .footer,
body .pro-section,
body .story { background: var(--kraft-deep) !important; color: var(--ivory) !important; }

body .btn-primary,
body .cart-pill,
body .filter-pill.active,
body .step-num,
body .commit-card:hover,
body .faq-item[open] .faq-toggle { background: var(--kraft-deep) !important; color: var(--ivory) !important; border-color: var(--kraft-deep) !important; }

body .btn-primary:hover,
body .cart-pill:hover { background: #6f4621 !important; }

body .nav a::after,
body .hero-eyebrow::before,
body .section-head .eyebrow::before,
body .cat-card h3 svg { background: var(--kraft-deep) !important; }

body .btn-secondary { color: var(--kraft-deep) !important; border-color: var(--kraft-deep) !important; }
body .btn-secondary:hover { background: var(--kraft-deep) !important; color: var(--ivory) !important; }

body ::selection { background: var(--kraft) !important; color: var(--ivory) !important; }

/* Story et review-card : ivoire au lieu de noir */
body .story { background: var(--ivory-deep) !important; color: var(--ink) !important; }
body .story .quote, body .story p { color: var(--ink-soft) !important; }
body .review-card.dark { background: var(--ivory-deep) !important; color: var(--ink) !important; }

/* Cat-card : homogeneise */
body .cat-card,
body .cat-card.dark,
body .cat-card.feature {
  background: var(--ivory) !important;
  color: var(--ink) !important;
}
body .cat-card.dark h3,
body .cat-card.dark p,
body .cat-card.dark span { color: var(--ink) !important; }
body .cat-card.dark .cat-count,
body .cat-card.dark h3 svg { background: var(--kraft) !important; color: var(--ivory) !important; }

/* 2. WooCommerce - boutons pill marron foncé partout ---------- */
body.woocommerce a.button,
body.woocommerce button.button,
body.woocommerce input.button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .woocommerce a.button.alt,
body .woocommerce button.button.alt,
body .add_to_cart_button,
body .single_add_to_cart_button,
body .checkout-button,
body .wc-block-cart__submit-button,
body .wp-block-woocommerce-checkout-actions-block .wc-block-components-button,
body .wc-block-components-button,
body .woocommerce-cart .checkout-button {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border: 1px solid var(--kraft-deep) !important;
  border-radius: 999px !important;
  padding: 13px 26px !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
  font-family: var(--body) !important;
  box-shadow: 0 4px 12px rgba(140, 90, 46, 0.18) !important;
  transition: background .25s, transform .15s, box-shadow .2s !important;
}
body.woocommerce a.button:hover,
body.woocommerce button.button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .add_to_cart_button:hover,
body .single_add_to_cart_button:hover,
body .checkout-button:hover,
body .wc-block-cart__submit-button:hover,
body .wc-block-components-button:hover {
  background: #6f4621 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(140, 90, 46, 0.28) !important;
}

/* Bouton "Mettre à jour le panier" / "Apply coupon" : secondaire transparent */
body .woocommerce button[name="update_cart"],
body .woocommerce button[name="apply_coupon"] {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  box-shadow: none !important;
}
body .woocommerce button[name="update_cart"]:hover,
body .woocommerce button[name="apply_coupon"]:hover {
  background: var(--ink) !important;
  color: var(--ivory) !important;
}

/* 3. Cards produit Woo (boutique + catégories) --------------- */
body .woocommerce ul.products li.product {
  background: var(--ivory) !important;
  border-radius: 16px !important;
  padding: 18px !important;
  border: 1px solid var(--line-soft) !important;
  transition: border-color .2s, transform .25s, box-shadow .25s !important;
}
body .woocommerce ul.products li.product:hover {
  border-color: var(--kraft) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(140, 90, 46, 0.10);
}
body .woocommerce ul.products li.product .price,
body .woocommerce ul.products li.product .price ins,
body .woocommerce div.product p.price ins,
body .woocommerce div.product span.price ins {
  color: var(--kraft-deep) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
body .woocommerce ul.products li.product .price del,
body .woocommerce div.product p.price del,
body .woocommerce div.product span.price del {
  color: rgba(10, 10, 9, 0.42) !important;
  font-weight: 400 !important;
}
body .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink) !important;
  font-weight: 600 !important;
  font-family: var(--display) !important;
}

/* 4. Badges promo / onsale Woo -------------------------------- */
body .woocommerce span.onsale,
body .woocommerce ul.products li.product .onsale {
  background: var(--kraft) !important;
  color: var(--ivory) !important;
  border-radius: 999px !important;
  padding: 5px 12px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  border: none !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
}

/* 5. Étoiles --------------------------------------------------- */
body .woocommerce .star-rating::before,
body .woocommerce .star-rating span::before { color: var(--kraft) !important; }

/* 6. Notices Woo (succès / info / erreur) -------------------- */
body .woocommerce-message,
body .woocommerce-info {
  border-top-color: var(--kraft-deep) !important;
  background: var(--ivory-deep) !important;
  color: var(--ink) !important;
}
body .woocommerce-message::before { color: var(--kraft-deep) !important; }
body .woocommerce-info { border-top-color: var(--bleu) !important; }
body .woocommerce-info::before { color: var(--bleu) !important; }
body .woocommerce-error {
  border-top-color: var(--rouge) !important;
  background: var(--ivory-deep) !important;
  color: var(--ink) !important;
}

/* 7. Quantity input ------------------------------------------- */
body .woocommerce .quantity input.qty,
body .woocommerce-page .quantity input.qty {
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: var(--ivory) !important;
  color: var(--ink) !important;
  padding: 10px 12px !important;
  width: 80px !important;
  text-align: center !important;
}

/* 8. Onglets fiche produit ------------------------------------ */
body .woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--line) !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}
body .woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
body .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
body .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 22px !important;
  color: var(--ink-soft) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  font-size: 13px !important;
  border-bottom: 2px solid transparent !important;
  display: inline-block;
}
body .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--kraft-deep) !important;
  border-bottom-color: var(--kraft-deep) !important;
}
body .woocommerce div.product .woocommerce-tabs .panel {
  background: var(--ivory) !important;
  padding: 28px 0 !important;
  color: var(--ink) !important;
}

/* 9. Breadcrumb ----------------------------------------------- */
body .woocommerce .woocommerce-breadcrumb,
body nav.woocommerce-breadcrumb {
  color: var(--ink-soft) !important;
  font-size: 13px !important;
}
body .woocommerce .woocommerce-breadcrumb a { color: var(--kraft-deep) !important; }
body .woocommerce .woocommerce-breadcrumb a:hover { color: #6f4621 !important; }

/* 10. Pagination ---------------------------------------------- */
body .woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 6px;
  justify-content: center;
}
body .woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 !important;
}
body .woocommerce nav.woocommerce-pagination ul li a,
body .woocommerce nav.woocommerce-pagination ul li span {
  background: var(--ivory-deep) !important;
  color: var(--ink) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  border: 1px solid var(--line) !important;
  display: inline-block;
}
body .woocommerce nav.woocommerce-pagination ul li span.current,
body .woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border-color: var(--kraft-deep) !important;
}

/* 11. Sidebar / widgets --------------------------------------- */
body .woocommerce .widget,
body aside.widget-area .widget,
body .ast-woocommerce-container .widget {
  background: var(--ivory-deep) !important;
  border-radius: 16px !important;
  padding: 22px !important;
  margin-bottom: 22px !important;
  border: 1px solid var(--line-soft) !important;
}
body .woocommerce .widget h2,
body aside.widget-area .widget .widget-title,
body .ast-woocommerce-container .widget .widget-title {
  color: var(--kraft-deep) !important;
  font-weight: 700 !important;
  font-family: var(--display) !important;
}

/* 12. Cart / panier ------------------------------------------- */
body .woocommerce table.shop_table,
body .woocommerce-cart-form .shop_table {
  background: var(--ivory) !important;
  border-radius: 16px !important;
  border: 1px solid var(--line) !important;
  overflow: hidden;
}
body .woocommerce table.shop_table th {
  background: var(--ivory-deep) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line) !important;
}
body .woocommerce table.shop_table td {
  border-top: 1px solid var(--line-soft) !important;
}
body .woocommerce-cart .cart-collaterals .cart_totals {
  background: var(--ivory-deep) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  border: 1px solid var(--line) !important;
}
body .woocommerce-cart .cart_totals h2 { color: var(--kraft-deep) !important; }
body .woocommerce form .form-row .input-text,
body .woocommerce-page form .form-row .input-text,
body .woocommerce input[type="text"],
body .woocommerce input[type="email"],
body .woocommerce input[type="tel"],
body .woocommerce input[type="number"],
body .woocommerce textarea {
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  background: var(--ivory) !important;
  padding: 12px 14px !important;
  color: var(--ink) !important;
}
body .woocommerce input:focus,
body .woocommerce textarea:focus { border-color: var(--kraft) !important; outline: none !important; }

/* 13. My Account ---------------------------------------------- */
body .woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  background: var(--ivory-deep) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--line-soft) !important;
}
body .woocommerce-account .woocommerce-MyAccount-navigation ul li { border-bottom: 1px solid var(--line-soft) !important; }
body .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 14px 18px !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}
body .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
body .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
}
body .woocommerce-account form.login,
body .woocommerce-account form.register {
  background: var(--ivory-deep) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  border: 1px solid var(--line-soft) !important;
}

/* 14. Hero / topbar texte plus lisible sur kraft-deep --------- */
body .topbar { color: var(--ivory) !important; }
body .topbar-track span::before { color: var(--ivory) !important; opacity: .55; }
body .footer-bottom { color: rgba(245, 242, 236, 0.65) !important; }

/* 15. Single product page : suppression fonds noirs résiduels - */
body.single-product .product { background: var(--ivory) !important; }
body.single-product .product .images { background: transparent !important; }
body.single-product .product .summary { color: var(--ink) !important; }

/* 16. Boutons Astra par défaut (theme parent fallback) -------- */
body .ast-button,
body .ast-custom-button,
body button:not(.lpvs-cookie-btn):not(.icon-btn):not(.lpvs-menu-toggle):not(.mobile-nav-close):not([class*="elementor"]):not([class*="rank-math"]):not([class*="cmplz"]) {
  /* Par defaut WP/Astra : on neutralise les boutons noirs sauvages */
}
body input[type="submit"]:not([class*="elementor"]):not([class*="cmplz"]) {
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  border: none !important;
  font-weight: 600 !important;
  letter-spacing: -.01em;
  cursor: pointer;
}

/* 17. Astra Pro : single-product layout natif -------------------- */
body .ast-woocommerce-container,
body.woocommerce-cart .ast-woocommerce-container,
body.single-product .ast-woocommerce-container {
  background: var(--ivory) !important;
}

/* 18. Variations / select WooCommerce ------------------------- */
body .woocommerce div.product form.cart .variations select,
body .woocommerce select {
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  background: var(--ivory) !important;
  color: var(--ink) !important;
}

/* End v4.1.5 patch WooCommerce */

/* ============================================================
   LPVS v4.1.6 — Qualité d'image
   ============================================================ */

/* Optimisation rendu images (anti-floutage sur upscale CSS) */
body.lpvs-redesign-v4 .product-image img,
body.lpvs-redesign-v4 .cat-card img,
body.lpvs-redesign-v4 .hero-visual img,
body.lpvs-redesign-v4 .story-visual img,
body.lpvs-redesign-v4 .pd-main img,
body.lpvs-redesign-v4 .product-card img,
body.lpvs-redesign-v4 .woocommerce ul.products li.product img,
body.lpvs-redesign-v4 .woocommerce div.product .images img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); /* GPU compositing pour rendu plus net */
}

/* Container produits qui contient les images : object-fit pour garder le ratio */
body.lpvs-redesign-v4 .product-image,
body.lpvs-redesign-v4 .pd-main {
  background: var(--ivory);
  overflow: hidden;
}
body.lpvs-redesign-v4 .product-image img,
body.lpvs-redesign-v4 .pd-main img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 480px;
}

/* Hero : image principale grand format */
body.lpvs-redesign-v4 .hero-visual img {
  object-fit: contain;
  max-height: 560px;
  width: auto;
  height: auto;
}

/* Cat-cards : images des catégories en plein cadre */
body.lpvs-redesign-v4 .cat-card .cat-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--ivory-deep);
  padding: 24px;
}

/* End v4.1.6 */

/* ============================================================
   LPVS v4.1.7 — Page Professionnels (template propre, charte respectée)
   ============================================================ */

body.lpvs-redesign-v4 .pro-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .pro-cards-grid { grid-template-columns: 1fr; }
}

body.lpvs-redesign-v4 .pro-card {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.lpvs-redesign-v4 .pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(140, 90, 46, 0.12);
  border-color: var(--kraft);
}
body.lpvs-redesign-v4 .pro-card-light {
  background: var(--ivory-deep);
  color: var(--ink);
}
body.lpvs-redesign-v4 .pro-card-feature {
  background: linear-gradient(160deg, var(--kraft-deep), #6f4621);
  color: var(--ivory);
  border: none;
}
body.lpvs-redesign-v4 .pro-card-feature:hover {
  box-shadow: 0 20px 50px rgba(140, 90, 46, 0.32);
}

body.lpvs-redesign-v4 .pro-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
body.lpvs-redesign-v4 .pro-card-icon-kraft {
  background: var(--kraft-deep);
  color: var(--ivory);
}
body.lpvs-redesign-v4 .pro-card-icon-light {
  background: var(--ivory);
  color: var(--kraft-deep);
}

body.lpvs-redesign-v4 .pro-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ivory);
  color: var(--kraft-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.lpvs-redesign-v4 .pro-card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
body.lpvs-redesign-v4 .pro-card-feature .pro-card-title { color: var(--ivory); }

body.lpvs-redesign-v4 .pro-card-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
body.lpvs-redesign-v4 .pro-card-light .pro-card-desc { color: var(--ink-soft); }
body.lpvs-redesign-v4 .pro-card-feature .pro-card-desc { color: rgba(245, 242, 236, 0.86); }

body.lpvs-redesign-v4 .pro-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
body.lpvs-redesign-v4 .pro-card-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
}
body.lpvs-redesign-v4 .pro-card-list li::marker { content: none; }
body.lpvs-redesign-v4 .pro-card-list li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
body.lpvs-redesign-v4 .pro-card-light .pro-card-list li .dot { background: var(--kraft-deep); }
body.lpvs-redesign-v4 .pro-card-feature .pro-card-list li .dot { background: var(--ivory); }

/* Section devis pro : fond crème (plus jamais noir) */
body.lpvs-redesign-v4 .pro-quote-section {
  background: var(--ivory-deep);
  border-radius: 24px;
  padding: 48px;
  margin-top: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .pro-quote-section { padding: 28px; }
}
body.lpvs-redesign-v4 .pro-quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .pro-quote-inner { grid-template-columns: 1fr; gap: 36px; }
}
body.lpvs-redesign-v4 .pro-quote-text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
body.lpvs-redesign-v4 .pro-quote-text h2 em { color: var(--kraft-deep); font-style: italic; }
body.lpvs-redesign-v4 .pro-quote-text > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
body.lpvs-redesign-v4 .pro-quote-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}
body.lpvs-redesign-v4 .pro-quote-mail {
  color: var(--kraft-deep);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1.5px solid var(--kraft);
  padding: 8px 0;
}
body.lpvs-redesign-v4 .pro-quote-mail:hover { color: #6f4621; }

body.lpvs-redesign-v4 .pro-quote-form {
  background: var(--ivory);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
}
body.lpvs-redesign-v4 .pro-quote-form h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--ink);
}
body.lpvs-redesign-v4 .pro-quote-fallback {
  background: var(--ivory-deep);
  padding: 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px dashed var(--line);
}

/* Format de breadcrumb minimaliste pour les page-templates */
body.lpvs-redesign-v4 .page-header .breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}
body.lpvs-redesign-v4 .page-header .breadcrumb a { color: var(--kraft-deep); }
body.lpvs-redesign-v4 .page-header .breadcrumb span:not(:last-child)::after {
  content: " ›";
  margin-left: 6px;
  color: var(--text-3);
}

/* End v4.1.7 */

/* ============================================================
   LPVS v4.2.1 — Hamburger 3 traits (vraiment visible) +
   Form contact + Blog footer + autres fixes
   ============================================================ */

/* Hamburger 3 traits — solide, visible, animé */
body.lpvs-redesign-v4 .lpvs-burger {
  display: inline-flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  pointer-events: none;
}
body.lpvs-redesign-v4 .lpvs-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .15s;
}
body.lpvs-redesign-v4 .lpvs-menu-toggle[aria-expanded="true"] .lpvs-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.lpvs-redesign-v4 .lpvs-menu-toggle[aria-expanded="true"] .lpvs-burger span:nth-child(2) { opacity: 0; }
body.lpvs-redesign-v4 .lpvs-menu-toggle[aria-expanded="true"] .lpvs-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sur mobile, bouton hamburger plus mis en évidence */
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    border: 1.5px solid var(--ink) !important;
    background: var(--ivory) !important;
  }
  body.lpvs-redesign-v4 .lpvs-burger { width: 20px; height: 14px; }
  body.lpvs-redesign-v4 .lpvs-burger span { background: var(--ink); height: 2px; }
}

/* Contact form natif — fond ivoire, fields propres */
body.lpvs-redesign-v4 .lpvs-contact-form {
  background: var(--ivory);
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  padding: 32px;
}
body.lpvs-redesign-v4 .lpvs-contact-form h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 20px;
}
body.lpvs-redesign-v4 .lpvs-contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  body.lpvs-redesign-v4 .lpvs-contact-form .field-row { grid-template-columns: 1fr; }
}
body.lpvs-redesign-v4 .lpvs-contact-form .field { margin-bottom: 16px; }
body.lpvs-redesign-v4 .lpvs-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
body.lpvs-redesign-v4 .lpvs-contact-form input,
body.lpvs-redesign-v4 .lpvs-contact-form select,
body.lpvs-redesign-v4 .lpvs-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
body.lpvs-redesign-v4 .lpvs-contact-form input:focus,
body.lpvs-redesign-v4 .lpvs-contact-form select:focus,
body.lpvs-redesign-v4 .lpvs-contact-form textarea:focus {
  outline: none;
  border-color: var(--kraft-deep);
  box-shadow: 0 0 0 3px rgba(140, 90, 46, 0.15);
}
body.lpvs-redesign-v4 .lpvs-contact-form textarea { min-height: 140px; resize: vertical; }
body.lpvs-redesign-v4 .lpvs-contact-form button[type="submit"] {
  background: var(--kraft-deep);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
body.lpvs-redesign-v4 .lpvs-contact-form button[type="submit"]:hover {
  background: #6f4621;
  transform: translateY(-1px);
}

/* Notifications après soumission */
.lpvs-contact-notice {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.lpvs-contact-notice.success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #166534;
}
.lpvs-contact-notice.error {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #991b1b;
}

/* End v4.2.1 */

/* ============================================================
   LPVS v4.2.2 — Header icons toujours visibles (anti-WP Rocket RUCSS)
   Spécificité maximale pour empêcher la suppression "unused CSS".
   ============================================================ */

body.lpvs-redesign-v4 .header-actions .icon-btn,
body.lpvs-redesign-v4 .header-actions .lpvs-menu-toggle,
body.lpvs-redesign-v4 .header-actions a.icon-btn {
  color: #0A0A09 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px;
  min-height: 36px;
  visibility: visible !important;
  opacity: 1 !important;
}
body.lpvs-redesign-v4 .header-actions svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  fill: none !important;
}
body.lpvs-redesign-v4 .header-actions svg line,
body.lpvs-redesign-v4 .header-actions svg path,
body.lpvs-redesign-v4 .header-actions svg circle {
  stroke: #0A0A09 !important;
}
body.lpvs-redesign-v4 .cart-pill svg line,
body.lpvs-redesign-v4 .cart-pill svg path,
body.lpvs-redesign-v4 .cart-pill svg circle {
  stroke: #F5F2EC !important;
}

/* End v4.2.2 */

/* ============================================================
   LPVS v4.2.4 — Bouton "MENU" mobile + CTA Pro propre
   ============================================================ */

/* Bouton menu : visible uniquement sur mobile */
@media (min-width: 1025px) {
  body.lpvs-redesign-v4 .lpvs-menu-text-btn { display: none !important; }
}
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .lpvs-menu-text-btn {
    display: inline-flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.lpvs-redesign-v4 .lpvs-menu-text-btn:hover {
    background: #ECE7DC !important;
    border-color: #8C5A2E !important;
  }
}

/* CTA pro quand pas de form CF7 */
body.lpvs-redesign-v4 .pro-quote-form .pro-quote-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--ivory-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
body.lpvs-redesign-v4 .pro-quote-form h3 {
  margin-bottom: 10px;
}
body.lpvs-redesign-v4 .pro-quote-cta-text {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
body.lpvs-redesign-v4 .pro-quote-cta-btn {
  width: 100%;
  justify-content: center;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 28px !important;
}
body.lpvs-redesign-v4 .pro-quote-cta-mail {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  text-align: center;
}
body.lpvs-redesign-v4 .pro-quote-cta-mail a {
  color: var(--kraft-deep);
  font-weight: 600;
  text-decoration: underline;
}

/* End v4.2.4 */

/* ============================================================
   LPVS v4.2.5 — Bouton Menu mobile (texte) + images cliquables
   ============================================================ */

/* On retire la contrainte 44×44 héritée des règles précédentes */
@media (max-width: 1024px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle.lpvs-menu-text-btn {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 9px 16px !important;
    border-radius: 999px !important;
    border: 1.5px solid #0A0A09 !important;
    background: #F5F2EC !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}
@media (min-width: 1025px) {
  body.lpvs-redesign-v4 .lpvs-menu-toggle.lpvs-menu-text-btn { display: none !important; }
}

/* Hero image clickable : feedback visuel */
body.lpvs-redesign-v4 .hero-visual a {
  display: block;
  cursor: pointer;
}
body.lpvs-redesign-v4 .hero-visual a img {
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
body.lpvs-redesign-v4 .hero-visual a:hover img {
  transform: scale(1.03);
}

/* End v4.2.5 */

/* ============================================================
   LPVS v4.3.0 — Upsells panier "Complète ta commande"
   ============================================================ */

body.woocommerce-cart .lpvs-upsells,
body .lpvs-upsells {
  background: var(--ivory-deep);
  border-radius: 20px;
  padding: 36px 32px;
  margin: 40px 0;
  border: 1px solid var(--line-soft);
}
@media (max-width: 720px) {
  body .lpvs-upsells { padding: 24px 18px; border-radius: 16px; margin: 28px 0; }
}

body .lpvs-upsells-head {
  text-align: center;
  margin-bottom: 28px;
}
body .lpvs-upsells-head .eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kraft-deep);
  margin-bottom: 8px;
}
body .lpvs-upsells-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
body .lpvs-upsells-head p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
}

body .lpvs-upsells-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { body .lpvs-upsells-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { body .lpvs-upsells-grid { grid-template-columns: 1fr; } }

body .lpvs-upsell-card {
  background: var(--ivory);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body .lpvs-upsell-card:hover {
  transform: translateY(-3px);
  border-color: var(--kraft);
  box-shadow: 0 14px 32px rgba(140, 90, 46, 0.14);
}

body .lpvs-upsell-img {
  position: relative;
  display: block;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
body .lpvs-upsell-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
body .lpvs-upsell-card:hover .lpvs-upsell-img img { transform: scale(1.04); }

body .lpvs-upsell-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--kraft);
  color: var(--ivory);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body .lpvs-upsell-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
body .lpvs-upsell-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
  min-height: 36px;
}
body .lpvs-upsell-name:hover { color: var(--kraft-deep); }

body .lpvs-upsell-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--kraft-deep);
  margin-top: auto;
}
body .lpvs-upsell-price ins {
  text-decoration: none;
  background: transparent;
  color: var(--kraft-deep);
  font-weight: 700;
}
body .lpvs-upsell-price del {
  color: rgba(10, 10, 9, 0.42);
  margin-right: 6px;
  font-weight: 400;
  font-size: 13px;
}

body .lpvs-upsell-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--kraft-deep) !important;
  color: var(--ivory) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background .2s, transform .15s !important;
  margin-top: 6px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-family: var(--body) !important;
}
body .lpvs-upsell-btn:hover {
  background: #6f4621 !important;
  transform: translateY(-1px);
}
body .lpvs-upsell-btn.added::before {
  content: "✓ ";
  margin-right: 4px;
}
body .lpvs-upsell-btn.loading {
  opacity: .7;
  pointer-events: none;
}

/* End v4.3.0 upsells */
