@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-tertiary: #444444;
  --accent: rgba(255, 255, 255, 0.9);
}

html {
  scroll-behavior: smooth;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #ff5a1f #0d0d0d;
}

/* ─── SCROLLBAR (DJ fader vibe) ─── */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  /* fader-rail notches */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 22px,
    rgba(255, 255, 255, 0.05) 22px,
    rgba(255, 255, 255, 0.05) 23px
  );
}

::-webkit-scrollbar-thumb {
  border: 2px solid #0d0d0d;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9244 0%, #ff5a1f 55%, #f04500 100%);
  box-shadow: 0 0 8px rgba(255, 90, 31, 0.45);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffa75e 0%, #ff6a2f 55%, #ff5210 100%);
  box-shadow: 0 0 14px rgba(255, 90, 31, 0.75);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #ff5a1f 0%, #f04500 100%);
}

::-webkit-scrollbar-corner {
  background: #0d0d0d;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── NAV ─── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* ─── BARRE D'ANNONCE BÊTA (capture de leads) ─── */
:root { --annbar-h: 0px; }
/* Quand la barre est présente, on décale la nav (fixe) et le haut de <main>. */
body.has-annbar nav { top: var(--annbar-h); }
body.has-annbar main { padding-top: calc(64px + var(--annbar-h)); }

.ann-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
  padding: 10px 48px;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  text-align: center;
  background: linear-gradient(90deg, #f04500 0%, #ff5a1f 42%, #ff9244 100%);
  background-size: 220% 100%;
  animation: annShimmer 7s linear infinite;
  box-shadow: 0 2px 22px rgba(255, 90, 31, 0.38);
  transition: filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.ann-bar:hover { filter: brightness(1.07); }
.ann-bar:active { filter: brightness(0.95); }
.ann-bar:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }

@keyframes annShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

.ann-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  line-height: 1.3;
}

.ann-bar-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: annPulse 1.7s ease-out infinite;
}
@keyframes annPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.ann-bar-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ann-bar-text b {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ann-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  color: #d63e00;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ann-bar:hover .ann-bar-cta { transform: translateX(1px); }
.ann-bar-cta { transition: transform 0.15s ease; }

@media (prefers-reduced-motion: reduce) {
  .ann-bar { animation: none; }
  .ann-bar-dot { animation: none; }
}

@media (max-width: 768px) {
  .ann-bar { padding: 9px 14px; }
  .ann-bar-inner { gap: 8px 10px; }
  .ann-bar-text { font-size: 12.5px; }
  .ann-bar-cta { font-size: 11px; padding: 4px 11px; letter-spacing: 0.4px; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:not(.nav-pill) {
  position: relative;
}

.nav-links a:not(.nav-pill)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff9244, #ff5a1f);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:not(.nav-pill):hover {
  color: #ff5a1f;
}

.nav-links a:not(.nav-pill):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* "Stembox Pro" pill in nav */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0a0a !important;
  padding: 5px 16px 5px 5px;
  border-radius: 999px;
  letter-spacing: -0.5px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.nav-pill:hover {
  background: #f4f4f4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.nav-pill-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ff9244, #ff5a1f);
  padding: 4px 9px;
  border-radius: 999px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 4px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.cart-count.visible {
  display: flex;
}

.nav-actions .nav-cta {
  margin-left: 8px;
}

/* ─── LANGUAGE SELECTOR ─── */

.lang-selector {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.lang-chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 84px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 110;
}

.lang-selector.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-menu button img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.lang-menu button:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.lang-menu button.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: opacity 0.2s;
}

/* ─── DRAWERS ─── */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}

.drawer-close-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile menu (left) */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-nav {
  /* NB : c'est un <nav> → on neutralise les styles de la barre de nav globale
     (position fixed, height 64px, align-items/justify center, bordure). */
  position: static;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px 0 0;
  gap: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

.mobile-menu-nav a {
  font-size: 20px;
  font-weight: 200;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav a:first-child {
  border-top: 1px solid var(--border);
}

/* Liens du menu mobile : petit chevron à droite (sauf l'item mis en avant) */
.mobile-menu-nav a:not(.mm-featured) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-nav a:not(.mm-featured)::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-tertiary);
  border-top: 1.5px solid var(--text-tertiary);
  transform: rotate(45deg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.mobile-menu-nav a:not(.mm-featured):hover::after {
  border-color: var(--text-primary);
  transform: rotate(45deg) translate(2px, -2px);
}

/* Stembox Pro mis en avant (comme la pill orange de la nav PC) */
.mobile-menu-nav .mm-featured {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 16px 12px;
  padding: 15px 18px;
  border: none !important;
  border-radius: 14px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.mobile-menu-nav .mm-featured:hover,
.mobile-menu-nav .mm-featured:active {
  color: #0a0a0a;
  background: #f1f1f1;
}
.mm-featured-name { flex: 1; }
.mm-featured-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffa35a 0%, #ff5a1f 55%, #f04500 100%);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(255, 90, 31, 0.4);
}
.mm-featured-arrow { width: 18px; height: 18px; flex-shrink: 0; }

/* "Mon compte" : bouton blanc seul, collé en bas du menu */
.mobile-menu-footer {
  margin-top: auto;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
}

.mobile-menu-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  color: #0a0a0a;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}

.mobile-menu-account:hover {
  opacity: 0.88;
}

.mobile-menu-account svg {
  flex-shrink: 0;
}

.mobile-menu-cta {
  margin-top: 32px;
  border: 1px solid var(--border) !important;
  border-radius: 2px;
  padding: 14px 24px !important;
  text-align: center;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  color: var(--text-primary) !important;
}

/* Cart drawer (right) */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #ffffff;
  color: #0a0a0a;
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  /* white theme — scoped variable overrides */
  --text-primary: #0a0a0a;
  --text-secondary: #5a5a5a;
  --text-tertiary: #9a9a9a;
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(0, 0, 0, 0.25);
}

.cart-drawer.open {
  transform: translateX(0);
}

/* +50% de largeur sur PC (420px → 630px). Mobile inchangé. */
@media (min-width: 768px) {
  .cart-drawer { width: 630px; }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-primary);
}

.cart-drawer .drawer-close-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  min-height: 240px;
  text-align: center;
}

.cart-empty p {
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: none;
}

.cart-drawer.has-items .cart-drawer-footer {
  display: block;
}

/* ─── Code promo ─── */
.cart-promo {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.cart-promo input {
  flex: 1;
  min-width: 0;
  background: var(--surface, #f4f4f4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-primary);
  text-transform: uppercase;
}
.cart-promo input:focus {
  outline: none;
  border-color: var(--text-primary);
}
.cart-promo button {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-primary);
}
.cart-promo button:hover { border-color: var(--text-primary); }
.cart-promo button:disabled { opacity: .5; cursor: default; }
.cart-promo-msg {
  font-size: 12.5px;
  margin: 0 0 14px;
  min-height: 1em;
}
.cart-promo-msg.ok  { color: #1a9e54; }
.cart-promo-msg.err { color: #d4453e; }
.cart-discount-row span:last-child { color: #1a9e54; }
.promo-remove {
  background: none;
  border: none;
  padding: 0 0 0 6px;
  font-size: 12px;
  text-decoration: underline;
  color: var(--text-tertiary);
  cursor: pointer;
  font-family: inherit;
}

/* Puces des codes promo appliqués (cumul) */
.applied-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}
.applied-codes:empty { margin: 0; }
.promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,158,84,.12);
  border: 1px solid rgba(26,158,84,.35);
  color: #1a9e54;
  border-radius: 999px;
  padding: 4px 6px 4px 11px;
  font-size: 12px;
  font-weight: 600;
}
.promo-chip small { font-weight: 500; opacity: .85; }
.promo-chip button {
  background: rgba(26,158,84,.18);
  border: none;
  color: #1a9e54;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.promo-chip button:hover { background: rgba(212,69,62,.2); color: #d4453e; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.cart-total-final {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.cart-total-final span:last-child {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* "Commander" button on white drawer */
.cart-drawer .btn-primary {
  background: linear-gradient(135deg, #ffa35a 0%, #ff5a1f 55%, #f04500 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px rgba(255, 90, 31, 0.3);
}

.cart-drawer .btn-primary:hover {
  filter: brightness(1.05);
  background: linear-gradient(135deg, #ffa35a 0%, #ff5a1f 55%, #f04500 100%);
}

.cart-footer-note {
  font-size: 12.5px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.01em;
}

.cart-footer-note strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ─── Bouton checkout : flèche animée + reflet lumineux infini ─── */
.cart-drawer .cart-checkout-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cart-checkout-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.cart-drawer .cart-checkout-btn > span { position: relative; z-index: 1; }
.cart-drawer .cart-checkout-btn:hover .cart-checkout-arrow { transform: translateX(5px); }
/* reflet qui balaie le bouton en boucle pour donner envie de cliquer */
.cart-drawer .cart-checkout-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg) translateX(-220%);
  animation: cartShine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes cartShine {
  0%   { transform: skewX(-18deg) translateX(-220%); }
  55%  { transform: skewX(-18deg) translateX(360%); }
  100% { transform: skewX(-18deg) translateX(360%); }
}
@media (prefers-reduced-motion: reduce) {
  .cart-drawer .cart-checkout-btn::after { animation: none; display: none; }
}

/* ─── Réassurance panier : WhatsApp + Email ─── */
.cart-reassurance {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cart-reassurance-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.cart-reassurance-item:hover {
  border-color: var(--border-hover);
  background: rgba(255, 90, 31, 0.06);
  transform: translateY(-1px);
}
.cart-reassurance-ic {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 90, 31, 0.12);
  color: #f04500;
}
.cart-reassurance-ic svg { width: 17px; height: 17px; }
.cart-reassurance-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cart-reassurance-label { font-size: 11px; font-weight: 700; color: var(--text-primary); letter-spacing: .01em; }
.cart-reassurance-value {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── LAYOUT ─── */

main {
  padding-top: 64px;
}

section {
  padding: 120px 48px;
}

.page-width {
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* visually hidden, accessible to screen readers & crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-product .container {
  max-width: 2000px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ─── ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── TYPOGRAPHY ─── */

h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
}

.label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  display: block;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 14px;
}

/* ─── PLACEHOLDER VISUALS ─── */

.visual-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.visual-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

/* ─── HERO ─── */

.hero {
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.65) 35%, rgba(10,10,10,0.2) 70%, transparent 100%);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-slogan {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-slogan-accent {
  background: linear-gradient(180deg, #ff9244 0%, #ff5a1f 60%, #f04500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero CTA — orange gradient pill */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffa35a 0%, #ff5a1f 55%, #f04500 100%);
  box-shadow: 0 8px 28px rgba(255, 90, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* moving shine */
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 90, 31, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-hero:hover::before {
  left: 140%;
}

.btn-hero svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 5px;
  box-sizing: content-box;
  transition: transform 0.25s ease;
}

.btn-hero:hover svg {
  transform: translateX(4px);
}

/* Variante blanche discrète (sections home) */
.btn-hero-white {
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-hero-white:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-hero-white svg {
  background: rgba(0, 0, 0, 0.08);
}

/* Conteneur centré pour les CTA de section (home) */
.home-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.hero-cta-link {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.hero-cta-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hero-cta-link:hover {
  color: #ffffff;
}

.hero-cta-link:hover::after {
  transform: scaleX(1);
}

.hero-note {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
}

.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: #ff5a1f;
}

.hero-features svg {
  width: 28px;
  height: 28px;
}

.hero-features span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #ff5a1f;
}

/* ─── PROBLEM SECTION ─── */

/* ─── MARQUEE ─── */

.marquee {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #0b0b0b;
  padding: 20px 0;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 38px;
  white-space: nowrap;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-item svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #ff5a1f;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.section-difference {
  border-bottom: 1px solid var(--border);
}

.difference-head {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.difference-head h2 {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 22px;
}

.difference-head h2 .dim {
  color: #5e5e5e;
}

.difference-head p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 88px;
  align-items: start;
}

.compare-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%),
    #0e0e0e;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* "Nuit" — before: dark, desaturated, recessed */
.compare-item.before .compare-media {
  background: #080808;
  border-color: rgba(255, 255, 255, 0.05);
}

.compare-item.before .compare-media img {
  filter: grayscale(1) brightness(0.92) contrast(0.97);
  opacity: 0.92;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.compare-item.before .compare-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.22));
  pointer-events: none;
}

.compare-item.before:hover .compare-media img {
  filter: grayscale(0.4) brightness(0.85);
  opacity: 0.95;
}

/* "Jour" — after: bright, vivid, dominant */
.compare-item.after {
  transform: scale(1.04);
}

.compare-item.after .compare-media {
  border-color: rgba(255, 90, 31, 0.45);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 90, 31, 0.16) 0%, transparent 60%),
    #100b08;
  box-shadow: 0 40px 100px -30px rgba(255, 90, 31, 0.5);
}

.compare-item.after .compare-media img {
  filter: saturate(1.12) brightness(1.05);
}

.compare-item.after:hover {
  transform: scale(1.04) translateY(-6px);
}

.compare-item.before:hover {
  transform: translateY(-6px);
}

.compare-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* VS badge */
.compare-vs {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9244, #ff5a1f 60%, #f04500);
  box-shadow: 0 0 0 6px #0a0a0a, 0 0 28px rgba(255, 90, 31, 0.6);
}

.compare-item figcaption {
  padding: 28px 8px 0;
  text-align: center;
}

.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.compare-tag.good {
  color: #ff7a3d;
}

.compare-item figcaption p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 360px;
  margin: 0 auto;
}

/* ─── SOLUTION SECTION ─── */

.section-solution {
  border-bottom: 1px solid var(--border);
}

.solution-intro {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

.solution-intro h2 {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.solution-intro h2 .accent {
  background: linear-gradient(180deg, #ff9244 0%, #ff5a1f 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.solution-intro p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-item {
  position: relative;
  padding: 40px 36px 38px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(255,255,255,0.035) 0%, transparent 55%),
    #0d0d0d;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* gradient accent line on top, revealed on hover */
.solution-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff5a1f, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.3);
  box-shadow: 0 30px 70px -40px rgba(255, 90, 31, 0.45);
}

.solution-item:hover::before {
  opacity: 1;
}

.solution-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 26px;
  color: #ff7a3d;
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid rgba(255, 90, 31, 0.2);
}

.solution-icon svg {
  width: 24px;
  height: 24px;
}

.solution-item h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.solution-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ─── PRODUCT PREVIEW ─── */

.section-preview {
  border-bottom: 1px solid var(--border);
}

.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 72px;
}

.preview-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: contain;
}

.preview-info h2 {
  margin-bottom: 20px;
}

.preview-info p {
  margin-bottom: 32px;
  font-size: 15px;
}

.specs-mini {
  list-style: none;
  margin-bottom: 40px;
}

.specs-mini li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.specs-mini li:last-child {
  border-bottom: none;
}

.specs-mini .spec-label {
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 100px;
}

.specs-mini .spec-value {
  color: var(--text-primary);
  font-weight: 300;
}

/* ─── CTA FINAL ─── */

.section-cta {
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.section-cta h2 {
  margin-bottom: 20px;
}

.section-cta p {
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ─── FOOTER ─── */

footer {
  position: relative;
  padding: 88px 48px 32px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(255, 90, 31, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #070707 100%);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 90, 31, 0.6) 30%, rgba(255, 146, 68, 0.5) 50%, rgba(255, 90, 31, 0.6) 70%, transparent 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer-brand .footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 300px;
  margin-bottom: 26px;
}

.footer-tagline span {
  color: #ff7a3d;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  border-color: rgba(255, 90, 31, 0.6);
  background: rgba(255, 90, 31, 0.12);
  transform: translateY(-2px);
}

/* Link columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 13px;
  width: fit-content;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Newsletter */
.footer-newsletter h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.footer-newsletter > p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 260px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 5px 5px 14px;
  transition: border-color 0.2s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 90, 31, 0.6);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: var(--text-tertiary);
}

.newsletter-form button {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff5a1f 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  filter: brightness(1.1);
  transform: translateX(2px);
}

.newsletter-msg {
  font-size: 12px;
  color: #ff7a3d;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.newsletter-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Big wordmark */
.footer-wordmark {
  position: relative;
  z-index: 0;
  margin-top: 56px;
  text-align: center;
  font-size: clamp(64px, 17vw, 280px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ─── PRODUCT PAGE ─── */

/* ─── PDP (product page) ─── */

.pdp {
  padding: 56px 48px 88px;
  border-bottom: 1px solid var(--border);
  /* TEMP: inverted color scheme (black ↔ white) */
  background: #ffffff;
  color: var(--text-primary);
  --text-primary: #0a0a0a;
  --text-secondary: #555555;
  --text-tertiary: #8a8a8a;
  --border: rgba(0, 0, 0, 0.12);
  --border-hover: rgba(0, 0, 0, 0.28);
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;   /* média 55% (2 images) + info 45% */
  gap: 40px;
  align-items: start;
}

/* Media — PC : grille 2 colonnes (toutes les photos visibles).
   Mobile : grande photo + rangée de vignettes (voir media query plus bas).
   Non sticky : les photos défilent, c'est l'info à droite qui reste fixe. */
.pdp-media { display: block; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.pdp-gallery { display: none; }   /* affichée seulement sur mobile */
.pdp-slides { display: none; }    /* carrousel swipable : mobile uniquement */
.pdp-dots { display: none; }

.pdp-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.pdp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.15s ease, transform 0.15s ease;
}
.pdp-dot.is-active {
  background: #0a0a0a;
  transform: scale(1.18);
}

.pdp-photo {
  aspect-ratio: 5 / 4;   /* un peu plus large que haut */
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #f2f2f2;
  overflow: hidden;
  cursor: zoom-in;
}

.pdp-main {
  aspect-ratio: 4 / 3;
}

.pdp-photo img,
.pdp-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pdp-photo.is-video { cursor: default; }   /* vidéos : pas de zoom lightbox */

/* Rangée de vignettes cliquables */
.pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-thumb {
  width: 84px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f2f2f2;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pdp-thumb img,
.pdp-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vignette vidéo : badge ▶ pour indiquer que c'est une vidéo */
.pdp-thumb.is-video { position: relative; }
.pdp-thumb.is-video::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 0 3px rgba(0,0,0,.6));
  pointer-events: none;
}

.pdp-thumb.is-active {
  border-color: #0a0a0a;
  box-shadow: inset 0 0 0 1px #0a0a0a;
}

/* ── Barre d'achat collante (mobile + desktop) ── */
.pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(130%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.pdp-sticky.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.pdp-sticky-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 10px 12px 10px 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.pdp-sticky-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.pdp-sticky-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.pdp-sticky-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-sub {
  font-size: 11.5px;
  color: #6a6a6a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-price {
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0a;
}
.pdp-sticky-btn {
  flex-shrink: 0;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease;
}
.pdp-sticky-btn:hover { background: #ff5a1f; }
.pdp-sticky-btn:disabled { opacity: 0.5; cursor: default; }
@media (max-width: 768px) {
  .pdp-sticky { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
  .pdp-sticky-inner { gap: 11px; padding: 9px 10px; }
  .pdp-sticky-img { width: 44px; height: 44px; }
  .pdp-sticky-btn { padding: 12px 18px; }
}

/* ── Lightbox (modal zoom + slider) ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox[hidden] { display: none; }
.lb-stage {
  max-width: 92vw;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: zoom-in;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.18s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-img.zoomed { transform: scale(2.3); cursor: zoom-out; transition: none; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background 0.15s ease;
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 20px; right: 24px; width: 44px; height: 44px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; stroke: currentColor; }
.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .lb-prev, .lb-next { width: 42px; height: 42px; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .lb-close { top: 12px; right: 14px; }
}

/* Info */
.pdp-info {
  position: sticky;
  top: 96px;
  padding-top: 8px;
}

.pdp-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 14px 7px 12px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #15803d;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.pdp-badge svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 1px;
}

/* Bubble "Une question avant achat ?" (page produit → page contact) */
.pdp-preq {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface, rgba(0, 0, 0, 0.02));
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.pdp-preq:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}
.pdp-preq > svg:first-child {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--text-primary);
}
.pdp-preq span { flex: 1 1 auto; }
.pdp-preq-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 0.55;
  transition: transform 0.15s ease;
}
.pdp-preq:hover .pdp-preq-arrow { transform: translateX(3px); }

/* Bouton WhatsApp flottant — sticky bas-gauche, sur toutes les pages */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 180;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  display: block;
}
@media (max-width: 768px) {
  .wa-float {
    left: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

.pdp-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.pdp-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.pdp-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 28px;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.pdp-price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pdp-price-old {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.pdp-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.pdp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a3d;
  box-shadow: 0 0 8px rgba(255, 122, 61, 0.9);
}

.pdp-taxnote {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

/* Bloc points forts + accès logiciel, encadré par deux dividers. */
.pdp-keypoints {
  margin-bottom: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pdp-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.pdp-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pdp-highlights svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #ff7a3d;
}

.pdp-option {
  margin-bottom: 26px;
}

.pdp-option-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pdp-option-label strong {
  color: var(--text-primary);
  font-weight: 500;
}

.pdp-swatches {
  display: flex;
  gap: 10px;
}

.pdp-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pdp-swatch.active {
  box-shadow: 0 0 0 2px #0a0a0a, 0 0 0 4px #ff5a1f;
}

.pdp-buy {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

/* ── Sélecteur de contrôleur (dropdown avec visuels) ── */
.pdp-ctrl { margin-bottom: 18px; width: 100%; max-width: 450px; }
.pdp-ctrl-label { display:block; font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--text-secondary); margin-bottom:8px; }
/* Bloc « Accès à vie au logiciel » — badge horizontal sous les points forts. */
.pdp-lifetime { display:flex; align-items:center; justify-content:flex-start; gap:12px; border:1px solid rgba(255,255,255,.13); border-radius:12px; padding:12px 16px; background:rgba(255,255,255,.13); margin:14px 0 0; }
.pdp-lifetime-icons { display:flex; align-items:center; gap:12px; color:var(--text-primary); }
.pdp-lifetime-icons svg { height:22px; width:auto; }
.pdp-lifetime-text { font-size:13px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; line-height:1.3; color:var(--text-primary); }

/* Dropdown forcé en fond blanc / texte noir (indépendant du thème de la page). */
.ctrl-sel { position:relative; }
.ctrl-sel-trigger { width:100%; display:flex; align-items:center; gap:12px; background:#ffffff; border:1px solid rgba(0,0,0,.16); border-radius:12px; padding:10px 14px; color:#0a0a0a; font:inherit; cursor:pointer; text-align:left; transition:border-color .15s; }
.ctrl-sel-trigger:hover, .ctrl-sel.open .ctrl-sel-trigger { border-color:rgba(0,0,0,.42); }
.ctrl-sel-trigger img { width:48px; height:34px; object-fit:contain; flex:0 0 48px; }
.ctrl-sel-trigger .ctrl-name { flex:1; min-width:0; font-size:15px; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ctrl-sel-trigger .ctrl-ph { color:#6b7280; font-weight:400; }
.ctrl-sel-trigger .ctrl-chev { flex:0 0 auto; width:18px; height:18px; color:#6b7280; transition:transform .2s; }
.ctrl-sel.open .ctrl-sel-trigger .ctrl-chev { transform:rotate(180deg); }
.ctrl-sel-menu { position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:40; background:#ffffff; border:1px solid rgba(0,0,0,.16); border-radius:12px; padding:6px; max-height:330px; overflow-y:auto; box-shadow:0 18px 50px rgba(0,0,0,.28); }
.ctrl-sel-menu[hidden] { display:none; }
.ctrl-opt { width:100%; display:flex; align-items:center; gap:12px; background:none; border:none; border-radius:9px; padding:8px 10px; color:#0a0a0a; font:inherit; cursor:pointer; text-align:left; }
.ctrl-opt:hover { background:rgba(0,0,0,.06); }
.ctrl-opt.is-active { background:rgba(0,0,0,.10); }
.ctrl-opt img { width:52px; height:38px; object-fit:contain; flex:0 0 52px; }
.ctrl-opt .ctrl-name { font-size:14.5px; }

/* ── What Stembox does / doesn't (section blanche, 2 colonnes) ── */
.sd-section { background:#ffffff; color:#0a0a0a; padding:64px 0; }
/* Section pleine largeur (pas de max-width) — on neutralise la contrainte du .container. */
.sd-section .container { max-width:none; width:100%; padding-left:0; padding-right:0; }
.sd-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; max-width:none; margin:0; }
.sd-col { min-width:0; padding:0 5vw; }
.sd-col + .sd-col { border-left:1px solid rgba(0,0,0,.10); }
.sd-title { font-size:22px; font-weight:700; letter-spacing:-.01em; margin:0 0 22px; color:#0a0a0a; }
.sd-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.sd-list li { position:relative; padding-left:32px; font-size:15px; line-height:1.5; color:#1f2430; }
.sd-list li::before { content:''; position:absolute; left:0; top:1px; width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; line-height:1; }
.sd-list-yes li::before { content:'✓'; background:rgba(22,163,74,.14); color:#16a34a; }
.sd-list-no  li::before { content:'✗'; background:rgba(220,38,38,.12); color:#dc2626; }
@media (max-width:760px) {
  .sd-section { padding:44px 0; }
  .sd-grid { grid-template-columns:1fr; }
  .sd-col { padding:0 24px; }
  .sd-col + .sd-col { border-left:none; padding-top:32px; margin-top:32px; border-top:1px solid rgba(0,0,0,.10); }
}

.pdp-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.pdp-delivery svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #ff7a3d;
}

.pdp-delivery strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Cart shipping estimator */
.cart-ship {
  margin-bottom: 18px;
}

.cart-ship label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.cart-ship select {
  width: 100%;
  height: 44px;
  padding: 0 38px 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background-color: #ffffff;
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.cart-ship select:focus {
  outline: none;
  border-color: #ff5a1f;
}

.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  padding: 0 6px;
}

.pdp-qty button {
  width: 38px;
  height: 48px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pdp-qty button:hover {
  color: #ff7a3d;
}

.pdp-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.btn-buy {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: #0a0a0a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: #1f1f1f;
}

.pdp-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 0;
}

.pdp-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pdp-trust svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--text-tertiary);
}

/* Cart line (injected on add-to-cart) */
.cart-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f6f6f6;
  margin-bottom: 5px;
}

.cart-line img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-line-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.cart-line-info strong {
  font-size: 15px;
  font-weight: 700;
}

.cart-line-sub {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  padding: 2px;
  width: fit-content;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-qty-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #ff5a1f;
}

.cart-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-line-price {
  font-size: 15px;
  font-weight: 800;
}

/* ─── PRODUCT DESCRIPTION ─── */

.section-product-desc {
  border-bottom: 1px solid var(--border);
}

.product-desc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.product-desc h2 {
  margin-bottom: 24px;
}

.product-desc p {
  font-size: 15px;
  margin-bottom: 20px;
}

.product-desc-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f2f2f2;
}

.product-desc-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Sections vidéo : vues & bibliothèque (vidéo / texte alternés) ── */
.section-feature-videos { border-bottom: 1px solid var(--border); }
.feature-video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-video-row + .feature-video-row { margin-top: 110px; }
.feature-video-row.is-reversed .feature-video-media { order: 2; }
.feature-video-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.feature-video-media video {
  display: block;
  width: 100%;
  height: auto;
}
.feature-video-text h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.feature-video-text p {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 46ch;
}
@media (max-width: 768px) {
  .feature-video-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-video-row + .feature-video-row { margin-top: 56px; }
  /* mobile : la vidéo toujours au-dessus du texte */
  .feature-video-row.is-reversed .feature-video-media { order: 0; }
}

/* Vidéo de démo injectée à la place de l'image (admin → « Vidéo de démo ») */
.product-desc-media.has-video {
  background: #000;
}
.product-desc-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.product-desc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Démo bilingue : onglets verticaux (drapeaux) à gauche de la vidéo */
.demo-video-wrap {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
/* Avec onglets, le conteneur média ne joue plus le rôle de cadre :
   c'est la vidéo elle-même qui porte les coins arrondis. */
.product-desc-media.has-tabs {
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.demo-video-wrap.has-tabs .product-desc-video {
  flex: 1 1 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.demo-video-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
}
.demo-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.demo-tab img {
  width: 28px;
  height: 21px;
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.demo-tab:hover { opacity: 0.85; }
.demo-tab.is-active {
  opacity: 1;
  border-color: #111;
  box-shadow: 0 0 0 2px #111;
}

/* Mobile : onglets drapeaux en ligne, AU-DESSUS de la vidéo */
@media (max-width: 768px) {
  .demo-video-wrap.has-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .demo-video-wrap.has-tabs .demo-video-tabs {
    flex-direction: row;
    justify-content: center;
  }
  .demo-tab { width: 42px; height: 42px; }
  .demo-tab img { width: 26px; height: 19px; }
}

/* Page d'accueil : titre de la section + colonne média (vidéo + bouton « Buy now ») */
.home-features-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 48px;
}
.product-desc-media-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
/* Page d'accueil : bloc vidéo seul (titre + vidéo + bouton), centré */
.home-video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.home-video-block .product-desc-media {
  width: 100%;
}
.product-desc-media-col .product-desc-media {
  width: 100%;
}
.btn-home-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-home-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.88);
}

/* ─── FEATURES ─── */

.features-list {
  list-style: none;
  margin-top: 8px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-tertiary);
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-text span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* ─── SPECS TABLE ─── */

.section-specs {
  border-bottom: 1px solid var(--border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 18px 0;
  font-size: 14px;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 220px;
  padding-right: 32px;
}

.specs-table td:last-child {
  color: var(--text-secondary);
  font-weight: 300;
}

/* ─── PRICING ─── */

.section-pricing {
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.price-block {
  margin: 48px auto;
  max-width: 480px;
}

.price-amount {
  font-size: 80px;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.price-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}

/* ─── FAQ ─── */

.section-faq {
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin-top: 56px;
}

/* ─── FAQ en accordéons centrés ─── */
.faq-accordions {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-acc {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc-chev {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}
.faq-acc[open] .faq-acc-chev { transform: rotate(180deg); }
.faq-acc-body {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* Ouverture fluide des accordéons (<details> PDP + FAQ).
   components.js enveloppe le corps dans .acc-anim ; on anime la hauteur via grid-template-rows. */
.acc-anim {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
details[open] > .acc-anim { grid-template-rows: 1fr; }
.acc-anim > .pdp-acc-body,
.acc-anim > .faq-acc-body { overflow: hidden; min-height: 0; }
/* Fondu léger du contenu en plus du glissement */
.acc-anim > .pdp-acc-body,
.acc-anim > .faq-acc-body { opacity: 0; transition: opacity 0.25s ease; }
details[open] > .acc-anim > .pdp-acc-body,
details[open] > .acc-anim > .faq-acc-body { opacity: 1; }
.faq-cta {
  margin-top: 40px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}

/* ─── TABLETTE : média 2 colonnes pleine largeur, info en dessous ─── */
@media (max-width: 1024px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pdp-info {
    position: static;
    top: auto;
  }
}

/* ─── MOBILE ─── */

/* Bascule en menu burger dès 1200px (la nav PC est dense : 6 liens + actions). */
@media (max-width: 1200px) {
  .nav-links,
  .nav-actions .nav-cta,
  .nav-account {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
    order: 3;
    margin-left: 6px;
  }
  /* logo à gauche, actions + burger à droite */
  .nav-logo {
    position: static;
    transform: none;
    order: -1;
    margin-right: auto;
  }
  .nav-actions { gap: 4px; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    position: fixed;
  }

  /* Mobile layout: logo LEFT — icons + burger RIGHT */
  .nav-logo {
    position: static;
    transform: none;
    order: -1;
    margin-right: auto;
  }

  .nav-mobile-toggle {
    order: 3;
    margin-left: 6px;
  }

  .nav-links,
  .nav-actions .nav-cta,
  .nav-account {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-actions {
    gap: 2px;
  }

  main {
    padding-top: 64px;
  }

  /* lang selector: flag only, hide the 2-letter code */
  .lang-current {
    display: none;
  }

  .lang-toggle {
    gap: 4px;
    padding: 0 6px;
  }

  section {
    padding: 80px 24px;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0 0 48px;
    background-image: none;
    align-items: stretch;
  }

  .hero-video {
    position: relative;
    height: 30vh;
    bottom: auto;
    z-index: 0;
  }

  /* dark gradient over the bottom of the video → blends into content block */
  .hero::before {
    top: 0;
    bottom: auto;
    height: 30vh;
    background: linear-gradient(to bottom, transparent 35%, rgba(10,10,10,0.55) 72%, #0a0a0a 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    margin-top: 28px;
  }

  .hero-slogan {
    font-size: clamp(44px, 13vw, 72px);
  }

  .hero-features {
    gap: 24px;
    margin-top: 36px;
  }

  .hero-features span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .compare {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
  }

  .compare-media {
    padding: 14px;
    border-radius: 20px;
  }

  .compare-item.after,
  .compare-item.after:hover {
    transform: none;
  }

  .compare-vs {
    display: none;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .preview-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pdp {
    padding: 24px 16px 64px;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pdp-info {
    position: static;     /* plus de sticky : tout défile naturellement */
    top: auto;
  }

  .pdp-media {
    min-width: 0;
  }
  .pdp-grid { display: none; }              /* PC uniquement */
  .pdp-gallery { display: block; }          /* mobile : carrousel swipable */
  .pdp-slides {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;                   /* Firefox : pas de barre */
  }
  .pdp-slides::-webkit-scrollbar { display: none; }  /* WebKit : pas de barre */
  .pdp-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
  }

  .pdp-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  /* Titre des en-têtes de page : -9px sur mobile (66px → 57px) */
  .page-head h1 {
    font-size: 57px;
  }

  /* Badge "Compatible avec 100%…" : -2px de taille, -0.5px de letter-spacing */
  .pdp-badge {
    font-size: 10.5px;
    letter-spacing: -0.375px;
  }

  .product-desc-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  /* Mobile : la vidéo (ou image) passe au-dessus des fonctionnalités */
  .product-desc-media,
  .product-desc-media-col {
    order: -1;
  }

  footer {
    padding: 64px 24px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-wordmark {
    margin-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .price-amount {
    font-size: 60px;
  }

  .specs-table td:first-child {
    width: 140px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  .solution-item {
    padding: 36px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ──────────────────────────────────────────
   MODAL DE BIENVENUE (choix de langue, 1ère visite)
────────────────────────────────────────── */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.welcome-overlay.is-visible { opacity: 1; }
.welcome-modal {
  position: relative;
  width: min(440px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-overlay.is-visible .welcome-modal { transform: none; }
.welcome-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  color: var(--text-tertiary);
  cursor: pointer; padding: 4px; line-height: 0;
}
.welcome-close:hover { color: var(--text-primary); }
.welcome-logo { height: 26px; margin: 0 auto 18px; display: block; }
.welcome-title { font-size: 22px; margin: 0 0 6px; color: var(--text-primary); }
.welcome-sub { font-size: 14.5px; color: var(--text-secondary); margin: 0 0 24px; }
.welcome-langs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.welcome-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.welcome-lang:hover { border-color: var(--border-hover); }
.welcome-lang.active { border-color: var(--text-primary); }
.welcome-lang img { border-radius: 3px; flex: 0 0 auto; }
@media (max-width: 420px) { .welcome-langs { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────
   POPUP NEWSLETTER (réglée depuis l'admin)
────────────────────────────────────────── */
.news-overlay {
  position: fixed;
  inset: 0;
  z-index: 1280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-overlay.is-visible { opacity: 1; }
.news-modal {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-overlay.is-visible .news-modal { transform: none; }
.news-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  line-height: 0;
  transition: background 0.15s ease;
}
.news-close:hover { background: rgba(0, 0, 0, 0.7); }
.news-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  overflow: hidden;
}
.news-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-body { padding: 26px 28px 28px; text-align: center; }
.news-title { font-size: 22px; line-height: 1.15; margin: 0 0 8px; color: var(--text-primary); }
.news-sub { font-size: 14.5px; color: var(--text-secondary); margin: 0 0 20px; line-height: 1.5; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}
.news-form input:focus { outline: none; border-color: var(--text-primary); }
.news-submit {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0a0a0a;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.news-submit:hover { background: rgba(255, 255, 255, 0.85); transform: translateX(2px); }
.news-msg { font-size: 13px; margin: 14px 0 0; min-height: 1em; color: var(--text-secondary); }
.news-msg.ok { color: #34d27b; }
.news-msg.err { color: #ff6b6b; }
@media (max-width: 420px) {
  .news-form { flex-direction: row; }
}

/* ──────────────────────────────────────────
   COOKIE CONSENT BANNER
────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 140%);
  width: calc(100% - 36px);
  max-width: 640px;
  z-index: 1000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}
.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-banner-text {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.cookie-banner-text a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; }
}

/* ──────────────────────────────────────────
   UPSELL (page produit + panier)
────────────────────────────────────────── */
.pdp-upsell {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 26px;   /* respiration avant les icônes de réassurance */
  padding: 14px 16px;
  border: 1px dashed var(--border-hover, rgba(0,0,0,.22));
  border-radius: 14px;
  background: #fff;   /* carte blanche (la page produit est en thème clair) */
}
.pdp-upsell-img {
  width: 58px; height: 58px; flex: 0 0 58px;
  border-radius: 10px; object-fit: cover;
  border: 1px solid var(--border); background: #f2f2f2;
}
.pdp-upsell-info { flex: 1; min-width: 0; }
.pdp-upsell-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-tertiary); display: block; margin-bottom: 2px;
}
.pdp-upsell-name { font-weight: 600; color: var(--text-primary); font-size: 14.5px; }
.pdp-upsell-desc { color: var(--text-secondary); font-size: 12.5px; margin: 2px 0 0; line-height: 1.45; }
.pdp-upsell-price { color: var(--text-primary); font-weight: 600; font-size: 14px; margin-top: 4px; display: inline-block; }
.pdp-upsell-price .old { color: var(--text-tertiary); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.pdp-upsell-btn {
  flex: 0 0 auto; border: 1px solid var(--text-primary); background: transparent;
  color: var(--text-primary); border-radius: 10px; padding: 9px 16px; font-size: 13.5px;
  font-weight: 600; cursor: pointer; font-family: inherit; transition: background .15s, color .15s;
}
.pdp-upsell-btn:hover { background: var(--text-primary); color: #ffffff; }
.pdp-upsell.added .pdp-upsell-btn { background: var(--text-primary); color: #ffffff; }
.cart-line-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--text-tertiary); margin-bottom: 2px;
}
.cart-line-rm {
  background: none; border: none; color: var(--text-tertiary); cursor: pointer;
  font-size: 12px; padding: 2px 4px; font-family: inherit; text-decoration: underline;
}

/* Suggestion d'upsell dans le tiroir panier — carte BLANCHE, alignée en bas */
.cart-upsell-suggest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;          /* pousse la carte tout en bas du contenu du panier */
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.cart-upsell-suggest > img {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 8px; object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08); background: #f2f2f2;
}
.cart-upsell-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cart-upsell-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #8a8a8a; }
.cart-upsell-info strong { font-size: 13.5px; color: #0a0a0a; }
.cart-upsell-price { font-size: 13px; color: #555555; }
.cart-upsell-add {
  flex: 0 0 auto;
  border: 1px solid #0a0a0a;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s ease;
}
.cart-upsell-add:hover { opacity: .85; }

/* Accordéons en bas des infos produit */
.pdp-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--border);
}
.pdp-acc {
  border-bottom: 1px solid var(--border);
}
.pdp-acc summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc-chev {
  width: 18px; height: 18px; flex: 0 0 18px;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}
.pdp-acc[open] .pdp-acc-chev { transform: rotate(180deg); }
.pdp-acc-body {
  padding: 0 2px 18px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}
.pdp-acc-body ul { margin: 0; padding-left: 18px; }
.pdp-acc-body li { margin-bottom: 6px; }
.pdp-acc-body p { margin: 0 0 10px; }
.pdp-acc-body p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .pdp-upsell { flex-wrap: wrap; }
  .pdp-upsell-btn { width: 100%; }
}

/* ──────────────────────────────────────────
   SECTION DÉMO (page d'accueil)
────────────────────────────────────────── */
.section-demo {
  padding: 100px 0;
  text-align: center;
}
.demo-head {
  max-width: 680px;
  margin: 0 auto 44px;
  padding: 0 24px;
}
.demo-head h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.demo-head p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.demo-video-wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .section-demo { padding: 64px 0; }
}

/* ──────────────────────────────────────────
   EN-TÊTE DE PAGE UNIFORME (FAQ · Pourquoi Stembox · Vidéos)
   Titre gris aligné à gauche + divider gris pleine largeur.
────────────────────────────────────────── */
.page-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px 90px;
}
.page-head {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.page-head h1 {
  text-align: left;
  color: #6b6b6b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 5px 0 0;
  opacity: 0.5;
  font-size: clamp(66px, 6vw, 84px);
  line-height: 1.1;
}
.page-body { max-width: 880px; }
/* Sous-titre des pages tutoriels (sous le titre, au-dessus de la vidéo) */
.tut-sub {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 32px;
}
/* Sur les pages à en-tête (faq, pourquoi), pas de bordure haute sur la 1ʳᵉ question
   (le divider du page-head fait déjà la séparation). */
.page-body .faq-list { margin-top: 0; }
.page-body .faq-item:first-child { border-top: none; padding-top: 0; }

/* ──────────────────────────────────────────
   PAGE VIDÉOS
────────────────────────────────────────── */
.videos-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
}
.videos-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.videos-tab:hover { border-color: var(--border-hover); color: var(--text-primary); }
.videos-tab.active {
  background: linear-gradient(135deg, #ffa35a 0%, #ff5a1f 55%, #f04500 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 90, 31, .32);
}
.videos-stage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
/* Onglets drapeaux 🇬🇧/🇫🇷 au-dessus d'une vidéo bilingue (réutilise .demo-tab) */
.video-lang-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Emplacement « vidéo bientôt disponible » (bloc créé sans lien) */
.video-embed-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 12px, transparent 12px 24px),
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    #0b0b0d;
}
.video-soon-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-secondary);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
}
.video-caption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}
.videos-state {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 60px 0;
}

/* ── Trio de vidéos (accueil & page produit) ── */
.video-trio-section {
  padding: 72px 0;
}
/* Full width identique sur la home ET la page produit (qui élargit sinon .container),
   avec un padding latéral pour ne pas toucher les bords. */
.video-trio-section .container {
  max-width: 1800px;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.video-trio {
  display: flex;
  gap: 24px;
}
.video-trio-item {
  flex: 1 1 0;
  min-width: 0;
}
.video-trio-cap {
  margin-top: 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: -.01em;
  line-height: 1.4;
}
.video-trio-cap::before {
  content: "";
  display: block;
  width: 26px; height: 2px;
  margin: 0 auto 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffa35a, #ff5a1f);
}
@media (max-width: 860px) {
  .video-trio { flex-direction: column; gap: 28px; }
  .video-trio-section { padding: 48px 0; }
}
@media (max-width: 640px) {
  .video-embed { border-radius: 14px; }
  .videos-stage { gap: 36px; }
}

/* ──────────────────────────────────────────
   PAGES LÉGALES (mentions, confidentialité, CGV)
────────────────────────────────────────── */
.legal-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 24px 100px;
  color: var(--text-primary);
}
.legal-section h1 {
  font-size: 32px;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.legal-updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin: 0 0 40px;
}
.legal-section h2 {
  font-size: 20px;
  margin: 40px 0 14px;
  color: var(--text-primary);
}
.legal-section h3 {
  font-size: 15.5px;
  margin: 24px 0 8px;
  color: var(--text-primary);
}
.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.legal-section p { margin: 0 0 14px; }
.legal-section ul { margin: 0 0 16px; padding-left: 20px; }
.legal-section li { margin-bottom: 6px; }
.legal-section a { color: var(--text-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-section strong { color: var(--text-primary); }
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0 0 16px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 18px;
  margin: 0;
}
.legal-dl dt { color: var(--text-tertiary); font-size: 14px; }
.legal-dl dd { margin: 0; color: var(--text-primary); font-size: 14.5px; }
.legal-todo {
  color: #f0b86c;
  font-style: italic;
}
@media (max-width: 560px) {
  .legal-section h1 { font-size: 26px; }
  .legal-dl { grid-template-columns: 1fr; gap: 2px 0; }
  .legal-dl dd { margin-bottom: 10px; }
}

/* ══════════════════════════════════════════════════════════════
   PAGES ÉDITORIALES — pourquoi / faq / contact
   Hero commun + composants (cartes objections, accordéons, CTA)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 24px 36px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  width: 780px; height: 440px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 90, 31, .16), transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.page-hero > * { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: #ff7a3c;
  padding: 7px 16px;
  border: 1px solid rgba(255, 90, 31, .32);
  border-radius: 999px;
  background: rgba(255, 90, 31, .08);
  margin-bottom: 24px;
}
.page-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #ff5a1f; box-shadow: 0 0 8px rgba(255, 90, 31, .9);
}
.page-hero-title {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.04;
  margin: 0; color: #fff;
}
.page-hero-title .accent,
.page-hero-title.is-accent {
  background: linear-gradient(120deg, #ffa35a, #ff5a1f 58%, #f04500);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-sub {
  max-width: 1300px; margin: 22px auto 0;
  color: var(--text-secondary); font-size: 17px; line-height: 1.65;
}

/* ── POURQUOI STEMBOX — grille de cartes objection / réponse ── */
.why-wrap { max-width: 1080px; margin: 26px auto 0; padding: 0 24px 96px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px 28px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ff5a1f, transparent 72%);
  opacity: .75;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.why-num {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: #ff7a3c; margin-bottom: 14px;
}
.why-q {
  font-size: 18px; font-weight: 600; color: #fff;
  line-height: 1.35; margin: 0 0 12px; letter-spacing: -.01em;
}
.why-a { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* ── FAQ — accordéons enrichis ── */
.faq-acc { transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.faq-acc:hover { border-color: var(--border-hover); }
.faq-acc[open] {
  border-color: rgba(255, 90, 31, .35);
  box-shadow: inset 3px 0 0 #ff5a1f;
}
.faq-acc-chev {
  width: 30px; height: 30px; padding: 6px;
  flex: 0 0 30px; box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  color: var(--text-secondary);
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-acc[open] .faq-acc-chev { background: rgba(255, 90, 31, .16); color: #ff7a3c; }

/* ── Bande CTA (bas de page) ── */
.cta-band {
  position: relative;
  max-width: 1080px; margin: 60px auto 0;
  border-radius: 22px; overflow: hidden;
  padding: 48px 32px;
  text-align: center;
  background:
    radial-gradient(120% 170% at 50% 0%, rgba(255, 90, 31, .18), transparent 60%),
    var(--bg-card);
  border: 1px solid rgba(255, 90, 31, .22);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 0 0 10px; letter-spacing: -.02em; color: #fff; }
.cta-band p { color: var(--text-secondary); margin: 0 0 26px; font-size: 16px; }

/* ── CONTACT — disposition 2 colonnes ── */
.contact-layout {
  max-width: 1040px; margin: 18px auto 0; padding: 0 24px 96px;
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; align-items: start;
}
.contact-aside { padding-top: 6px; }
.contact-aside h2 { font-size: 27px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.02em; color: #fff; }
.contact-aside .contact-lead { color: var(--text-secondary); font-size: 16px; line-height: 1.65; margin: 0 0 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 13px; }
.contact-method {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 17px;
  border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card);
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-method:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.contact-method-ic {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 90, 31, .12); color: #ff7a3c;
}
.contact-method-ic svg { width: 20px; height: 20px; }
.contact-method-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-method-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-secondary); }
.contact-method-value { font-size: 15px; font-weight: 600; color: #fff; word-break: break-word; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 28px;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 26px; }
}
