.elementor-7048 .elementor-element.elementor-element-a985644{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e4f3862 *//* ═══════════════════════════════════════════════
   CYROКО — BOUTIQUE FICHES PRODUITS
   CSS Global scopé .boutique
   ═══════════════════════════════════════════════
   
   📌 INSTRUCTIONS ELEMENTOR :
   
   Option A (recommandée) :
   → Elementor > Réglages > CSS personnalisé global
   → Coller tout ce fichier
   
   Option B :
   → Widget HTML > <style>...</style>
   → Placer EN HAUT de la page, une seule fois
   
   ⚠️  Chaque fiche doit être dans <div class="boutique">
   ⚠️  Un seul chargement CSS pour TOUTES les fiches
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ================================================
   RESET & VARIABLES — LIGHT THEME
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #0012F8;
  --blue-dk:   #07007C;
  --blue-lt:   #2D3FFF;
  --blue-pale: #EEF1FF;
  --blue-mid:  #D6DBFF;
  --white:     #FFFFFF;
  --grey-bg:   #F4F6FA;
  --grey-line: #E2E6EF;
  --text:      #0D1240;
  --text-mid:  #3A4080;
  --text-muted:#7A82B0;
  --success:   #0B7C3E;
  --r4: 4px; --r8: 8px; --r12: 12px; --r16: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ================================================
   STICKY BAR
   ================================================ */
.boutique .sticky-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dk);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.boutique .sticky-bar .pulse-dot {
  width: 8px; height: 8px;
  background: #6BFFB8;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.boutique .sticky-bar a {
  color: #A8B8FF;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================
   HERO
   ================================================ */
.boutique .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}

/* Left panel – book visual */
.boutique .hero-visual {
  position: relative;
  background: linear-gradient(145deg, var(--blue-dk) 0%, #0515C0 60%, #0B1EE8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  overflow: hidden;
}

/* Subtle radial glow */
.hero-visual::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Diagonal decorative lines */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.025) 40px,
    rgba(255,255,255,0.025) 41px
  );
  pointer-events: none;
}

.boutique .book-wrap {
  position: relative;
  z-index: 2;
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.6s ease;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(-20px 30px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(255,255,255,0.1));
}

.book-wrap:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg);
}

@keyframes float {
  0%, 100% { transform: perspective(900px) rotateY(-8deg) rotateX(2deg) translateY(0); }
  50%       { transform: perspective(900px) rotateY(-8deg) rotateX(2deg) translateY(-12px); }
}

.boutique .book-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--r8);
  display: block;
}

.boutique .book-spine {
  position: absolute;
  left: -16px; top: 0; bottom: 0;
  width: 16px;
  background: linear-gradient(to right, #020850, #07007C);
  border-radius: 2px 0 0 2px;
  transform: perspective(900px) rotateY(40deg);
  transform-origin: right center;
}

.boutique .badge-floating {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  background: #fff;
  color: var(--blue-dk);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: spin-badge 12s linear infinite;
  letter-spacing: 0.02em;
}

@keyframes spin-badge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.boutique .badge-floating span {
  animation: spin-badge-inner 12s linear infinite;
  display: block;
  font-size: 18px;
  color: var(--blue);
}

@keyframes spin-badge-inner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Right panel – info */
.boutique .hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7% 80px 7%;
  background: var(--white);
  position: relative;
  border-left: none;
}

.hero-info::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  border-radius: 4px;
}

.boutique .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0;
  animation: reveal-up 0.6s 0.2s ease forwards;
}

.boutique .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0;
  animation: reveal-up 0.6s 0.32s ease forwards;
}

.boutique .hero-title em {
  font-style: italic;
  color: var(--blue);
}

.boutique .hero-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 24px;
  opacity: 0;
  animation: reveal-up 0.6s 0.42s ease forwards;
}

.boutique .rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: reveal-up 0.6s 0.52s ease forwards;
}

.stars { color: #F59E0B; font-size: 17px; letter-spacing: 2px; }
.rating-num { font-weight: 800; font-size: 15px; color: var(--text); }
.rating-count { font-size: 13px; color: var(--text-muted); }

.boutique .verified-badge {
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.boutique .tagline {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 480px;
  opacity: 0;
  animation: reveal-up 0.6s 0.62s ease forwards;
}

.tagline strong { color: var(--text); font-weight: 700; }

.boutique .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  opacity: 0;
  animation: reveal-up 0.6s 0.7s ease forwards;
}

.boutique .price-current {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--blue-dk);
  line-height: 1;
}

.price-note { font-size: 13px; color: var(--text-muted); }

.boutique .stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 28px;
  opacity: 0;
  animation: reveal-up 0.6s 0.76s ease forwards;
}

.boutique .stock-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.boutique .cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  opacity: 0;
  animation: reveal-up 0.6s 0.84s ease forwards;
}

.boutique .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff !important;
  padding: 18px 32px;
  border-radius: var(--r8);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(0,18,248,0.3);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,18,248,0.4);
}

.btn-arrow { font-size: 18px; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.boutique .micro-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.boutique .trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-line);
  flex-wrap: wrap;
  opacity: 0;
  animation: reveal-up 0.6s 0.95s ease forwards;
}

.boutique .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.boutique .trust-item .ico { font-size: 15px; }

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   SOCIAL PROOF TICKER
   ================================================ */
.boutique .ticker-wrap {
  background: var(--blue-pale);
  border-top: 1px solid var(--blue-mid);
  border-bottom: 1px solid var(--blue-mid);
  overflow: hidden;
  padding: 12px 0;
}

.boutique .ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

.boutique .ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.boutique .ticker-item .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.ticker-item em { color: var(--blue); font-style: normal; font-weight: 700; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   SHARED SECTION STYLES
   ================================================ */
.boutique .section {
  padding: 90px 8%;
  background: var(--white);
}

.boutique .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.boutique .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}

.boutique .section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 50px;
}

/* ================================================
   BENEFITS GRID
   ================================================ */
.boutique .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.boutique .benefit-cell {
  background: var(--white);
  border: 1.5px solid var(--grey-line);
  padding: 36px 30px;
  border-radius: var(--r12);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.benefit-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit-cell:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 28px rgba(0,18,248,0.1);
  transform: translateY(-3px);
}

.benefit-cell:hover::before { transform: scaleX(1); }

.boutique .benefit-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.benefit-cell:hover .benefit-num { color: var(--blue-mid); }

.boutique .benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.boutique .benefit-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ================================================
   BEFORE / AFTER
   ================================================ */
.boutique .comparison-section {
  padding: 80px 8%;
  background: var(--grey-bg);
}

.boutique .compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--r16);
  overflow: hidden;
  margin-top: 44px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,18,248,0.06);
}

.compare-col { padding: 40px 36px; }

.before-col { background: #FEF9F9; border-right: 1px solid var(--grey-line); }
.after-col  { background: #F6FBF9; }

.boutique .compare-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.before-col .compare-head { color: #C0392B; }
.after-col  .compare-head { color: var(--success); }

.boutique .compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.before-col .compare-item { color: #A0574F; }
.after-col  .compare-item { color: var(--text-mid); }

.compare-icon { flex-shrink: 0; margin-top: 1px; font-size: 15px; }

.boutique .compare-divider {
  background: var(--grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
}

.boutique .compare-divider-inner {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
}

/* ================================================
   EDITORIAL REVIEW
   ================================================ */
.boutique .review-section {
  padding: 80px 8%;
  background: var(--blue-dk);
  position: relative;
  overflow: hidden;
}

.review-section::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -80px; left: 4%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.boutique .review-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.boutique .review-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 32px;
}

.boutique .review-quote em {
  color: #A8B8FF;
  font-style: normal;
}

.boutique .reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.boutique .reviewer-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 15px; color: #fff; }
.reviewer-role { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.boutique .testimonials-section {
  padding: 80px 8%;
  background: var(--grey-bg);
}

.boutique .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.boutique .testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--grey-line);
  border-radius: var(--r12);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 28px rgba(0,18,248,0.08);
  transform: translateY(-3px);
}

.t-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

.boutique .t-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: 10px; }

.boutique .t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.t-name { font-weight: 700; font-size: 13px; color: var(--text); }
.t-meta { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ================================================
   CHAPTERS
   ================================================ */
.boutique .chapters-section {
  padding: 80px 8%;
  background: var(--white);
}

.boutique .chapters-list {
  margin-top: 36px;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,18,248,0.05);
}

.boutique .chapter-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--grey-line);
  background: var(--white);
  transition: background 0.2s;
  cursor: default;
}

.chapter-row:last-child { border-bottom: none; }
.chapter-row:nth-child(even) { background: #FAFBFF; }
.chapter-row:hover { background: var(--blue-pale); }

.boutique .chapter-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-mid);
  line-height: 1;
}

.chapter-row:hover .chapter-num { color: var(--blue); }

.boutique .chapter-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 3px;
}

.boutique .chapter-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.boutique .chapter-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tag-hot { background: #FFF4E5; color: #C05700; border: 1px solid #FFD8A8; }
.tag-new { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-mid); }
.tag-core { background: var(--grey-bg); color: var(--text-muted); border: 1px solid var(--grey-line); }

/* ================================================
   FINAL CTA
   ================================================ */
.boutique .final-cta {
  padding: 80px 8% 60px;
  text-align: center;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-line);
  position: relative;
}

.boutique .final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.boutique .final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Stats row ── */
.boutique .final-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--grey-line);
  border-radius: var(--r12);
  padding: 24px 32px;
  margin-bottom: 44px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,18,248,0.05);
}

.boutique .final-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.boutique .final-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.boutique .final-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

.boutique .final-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--grey-line);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── Title ── */
.boutique .final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
  text-align: center;
}

.boutique .final-cta-title em {
  font-style: italic;
  color: var(--blue);
}

.boutique .final-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  text-align: center;
  max-width: 520px;
}

.boutique .final-cta-sub strong {
  color: var(--success);
  font-weight: 700;
}

/* ── Buttons ── */
.boutique .final-cta-buttons {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.boutique .btn-primary-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff !important;
  padding: 18px 28px;
  border-radius: var(--r8);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(0,18,248,0.3);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.boutique .btn-primary-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.boutique .btn-primary-large:hover::before { transform: translateX(100%); }

.boutique .btn-primary-large:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,18,248,0.4);
}

.boutique .btn-secondary-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue) !important;
  padding: 18px 28px;
  border-radius: var(--r8);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.25s;
  border: 2px solid var(--blue);
  cursor: pointer;
  white-space: nowrap;
}

.boutique .btn-secondary-large:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}

/* ── Trust pills ── */
.boutique .final-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.boutique .final-pill {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.boutique .disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
  opacity: 0.55;
  text-align: center;
  max-width: 700px;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════ */
.boutique .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.boutique .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Système complet 4 breakpoints
   ════════════════════════════════════════════════════
   
   BP1 → 1200px  Laptop étroit / grande tablette paysage
   BP2 → 1024px  Tablette paysage
   BP3 →  768px  Tablette portrait / grand mobile
   BP4 →  480px  Mobile standard
   BP5 →  380px  Petit mobile (iPhone SE, etc.)

   ⚠️  Tous les sélecteurs sont préfixés .boutique
       pour ne pas interférer avec le thème WordPress
   ════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────
   BP1 — max-width: 1200px
   ──────────────────────────────────────────────────── */
@media (max-width: 1200px) {

  /* Hero */
  .boutique .hero { gap: 0; }
  .boutique .hero-visual { padding: 60px 40px; }
  .boutique .hero-info { padding: 60px 5% 60px 5%; }
  .boutique .hero-title { font-size: 48px; }

  /* Benefits */
  .boutique .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Testimonials */
  .boutique .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Sections padding */
  .boutique .section,
  .boutique .comparison-section,
  .boutique .review-section,
  .boutique .testimonials-section,
  .boutique .chapters-section,
  .boutique .final-cta { padding-left: 5%; padding-right: 5%; }
}

/* ────────────────────────────────────────────────────
   BP2 — max-width: 1024px
   ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hero — réduit l'image, compresse le texte */
  .boutique .hero { grid-template-columns: 1fr 1fr; }
  .boutique .hero-visual { padding: 50px 30px; }
  .boutique .book-wrap img { max-width: 240px; }
  .boutique .hero-info { padding: 50px 4% 50px 4%; }
  .boutique .hero-title { font-size: 42px; }
  .boutique .hero-year { font-size: 16px; }
  .boutique .tagline { font-size: 15px; }
  .boutique .price-current { font-size: 36px; }
  .boutique .cta-group { max-width: 100%; }

  /* Ticker */
  .boutique .ticker-item { font-size: 12px; gap: 8px; }

  /* Benefits — 2 colonnes */
  .boutique .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .boutique .benefit-num { font-size: 38px; }

  /* Comparaison */
  .boutique .compare-col { padding: 32px 28px; }

  /* Testimonials — 2 colonnes */
  .boutique .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Chapitres */
  .boutique .chapter-row { gap: 16px; padding: 20px 24px; }

  /* Final CTA */
  .boutique .final-stats-row { padding: 20px 24px; gap: 4px; }
  .boutique .final-stat-num { font-size: 26px; }
  .boutique .final-stat-label { font-size: 10px; }
}

/* ────────────────────────────────────────────────────
   BP3 — max-width: 768px
   Pivot principal : on passe en colonne unique
   ──────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Sticky bar ── */
  .boutique .sticky-bar {
    font-size: 12px;
    padding: 8px 16px;
    gap: 8px;
    line-height: 1.4;
  }
  .boutique .sticky-bar .pulse-dot { display: none; }

  /* ── Hero : empilé vertical ── */
  .boutique .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .boutique .hero-visual {
    padding: 40px 20px 36px;
    min-height: 280px;
  }
  .boutique .book-wrap img { max-width: 200px; }
  .boutique .badge-floating {
    width: 60px; height: 60px;
    font-size: 9px;
    top: 16px; right: 16px;
  }
  .boutique .badge-floating span { font-size: 15px; }
  .boutique .hero-info {
    padding: 36px 20px 44px;
    text-align: left;
  }
  .boutique .hero-info::before { display: none; }
  .boutique .eyebrow { font-size: 10px; }
  .boutique .hero-title { font-size: 34px; line-height: 1.05; }
  .boutique .hero-year { font-size: 14px; margin-bottom: 16px; }
  .boutique .rating-row { flex-wrap: wrap; gap: 6px; }
  .boutique .rating-num { font-size: 14px; }
  .boutique .rating-count { font-size: 12px; }
  .boutique .verified-badge { font-size: 10px; }
  .boutique .tagline { font-size: 15px; margin-bottom: 22px; }
  .boutique .price-row { gap: 8px; margin-bottom: 10px; }
  .boutique .price-current {
    font-size: 32px;
  }
  .boutique .price-current[style] {
    font-size: 24px !important;
  }
  .boutique .price-note { font-size: 12px; }
  .boutique .stock-indicator { font-size: 12px; margin-bottom: 20px; }
  .boutique .cta-group { max-width: 100%; gap: 10px; }
  .boutique .btn-primary {
    font-size: 15px;
    padding: 16px 24px;
  }
  .boutique .micro-copy { font-size: 11px; }
  .boutique .trust-row {
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
  }
  .boutique .trust-item { font-size: 11px; gap: 5px; }
  .boutique .trust-item .ico { font-size: 14px; }

  /* ── Ticker ── */
  .boutique .ticker-wrap { padding: 10px 0; }
  .boutique .ticker-item { font-size: 12px; gap: 8px; }
  .boutique .ticker-item .avatar { width: 22px; height: 22px; font-size: 10px; }

  /* ── Section spacing ── */
  .boutique .section,
  .boutique .comparison-section,
  .boutique .review-section,
  .boutique .testimonials-section,
  .boutique .chapters-section { padding: 52px 20px; }
  .boutique .final-cta { padding: 52px 20px 44px; }

  .boutique .section-label { font-size: 10px; }
  .boutique .section-title { font-size: 26px; line-height: 1.15; }
  .boutique .section-sub { font-size: 15px; margin-bottom: 36px; }

  /* ── Benefits : 1 colonne ── */
  .boutique .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .boutique .benefit-cell { padding: 24px 22px; }
  .boutique .benefit-num { font-size: 34px; margin-bottom: 10px; }
  .boutique .benefit-title { font-size: 14px; }
  .boutique .benefit-desc { font-size: 13px; }

  /* ── Comparaison : 1 colonne ── */
  .boutique .compare-grid { grid-template-columns: 1fr; }
  .boutique .compare-col { padding: 24px 20px; }
  .boutique .before-col {
    border-right: none;
    border-bottom: 1px solid var(--grey-line);
  }
  .boutique .compare-divider {
    width: 100%;
    height: 44px;
    flex-direction: row;
  }
  .boutique .compare-head { font-size: 10px; margin-bottom: 18px; }
  .boutique .compare-item { font-size: 13px; gap: 10px; margin-bottom: 12px; }

  /* ── Review ── */
  .boutique .review-section::before { font-size: 200px; }
  .boutique .review-quote { font-size: 18px; }
  .boutique .reviewer-name { font-size: 13px; }
  .boutique .reviewer-role { font-size: 11px; }

  /* ── Testimonials : 1 colonne ── */
  .boutique .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }
  .boutique .testimonial-card { padding: 22px 20px; }
  .boutique .t-text { font-size: 13px; }
  .boutique .t-name { font-size: 12px; }
  .boutique .t-meta { font-size: 11px; }

  /* ── Chapitres ── */
  .boutique .chapters-list { margin-top: 28px; }
  .boutique .chapter-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 16px 16px;
  }
  .boutique .chapter-tag { display: none; }
  .boutique .chapter-num { font-size: 20px; }
  .boutique .chapter-title { font-size: 13px; margin-bottom: 2px; }
  .boutique .chapter-desc { font-size: 12px; }

  /* ── Final CTA ── */
  .boutique .final-cta-inner { gap: 0; }
  .boutique .final-stats-row {
    flex-wrap: wrap;
    padding: 16px;
    gap: 0;
    margin-bottom: 32px;
  }
  .boutique .final-stat {
    flex: 0 0 50%;
    padding: 12px 8px;
    border-bottom: 1px solid var(--grey-line);
  }
  .boutique .final-stat:nth-child(1),
  .boutique .final-stat:nth-child(3) {
    border-right: 1px solid var(--grey-line);
  }
  .boutique .final-stat:nth-child(3),
  .boutique .final-stat:nth-child(4) {
    border-bottom: none;
  }
  .boutique .final-stat-sep { display: none; }
  .boutique .final-stat-num { font-size: 26px; }
  .boutique .final-stat-label { font-size: 10px; max-width: 80px; }
  .boutique .final-cta-title { font-size: 28px; margin-bottom: 14px; }
  .boutique .final-cta-sub { font-size: 14px; margin-bottom: 28px; }
  .boutique .final-cta-buttons {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }
  .boutique .btn-primary-large,
  .boutique .btn-secondary-large {
    width: 100%;
    padding: 17px 24px;
    font-size: 15px;
  }
  .boutique .final-trust-pills { gap: 8px; margin-bottom: 28px; }
  .boutique .final-pill { font-size: 11px; padding: 6px 12px; }
  .boutique .disclaimer { font-size: 10px; }
}

/* ────────────────────────────────────────────────────
   BP4 — max-width: 480px
   Mobile standard (iPhone 14, Galaxy S, etc.)
   ──────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* Sticky bar : texte plus court */
  .boutique .sticky-bar { font-size: 11px; padding: 7px 12px; }

  /* Hero */
  .boutique .hero-visual { padding: 32px 16px 28px; min-height: 240px; }
  .boutique .book-wrap img { max-width: 170px; }
  .boutique .badge-floating {
    width: 52px; height: 52px;
    font-size: 8px;
    top: 12px; right: 12px;
  }
  .boutique .badge-floating span { font-size: 13px; }
  .boutique .hero-info { padding: 28px 16px 36px; }
  .boutique .hero-title { font-size: 28px; }
  .boutique .tagline { font-size: 14px; line-height: 1.6; }
  .boutique .price-current { font-size: 28px; }
  .boutique .btn-primary { font-size: 14px; padding: 15px 20px; }
  .boutique .trust-row { gap: 8px; flex-wrap: wrap; }
  .boutique .trust-item { font-size: 10px; }

  /* Sections */
  .boutique .section,
  .boutique .comparison-section,
  .boutique .review-section,
  .boutique .testimonials-section,
  .boutique .chapters-section { padding: 44px 16px; }
  .boutique .final-cta { padding: 44px 16px 36px; }

  .boutique .section-title { font-size: 23px; }
  .boutique .section-sub { font-size: 14px; }

  /* Benefits */
  .boutique .benefit-cell { padding: 20px 18px; }
  .boutique .benefit-num { font-size: 28px; }

  /* Review */
  .boutique .review-quote { font-size: 16px; line-height: 1.5; }
  .boutique .review-section::before { display: none; }

  /* Chapitres */
  .boutique .chapter-row { padding: 14px 14px; gap: 10px; }
  .boutique .chapter-num { font-size: 18px; }
  .boutique .chapter-title { font-size: 13px; }
  .boutique .chapter-desc { font-size: 11px; }

  /* Final CTA */
  .boutique .final-cta-title { font-size: 24px; }
  .boutique .final-stat-num { font-size: 22px; }
  .boutique .btn-primary-large,
  .boutique .btn-secondary-large { font-size: 14px; padding: 15px 18px; }
  .boutique .final-pill { font-size: 10px; padding: 5px 10px; }
}

/* ────────────────────────────────────────────────────
   BP5 — max-width: 380px
   Petit mobile (iPhone SE, Galaxy A14, etc.)
   ──────────────────────────────────────────────────── */
@media (max-width: 380px) {

  .boutique .hero-title { font-size: 24px; }
  .boutique .hero-year { font-size: 12px; }
  .boutique .price-current { font-size: 26px; }
  .boutique .rating-row { gap: 4px; }
  .boutique .verified-badge { display: none; }

  .boutique .section-title { font-size: 21px; }

  .boutique .sticky-bar { font-size: 10px; }

  .boutique .book-wrap img { max-width: 150px; }
  .boutique .hero-visual { min-height: 210px; }

  .boutique .final-cta-title { font-size: 21px; }
  .boutique .final-stat-num { font-size: 20px; }
  .boutique .final-stat-label { font-size: 9px; }

  .boutique .compare-item { font-size: 12px; }
  .boutique .t-text { font-size: 12px; }
}

/* ────────────────────────────────────────────────────
   Touch : suppression des hover states sur mobile
   Évite les états "bloqués" au tap sur iOS/Android
   ──────────────────────────────────────────────────── */
@media (hover: none) {
  .boutique .benefit-cell:hover,
  .boutique .testimonial-card:hover,
  .boutique .chapter-row:hover { transform: none; box-shadow: none; }
  .boutique .btn-primary:hover,
  .boutique .btn-primary-large:hover,
  .boutique .btn-secondary-large:hover { transform: none; }
  .boutique .book-wrap:hover { transform: perspective(900px) rotateY(-8deg) rotateX(2deg); }
}

/* ────────────────────────────────────────────────────
   Accessibilité : respect de prefers-reduced-motion
   ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .boutique .book-wrap { animation: none; }
  .boutique .badge-floating { animation: none; }
  .boutique .badge-floating span { animation: none; }
  .boutique .ticker-track { animation-play-state: paused; }
  .boutique .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}/* End custom CSS */