/* ==========================================================================
   PATICHE • Façonné à Troyes — V4 DIRECTION ARTISTIQUE & UX HYBRIDE
   Synthèse : Poésie Papercraft (V3) + Vitesse de Conversion (V1) + Storytelling UV (V2)
   Normes : WCAG 2.2 AA/AAA, Mobile-First, Touch 44px
   ========================================================================== */

:root {
  /* PALETTE HYBRIDE PATICHE (CHALEUR ARTISANALE & CONTRASTES WCAG AA) */
  --v4-bg-page:        #F8F5EE;
  --v4-bg-surface:     #FAF6EE;
  --v4-bg-card:        #FFFFFF;
  --v4-bg-elevated:    #F2EBDD;

  --v4-text-primary:   #2A332C; /* Contraste 11.4:1 sur écru */
  --v4-text-secondary: #435543; /* Contraste 5.8:1 sur écru (Rehaussé WCAG AA) */
  --v4-text-muted:     #526352; /* Contraste 4.7:1 */
  --v4-text-light:     #FAF6EE;

  --v4-sage-deep:      #435543;
  --v4-sage-main:      #5F735F;
  --v4-sage-light:     #8A9A86;

  --v4-terracotta:     #C86A58;
  --v4-terracotta-soft:#DB826E;
  --v4-terracotta-dark:#A04D3D;

  --v4-gold:           #AA8222; /* Dorure contrastée */
  --v4-gold-bright:    #D4AF37; /* Rehauts dorure or champagne */
  --v4-gold-light:     #F5D77F;

  --v4-plum:           #4A2545; /* Violet royal / prune impériale signature */
  --v4-juniper:        #1E3A2B; /* Rameaux de genévrier sauvage */

  --v4-border:         #E5D9C7;
  --v4-border-subtle:  #EDE3D4;

  /* OMBRES BAS-RELIEF CARTON CARDSTOCK 300g */
  --v4-relief-btn:     0 4px 10px rgba(60, 45, 30, 0.12), 0 1px 2px rgba(60, 45, 30, 0.08);
  --v4-relief-card:    0 8px 24px -4px rgba(60, 45, 30, 0.10), 0 2px 6px rgba(60, 45, 30, 0.05);
  --v4-relief-float:   0 16px 36px -6px rgba(45, 55, 45, 0.18), 0 4px 12px rgba(45, 55, 45, 0.08);
  --v4-bevel-inset:    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.9);
}

body.v4-hybrid-theme {
  background-color: var(--v4-bg-page);
  background-image: radial-gradient(#E5DBCB 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  color: var(--v4-text-primary);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow-x: hidden;
  margin: 0;
}

/* --------------------------------------------------------------------------
   1. HERO HYBRIDE : PAPERCRAFT ÉPURÉ + COMMUTATEUR DIRECT D'UNIVERS (V1 SPEED)
   -------------------------------------------------------------------------- */
.v4-hero-stage {
  position: relative;
  min-height: 88vh;
  padding: 40px 0 60px 0;
  background: linear-gradient(180deg, #FDFBF7 0%, #F5EFE3 40%, #EDE5D5 75%, var(--v4-bg-page) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.v4-hero-sun-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 245, 0.9) 0%, rgba(245, 238, 224, 0.5) 45%, rgba(238, 228, 210, 0.2) 65%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* HALO SUIVEUR DE CURSEUR ULTRA-LÉGER (HERO UNIQUEMENT) */
.v4-hero-cursor-halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  margin-left: -240px;
  margin-top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20) 0%, rgba(212, 175, 55, 0.08) 35%, rgba(193, 92, 61, 0.04) 55%, transparent 72%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.3s ease, transform 0.06s ease-out;
  will-change: transform, opacity;
}

.v4-hero-stage.hero-cursor-active .v4-hero-cursor-halo {
  opacity: 1;
}

@media (max-width: 1024px) {
  .v4-hero-cursor-halo {
    display: none !important;
  }
}

.v4-hero-mountains-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  pointer-events: none;
  z-index: 2;
}

.v4-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* COLONNE GAUCHE DU HERO : MESSAGE & COMMUTATEUR */
.v4-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v4-hero-emblem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--v4-border);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--v4-sage-deep);
  box-shadow: var(--v4-bevel-inset);
  width: fit-content;
}

.v4-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--v4-text-primary);
  margin: 0;
}

.v4-hero-title .terracotta-span {
  color: var(--v4-terracotta);
  font-style: italic;
}

.v4-hero-title .sage-span {
  color: var(--v4-sage-deep);
}

.v4-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--v4-text-secondary);
  margin: 0;
  max-width: 520px;
}

/* COMMUTATEUR D'UNIVERS RAPIDE (INSPIRATION V1 SPEED) */
.v4-universe-pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.v4-universe-pill-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  color: var(--v4-text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(60, 45, 30, 0.04);
}

.v4-universe-pill-btn:hover {
  border-color: var(--v4-terracotta);
  color: var(--v4-terracotta);
  transform: translateY(-1px);
}

.v4-universe-pill-btn.active {
  background: var(--v4-sage-deep);
  border-color: var(--v4-sage-deep);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(67, 85, 67, 0.25);
}

.v4-universe-pill-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.v4-trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* BOUTONS D'ACTION DU HERO (PRESSED PAPER) */
.v4-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

/* BOUTONS D'ACTION DU HERO & DU SITE (MODERNES, ÉLÉGANTS & DOUX) */
.v4-btn-primary {
  background: var(--v4-terracotta);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--v4-terracotta-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  min-height: 44px;
}

.v4-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 106, 88, 0.25);
  background: #C46250;
}

.v4-btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.v4-btn-secondary {
  background: #FFFFFF;
  color: var(--v4-sage-deep);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--v4-border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  min-height: 44px;
}

.v4-btn-secondary:hover {
  border-color: var(--v4-sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(67, 85, 67, 0.12);
  background: #FFFFFF;
}

.v4-btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* BOUTON ESPACE PRO HEADER : LISIBILITÉ PARFAITE & HAUT CONTRASTE */
.v4-hybrid-theme .nav-link-pro {
  background: var(--v4-sage-deep) !important;
  border: 1.5px solid var(--v4-gold) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  padding: 8px 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
}

.v4-hybrid-theme .nav-link-pro svg {
  stroke: var(--v4-gold-light) !important;
}

.v4-hybrid-theme .nav-link-pro:hover {
  background: #2E3B2F !important;
  border-color: var(--v4-gold-bright) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

/* ICÔNES RÉSEAUX SOCIAUX FOOTER */
.v4-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.v4-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FAF6EE;
  transition: all 0.2s ease;
  text-decoration: none;
}

.v4-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.v4-social-icon:hover {
  background: var(--v4-terracotta);
  border-color: var(--v4-terracotta);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(200, 106, 88, 0.35);
}

.v4-social-icon.v4-social-insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border-color: #d6249f !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(214, 36, 159, 0.4) !important;
}

.v4-social-icon.v4-social-fb:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4) !important;
}

.v4-social-icon.v4-social-tiktok:hover {
  background: #000000 !important;
  border-color: #25F4EE !important;
  color: #FFFFFF !important;
  box-shadow: -2px 2px 10px rgba(37, 244, 238, 0.5), 2px -2px 10px rgba(254, 44, 85, 0.5) !important;
}

/* HERO INSTANT PREVIEW : CHAMP DE SAISIE INTERACTIF EN DIRECT */
.v4-hero-preview-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--v4-border);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--v4-relief-btn), var(--v4-bevel-inset);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v4-hero-preview-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.v4-preview-sparkle {
  color: var(--v4-gold);
}

.v4-hero-input-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.v4-hero-live-input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 12px;
  padding: 10px 38px 10px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--v4-text-primary);
  transition: all 0.2s ease;
  outline: none;
}

.v4-hero-live-input:focus {
  border-color: var(--v4-terracotta);
  box-shadow: 0 0 0 3px rgba(200, 106, 88, 0.2);
}

.v4-hero-input-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: var(--v4-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: none;
  line-height: 1;
}

.v4-hero-input-clear:hover {
  color: var(--v4-terracotta);
}

.v4-hero-preview-suggestions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.v4-sugg-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v4-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v4-sugg-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--v4-border);
  color: var(--v4-text-secondary);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.v4-sugg-btn:hover {
  background: var(--v4-sage-deep);
  color: #FFFFFF;
  border-color: var(--v4-sage-deep);
}

/* OVERLAY GRAVURE SUR L'IMAGE DU HERO SHOWCASE */
.v4-showcase-live-overlay {
  position: absolute;
  bottom: 48px;
  left: 12px;
  right: 12px;
  z-index: 10;
  pointer-events: none;
  animation: v4-fade-in 0.3s ease-out;
}

.v4-live-engraving-badge {
  background: linear-gradient(135deg, rgba(28, 22, 18, 0.92) 0%, rgba(50, 40, 30, 0.95) 100%);
  border: 1.5px solid var(--v4-gold-bright);
  border-radius: 12px;
  padding: 7px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.v4-live-foil-icon {
  color: var(--v4-gold-bright);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px var(--v4-gold-bright));
}

.v4-live-static-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #D6DEC8;
  white-space: nowrap;
}

.v4-live-engraving-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 700;
  color: var(--v4-gold-light);
  text-shadow: 0 1px 2px rgba(0,0,0,0.7), 0 0 10px rgba(212, 175, 55, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

@keyframes v4-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* COLONNE DROITE DU HERO : CARTE PRODUIT DYNAMIQUE ÉCRIN KRAFT (V1 + V3) */
.v4-hero-showcase-card {
  background: var(--v4-bg-surface);
  border: 2px solid var(--v4-border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--v4-relief-float), var(--v4-bevel-inset);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.v4-showcase-thumb-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  box-shadow: 0 4px 12px rgba(60, 45, 30, 0.08);
}

.v4-showcase-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v4-showcase-thumb-wrap:hover img {
  transform: scale(1.03);
}

.v4-showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--v4-terracotta);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(200, 106, 88, 0.35);
}

.v4-showcase-leadtime {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(42, 51, 44, 0.88);
  backdrop-filter: blur(6px);
  color: #FAF6EE;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 14px;
}

.v4-showcase-details {
  margin-top: 18px;
}

.v4-showcase-cat-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v4-terracotta-dark);
  letter-spacing: 1px;
}

.v4-showcase-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 4px 0 8px 0;
  color: var(--v4-text-primary);
}

.v4-showcase-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--v4-text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v4-showcase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--v4-border-subtle);
  padding-top: 14px;
}

.v4-showcase-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.v4-showcase-price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--v4-sage-deep);
}

.v4-showcase-price-original {
  font-size: 0.9rem;
  color: #8D867E;
  text-decoration: line-through;
}

/* --------------------------------------------------------------------------
   2. BARRE DE RÉASSURANCE ATELIER & SHOP2SHOP
   -------------------------------------------------------------------------- */
.v4-trust-strip {
  background: #FFFFFF;
  border-top: 1.5px solid var(--v4-border);
  border-bottom: 1.5px solid var(--v4-border);
  padding: 22px 0;
}

.v4-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v4-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v4-trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.v4-trust-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--v4-text-primary);
  margin-bottom: 2px;
}

.v4-trust-sub {
  font-size: 0.74rem;
  color: var(--v4-text-secondary);
}

/* --------------------------------------------------------------------------
   3. STUDIO DES SAVOIR-FAIRE : SCANNER TACTILE AVANT / APRÈS (V3 + V2 UV)
   -------------------------------------------------------------------------- */
.v4-scanner-section {
  padding: 80px 0;
}

.v4-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.v4-section-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v4-terracotta-dark);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.v4-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--v4-text-primary);
  margin: 0 0 14px 0;
}

.v4-section-sub {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--v4-text-secondary);
  margin: 0;
}

.v4-scanner-layout {
  background: var(--v4-bg-surface);
  border: 2px solid var(--v4-border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--v4-relief-card), var(--v4-bevel-inset);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.v4-scanner-viewport {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(60, 45, 30, 0.12);
  border: 2px solid var(--v4-border);
  background: #FFFFFF;
  user-select: none;
}

.v4-scanner-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v4-scanner-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.v4-scanner-after {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  z-index: 2;
}

.v4-scanner-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.v4-scanner-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--v4-terracotta);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.v4-scanner-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.v4-scanner-pill-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--v4-text-secondary);
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.v4-scanner-pill-btn.active {
  background: var(--v4-sage-deep);
  border-color: var(--v4-sage-deep);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   4. BESTSELLERS DIRECTS (CONVERSION V1 COMPACTE)
   -------------------------------------------------------------------------- */
.v4-bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.v4-prod-card {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--v4-relief-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v4-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v4-relief-float);
  border-color: var(--v4-terracotta);
}

.v4-prod-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--v4-bg-surface);
  overflow: hidden;
}

.v4-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v4-prod-card:hover .v4-prod-thumb img {
  transform: scale(1.05);
}

.v4-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--v4-terracotta);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
}

.v4-prod-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.v4-prod-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--v4-text-primary);
  line-height: 1.35;
}

.v4-prod-leadtime {
  font-size: 0.72rem;
  color: var(--v4-sage-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.v4-prod-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v4-prod-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--v4-text-primary);
}

.v4-prod-gems a:hover,
.v4-hero-gems-box a:hover {
  border-color: var(--v4-terracotta) !important;
  transform: translateY(-1.5px);
  box-shadow: 0 3px 10px rgba(200, 106, 88, 0.22);
}

/* --------------------------------------------------------------------------
   5. UNBOXING ÉCRIN KRAFT & SCEAU DE CIRE INTERACTIF
   -------------------------------------------------------------------------- */
.v4-unboxing-box {
  background: var(--v4-bg-surface);
  border: 2px solid var(--v4-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--v4-relief-card), var(--v4-bevel-inset);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.v4-unboxing-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--v4-relief-card);
  border: 2px solid var(--v4-border);
  cursor: pointer;
  background: #FFFFFF;
}

.v4-unboxing-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v4-wax-seal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--v4-gold-bright) 0%, var(--v4-gold) 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(60, 45, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  color: #122118;
  font-weight: 800;
  transition: transform 0.3s ease, background 0.3s ease;
}

.v4-hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--v4-border-subtle);
}

.v4-stat-item {
  display: flex;
  flex-direction: column;
}

.v4-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--v4-sage-deep);
}

.v4-stat-lbl {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--v4-text-secondary);
}

/* SPECS TECHNIQUES DU SCANNER */
.v4-scanner-details {
  display: flex;
  flex-direction: column;
}

.v4-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.v4-spec-item {
  background: #FFFFFF;
  border: 1px solid var(--v4-border);
  padding: 10px 14px;
  border-radius: 12px;
}

.v4-spec-val {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--v4-sage-deep);
  font-family: 'JetBrains Mono', monospace;
}

.v4-spec-lbl {
  font-size: 0.72rem;
  color: var(--v4-text-secondary);
  margin-top: 2px;
}

/* DETAILS D'UNBOXING */
.v4-unboxing-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v4-unboxing-features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v4-unboxing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--v4-text-secondary);
}

.v4-unboxing-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--v4-terracotta);
  flex-shrink: 0;
}

/* AVIS CLIENTS D'ATELIER & PREUVE SOCIALE UGC */
.v4-reviews-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1.5px solid var(--v4-border);
  border-bottom: 1.5px solid var(--v4-border);
}

.v4-social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.v4-social-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--v4-bg-surface);
  border: 1px solid var(--v4-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.v4-social-proof-pill.highlight {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
  color: #7A5B0B;
}

.v4-social-proof-pill.tiktok {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v4-social-proof-pill.tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  color: #FFFFFF;
}

.v4-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.v4-review-card {
  background: var(--v4-bg-surface);
  border: 1.5px solid var(--v4-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--v4-relief-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.v4-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.v4-review-thumb-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 150px;
  margin-bottom: 14px;
  background: #F1EFE9;
  border: 1px solid var(--v4-border-subtle);
}

.v4-review-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v4-review-card:hover .v4-review-thumb-wrap img {
  transform: scale(1.05);
}

.v4-review-thumb-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(30, 40, 32, 0.88);
  backdrop-filter: blur(4px);
  color: #FAF6EE;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.v4-review-stars {
  color: #D4AF37;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.v4-review-product {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--v4-terracotta);
  margin-bottom: 8px;
}

.v4-review-quote {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--v4-text-primary);
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.v4-review-meta {
  border-top: 1px solid var(--v4-border-subtle);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
}

.v4-review-author {
  font-weight: 800;
  color: var(--v4-sage-deep);
}

.v4-review-badge {
  color: #2F6F4E;
  font-weight: 700;
  font-size: 0.72rem;
}

/* COMPOSANT CADEAU & RELIEF D'ATELIER DANS LE CART DRAWER */
.drawer-gift-section {
  background: #FAF7F2;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 20px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drawer-gift-section.active {
  background: #FFFFFF;
  border-color: var(--v4-gold, #D4AF37);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}

.drawer-gift-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-gift-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.drawer-gift-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--v4-sage-deep, #1E2620);
  cursor: pointer;
  flex-shrink: 0;
}

.drawer-gift-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.drawer-gift-label-text strong {
  font-size: 0.84rem;
  color: var(--v4-text-primary, #1E2620);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.drawer-gift-price-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: #B48A1A;
  background: rgba(212, 175, 55, 0.15);
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}

.drawer-gift-label-text small {
  font-size: 0.74rem;
  color: var(--v4-text-secondary, #4A5568);
  line-height: 1.35;
}

.drawer-gift-message-box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.drawer-gift-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--v4-border, #E2D9C8);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--v4-text-primary, #1E2620);
  resize: none;
  min-height: 60px;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.drawer-gift-textarea:focus {
  outline: none;
  border-color: var(--v4-gold, #D4AF37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.drawer-gift-char-counter {
  font-size: 0.68rem;
  color: var(--v4-text-muted, #718096);
  text-align: right;
  margin-top: 4px;
  font-family: var(--font-mono, monospace);
}

/* BANNIÈRE PASSERELLE SUR-MESURE & PRO */
.v4-surmesure-footer-banner {
  margin-top: 36px;
  padding: 22px 28px;
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--v4-relief-card);
}

.v4-surmesure-footer-text h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  margin: 0 0 4px 0;
}

.v4-surmesure-footer-text p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--v4-text-secondary);
  margin: 0;
}

.v4-pro-dossier-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FAF6EE;
  text-decoration: none;
  opacity: 0.92;
  transition: all 0.2s ease;
  border-bottom: 1px dashed rgba(255,255,255,0.45);
  padding-bottom: 3px;
}

.v4-pro-dossier-link:hover {
  opacity: 1;
  color: var(--v4-gold-light);
  border-bottom-color: var(--v4-gold-light);
}

@media (max-width: 768px) {
  .v4-surmesure-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
  .v4-surmesure-footer-banner a {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   SUR-MESURE & CRÉATIONS UNIQUES (V4 HYBRIDE)
   -------------------------------------------------------------------------- */
.v4-surmesure-section {
  padding: 80px 0;
  background: var(--v4-bg-surface);
  border-top: 1.5px solid var(--v4-border);
  border-bottom: 1.5px solid var(--v4-border);
}

.v4-surmesure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.v4-surmesure-card {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: var(--v4-relief-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.v4-surmesure-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v4-relief-float);
  border-color: var(--v4-terracotta);
}

.v4-surmesure-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--v4-bg-elevated);
  border: 1.5px solid var(--v4-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--v4-sage-deep);
}

.v4-surmesure-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v4-surmesure-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  margin: 0 0 10px 0;
}

.v4-surmesure-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--v4-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.v4-surmesure-card-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--v4-sage-deep);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: var(--v4-bg-page);
  border-radius: 8px;
  width: fit-content;
  border: 1px solid var(--v4-border-subtle);
}

.v4-surmesure-clause {
  font-size: 0.76rem;
  color: #526352;
  line-height: 1.5;
  background: rgba(248, 245, 238, 0.7);
  border-left: 3px solid var(--v4-terracotta-dark);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   ESPACE PRO & ARTISANS (V4 HYBRIDE)
   -------------------------------------------------------------------------- */
.v4-pro-section {
  padding: 48px 0;
  background: #2A332C; /* Sage Sombre Prestige */
  color: #FAF6EE;
  position: relative;
  overflow: hidden;
}

.v4-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.v4-pro-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.v4-pro-visual img {
  width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: cover;
  display: block;
}

.v4-pro-badge-tier {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 33, 24, 0.9);
  backdrop-filter: blur(8px);
  color: var(--v4-gold-light);
  border: 1px solid var(--v4-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.v4-pro-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v4-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--v4-gold);
  color: var(--v4-gold-light);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  width: fit-content;
}

.v4-pro-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  color: #FFFFFF;
  margin: 0;
}

.v4-pro-title span {
  color: var(--v4-gold-light);
  font-style: italic;
}

.v4-pro-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #D6DEC8;
  margin: 0;
}

.v4-pro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0;
}

.v4-pro-pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
}

.v4-pro-pillar-card h4 {
  color: var(--v4-gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.v4-pro-pillar-card p {
  color: #A3B19B;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CALCULATEUR SÉRIE PRO & B2B INTERACTIF EN DIRECT
   -------------------------------------------------------------------------- */
.v4-b2b-calculator {
  background: rgba(18, 26, 20, 0.75);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 22px;
  margin-top: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v4-b2b-calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.v4-b2b-calc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--v4-gold-light);
}

.v4-b2b-calc-title svg {
  stroke: var(--v4-gold);
}

.v4-b2b-discount-badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--v4-gold-light);
  border: 1px solid var(--v4-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.v4-b2b-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.v4-b2b-label {
  font-size: 0.88rem;
  color: #FAF6EE;
  font-weight: 600;
}

.v4-b2b-label strong {
  color: var(--v4-gold-light);
  font-size: 1.15rem;
  font-weight: 800;
}

.v4-b2b-presets {
  display: flex;
  gap: 6px;
}

.v4-b2b-step-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FAF6EE;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 32px;
}

.v4-b2b-step-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--v4-gold);
}

.v4-b2b-step-btn.active {
  background: var(--v4-gold);
  border-color: var(--v4-gold-bright);
  color: #122118;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.v4-b2b-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.v4-b2b-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--v4-gold-bright);
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.v4-b2b-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.v4-b2b-result-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
  margin-top: 4px;
}

.v4-b2b-result-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v4-b2b-result-box.highlight {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
}

.v4-b2b-res-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #A3B19B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v4-b2b-res-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FAF6EE;
}

.v4-b2b-res-val-big {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--v4-gold-light);
}

.v4-b2b-res-sub {
  font-size: 0.72rem;
  color: #8A9A86;
}

.v4-b2b-calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.v4-b2b-leadtime {
  font-size: 0.76rem;
  color: #A3B19B;
}

.v4-b2b-cta-btn {
  background: var(--v4-gold);
  border: 1.5px solid var(--v4-gold-bright);
  color: #122118;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.v4-b2b-cta-btn:hover {
  background: var(--v4-gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* --------------------------------------------------------------------------
   BARRE RAPIDE MOBILE STICKY (CONVERSION MOBILE-FIRST)
   -------------------------------------------------------------------------- */
.v4-mobile-quickbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(35, 44, 37, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1.5px solid var(--v4-terracotta);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)) 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.v4-quickbar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v4-quickbar-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--v4-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v4-quickbar-price {
  font-size: 0.82rem;
  color: #FAF6EE;
  line-height: 1.2;
}

.v4-quickbar-price strong {
  color: #FFFFFF;
  font-size: 0.92rem;
}

.v4-quickbar-cta {
  background: var(--v4-terracotta);
  border: 1.5px solid var(--v4-terracotta-dark);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(200, 106, 88, 0.4);
}

.v4-quickbar-cta:active {
  transform: translateY(1.5px);
}

@media (min-width: 769px) {
  .v4-mobile-quickbar {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   WIDGET FLOTTANT COMPARATEUR VARIANTES V4 (WCAG 2.2 AA)
   -------------------------------------------------------------------------- */
.v4-variant-switcher-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9995;
  background: rgba(35, 44, 37, 0.96);
  border: 2px solid var(--v4-terracotta);
  border-radius: 30px;
  padding: 6px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 40px);
  overflow-x: auto;
}

.v4-switcher-title {
  color: #F5D5BE;
  font-size: 0.74rem;
  font-weight: 800;
  font-family: var(--font-mono, monospace);
  margin-right: 2px;
  white-space: nowrap;
}

.v4-switcher-link {
  background: rgba(255,255,255,0.1);
  color: #FFF;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.v4-switcher-link:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.v4-switcher-active {
  background: var(--v4-terracotta);
  color: #FFF;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(200, 106, 88, 0.4);
}

@media (max-width: 768px) {
  .v4-variant-switcher-bar {
    bottom: 68px; /* Au-dessus de la sticky quickbar */
    right: 12px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }
}

/* --------------------------------------------------------------------------
   6. RESPONSIVE MOBILE OPTIMISÉ (ZÉRO OVERFLOW & ERGONOMIE TACTILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .v4-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .v4-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .v4-scanner-layout { grid-template-columns: 1fr; }
  .v4-bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
  .v4-surmesure-grid { grid-template-columns: 1fr; gap: 20px; }
  .v4-pro-grid { grid-template-columns: 1fr; gap: 32px; }
  .v4-unboxing-box { grid-template-columns: 1fr; }
  .v4-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .v4-hero-title { font-size: 2.2rem; }
  .v4-trust-grid { grid-template-columns: 1fr; }
  .v4-bestsellers-grid { grid-template-columns: 1fr; }
  .v4-surmesure-grid { grid-template-columns: 1fr; }
  .v4-pro-pillars { grid-template-columns: 1fr; }
  .v4-reviews-grid { grid-template-columns: 1fr; }
  .v4-hero-actions { flex-direction: column; width: 100%; }
  .v4-hero-actions a { width: 100%; justify-content: center; }
  .v4-scanner-viewport { height: 280px; }
  .v4-unboxing-box { padding: 24px; }
}

/* --------------------------------------------------------------------------
   7. RESPECT PREFERS-REDUCED-MOTION (WCAG 2.2 AA)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .v4-hero-showcase-card,
  .v4-prod-card,
  .v4-unboxing-visual img,
  .v4-btn-primary {
    transition: none !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   8. PAGES ÉDITORIALES & LÉGALES (A PROPOS, CGV, MENTIONS, CONFIDENTIALITÉ)
   -------------------------------------------------------------------------- */
.v4-editorial-hero {
  background: linear-gradient(180deg, #F0EAE1 0%, #FAF7F2 100%);
  padding: 60px 0 45px 0;
  border-bottom: 1.5px solid var(--v4-border);
  text-align: center;
}

.v4-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 85, 67, 0.08);
  border: 1px solid var(--v4-border);
  color: var(--v4-sage-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.v4-editorial-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--v4-text-primary);
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.v4-editorial-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--v4-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.v4-legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 20px 80px 20px;
}

.v4-legal-card {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 45px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.v4-legal-article {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--v4-border-subtle);
}

.v4-legal-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.v4-article-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--v4-terracotta-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.v4-article-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  margin: 0 0 14px 0;
}

.v4-legal-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4A5568;
  margin-bottom: 14px;
}

.v4-legal-text strong {
  color: var(--v4-text-primary);
  font-weight: 700;
}

.v4-legal-list {
  padding-left: 20px;
  margin: 12px 0 16px 0;
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.75;
}

.v4-legal-list li {
  margin-bottom: 8px;
}

.v4-legal-alert {
  background: #FFFDF9;
  border-left: 4px solid var(--v4-terracotta);
  border: 1px solid rgba(200, 106, 88, 0.35);
  border-left-width: 4px;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2D3748;
}

.v4-legal-alert-sage {
  background: #F4F7F4;
  border: 1px solid rgba(67, 85, 67, 0.3);
  border-left: 4px solid var(--v4-sage-deep);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2D3748;
}

/* ABOUT PAGE STYLING */
.v4-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.v4-about-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--v4-border);
}

.v4-about-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.v4-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.v4-value-card {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v4-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v4-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(67, 85, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v4-sage-deep);
  margin-bottom: 16px;
}

.v4-value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.v4-value-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v4-text-primary);
  margin: 0 0 8px 0;
}

.v4-value-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--v4-text-secondary);
  margin: 0;
}

@media (max-width: 860px) {
  .v4-about-grid { grid-template-columns: 1fr; gap: 30px; }
  .v4-values-grid { grid-template-columns: 1fr; }
}

/* GALERIE D'ATELIER A PROPOS */
.v4-atelier-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.v4-atelier-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  border: 1.5px solid var(--v4-border);
  box-shadow: var(--v4-relief-card);
}

.v4-atelier-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.v4-atelier-gallery-item:hover img {
  transform: scale(1.06);
}

.v4-atelier-gallery-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(30,40,32,0.92) 0%, transparent 100%);
  color: #FAF6EE;
  padding: 24px 12px 10px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .v4-atelier-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .v4-atelier-gallery { grid-template-columns: 1fr; }
}

/* BANDEAU CHIFFRES CLES ATELIER */
.v4-atelier-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
  text-align: center;
}

.v4-atelier-stat-card {
  background: #FFFFFF;
  border: 1.5px solid var(--v4-border);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.v4-atelier-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v4-sage-deep);
  margin-bottom: 4px;
}

.v4-atelier-stat-lbl {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--v4-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v4-atelier-stat-sub {
  font-size: 0.74rem;
  color: var(--v4-text-secondary);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .v4-atelier-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .v4-atelier-stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ENCART « À PROPOS » ATELIER & HISTOIRE (PAGE D'ACCUEIL)
   ========================================================================== */
.v4-about-preview-section {
  padding: 48px 0;
  background: #FAF7F2;
  border-top: 1.5px solid var(--v4-border);
  border-bottom: 1.5px solid var(--v4-border);
}

.v4-about-preview-box {
  background: var(--v4-bg-surface);
  border: 2px solid var(--v4-border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--v4-relief-card), var(--v4-bevel-inset);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.v4-about-preview-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--v4-relief-card);
  border: 2px solid var(--v4-border);
  background: #FFFFFF;
}

.v4-about-preview-visual img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.v4-about-preview-visual:hover img {
  transform: scale(1.03);
}

.v4-about-preview-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(42, 51, 44, 0.92);
  backdrop-filter: blur(8px);
  color: #FAF6EE;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.v4-about-preview-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v4-about-preview-pillars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 10px 0;
}

.v4-about-pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--v4-text-secondary);
}

.v4-about-pillar-row svg {
  width: 16px;
  height: 16px;
  color: var(--v4-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.v4-about-pillar-row strong {
  color: var(--v4-text-primary);
}

/* ==========================================================================
   BOUTON CTA NOTION DE PRIX DÉGRESSIF PRO (ACCUEIL & B2B)
   ========================================================================== */
.v4-pro-cta-button {
  background: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #B89222 100%);
  color: #122118;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  border: 1.5px solid #FFFFFF;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.v4-pro-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #FFF0B8 0%, #E6C35C 50%, #C99E2E 100%);
  color: #0A140E;
}

/* ==========================================================================
   PAGE DÉDIÉE B2B : DIRECTION ARTISTIQUE SOMBRE DE PRESTIGE
   ========================================================================== */
.v4-b2b-page-body {
  background: #1E2620; /* Vert Sauge Profond Prestige */
  color: #FAF6EE;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.v4-b2b-hero-section {
  padding: 50px 0 60px 0;
  background: radial-gradient(circle at 80% 20%, rgba(67, 85, 67, 0.5) 0%, #1E2620 70%);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.v4-b2b-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #A3B19B;
  margin-bottom: 24px;
}

.v4-b2b-breadcrumbs a {
  color: #FAF6EE;
  text-decoration: none;
  transition: color 0.2s;
}

.v4-b2b-breadcrumbs a:hover {
  color: var(--v4-gold-light);
}

.v4-b2b-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.v4-b2b-hero-text h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 12px 0 16px 0;
}

.v4-b2b-hero-text h1 span {
  color: var(--v4-gold-light);
  font-style: italic;
}

.v4-b2b-hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #D6DEC8;
  max-width: 620px;
  margin-bottom: 24px;
}

.v4-b2b-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.v4-b2b-badge-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #FAF6EE;
}

.v4-b2b-badge-card svg {
  width: 20px;
  height: 20px;
  color: var(--v4-gold-light);
  flex-shrink: 0;
}

.v4-b2b-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.v4-b2b-hero-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* GRILLE PRODUITS SÉLECTEURS DU SIMULATEUR DÉDIÉ */
.v4-b2b-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.v4-b2b-prod-choice {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v4-b2b-prod-choice:hover {
  border-color: var(--v4-gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.v4-b2b-prod-choice.active {
  border-color: var(--v4-gold-bright);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25), inset 0 0 12px rgba(212, 175, 55, 0.1);
}

.v4-b2b-prod-choice h4 {
  font-size: 0.88rem;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v4-b2b-prod-choice.active h4 {
  color: var(--v4-gold-light);
}

.v4-b2b-prod-choice p {
  font-size: 0.74rem;
  color: #A3B19B;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.v4-b2b-prod-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--v4-gold-light);
}

/* SECTION SIMULATEUR PRO DÉDIÉ */
.v4-b2b-calc-section {
  padding: 70px 0;
  background: #172019;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
}

.v4-b2b-calc-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.v4-b2b-dark-card {
  background: rgba(24, 34, 26, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.v4-b2b-dark-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: #FAF6EE;
  font-family: inherit;
  font-size: 0.88rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.v4-b2b-dark-input:focus {
  outline: none;
  border-color: var(--v4-gold);
  background: rgba(255, 255, 255, 0.08);
}

.v4-b2b-label-dark {
  font-size: 0.82rem;
  font-weight: 700;
  color: #D6DEC8;
  display: block;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .v4-about-preview-box { grid-template-columns: 1fr; padding: 28px; }
  .v4-b2b-hero-grid { grid-template-columns: 1fr; }
  .v4-b2b-calc-container { grid-template-columns: 1fr; }
  .v4-b2b-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .v4-b2b-badges-grid { grid-template-columns: 1fr; }
}

/* ================= FOOTER REASSURANCE & BADGES ATELIER ================= */
.v4-footer-trust {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v4-footer-trust-group {
  margin-bottom: 12px;
}

.v4-footer-trust-group:last-child {
  margin-bottom: 0;
}

.v4-footer-trust-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BA896;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v4-footer-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.v4-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #DDE5D6;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.v4-trust-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.v4-trust-pill.highlight {
  border-color: rgba(212, 175, 55, 0.28);
  color: var(--v4-gold-light, #F1DEC0);
}

/* ================= HARMONISATION GLOBALE DU FOOTER ATELIER ================= */
.site-footer {
  background: #2A332C !important;
  color: #FAF6EE !important;
  border-top: 3px solid var(--v4-terracotta, #C46D4E) !important;
  padding: 60px 0 30px 0 !important;
  font-size: 0.85rem !important;
}

.site-footer .footer-brand h3,
.site-footer .logo-main {
  color: #FFFFFF !important;
  font-family: var(--v4-font-serif, 'Fraunces', Georgia, serif) !important;
  letter-spacing: 2.5px !important;
}

.site-footer p {
  color: #A3B19B !important;
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer .footer-col h4 {
  color: #FFFFFF !important;
  font-family: var(--v4-font-serif, 'Fraunces', Georgia, serif) !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  margin-bottom: 16px !important;
  font-weight: 700 !important;
}

.site-footer .footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-footer .footer-col li {
  margin-bottom: 9px !important;
}

.site-footer .footer-col a {
  color: #A3B19B !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  font-size: 0.85rem;
}

.site-footer .footer-col a:hover {
  color: var(--v4-gold-light, #F1DEC0) !important;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #8A9A86 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding: 20px 0 !important;
  font-size: 0.8rem !important;
}

.site-footer .footer-bottom a {
  color: #A3B19B !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer .footer-bottom a:hover {
  color: #F1DEC0 !important;
}

.v4-creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #A3B19B !important;
  text-decoration: none !important;
  font-size: 0.78rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.v4-creator-badge:hover {
  color: #F1DEC0 !important;
  background: rgba(255, 255, 255, 0.05);
}

.v4-creator-badge svg {
  width: 13px;
  height: 13px;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .v4-b2b-catalog-grid { grid-template-columns: 1fr; }
  .v4-about-preview-box { padding: 20px; }
  .v4-b2b-dark-card { padding: 20px; }
}
