/* ═══════════════════════════════════════════════════════
   FEMMES D'EXCEPTION — Boutique v5
   Design : éditorial luxe, mobile-first, conversion-focused
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --bordeaux: #6B1A2B;
  --bordeaux-dark: #4A1019;
  --bordeaux-light: #8C2B40;
  --bordeaux-soft: #F5E8EB;
  --gold: #C9A84C;
  --gold-light: #E0C885;
  --gold-deep: #A88B3F;
  --creme: #FAF6EE;
  --creme-warm: #F3EBDC;
  --creme-deep: #EBE0CB;
  --paper: #FBF7EE;
  --ink: #1A1614;
  --ink-soft: #4A413B;
  --ink-light: #8A7E72;
  --line: rgba(107, 26, 43, 0.12);
  --line-soft: rgba(107, 26, 43, 0.06);
  --white: #FFFFFF;
  --star: #F4B73D;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(70px, 10vw, 130px);
  --container: 1280px;
  --container-narrow: 980px;

  --shadow-1: 0 4px 16px rgba(74, 16, 25, 0.06);
  --shadow-2: 0 12px 32px rgba(74, 16, 25, 0.10);
  --shadow-3: 0 28px 60px rgba(74, 16, 25, 0.16);
  --radius: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  overscroll-behavior-x: none;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  overscroll-behavior-x: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; line-height: 1.15; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 26, 43, 0.03) 0%, transparent 50%);
}

/* ═══════════════ RIBBON ═══════════════ */
.ribbon {
  background: linear-gradient(90deg, var(--bordeaux-dark) 0%, var(--bordeaux) 50%, var(--bordeaux-dark) 100%);
  color: var(--creme);
  padding: 11px var(--gutter);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 50;
}
.ribbon-inner {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center; max-width: 100%;
}
.ribbon-tag {
  text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.22em; font-size: 0.7rem;
  color: var(--gold-light);
}
.ribbon-sep { color: var(--gold); font-size: 0.45rem; }
.ribbon-text strong {
  color: var(--gold-light);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}
.header-logo:hover { opacity: 0.7; }
.logo-mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bordeaux-dark);
  font-weight: 500;
}
.header-nav { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bordeaux);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--bordeaux); }
.nav-link:hover::after { width: 100%; }

.cart-trigger {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux-dark);
  transition: all 0.25s ease;
}
.cart-trigger:hover { background: var(--bordeaux-soft); transform: translateY(-1px); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--bordeaux);
  color: var(--creme);
  font-size: 0.65rem;
  font-weight: 600;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-bounce);
}
.cart-count.show { transform: scale(1); }
.cart-trigger.bump { animation: bump 0.6s var(--ease-bounce); }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 70px) var(--gutter) clamp(50px, 7vw, 90px);
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(107, 26, 43, 0.05), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--creme-warm) 100%);
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-1);
}
.proof-stars {
  color: var(--star);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.proof-text {
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.proof-text strong {
  color: var(--bordeaux-dark);
  font-weight: 600;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  color: var(--bordeaux-dark);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
  font-feature-settings: "lnum";
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero-strike {
  position: relative;
  font-family: var(--serif);
  color: var(--ink-light);
  font-size: 0.5em;
  vertical-align: middle;
  font-style: italic;
  margin-right: 8px;
}
.hero-strike::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  top: 50%;
  height: 1.5px;
  background: var(--bordeaux);
  transform: rotate(-8deg);
}
.hero-accent {
  font-family: var(--display);
  color: var(--bordeaux);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub strong {
  color: var(--bordeaux);
  font-weight: 600;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-meta {
  display: flex; gap: clamp(20px, 4vw, 50px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.meta-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .showcase-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(74, 16, 25, 0.15));
}
.hero-stack {
  position: relative;
  width: 100%; height: 100%;
}
.hero-book {
  position: absolute;
  filter: drop-shadow(0 24px 36px rgba(74, 16, 25, 0.22));
  transition: transform 0.6s var(--ease);
}
.hero-book-1 {
  top: 0%; left: 8%;
  width: 56%;
  transform: rotate(-6deg);
  z-index: 3;
}
.hero-book-2 {
  top: 18%; right: 2%;
  width: 50%;
  transform: rotate(8deg);
  z-index: 2;
}
.hero-book-3 {
  bottom: 0%; left: 22%;
  width: 44%;
  transform: rotate(-2deg);
  z-index: 1;
  opacity: 0.92;
}
.hero-stack:hover .hero-book-1 { transform: rotate(-9deg) translateY(-6px); }
.hero-stack:hover .hero-book-2 { transform: rotate(11deg) translateY(-6px); }
.hero-stack:hover .hero-book-3 { transform: rotate(-4deg) translateY(-3px); }

/* ─── Volume Discount Banner ─── */
.volume-banner {
  background: linear-gradient(135deg, #591628 0%, #8C2E47 100%);
  padding: 14px 24px;
  text-align: center;
}
.volume-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.volume-icon {
  color: #B8965A;
  font-size: 1.1rem;
}
.volume-text {
  color: #FCF6F1;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.volume-text strong {
  color: #B8965A;
  font-weight: 600;
}
.volume-sub {
  opacity: 0.7;
  font-size: 0.8rem;
  display: inline;
}
@media (max-width: 600px) {
  .volume-banner { padding: 12px 16px; }
  .volume-text { font-size: 0.82rem; }
  .volume-sub { display: block; margin-top: 2px; }
}

/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--gutter);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--bordeaux);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--bordeaux-dark);
  font-weight: 600;
}
.trust-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}

/* ═══════════════ BOUTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--bordeaux);
  color: var(--creme);
  box-shadow: 0 4px 14px rgba(107, 26, 43, 0.22);
}
.btn-primary:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 26, 43, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}
.btn-ghost:hover { background: var(--bordeaux); color: var(--creme); }
.btn-paypal {
  background: #FFC439;
  color: #003087;
  box-shadow: 0 4px 14px rgba(255, 196, 57, 0.3);
}
.btn-paypal:hover { background: #F0B72A; transform: translateY(-2px); }
.paypal-logo { font-weight: 700; font-style: italic; display: inline-flex; }
.paypal-logo span { letter-spacing: -0.04em; margin-left: -2px; }
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ═══════════════ SECTION HEAD ═══════════════ */
.section-head {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
  padding: var(--section-y) var(--gutter) clamp(36px, 4.5vw, 60px);
}
.head-orn {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.orn-line {
  display: inline-block;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bordeaux));
  opacity: 0.45;
}
.head-orn .orn-line:last-child {
  background: linear-gradient(90deg, var(--bordeaux), transparent);
}
.orn-diamond {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 16px;
  flex-shrink: 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bordeaux-dark);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.section-desc {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════ PACKS COMPACTS ═══════════════ */
.packs-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.pack-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
  transition: all 0.4s var(--ease);
  position: relative;
  cursor: pointer;
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
  border-color: var(--gold);
}
.pack-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.15);
}

.pack-popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--bordeaux-dark);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.pack-image {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-warm) 100%);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pack-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}
.pack-image img {
  max-width: 90%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(74, 16, 25, 0.2));
  transition: transform 0.5s var(--ease);
  position: relative; z-index: 1;
}
.pack-card:hover .pack-image img { transform: scale(1.05); }

.pack-image-eco {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  font-style: italic;
  z-index: 2;
}

.pack-body {
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.pack-cat {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.pack-name {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--bordeaux-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pack-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--ink-light);
  margin-bottom: 16px;
  line-height: 1.4;
}
.pack-includes-mini {
  list-style: none;
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 18px;
  flex: 1;
}
.pack-includes-mini li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.pack-includes-mini li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 4px;
  color: var(--gold);
  font-size: 0.5rem;
}
.pack-includes-mini li.bonus {
  color: var(--bordeaux);
}
.pack-includes-mini li.bonus::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: 0.7rem;
  top: 2px;
}

.pack-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.pack-pricing {
  display: flex; align-items: baseline; gap: 8px;
}
.price-now {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--bordeaux);
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum";
}
.price-old {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-light);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.pack-add-btn {
  background: var(--bordeaux);
  color: var(--creme);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.pack-add-btn:hover {
  background: var(--bordeaux-dark);
  transform: scale(1.08);
}
.pack-add-btn svg { width: 16px; height: 16px; }
.pack-add-btn.added { background: var(--gold); color: var(--bordeaux-dark); }

/* ═══════════════ EBOOKS GRID ═══════════════ */
.ebooks { padding-bottom: var(--section-y); }

.filtres {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-top: 32px;
}
.filtre-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.filtre-btn:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.filtre-btn.actif {
  background: var(--bordeaux-dark);
  color: var(--creme);
  border-color: var(--bordeaux-dark);
}

.ebooks-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.ebook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--line-soft);
  position: relative;
}
.ebook-card.hidden { display: none; }
.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--gold);
}

.ebook-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-warm) 100%);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ebook-image-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}
.ebook-image-wrap img {
  max-width: 88%; max-height: 92%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(74, 16, 25, 0.18));
  transition: transform 0.5s var(--ease);
  position: relative; z-index: 1;
}
.ebook-card:hover .ebook-image-wrap img { transform: scale(1.06) translateY(-4px); }

.ebook-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--bordeaux);
  color: var(--creme);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
  font-weight: 600;
  z-index: 2;
}

.ebook-body {
  padding: 20px 20px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.ebook-cat {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.ebook-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--bordeaux-dark);
  line-height: 1.25;
  margin-bottom: 8px;
  flex: 1;
}
.ebook-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ebook-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.ebook-price { display: flex; align-items: baseline; gap: 6px; }
.ebook-price .price-now { font-size: 1.4rem; }
.ebook-price .price-old { font-size: 0.9rem; }

.ebook-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--creme);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.ebook-add:hover { background: var(--bordeaux-dark); transform: scale(1.08); }
.ebook-add svg { width: 16px; height: 16px; }
.ebook-add.added { background: var(--gold); color: var(--bordeaux-dark); }

/* ═══════════════ AVIS ═══════════════ */
.avis {
  background: linear-gradient(180deg, var(--paper) 0%, var(--creme-warm) 100%);
  padding-bottom: var(--section-y);
}
.avis-head {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
  padding: var(--section-y) var(--gutter) clamp(36px, 4.5vw, 60px);
}
.avis-head .head-orn { margin-bottom: 24px; }
.avis-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  margin-top: 22px;
  box-shadow: var(--shadow-1);
}
.avis-stars {
  color: var(--star);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.avis-rating-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.avis-rating-text strong {
  font-family: var(--display);
  color: var(--bordeaux-dark);
  font-size: 1.1rem;
}

.avis-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.avis-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-1);
  position: relative;
  transition: all 0.3s var(--ease);
}
.avis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.avis-card-stars {
  color: var(--star);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.avis-card-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.avis-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.avis-author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--creme);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.avis-author-info {
  display: flex;
  flex-direction: column;
}
.avis-author-name {
  font-size: 0.92rem;
  color: var(--bordeaux-dark);
  font-weight: 600;
}
.avis-author-date {
  font-size: 0.74rem;
  color: var(--ink-light);
  margin-top: 2px;
}

/* ═══════════════ SOCIAL PROOF (sous ribbon) ═══════════════ */
.social-proof {
  background: linear-gradient(180deg, rgba(74,16,25,0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(74,16,25,0.07);
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-light);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.social-proof-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  position: relative;
  flex-shrink: 0;
}
.social-proof-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4CAF50;
  opacity: 0.3;
  animation: socialPulse 2s ease-in-out infinite;
}
@keyframes socialPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.4); opacity: 0; }
}
.social-proof-text { letter-spacing: 0.02em; }
.social-proof-text strong {
  color: var(--bordeaux);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s ease;
}
.social-proof-text strong.bumped {
  color: var(--gold-deep);
  animation: countBump 0.6s ease;
}
@keyframes countBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
@media (max-width: 640px) {
  .social-proof { padding: 7px 12px; font-size: 0.72rem; gap: 8px; }
  .social-proof-text { text-align: center; }
}

/* ═══════════════ LOGOS PAIEMENT (drawer) ═══════════════ */
.cart-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin: 10px 0 4px;
  padding: 10px 0 0;
  border-top: 1px dashed var(--line);
}
.pay-logo {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 7px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  white-space: nowrap;
}
.pay-visa { color: #1A1F71; }
.pay-mc { color: #EB001B; }
.pay-amex { color: #006FCF; }
.pay-klarna { background: #FFB3C7; color: #0E0E0E; border-color: #FFB3C7; }
.pay-paypal { background: #003087; color: #FFFFFF; border-color: #003087; }
.pay-apple {
  background: #000; color: #FFFFFF; border-color: #000;
  display: inline-flex; align-items: center; gap: 2px;
  font-weight: 500;
}
.pay-apple::before {
  content: '\f8ff';
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro', 'Helvetica Neue', sans-serif;
  font-size: 0.85em;
  line-height: 1;
}
.pay-apple::after { content: 'Pay'; }
.pay-google {
  background: #FFFFFF; color: #3C4043;
  border: 0.5px solid #DADCE0;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 3px;
}
.pay-google::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285F4 0% 25%, #34A853 25% 50%, #FBBC04 50% 75%, #EA4335 75% 100%);
}

/* ═══════════════ SCORE GLOBAL ═══════════════ */
.avis-score {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(74,16,25,0.05);
  text-align: center;
}
.score-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.score-num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--bordeaux);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.score-num-out {
  font-size: 0.55em;
  color: var(--ink-light);
  margin-left: 2px;
}
.score-num-plus {
  font-size: 0.7em;
  color: var(--gold-deep);
}
.score-stars {
  color: #F4B73D;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  margin: 6px 0 4px;
}
.score-label, .score-label-big {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}
.score-label-big {
  font-size: 0.66rem;
  line-height: 1.4;
  max-width: 160px;
}
.score-divider {
  width: 1px;
  background: var(--line);
}
@media (max-width: 720px) {
  .avis-score {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 14px;
    margin: 0 14px 36px;
  }
  .score-divider { display: none; }
  .score-block { min-width: 28%; }
  .score-num { font-size: 1.5rem; }
  .score-stars { font-size: 0.78rem; margin: 3px 0; }
  .score-label-big { font-size: 0.58rem; }
}

/* ═══════════════ CARROUSEL TÉMOIGNAGES ═══════════════ */
.avis-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.avis-carousel {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: avisScroll 42s linear infinite;
}
.avis-carousel:hover { animation-play-state: paused; }
@keyframes avisScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
.avis-carousel .avis-card {
  flex-shrink: 0;
  width: 360px;
  margin: 0;
}
@media (max-width: 720px) {
  .avis-carousel .avis-card { width: 290px; }
  .avis-carousel { animation-duration: 35s; }
  .avis-carousel-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
}

/* ═══════════════ CHAYNEZE SECTION ═══════════════ */
.chayneze-section {
  padding: var(--section-y) var(--gutter);
  background: var(--bordeaux-dark);
  color: var(--creme);
}
.chayneze-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.chayneze-text .section-tag { color: var(--gold); }
.chayneze-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  color: var(--creme);
  margin: 16px 0 28px;
  letter-spacing: -0.015em;
}
.chayneze-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.chayneze-text p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.85);
  margin-bottom: 18px;
}
.chayneze-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chayneze-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  margin-bottom: 28px;
}
.chayneze-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 48px rgba(0,0,0,0.32);
}
.chayneze-photo-frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.chayneze-quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--creme);
  text-align: center;
  margin: 0 auto 14px;
  max-width: 420px;
}
.chayneze-sign {
  font-family: var(--serif);
  font-size: 0.86rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ═══════════════ CHAMP EMAIL DRAWER ═══════════════ */
.cart-email-block {
  margin: 14px 0 12px;
  padding: 14px 0 0;
  border-top: 1px dashed var(--line);
}
.cart-email-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}
.cart-email-label svg { stroke: var(--bordeaux); flex-shrink: 0; }
.cart-email-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.cart-email-input:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(107,26,43,0.08);
}
.cart-email-input.invalid {
  border-color: #C0392B;
  background: rgba(192,57,43,0.04);
}
.cart-email-input.valid {
  border-color: #4CAF50;
}
.cart-email-error {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: #C0392B;
  font-style: italic;
  line-height: 1.3;
}
.cart-email-error[hidden] { display: none; }

/* ═══════════════ ORDER BUMP CAROUSEL (drawer panier, dans la zone scrollable) ═══════════════ */
.order-bump {
  margin: 14px 0 4px;
  padding: 16px 0 18px;
  background: var(--creme-warm);
  border-top: 0.5px solid #EFE6D9;
  border-bottom: 0.5px solid #EFE6D9;
  animation: orderBumpIn 0.4s cubic-bezier(0.34,1.4,0.64,1) both;
}
.order-bump[hidden] { display: none; }
@keyframes orderBumpIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.order-bump-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 18px 10px;
}
.order-bump-headline {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.order-bump-counter {
  font-size: 0.66rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

.order-bump-track {
  display: flex;
  gap: 10px;
  padding: 0 18px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.order-bump-track::-webkit-scrollbar { display: none; }

.order-bump-card {
  flex-shrink: 0;
  width: 230px;
  background: var(--white);
  border: 0.5px solid #E5DACB;
  border-radius: 10px;
  padding: 12px;
  display: flex; gap: 11px; align-items: center;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.order-bump-card:active { transform: scale(0.98); }
.order-bump-card:hover { border-color: var(--gold); }

.order-bump-img {
  width: 50px; height: 68px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  background: var(--creme);
  display: flex; align-items: center; justify-content: center;
  padding: 3px;
}
.order-bump-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

.order-bump-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.order-bump-tag {
  display: none; /* l'overline globale remplace cette puce-par-card */
}
.order-bump-name {
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.22;
  color: var(--ink);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.order-bump-pricing {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--bordeaux);
  font-weight: 700;
  display: flex; align-items: baseline; gap: 5px;
}
.order-bump-pricing del {
  color: var(--ink-light);
  font-weight: 400;
  font-size: 0.7rem;
  text-decoration: line-through;
}
.order-bump-pricing .bump-prefix {
  color: var(--bordeaux);
  font-weight: 700;
}

.order-bump-add {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--bordeaux);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
}
.order-bump-add:hover { background: var(--bordeaux-dark); transform: scale(1.06); }
.order-bump-add:active { transform: scale(0.92); }
.order-bump-add svg { width: 14px; height: 14px; stroke: var(--creme); }

/* Animation : flash gold when added (then card is removed from track) */
.order-bump-card.adding { animation: bumpAdded 0.4s ease forwards; }
@keyframes bumpAdded {
  0% { background: var(--white); }
  40% { background: rgba(201,168,76,0.25); transform: scale(1.02); }
  100% { background: var(--white); transform: scale(1); opacity: 0; max-width: 0; padding: 0; margin-right: -10px; }
}

/* ═══════════════ POST-ADD BANNER (top-right) ═══════════════ */
.post-add-banner {
  position: fixed;
  top: 86px;
  right: 18px;
  z-index: 9000;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(74,16,25,0.16);
  padding: 14px 18px;
  animation: postAddSlide 0.4s cubic-bezier(0.34,1.4,0.64,1) both;
}
.post-add-banner[hidden] { display: none; }
@keyframes postAddSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.post-add-banner.hiding { animation: postAddOut 0.3s ease forwards; }
@keyframes postAddOut {
  to { opacity: 0; transform: translateX(40px); }
}
.post-add-content {
  display: flex; align-items: center; gap: 12px;
}
.post-add-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.post-add-icon svg { width: 16px; height: 16px; stroke: var(--gold-deep); }
.post-add-text {
  flex: 1; min-width: 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
}
.post-add-text strong { font-weight: 500; color: var(--bordeaux); }
.post-add-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: none;
  border: 1px solid var(--bordeaux);
  border-radius: 50px;
  padding: 7px 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.post-add-cta:hover { background: var(--bordeaux); color: var(--creme); }
.post-add-close {
  background: none; border: none;
  color: var(--ink-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
}
.post-add-close:hover { color: var(--bordeaux); }
@media (max-width: 720px) {
  .post-add-banner {
    top: auto;
    bottom: 100px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .post-add-cta { font-size: 0.62rem; padding: 6px 10px; letter-spacing: 0.08em; }
}

/* ═══════════════ MENTION PACK SUR CARDS EBOOKS ═══════════════ */
.ebook-pack-hint {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ═══════════════ TÉMOIGNAGE DANS MODALE ═══════════════ */
.modal-temoignage {
  margin: 22px 0 0;
  padding: 18px 22px;
  background: rgba(201,168,76,0.06);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}
.modal-temoignage[hidden] { display: none; }
.modal-temoignage-stars {
  color: #F4B73D;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.modal-temoignage-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 8px;
}
.modal-temoignage-author {
  font-family: var(--sans);
  font-size: 0.74rem;
  color: var(--bordeaux);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .chayneze-photo-wrap { max-width: 320px; }
  .chayneze-photo-frame { inset: -10px -10px 10px 10px; }
  .order-bump { padding: 14px 0 16px; }
  .order-bump-card { width: 215px; padding: 11px; gap: 10px; }
  .order-bump-img { width: 46px; height: 62px; }
  .order-bump-name { font-size: 0.82rem; }
  .order-bump-pricing { font-size: 0.74rem; }
  .order-bump-add { width: 30px; height: 30px; }
  .cart-item { gap: 14px; padding: 12px 8px; }
  .cart-item-img { width: 72px; height: 96px; }
  .cart-item-name { font-size: 1rem; }
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
  padding-bottom: var(--section-y);
  background: var(--paper);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  color: var(--bordeaux-dark);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--bordeaux); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux);
  font-size: 1.4rem;
  font-weight: 300;
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--bordeaux);
  color: var(--creme);
  transform: rotate(45deg);
  border-color: var(--bordeaux);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--ink);
  color: var(--creme);
  padding: 60px var(--gutter) calc(50px + var(--safe-bottom));
  text-align: center;
}
.footer-orn {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.footer-orn .orn-line {
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.5;
}
.footer-orn .orn-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--creme);
  margin-bottom: 8px;
}
.footer-brand em { font-family: var(--serif); font-style: italic; }
.footer-sub {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-contact {
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.6);
}
.footer-contact a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════ STICKY BOTTOM (mobile uniquement, panier non vide) ═══════════════ */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(74, 16, 25, 0.12);
  padding: 12px 18px calc(12px + var(--safe-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-info {
  display: flex; flex-direction: column;
  flex: 1;
  min-width: 0;
}
.sticky-count {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}
.sticky-total {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--bordeaux-dark);
  margin-top: 2px;
}
.sticky-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease;
}
.sticky-btn:hover, .sticky-btn:active {
  background: var(--bordeaux-dark);
}

/* ═══════════════ DRAWER PANIER ═══════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(74, 16, 25, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100%);
  height: 100vh; height: 100dvh;
  background: var(--paper);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-overline {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--bordeaux-dark);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--ink-light);
  transition: all 0.2s ease;
}
.cart-close:hover { background: var(--bordeaux-soft); color: var(--bordeaux); }

.cart-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 30px;
}
.cart-empty.hidden { display: none; }
.empty-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 16px; }
.empty-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bordeaux-dark);
  margin-bottom: 8px;
}
.empty-text {
  font-family: var(--serif);
  color: var(--ink-light);
  font-size: 0.98rem;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0 24px;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.cart-content.hidden { display: none; }
.cart-items { padding: 8px 18px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  border-bottom: 0.5px solid #EFE6D9;
  transition: background 0.2s ease;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--creme-warm); }
.cart-item-img {
  width: 80px; height: 108px;
  background: var(--creme-warm);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(74, 16, 25, 0.06);
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info {
  flex: 1;
  display: flex; flex-direction: column;
  min-width: 0;
}
.cart-item-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--bordeaux-dark);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.22;
}
.cart-item-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
  font-weight: 500;
}
.cart-item-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}
.cart-item-prices { display: flex; align-items: baseline; gap: 6px; }
.cart-item-price {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bordeaux);
}
.cart-item-price-was {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-light);
  text-decoration: line-through;
}
.cart-item-remove {
  font-size: 0.74rem;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.cart-item-remove:hover { color: var(--bordeaux); }

/* Smart upsell */
.cart-upsell {
  margin: 12px 18px;
  padding: 18px 18px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  position: relative;
}
.upsell-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--bordeaux-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.upsell-text {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.upsell-text strong { color: var(--bordeaux-dark); }
.upsell-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}
.upsell-action:hover { background: var(--bordeaux-dark); }

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 14px 22px calc(16px + var(--safe-bottom));
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 -8px 16px rgba(74,16,25,0.04);
}
.cart-footer::before {
  content: '';
  position: absolute;
  top: -32px; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
  z-index: 1;
}
.cart-footer.hidden { display: none; }

/* Code promo dans le panier */
.cart-promo {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.promo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--bordeaux);
  cursor: pointer;
  text-align: left;
}
.promo-toggle:hover { color: var(--bordeaux-dark); }
.promo-toggle-icon {
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.promo-toggle.open .promo-toggle-icon { transform: rotate(45deg); }

.promo-input-wrap {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.promo-input-wrap[hidden] { display: none; }
#promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--white);
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s ease;
}
#promo-input:focus { border-color: var(--bordeaux); }
.promo-apply {
  padding: 10px 18px;
  background: var(--bordeaux);
  color: var(--creme);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}
.promo-apply:hover { background: var(--bordeaux-dark); }

.promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.86rem;
}
.promo-applied[hidden] { display: none; }
.promo-applied-tag {
  color: var(--bordeaux-dark);
  font-weight: 600;
}
.promo-remove {
  font-size: 0.78rem;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-remove:hover { color: var(--bordeaux); }

.promo-error {
  margin-top: 8px;
  padding: 8px 14px;
  background: rgba(107, 26, 43, 0.08);
  color: var(--bordeaux);
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: var(--serif);
  font-style: italic;
}
.promo-error[hidden] { display: none; }

.cart-summary { margin-bottom: 14px; }
.cart-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0;
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.cart-row.cart-savings {
  color: var(--gold-deep);
  font-style: italic;
  font-size: 0.92rem;
}
.cart-row.cart-savings.hidden { display: none; }
.cart-row.cart-promo-row {
  color: var(--bordeaux);
  font-weight: 600;
  font-size: 0.96rem;
}
.cart-row.cart-promo-row[hidden] { display: none; }
.cart-row.cart-volume-row {
  color: #2d7d46;
  font-weight: 600;
  font-size: 0.96rem;
}
.cart-row.cart-volume-row[hidden] { display: none; }
.cart-incentive {
  background: linear-gradient(135deg, rgba(89,22,40,0.06) 0%, rgba(140,46,71,0.06) 100%);
  border: 1px dashed rgba(89,22,40,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: #591628;
  text-align: center;
  margin: 8px 0 4px;
  font-weight: 500;
}
.cart-incentive[hidden] { display: none; }
.cart-row.cart-total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 12px;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--bordeaux-dark);
}
.cart-footer .btn {
  margin-bottom: 8px;
  font-size: 0.74rem;
}
.cart-secure {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}

/* ═══════════════ MODALE PRODUIT ═══════════════ */
.modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.show { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(74, 16, 25, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.4s var(--ease-bounce);
  display: flex;
  flex-direction: column;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  z-index: 5;
  box-shadow: var(--shadow-1);
}
.modal-close:hover {
  background: var(--bordeaux);
  color: var(--creme);
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.modal-image {
  background: linear-gradient(135deg, var(--creme-warm) 0%, var(--creme-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.modal-image img {
  max-width: 90%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(74, 16, 25, 0.22));
}
.modal-body {
  padding: 44px 40px 36px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-cat {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--bordeaux-dark);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.modal-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold-deep);
  margin-bottom: 20px;
  line-height: 1.4;
}
.modal-price {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.modal-price-now {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--bordeaux);
  letter-spacing: -0.02em;
}
.modal-price-old {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink-light);
  text-decoration: line-through;
}
.modal-desc {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
  white-space: pre-line;
}
.modal-contenu { margin-bottom: 24px; }
.modal-contenu.hidden { display: none; }
.modal-contenu-title {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 10px;
}
.modal-contenu-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.modal-contenu-list li {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.modal-contenu-list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 4px;
  color: var(--gold);
  font-size: 0.55rem;
}
.modal-actions { margin-top: auto; }
.modal-cross {
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-light);
  margin-top: 12px;
  font-style: italic;
  font-family: var(--serif);
}
.modal-cross.hidden { display: none; }
.modal-cross a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bordeaux-dark);
  color: var(--creme);
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: var(--serif);
  box-shadow: var(--shadow-3);
  z-index: 500;
  opacity: 0;
  transition: all 0.4s var(--ease);
  max-width: 90%;
  text-align: center;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 980px) {
  .header-nav { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-meta { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .trust-divider { display: none; }
  .trust-item { min-width: 240px; }
  .packs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .chayneze-inner { grid-template-columns: 1fr; gap: 50px; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-image { aspect-ratio: 4 / 3; padding: 30px; }
  .modal-card { max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); }

  /* Sticky bottom seulement mobile + panier non vide */
  .sticky-bottom.show { display: flex; transform: translateY(0); }
}

@media (max-width: 700px) {
  .header-inner { padding: 12px 16px; }
  .logo-text { display: none; }
  .ribbon { font-size: 0.74rem; padding: 9px 14px; }
  .ribbon-tag { font-size: 0.62rem; }
  .ribbon-sep { display: none; }
  .trust-bar { padding: 16px var(--gutter); }
  .trust-inner { gap: 14px; }
  .trust-item { font-size: 0.78rem; min-width: 0; flex-basis: 45%; }
  .packs-grid { grid-template-columns: 1fr; gap: 18px; }
  .pack-card { display: grid; grid-template-columns: 130px 1fr; }
  .pack-card.popular { display: grid; }
  .pack-image { aspect-ratio: 1 / 1.2; padding: 16px; }
  .pack-image img { max-height: 100%; }
  .pack-image-eco {
    top: 8px; left: 8px;
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .pack-popular-badge {
    top: 8px; right: 8px;
    font-size: 0.55rem;
    padding: 4px 9px;
  }
  .pack-body { padding: 16px 16px 18px; }
  .pack-name { font-size: 1.18rem; }
  .pack-tagline { font-size: 0.86rem; margin-bottom: 12px; }
  .pack-includes-mini { display: none; }
  .pack-bottom { padding-top: 12px; }
  .price-now { font-size: 1.45rem; }

  .ebooks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ebook-image-wrap { padding: 16px; }
  .ebook-body { padding: 14px 14px 16px; }
  .ebook-name { font-size: 0.98rem; }
  .ebook-tagline { display: none; }
  .ebook-price .price-now { font-size: 1.18rem; }
  .ebook-price .price-old { font-size: 0.78rem; }
  .ebook-add { width: 32px; height: 32px; }

  .filtres { gap: 6px; }
  .filtre-btn { padding: 8px 14px; font-size: 0.7rem; letter-spacing: 0.1em; }

  .avis-grid { grid-template-columns: 1fr; gap: 18px; }
  .avis-card { padding: 22px 22px 20px; }
  .avis-card-text { font-size: 1rem; }

  .modal { padding: 0; }
  .modal-card {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    height: 100%;
  }
  .modal-grid {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-image {
    aspect-ratio: 1 / 1;
    padding: 18px 24px;
    flex-shrink: 0;
    min-height: 280px;
    max-height: 50vh;
  }
  .modal-image img {
    max-height: 100%;
    max-width: 92%;
    object-fit: contain;
    object-position: center center;
  }
  .modal-body {
    padding: 28px 24px calc(28px + var(--safe-bottom));
    overflow: visible;
  }
  .modal-title { font-size: 1.6rem; }
  .modal-tagline { font-size: 1rem; }
  .modal-price-now { font-size: 1.7rem; }

  .cart-drawer { width: 100%; }
  .cart-head { padding: 14px 22px 12px; }
  .cart-overline { font-size: 1.3rem; }

  /* ─── Footer mobile ultra-compact (résout le problème "le bandeau cache le panier") ─── */
  .cart-footer { padding: 10px 18px calc(10px + var(--safe-bottom)); }
  .cart-footer::before { height: 18px; top: -18px; }

  .cart-promo { margin-bottom: 8px; padding-bottom: 8px; }
  .promo-toggle { padding: 4px 0; font-size: 0.84rem; }

  .cart-summary { margin-bottom: 8px; }
  .cart-row { padding: 2px 0; font-size: 0.9rem; }
  .cart-row.cart-savings { font-size: 0.78rem; padding: 0; opacity: 0.85; }
  .cart-row.cart-total { padding-top: 8px; margin-top: 4px; font-size: 1.18rem; }

  /* Email : on fait tomber le label inline pour gagner ~25px */
  .cart-email-block { margin: 0 0 8px; padding: 8px 0 0; }
  .cart-email-label {
    font-size: 0.62rem;
    margin-bottom: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
  }
  .cart-email-label svg { width: 11px; height: 11px; }
  .cart-email-input { padding: 10px 12px; font-size: 0.94rem; border-radius: 7px; }

  /* Boutons paiement compacts */
  .cart-footer .btn { padding: 11px 18px; font-size: 0.7rem; margin-bottom: 6px; }
  .cart-footer .btn:last-of-type { margin-bottom: 0; }

  /* Logos paiement : 1 ligne scrollable au lieu de wrap, bien plus compact */
  .cart-payment-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 8px 0 2px;
    margin: 8px 0 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
  }
  .cart-payment-logos::-webkit-scrollbar { display: none; }
  .pay-logo { font-size: 0.5rem; padding: 3px 6px; flex-shrink: 0; }

  /* Mention "paiement sécurisé" : retirée sur mobile (redondante avec les logos) */
  .cart-secure { display: none; }

  .footer { padding: 50px var(--gutter) calc(120px + var(--safe-bottom)); }
}

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ SHOWCASE EBOOKS IMAGE ═══ */
.showcase-section {
  padding: 24px 0 0;
  background: #FAF6EE;
}
.showcase-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.showcase-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
