/*
Theme Name:  EtherikMind
Theme URI:   https://etherikmind.com
Author:      EtherikMind
Author URI:  https://etherikmind.com
Description: Thème landing page EtherikMind — Guides ésotériques PDF. Éveil spirituel, lois invisibles, intelligence du corps humain.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: etherikmind
Tags:        one-page, landing-page, esoteric, custom-colors, custom-menu, featured-images, full-width-template
*/

/* ── VARIABLES ── */
:root {
  /* Fonds lumineux */
  --f0: #fdfaf5;
  --f1: #f8f3ea;
  --f2: #f0e8d6;
  --f3: #e2d4bc;
  --f4: #cfc0a4;

  /* Or VIBRANT — palette rehaussée */
  /* OR PRINCIPAL (ultra visible) */
  --gold-main: #D4AF37;

  /* LUMIÈRE (reflets premium) */
  --gold-light: #FFD76A;

  /* PROFONDEUR (contraste) */
  --gold-dark: #9C7A1C;

  /* OR VIBRANT UI */
  --or:  #B8962E;
  --or2: #D4AF37;
  --or3: #F0C75E;
  --or4: #FFD76A;
  --or5: #FFF1B3;

  /* FONDS / BORDURES */
  --or-bg: #FFF8E6;
  --or-bd: rgba(212,175,55,0.35);

  /* Encre — texte */
  --e0: #0e0b06;
  --e1: #1e1710;
  --e2: #34291a;
  --e3: #564534;
  --e4: #836754;
  --e5: #ae9a84;

  /* Sombre */
  --d0: #100d08;
  --d1: #181410;
  --d2: #24201a;

  /* Système */
  --rouge: #b83226;
  --rouge-bg: #fcf0ee;
  --rouge-bd: rgba(184, 50, 38, 0.16);
  --vert: #247a50;
  --vert-bg: #eef7f2;

  /* Typographie */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--f0);
  color: var(--e0);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--sans);
  border: none;
  background: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: rgba(192, 120, 24, 0.14);
  color: var(--e0);
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--f1);
}
::-webkit-scrollbar-thumb {
  background: var(--or2);
  border-radius: 2px;
}

/* Grain papier fin */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.016;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 140px;
}

/* ════════════════════════════════════════════════════
   PROGRESS BAR
════════════════════════════════════════════════════ */
#pbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--or), var(--or3), var(--or5));
  pointer-events: none;
  transition: width 0.12s linear;
}

/* ════════════════════════════════════════════════════
   HEADER — Architecture anti-superposition

   DOM :
   #site-header (fixed, z-index: 600)
     ├── .topbar   (overflow: hidden — clip ticker)
     └── .navbar
   
   #nav-overlay (fixed, z-index: 590) — EN DEHORS du header
════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
}

/* Topbar */
.topbar {
  height: 34px;
  background: var(--e0);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.topbar-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ticker 36s linear infinite;
  font-family: var(--sans);
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.5);
  font-weight: 400;
}
.topbar-item b {
  color: var(--or5);
  font-weight: 500;
}
.topbar-sep {
  color: rgba(200, 160, 60, 0.25);
  font-size: 10px;
  padding: 0 2px;
}

/* Navbar */
.navbar {
  height: 66px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.45s var(--ease-out),
    box-shadow 0.45s;
}
#site-header.scrolled .navbar {
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(24px) saturate(2);
  box-shadow:
    0 1px 0 rgba(192, 120, 24, 0.08),
    0 4px 24px rgba(14, 11, 6, 0.05);
}

/* ════════════════════════════════════════════════════
   NAVBAR — Minimal pro
   Logo (gauche) | Liens (centre absolu) | Panier + Burger (droite)
════════════════════════════════════════════════════ */

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.logo-mark {
  display: block;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease-out);
}
.logo:hover .logo-mark {
  transform: rotate(30deg);
}
.logo-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--e0);
  line-height: 1;
}
.logo-name em {
  color: var(--or2);
  font-style: italic;
}

/* Liens centrés */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--e4);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--or2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover {
  color: var(--e1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Zone droite — panier + burger */
.nav-end {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Bouton panier */
.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--e3);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.cart-toggle:hover {
  color: var(--e0);
  background: var(--f2);
}

/* Badge */
.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--f0);
  background: var(--or2);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-ham:hover {
  background: var(--f2);
}
.nav-ham span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--e0);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-ham.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-ham.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.nav-ham.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Menu mobile overlay */
#nav-overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 590;
  background: rgba(253, 250, 245, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--f3);
  padding: 8px 28px 24px;
  box-shadow: 0 12px 40px rgba(14, 11, 6, 0.08);
}
#nav-overlay.is-open {
  display: block;
}
.nm-item {
  display: block;
  padding: 15px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--e2);
  border-bottom: 1px solid var(--f3);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.nm-item:last-of-type {
  border-bottom: none;
}
.nm-item:hover {
  color: var(--or2);
  padding-left: 8px;
}
.nm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: var(--e0);
  color: var(--f0);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.nm-cta:hover {
  background: var(--or2);
}
a.nm-cta,
a.nm-cta:link,
a.nm-cta:visited {
  color: var(--f0) !important;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
  }
}

/* ════════════════════════════════════════════════════
   CART DRAWER
════════════════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 6, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background: var(--f0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--f3);
}
.cart-drawer-header h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--e0);
}
.cart-drawer-header button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--e4);
  transition:
    background 0.2s,
    color 0.2s;
}
.cart-drawer-header button:hover {
  background: var(--f2);
  color: var(--e0);
}
.cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
/* Mini cart items */
.woocommerce-mini-cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Lien produit */
.woocommerce-mini-cart-item a:not(.remove) {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  text-decoration: none;
  color: var(--e0);
}

/* Image */
.woocommerce-mini-cart-item a img {
  width: 72px !important;
  max-width: 72px !important;
  height: 90px !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--f1) !important;
  padding: 4px !important;
  box-sizing: border-box !important;
  border: 1px solid var(--f2) !important;
}
/* TITRE */
.woocommerce-mini-cart-item a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 150px; /* 🔥 évite les gros blocs vides */
}

/* PRIX → à droite propre */
.woocommerce-mini-cart-item .quantity {
  margin-left: auto;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--e0);
  white-space: nowrap;
}

/* Remove */
.woocommerce-mini-cart-item .remove {
  left: -6px;
  top: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.woocommerce-mini-cart-item:hover .remove {
  opacity: 1;
}

/* Total */
.woocommerce-mini-cart__total {
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.02em;
}

/* Ligne total plus forte */
.woocommerce-mini-cart__total strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--e0);
}

/* Footer Apple-style */
.apple-footer {
  position: sticky;
  bottom: 0;
  background: var(--f0);
  padding: 20px 24px;
  border-top: 1px solid var(--f3);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.04);
}

.apple-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--e2);
}

.apple-total strong {
  font-weight: 600;
  color: var(--e0);
}

.apple-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apple-btn {
  text-align: center;
  padding: 13px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.apple-btn.secondary {
  background: var(--f2);
  color: var(--e0);
}

.apple-btn.secondary:hover {
  background: var(--f3);
}

.apple-btn.primary {
  background: var(--e0);
  color: var(--f0);
}

.apple-btn.primary:hover {
  background: var(--or2);
}

/* Fly-to-cart animation */
.cart-fly-image {
  position: fixed;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  pointer-events: none;
  z-index: 10002;
  transition:
    transform 0.8s cubic-bezier(0.65, -0.05, 0.36, 1.1),
    opacity 0.8s ease;
}

.cart-fly-image.fly {
  transform: translate(var(--x), var(--y)) scale(0.1);
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-drawer-panel {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════
   PAGE CONTENT — offset dynamique (JS injecte --header-h)
════════════════════════════════════════════════════ */
#page-content {
  padding-top: var(--header-h, 100px);
}

/* ════════════════════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════════════════════ */

#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 580;
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--f3);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(14, 11, 6, 0.1);
}
#sticky-cta.visible {
  display: flex;
}
.sc-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--e0);
  line-height: 1.2;
}
.sc-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}
.sc-price b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--e0);
}
.sc-price s {
  font-size: 12px;
  color: var(--e5);
}
.sc-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--rouge);
  background: var(--rouge-bg);
  border: 1px solid var(--rouge-bd);
  border-radius: 100px;
  padding: 2px 8px;
}
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: var(--e0);
  color: var(--f0);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s;
}
.sc-btn:hover {
  background: var(--or2);
}


/* ════════════════════════════════════════════════════
   BOUTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s;
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-dark {
  padding: 16px 44px;
  background: var(--e0);
  color: var(--f0);
  border-radius: 40px;
}
.btn-dark::before {
  background: #d4af3780;
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(14, 11, 6, 0.18);
}
.btn-dark:hover::before {
  transform: translateX(0);
}

.btn-or {
  padding: 16px 44px;
  background: var(--or2);
  color: var(--f0);
  border-radius: 40px;
}
.btn-or::before {
  background: var(--e0);
}
.btn-or:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192, 120, 24, 0.28);
}
.btn-or:hover::before {
  transform: translateX(0);
}

.btn-ghost {
  padding: 16px 40px;
  background: transparent;
  border: 1.5px solid var(--f3);
  border-radius: 40px;
  color: var(--e3);
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.4s var(--ease-spring);
}
.btn-ghost::before {
  display: none;
}
.btn-ghost:hover {
  border-color: var(--or2);
  color: var(--or);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 54px;
  font-size: 12px;
}
.btn-sm {
  padding: 11px 24px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

/* ── BOUTONS ANCRES — Force couleur texte (WordPress reset) ── */
a.btn.btn-dark,
a.btn.btn-dark:link,
a.btn.btn-dark:visited {
  color: var(--f0) !important;
  background: var(--e0);
  text-decoration: none;
}
a.btn.btn-dark:hover {
  color: var(--f0) !important;
}

a.btn.btn-or,
a.btn.btn-or:link,
a.btn.btn-or:visited {
  color: var(--f0) !important;
  background: var(--or2);
  text-decoration: none;
}
a.btn.btn-or:hover {
  color: var(--f0) !important;
}

a.btn.btn-ghost,
a.btn.btn-ghost:link,
a.btn.btn-ghost:visited {
  color: var(--e3);
  text-decoration: none;
}

a.sc-btn,
a.sc-btn:link,
a.sc-btn:visited {
  color: var(--f0) !important;
  text-decoration: none;
}

a.bk-btn,
a.bk-btn:link,
a.bk-btn:visited {
  text-decoration: none;
}

a.prev-cta,
a.prev-cta:link,
a.prev-cta:visited {
  text-decoration: none;
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 120px;
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   GÉOMÉTRIE SACRÉE (UPGRADE)
════════════════════════════════════════════════════ */
.geo-a,
.geo-b,
.geo-c,
.geo-d {
  fill: none !important;

  filter:
    drop-shadow(0 0 6px rgba(212,175,55,0.45))
    drop-shadow(0 0 14px rgba(212,175,55,0.25))
    drop-shadow(0 0 24px rgba(212,175,55,0.15));

  opacity: 0.9;
  transform-origin: 480px 480px;
}

/* profondeur visuelle */
.geo-a { stroke: var(--gold-light); stroke-width: 1.6; }
.geo-b { stroke: var(--gold-main);  stroke-width: 1.3; }
.geo-c { stroke: var(--gold-dark);  stroke-width: 1.2; opacity: .85; }
.geo-d { stroke: var(--gold-light); stroke-width: 1.1; opacity: .8; }

/* animations plus lentes = luxe */
.geo-a { animation: spin-cw 120s linear infinite; }
.geo-b { animation: spin-ccw 80s linear infinite; }
.geo-c { animation: spin-cw 160s linear infinite; }
.geo-d { animation: spin-ccw 60s linear infinite; }

@keyframes spin-cw { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }

/* ════════════════════════════════════════════════════
   CONTENU HERO
════════════════════════════════════════════════════ */
.h-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--or2);
  margin-bottom: 44px;

  /*glow léger */
  text-shadow: 0 0 6px rgba(212,175,55,0.4);

  opacity: 0;
  animation: anim-up 0.9s var(--ease-out) 0.2s forwards;
}

.h-title {
  font-family: var(--serif);
  font-size: clamp(58px, 10vw, 122px);
  font-weight: 300;
  line-height: 0.88;
  margin: 40px;
  letter-spacing: -0.03em;
  color: var(--e0);

  opacity: 0;
  animation: anim-up 1.1s var(--ease-out) 0.4s forwards;
}

/*OR PREMIUM (dégradé métal) */
.h-title em {
  font-style: italic;
  background: linear-gradient(
    135deg,
    #FFF1B3 0%,
    #FFD76A 25%,
    #D4AF37 50%,
    #FFD76A 75%,
    #FFF1B3 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h-rule {
  width: 1px;
  height: 72px;
  margin: 48px auto;
  background: linear-gradient(to bottom, transparent, var(--or3), transparent);
  opacity: 0;
  animation: anim-fade 1s var(--ease-out) 0.85s forwards;
}

.h-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2.6vw, 25px);
  font-style: italic;
  font-weight: 300;
  color: var(--e4);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto 44px;

  opacity: 0;
  animation: anim-up 1s var(--ease-out) 0.7s forwards;
}

/* bloc identité amélioré */
.h-identity {
  position: relative;
  max-width: 600px;
  margin: 0 auto 52px;
  padding: 26px 38px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(212,175,55,0.08), inset 0 0 20px rgba(212,175,55,0.05);
  opacity: 0;
  animation: anim-up 1s var(--ease-out) 0.95s forwards;
}

.h-identity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold-main),
    transparent
  );
}

.h-identity strong {
  color: var(--gold-main);
  font-weight: 500;
}

.h-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: anim-up 1s var(--ease-out) 1.1s forwards;
}

.h-promo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: anim-up 1s var(--ease-out) 1.25s forwards;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rouge-bg);
  border: 1px solid var(--rouge-bd);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rouge);
  letter-spacing: 0.04em;
}
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--e3);
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--f2);
  border: 1px solid var(--f3);
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 36px;
}
.cd-num {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--e0);
  line-height: 1;
}
.cd-lbl {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--e5);
  margin-top: 1px;
}
.cd-sep {
  font-size: 18px;
  color: var(--e4);
}

.h-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: anim-fade 1s var(--ease-out) 1.5s forwards;
}
.proof-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--e4);
}
.proof-pill svg {
  color: var(--or2);
  flex-shrink: 0;
}
.proof-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--f4);
}

.h-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: anim-fade 1s var(--ease-out) 1.8s forwards;
}
.scroll-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--or3), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(0.55);
    opacity: 1;
  }
}
.h-scroll span {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--e5);
}

@keyframes anim-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes anim-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {

  /*Géométrie plus visible */
  .geo-a,
  .geo-b,
  .geo-c,
  .geo-d {
    stroke-width: 2.2 !important; /* plus épais */
    opacity: 1 !important;

    filter:
      drop-shadow(0 0 8px rgba(212,175,55,0.6))
      drop-shadow(0 0 18px rgba(212,175,55,0.35));
  }

  /* Réduction du SVG pour lisibilité */
  .hero-geo svg {
    width: 120vw;
    height: 120vw;
    opacity: 0.9;
  }
	
  /*Fond plus lumineux */
  .hero {
    background:
      radial-gradient(ellipse 90% 60% at 50% -10%, rgba(212,175,55,0.18), transparent 65%),
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,175,55,0.12), transparent 70%),
      var(--f0);
  }

  /*Texte or plus visible */
  .h-title em {
    text-shadow:
      0 0 6px rgba(212,175,55,0.6),
      0 0 14px rgba(212,175,55,0.4);
  }

}

/* ════════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════════ */
.trust {
  background: var(--e0);
  border-top: 1px solid rgba(192, 120, 24, 0.1);
}
.trust-row {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(253, 250, 245, 0.05);
  transition: background 0.3s;
}
.trust-cell:last-child {
  border-right: none;
}
.trust-cell:hover {
  background: rgba(192, 120, 24, 0.06);
}
.trust-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(180, 130, 40, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or3);
}
.trust-txt b {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(253, 250, 245, 0.84);
  margin-bottom: 2px;
}
.trust-txt span {
  font-size: 11px;
  color: rgba(253, 250, 245, 0.3);
}

/* ════════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════ */
.s {
  padding: 120px 56px;
}
.s-in {
  max-width: 1160px;
  margin: 0 auto;
}
/*.s-sand {
  background: var(--f1);
}
*/
/*
.s-creme {
  background: var(--f2);
}
*/
.s-dark {
  background: var(--d0);
}
.s-dark2 {
  background: var(--d1);
}

.tag {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--or2);
  font-weight: 400;
  margin-bottom: 20px;
}
.tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.tag-light {
  color: rgba(180, 130, 40, 0.6);
}
.tag-light::before {
  background: rgba(180, 130, 40, 0.4);
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--e0);
  margin-bottom: 20px;
}
.h2 em {
  font-style: italic;
  color: var(--or2);
}
.h2-light {
  color: rgba(253, 250, 245, 0.92);
}
.h2-light em {
  color: var(--or4);
}
.lead {
  font-size: 16px;
  color: var(--e3);
  max-width: 540px;
  line-height: 1.9;
  margin-bottom: 72px;
}
.lead-light {
  color: rgba(253, 250, 245, 0.4);
}

/* Scroll reveal */
[data-r] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.88s var(--ease-out),
    transform 0.88s var(--ease-out);
}
[data-r].in {
  opacity: 1;
  transform: translateY(0);
}
[data-r][data-d="1"] {
  transition-delay: 0.08s;
}
[data-r][data-d="2"] {
  transition-delay: 0.16s;
}
[data-r][data-d="3"] {
  transition-delay: 0.24s;
}
[data-r][data-d="4"] {
  transition-delay: 0.32s;
}

/* ════════════════════════════════════════════════════
   DOULEUR → SOLUTION
════════════════════════════════════════════════════ */
.pain-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pain-list {
  margin-top: 48px;
}
.pain-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--f3);
  transition: padding-left 0.35s var(--ease-out);
}
.pain-row:first-child {
  border-top: 1px solid var(--f3);
}
.pain-row:hover {
  padding-left: 10px;
}
.pain-chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(180, 130, 40, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or2);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.pain-row:hover .pain-chk {
  background: var(--or-bg);
  border-color: var(--or2);
}
.pain-row p {
  font-size: 15px;
  color: var(--e2);
  line-height: 1.75;
}
.pain-row p b {
  color: var(--e0);
  font-weight: 500;
}

.sol-box {
  background: var(--e0);
  border-radius: 40px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(14, 11, 6, 0.16);
}
.sol-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--or), var(--or3), var(--or));
}
.sol-h {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  color: rgba(253, 250, 245, 0.92);
  line-height: 1.3;
  margin-bottom: 36px;
}
.sol-h em {
  font-style: italic;
  color: var(--or4);
}
.sol-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sol-item {
  display: flex;
  gap: 16px;
}
.sol-n {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--or3);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
  margin-top: -2px;
}
.sol-item p {
  font-size: 14px;
  color: rgba(253, 250, 245, 0.5);
  line-height: 1.8;
}
.sol-item p b {
  color: rgba(253, 250, 245, 0.82);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════
   PRODUIT VEDETTE
════════════════════════════════════════════════════ */
.feat {
  background: var(--f0);
  overflow: hidden;
}
.feat-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.feat-vis {
  background: var(--d1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}
.feat-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(180, 130, 40, 0.07) 0%,
    transparent 65%
  );
}
.feat-vis-geo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
  pointer-events: none;
}

/* Livre 3D */
.book3d {
  position: relative;
  z-index: 2;
  transform: perspective(1400px) rotateY(-16deg) rotateX(3deg);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.book3d:hover {
  transform: perspective(1400px) rotateY(-6deg) rotateX(1.5deg)
    translateY(-10px);
}
.book-body {
  width: 228px;
  background: linear-gradient(165deg, #2e2518 0%, #1a1410 100%);
  border-radius: 3px 12px 12px 3px;
  padding: 46px 34px 46px 44px;
  position: relative;
  overflow: hidden;
  box-shadow:
    -16px 22px 80px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(180, 130, 40, 0.1);
}
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(
    180deg,
    var(--or4) 0%,
    var(--or2) 30%,
    #5a3c0e 70%,
    var(--or2) 100%
  );
  border-radius: 3px 0 0 3px;
}
.book-label {
  font-size: 8px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--or3);
  margin-bottom: 32px;
  font-weight: 400;
}
.book-sym {
  display: block;
  margin: 0 auto 30px;
}
.book-tit {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: rgba(253, 250, 245, 0.92);
  line-height: 1.25;
  margin-bottom: 14px;
}
.book-rule {
  width: 42px;
  height: 1px;
  background: var(--or2);
  opacity: 0.4;
  margin: 18px 0;
}
.book-sub {
  font-size: 10px;
  color: rgba(253, 250, 245, 0.25);
  letter-spacing: 0.14em;
}
.book-shadow {
  position: absolute;
  bottom: -16px;
  left: 14px;
  right: -22px;
  height: 16px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(14px);
  border-radius: 50%;
}
.book-price-badge {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 10;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--or3), var(--or2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 36px rgba(192, 120, 24, 0.5);
}
.book-price-badge b {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--e0);
  line-height: 1;
}
.book-price-badge small {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 11, 6, 0.55);
}

.feat-content {
  background: var(--f0);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
}
.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: rgba(192, 120, 24, 0.08);
  border: 1px solid var(--or-bd);
  border-radius: 2px;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  margin-bottom: 28px;
}
.feat-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--e0);
  margin-bottom: 8px;
}
.feat-sub {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--e4);
  margin-bottom: 24px;
}
.feat-desc {
  font-size: 15px;
  color: var(--e2);
  line-height: 1.95;
  margin-bottom: 32px;
  padding-left: 10px;
  border-left: 2px solid rgba(192, 120, 24, 0.22);
}
.bens {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bens li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 14px;
  color: var(--e2);
  line-height: 1.7;
}
.ben-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(180, 130, 40, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ben-mark::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or2);
}
.price-block {
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 8px;
}
.price-main {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  color: var(--e0);
  line-height: 1;
}
.price-aside {
  padding-bottom: 8px;
}
.price-was {
  font-size: 14px;
  color: #ec0000;
  text-decoration: line-through;
  margin-bottom: 5px;
}
.price-save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--rouge-bg);
  border: 1px solid var(--rouge-bd);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rouge);
}
.price-note {
  font-size: 12px;
  color: var(--e5);
  font-style: italic;
  margin-top: 4px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.sec-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sec-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--e4);
}
.sec-trust-item svg {
  color: var(--or2);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   OFFRE BANNIÈRE
════════════════════════════════════════════════════ */
.offer-banner {
  background: var(--or-bg);
  border: 1px solid var(--or-bd);
  border-radius: 4px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.offer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.offer-diamond {
  width: 10px;
  height: 10px;
  background: var(--or2);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.offer-txt {
  font-size: 15px;
  color: var(--e1);
  line-height: 1.5;
}
.offer-txt b {
  color: var(--or);
  font-weight: 600;
  font-size: 16px;
}
.offer-badge {
  background: var(--rouge);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   COLLECTION — grille 2×2 (FIX FINAL)
════════════════════════════════════════════════════ */

/* GRID */
.books-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border:1px solid #e6ddd0;
  border-radius:6px;
  overflow:hidden;
}

/* CARD — 🔥 FIX PRINCIPAL */
.books-grid .bk{
  display:flex !important;          /* 🔥 force le côte à côte */
  flex-direction:row !important;    /* 🔥 évite colonne Elementor */
  align-items:flex-start;
  gap:28px;

  padding:40px;
  background:#fff;
  border-right:1px solid #e6ddd0;
  border-bottom:1px solid #e6ddd0;

  transition:.3s;
}

/* BORDURES */
.books-grid .bk:nth-child(2n){border-right:none;}
.books-grid .bk:nth-last-child(-n+2){border-bottom:none;}

/* HOVER */
.books-grid .bk:hover{
  background:#faf7f2;
}

/* IMAGE */
.bk-cover{
  width:120px;
  min-width:120px;   /* 🔥 important pour éviter qu'elle rétrécisse */
  height:auto;
  object-fit:contain;
  display:block;
}

/* CONTENT */
.bk-content{
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

/* NUM */
.bk-n{
  font-size:64px;
  color:#e6ddd0;
  font-family:serif;
  margin-bottom:10px;
}

/* CATEGORY */
.bk-cat{
  font-size:10px;
  letter-spacing:.3em;
  color:#c4973a;
  margin-bottom:8px;
}

/* TITLE */
.bk-t{
  font-size:18px;
  font-family:serif;
  margin-bottom:10px;
}

/* DESC */
.bk-d{
  font-size:13px;
  color:#6b5c4c;
  margin-bottom:20px;
  line-height:1.6;
}

/* FOOT */
.bk-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #e6ddd0;
  padding-top:15px;
  margin-top:auto;
}

/* PRICE */
.bk-p{
  font-size:26px;
  font-family:serif;
}

.bk-p-was{
  font-size:11px;
  text-decoration:line-through;
  color:#f00;
}

/* BUTTON */
.bk-btn{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid #e6ddd0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#000;
  transition:.3s;
}

.bk-btn:hover{
  background:#000;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:700px){
  .books-grid{
    grid-template-columns:1fr;
  }

  .books-grid .bk{
    flex-direction:column !important; /* mobile = colonne */
  }

  .bk-cover{
    width:140px;
  }
}
/* ════════════════════════════════════════════════════
   APERÇU CONTENU
════════════════════════════════════════════════════ */
.prev-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.chaps {
  margin-top: 48px;
}
.chap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--f2);
  transition: padding-left 0.35s var(--ease-out);
}
.chap:first-child {
  border-top: 1px solid var(--f2);
}
.chap:hover {
  padding-left: 10px;
}
.chap-n {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--or2);
  opacity: 0.6;
  flex-shrink: 0;
  width: 26px;
}
.chap-t {
  font-size: 14px;
  color: var(--e3);
  line-height: 1.5;
}
.chap-t b {
  color: var(--e0);
  font-weight: 500;
}
.chap-a {
  margin-left: auto;
  color: var(--f4);
  font-size: 14px;
  transition:
    color 0.3s,
    transform 0.3s;
}
.chap:hover .chap-a {
  color: var(--or2);
  transform: translateX(4px);
}
.prev-card {
  background: #fff;
  border: 1px solid var(--f3);
  border-radius: 4px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 8px 40px rgba(14, 11, 6, 0.04);
}
.prev-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--or2), transparent);
}
.prev-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 8px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--e5);
  border: 1px solid var(--f3);
  padding: 4px 10px;
  border-radius: 2px;
}
.prev-pg {
  font-size: 11px;
  color: var(--e5);
  font-style: italic;
  margin-bottom: 20px;
}
.prev-q {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--e2);
  line-height: 1.7;
  position: relative;
  padding-top: 10px;
}
.prev-q::before {
  content: "\201C";
  font-size: 80px;
  line-height: 0.6;
  color: var(--f3);
  font-style: normal;
  position: absolute;
  top: 0;
  left: -8px;
  font-family: var(--serif);
}
.prev-fade {
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  margin-top: -16px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
}
.prev-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or2);
  font-weight: 500;
  border-bottom: 1px solid rgba(192, 120, 24, 0.28);
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--sans);
  transition:
    color 0.3s,
    border-bottom-color 0.3s;
}
.prev-cta:hover {
  color: var(--or3);
  border-bottom-color: var(--or2);
}

/* ════════════════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════════════════ */
.rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.rating-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--e0);
  line-height: 1;
}
.rating-stars {
  color: var(--or2);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.rating-sub {
  font-size: 12px;
  color: var(--e4);
  letter-spacing: 0.06em;
}
.rating-sep {
  width: 1px;
  height: 80px;
  background: var(--f3);
}
.rating-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rbar-lbl {
  font-size: 12px;
  color: var(--e4);
  width: 60px;
}
.rbar-track {
  flex: 1;
  height: 4px;
  background: var(--f3);
  border-radius: 2px;
  overflow: hidden;
}
.rbar-fill {
  height: 100%;
  background: var(--or2);
  border-radius: 2px;
}
.testi-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--f3);
  border-radius: 4px;
  padding: 38px 32px;
  transition:
    border-color 0.35s,
    transform 0.45s var(--ease-out),
    box-shadow 0.45s;
}
.tcard:hover {
  border-color: rgba(180, 130, 40, 0.2);
  transform: translateY(-7px);
  box-shadow: 0 22px 64px rgba(14, 11, 6, 0.07);
}
.tcard-stars {
  color: var(--or2);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 14px;
}
.tcard-txt {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--e2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tcard-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--or-bg);
  border: 1px solid var(--or-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--or2);
  font-weight: 500;
  flex-shrink: 0;
}
.tcard-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--e0);
  margin-bottom: 2px;
}
.tcard-role {
  font-size: 11px;
  color: var(--e5);
}
.tcard-ok {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert);
}

/* ════════════════════════════════════════════════════
   À PROPOS
════════════════════════════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-sticky {
  position: sticky;
  top: 100px;
}
.about-geo {
  width: 100%;
 /* max-width: 440px;*/
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--f3);
  border-radius: 4px;
  overflow: hidden;
}
.stat {
  padding: 26px 22px;
  border-right: 1px solid var(--f3);
  border-bottom: 1px solid var(--f3);
  background: #fff;
  transition: background 0.3s;
}
.stat:nth-child(2n) {
  border-right: none;
}
.stat:nth-child(n + 3) {
  border-bottom: none;
}
.stat:hover {
  background: var(--or-bg);
}
.stat-n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--e0);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-n em {
  color: var(--or2);
  font-style: normal;
}
.stat-l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--e4);
}
.about-p {
  font-size: 16px;
  color: var(--e3);
  line-height: 1.95;
  margin-bottom: 22px;
}
.about-p b {
  color: var(--e0);
  font-weight: 500;
}
.about-blk {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--e2);
  line-height: 1.55;
  padding: 24px 32px;
  margin: 36px 0;
  border-left: 2px solid var(--or2);
  background: var(--or-bg);
  border-radius: 0 4px 4px 0;
}
.about-sig {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--or2);
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-sig::before {
  content: "";
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--or2);
}
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--vert-bg);
  border: 1px solid rgba(36, 122, 80, 0.18);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 48px;
}
.guarantee-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(36, 122, 80, 0.1);
  border: 1px solid rgba(36, 122, 80, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-txt h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--e0);
  margin-bottom: 4px;
}
.guarantee-txt p {
  font-size: 13px;
  color: var(--e3);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   RÉSEAUX SOCIAUX
════════════════════════════════════════════════════ */
.follow-strip {
  background: var(--f1);
  border-top: 1px solid var(--f3);
  border-bottom: 1px solid var(--f3);
  padding: 44px 56px;
}
.follow-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.follow-txt h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--e0);
  margin-bottom: 5px;
}
.follow-txt p {
  font-size: 14px;
  color: var(--e4);
}
.follow-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--f3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--e2);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-spring);
}
.follow-btn:hover {
  transform: translateY(-3px);
}
.follow-btn.ig:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: rgba(225, 48, 108, 0.04);
}
.follow-btn.tt:hover {
  border-color: var(--e0);
  color: var(--e0);
  background: var(--f2);
}
.follow-btn.yt:hover {
  border-color: #ff0000;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.04);
}
.follow-btn.tg:hover {
  border-color: #26a5e4;
  color: #26a5e4;
  background: rgba(38, 165, 228, 0.04);
}
.follow-btn svg {
  flex-shrink: 0;
}
.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ft-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 250, 245, 0.35);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-spring);
}
.ft-soc:hover {
  transform: translateY(-3px) scale(1.08);
}
.ft-soc.ig:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
}
.ft-soc.tt:hover {
  border-color: rgba(253, 250, 245, 0.5);
  color: rgba(253, 250, 245, 0.8);
  background: rgba(255, 255, 255, 0.06);
}
.ft-soc.yt:hover {
  border-color: #ff0000;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
}
.ft-soc.tg:hover {
  border-color: #26a5e4;
  color: #26a5e4;
  background: rgba(38, 165, 228, 0.08);
}

/* ════════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════════ */
.newsletter {
  background: var(--d0);
  padding: 100px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(180, 130, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.newsletter-in {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 16px;
}
.nl-input {
  flex: 1;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(253, 250, 245, 0.85);
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.nl-input::placeholder {
  color: rgba(253, 250, 245, 0.25);
}
.nl-input:focus {
  border-color: rgba(180, 130, 40, 0.38);
  background: rgba(255, 255, 255, 0.09);
}
.nl-btn {
  padding: 15px 24px;
  background: var(--or2);
  border: none;
  border-radius: 0 3px 3px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f0);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.nl-btn:hover {
  background: var(--or3);
}
.nl-note {
  font-size: 11px;
  color: rgba(253, 250, 245, 0.2);
  letter-spacing: 0.04em;
}
.nl-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.nl-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(253, 250, 245, 0.35);
}
.nl-perk svg {
  color: var(--or3);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   URGENCE
════════════════════════════════════════════════════ */
.urgence {
  background: var(--d1);
  padding: 100px 56px;
  position: relative;
  overflow: hidden;
}
.urgence::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 130, 40, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.urgence-in {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
}
.urgence-note {
  font-size: 11px;
  color: rgba(253, 250, 245, 0.22);
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 14px;
}

/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--f3);
}
.faq-btn {
  width: 100%;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--e0);
  transition: color 0.3s;
}
.faq-btn:hover {
  color: var(--or2);
}
.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e4);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.45s var(--ease-out),
    color 0.3s;
}
.faq-item.open .faq-ico {
  background: var(--or2);
  border-color: var(--or2);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.open .faq-body {
  max-height: 220px;
}
.faq-body p {
  font-size: 14px;
  color: var(--e4);
  line-height: 1.9;
  padding-bottom: 26px;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
footer {
  background: var(--d1);
  border-top: 1px solid rgba(180, 130, 40, 0.07);
  padding: 80px 56px 44px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253, 250, 245, 0.06);
  margin-bottom: 40px;
}
.ft-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: rgba(253, 250, 245, 0.88);
  display: block;
  margin-bottom: 14px;
  white-space: nowrap;
  text-decoration: none;
}
.ft-logo em {
  color: var(--or3);
  font-style: italic;
}
.ft-tag {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.28);
  line-height: 1.8;
  max-width: 240px;
}
.ft-col h5 {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.2);
  margin-bottom: 18px;
  font-weight: 400;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
nav ul li span {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.36);
}
.ft-col a {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.36);
  transition: color 0.25s;
}
.ft-col a:hover {
  color: var(--or3);
}
.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.ft-copy {
  font-size: 12px;
  color: rgba(253, 250, 245, 0.15);
  letter-spacing: 0.06em;
}
.ft-bot-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-bot-links a {
  font-size: 12px;
  color: rgba(253, 250, 245, 0.18);
  transition: color 0.25s;
}
.ft-bot-links a:hover {
  color: rgba(253, 250, 245, 0.5);
}
.ft-bot-sep {
  width: 1px;
  height: 16px;
  background: rgba(253, 250, 245, 0.1);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .s {
    padding: 80px 32px;
  }
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
  .trust-cell:nth-child(2) {
    border-right: none;
  }
  .trust-cell:nth-child(3) {
    border-top: 1px solid rgba(253, 250, 245, 0.05);
  }
  .pain-wrap,
  .feat-wrap,
  .prev-wrap,
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .feat-wrap {
    min-height: auto;
  }
  .feat-vis {
    min-height: 380px;
  }
  .feat-content {
    padding: 60px 48px;
  }
  .books-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .urgence-in {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-sticky {
    position: relative;
    top: 0;
  }
  .follow-strip {
    padding: 36px 32px;
  }
}
@media (max-width: 768px) {
  .s {
    padding: 64px 20px;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .trust-cell {
    border-right: none;
    border-bottom: 1px solid rgba(253, 250, 245, 0.05);
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .books-grid .bk {
    border-right: none;
    border-bottom: 1px solid var(--f3);
  }
  .testi-wrap {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .urgence {
    padding: 64px 20px;
  }
  .feat-content {
    padding: 48px 24px;
  }
  .bk-wide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer {
    padding: 60px 20px 36px;
  }
  .offer-banner {
    flex-direction: column;
    gap: 16px;
  }
  .rating-global {
    flex-direction: column;
    gap: 20px;
  }
  .rating-sep {
    display: none;
  }
  .pain-wrap,
  .prev-wrap,
  .about-wrap {
    gap: 44px;
  }
  .follow-strip {
    padding: 32px 20px;
  }
  .follow-inner {
    flex-direction: column;
    gap: 20px;
  }
  .newsletter {
    padding: 72px 20px;
  }
  .nl-form {
    flex-direction: column;
  }
  .nl-input {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 3px 3px 0 0;
  }
  .nl-btn {
    border-radius: 0 0 3px 3px;
  }
  .h-title {
    white-space: normal;
    font-size: clamp(48px, 13vw, 88px);
  }
}
@media (max-width: 480px) {
  .h-btns,
  .cta-row {
    flex-direction: column;
  }
  .btn-dark,
  .btn-or,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .h-proof {
    flex-direction: column;
    gap: 10px;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .guarantee {
    flex-direction: column;
  }
  .follow-btns {
    gap: 8px;
  }
  .follow-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
}
/* ═══════════════════════════════════════════════════
   CORRECTIONS — À AJOUTER À LA FIN DE style.css
   ═══════════════════════════════════════════════════ */

/* ─── BOUTONS — Arrondi pilule unifié ─────────────── */
.btn-dark,
.btn-or,
.btn-ghost,
.btn-sm,
.btn-lg,
.sc-btn,
.nm-cta,
.bk-btn,
.apple-btn,
.nl-btn {
  border-radius: 50px !important;
}
.feat-badge,
.promo-badge,
.price-save {
  border-radius: 50px !important;
}

/* ─── CARDS & CONTENEURS — Arrondi 16px ───────────── */
.tcard,
.prev-card,
.offer-banner,
.guarantee {
  border-radius: 16px !important;
}
.books-grid {
  border-radius: 16px !important;
}
.bk {
  border-radius: 0 !important; /* carré à l'intérieur de la grille */
}
.books-grid .bk:first-child {
  border-radius: 16px 0 0 0 !important;
}

.bk-wide {
  border-radius: 0 0 16px 16px !important;
}
.sol-box {
  border-radius: 24px !important;
}
.about-blk {
  border-radius: 0 16px 16px 0 !important;
}
.cd-unit {
  border-radius: 10px !important;
}

/* ─── IMAGES COLLECTION — Ratio fixe ──────────────── */
.bk-cover {
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    display: block;
    width: 190px;
    top: 10%;
}
.bk-wide-cover {
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  width: 230px;
}
/* ─── HOVER — transform au lieu de padding ────────── */
/* Corrige le layout shift sur pain-row */
.pain-row {
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.2s !important;
}
.pain-row:hover {
  transform: translateX(10px) !important;
  padding-left: 0 !important;
}
/* Corrige le layout shift sur chap */
.chap {
  transition: transform 0.35s var(--ease-out) !important;
}
.chap:hover {
  transform: translateX(10px) !important;
  padding-left: 0 !important;
}

/* ─── FEAT-VIS — Carrousel ─────────────────────────── */
.em-stack {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(360px, 92vw);
    height: 550px;
    margin: 0 auto;
    overflow: visible;
}
/* ── Flèches ── */
.em-stack-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(192, 120, 24, 0.35);
  background: rgba(20, 15, 8, 0.55);
  color: #C4973A;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  line-height: 1;
}
.em-stack-arrow:hover {
  background: rgba(192, 120, 24, 0.2);
  border-color: #C4973A;
  transform: translateY(-50%) scale(1.1);
}
.em-stack-prev { left: -20px; }
.em-stack-next { right: -20px; }

/* Badge prix */
.em-stack-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff9f00, var(--or2));
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.em-stack-badge b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--e0);
  line-height: 1;
}

.em-stack-badge small {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255, 0, 0);
}

/* Images */
.em-stack-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84%;
  height: 84%;
  object-position: center center;
  display: block;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.em-stack-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Texte bas */
.em-stack-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.3);
  white-space: nowrap;
}

/* Dots */
.em-stack-dots {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
}

.em-stack-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(253, 250, 245, 0.2);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.em-stack-dot.active {
  background: var(--or3);
  transform: scale(1.4);
}
/* ─── Boutons PayPal + Google Pay côte à côte ── */
.em-cart-global .em-express-row {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  margin-top: 10px !important;
}
.em-cart-global .em-express-row > * {
  flex: 1 !important;
  min-width: 0 !important;
  display: initial !important;
  align-items: stretch !important;
}
 
/* Force la même hauteur sur les deux iframes/boutons */
.em-cart-global .em-express-row .ppc-button-wrapper,
.em-cart-global .em-express-row [class*="wcpay-express-checkout"] {
  height: 48px !important;
  min-height: 48px !important;
}
.em-cart-global .em-express-row iframe,
.em-cart-global .em-express-row button {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border-radius: 50px !important;
}
 
/* ─── Texte ppcp-messages discret ───────────── */
.em-cart-global .ppcp-messages {
  font-size: 10px !important;
  color: var(--e5) !important;
  text-align: center !important;
  margin: 2px 0 6px !important;
}
 
/* ─── Mobile : empilés sous 640px ────────────── */
@media (max-width: 640px) {
  .em-cart-global .em-express-row {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .em-cart-global .em-express-row > * {
    flex: none !important;
    width: 100% !important;
  }
  .em-cart-global .em-express-row iframe,
  .em-cart-global .em-express-row button {
    width: 100% !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .em-stack {
    width: min(320px, 92vw);
    height: 420px;
  }

  .em-stack-img {
    width: 86%;
    height: 86%;
  }

  .em-stack-badge {
    width: 68px;
    height: 68px;
    top: 6px;
    right: 6px;
  }

  .em-stack-badge b {
    font-size: 20px;
  }
}