/* =========================================================
   ESSENTIEL CAR — Main Stylesheet
   Design System: Noir / Blanc / Rouge
   ========================================================= */

/* ── Variables ── */
:root {
  --red:         #E0000C;
  --red-dark:    #a50009;
  --red-glow:    rgba(224, 0, 12, 0.18);
  --red-subtle:  rgba(224, 0, 12, 0.07);

  --black:    #090909;
  --black-1:  #0e0e0e;
  --black-2:  #131313;
  --black-3:  #1a1a1a;
  --black-4:  #222222;
  --black-5:  #2a2a2a;

  --white:    #ffffff;
  --gray-1:   #999999;
  --gray-2:   #555555;
  --gray-3:   #333333;
  --border:   rgba(255,255,255,0.07);
  --border-h: rgba(255,255,255,0.14);

  --font-display: 'Bebas Neue', impact, 'Arial Narrow', sans-serif;
  --font-sans:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:    1300px;
  --pad:      clamp(1.25rem, 4vw, 2.5rem);
  --r:        4px;
  --r-lg:     10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease:     cubic-bezier(0.37, 0, 0.63, 1);

  --shadow-red: 0 0 40px rgba(224, 0, 12, 0.25), 0 0 80px rgba(224, 0, 12, 0.08);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
svg { display: block; }

/* ── Loading state ── */
.is-loading { opacity: 0; }

/* ── Page Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s var(--ease-out) forwards;
}
.loader-mark svg { width: 56px; height: 56px; }
.loader-wordmark { font-family: var(--font-display); letter-spacing: 0.02em; }
.loader-wordmark .l-e { font-size: 2.6rem; color: var(--white); }
.loader-wordmark .l-c { font-size: 2.6rem; color: var(--red); }
.loader-bar {
  width: 180px; height: 2px;
  background: var(--black-4);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0%;
  background: var(--red);
  border-radius: 2px;
  animation: loadProgress 1.4s 0.3s var(--ease-out) forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--red);
  transition: transform 0.1s var(--ease-out);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              background 0.3s, border-color 0.3s;
}
.cursor-ring.is-hovering {
  width: 58px; height: 58px;
  background: var(--red-glow);
  border-color: var(--red);
}
.cursor-ring.is-clicking {
  width: 26px; height: 26px;
  background: var(--red-subtle);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Language Switcher ── */
.lang-switcher {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 0;
  backdrop-filter: blur(12px);
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-1);
  padding: 6px 10px;
  border-radius: 40px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--white); background: var(--red); }
.lang-divider { width: 1px; height: 10px; background: var(--border-h); }

/* ── Promo Bar ── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.promo-bar-arrow {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  flex-shrink: 0;
}
.promo-bar-arrow:hover { color: var(--white); }
.promo-bar-track-wrap { flex: 1; overflow: hidden; text-align: center; }
.promo-bar-item {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.promo-bar-item.active { display: flex; }
.promo-bar-item svg { flex-shrink: 0; opacity: 0.9; }
.promo-bar-item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.4rem;
  opacity: 0.85;
  font-size: 0.78rem;
  transition: opacity 0.15s;
}
.promo-bar-item a:hover { opacity: 1; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s,
              box-shadow 0.4s, height 0.3s;
}
.navbar.scrolled {
  background: rgba(9,9,9,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  height: 62px;
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  padding-right: 0.5rem;
}
.logo-mark svg {
  width: 50px; height: 50px;
}
.logo-wordmark {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-e { font-size: 1.9rem; color: var(--white); }
.logo-c { font-size: 1.9rem; color: var(--red); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin: 0 auto;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-1);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9,9,9,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s, transform 0.2s;
}
.mobile-link:hover { color: var(--red); transform: translateX(8px); }
.mobile-link-cta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.75rem 2rem;
  border-radius: var(--r);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r);
  transition: background 0.25s, color 0.25s, border-color 0.25s,
              transform 0.2s var(--ease-out), box-shadow 0.25s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97) !important; }
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  padding: 0.625rem 1.5rem;
}
.btn--ghost:hover {
  background: var(--red);
  color: var(--white);
}

.btn--lg {
  font-size: 0.875rem;
  padding: 0.9rem 2.25rem;
}

.btn--sm {
  font-size: 0.72rem;
  padding: 0.55rem 1.2rem;
  gap: 0.4em;
}

/* ── Container ── */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Section commons ── */
.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}
.section--dark { background: var(--black-1); }
.section--darker { background: var(--black-2); }

.section-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eyebrow-line {
  display: block; width: 32px; height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  white-space: pre-line;
}
.section-title .accent { color: var(--red); }

.section-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--gray-1);
  max-width: 540px;
}

.section-header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-header--center { text-align: center; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── GSAP Animation Classes ── */
[data-reveal] { opacity: 0; transform: translateY(32px); }
[data-reveal-left] { opacity: 0; transform: translateX(-40px); }
[data-reveal-right] { opacity: 0; transform: translateX(40px); }
[data-reveal-scale] { opacity: 0; transform: scale(0.9); }
.word { display: inline-block; overflow: hidden; }
.char { display: inline-block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0.08) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 20%, transparent 60%, rgba(0,0,0,0.85) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 65% at 72% 50%, rgba(224,0,12,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 15% 70%, rgba(224,0,12,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 220px 80px at 100% 100%, rgba(0,0,0,1) 30%, transparent 75%);
  animation: heroGlowPulse 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlowPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem var(--pad) 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  opacity: 0;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(224,0,12,0.3);
  border-radius: 100px;
  background: rgba(224,0,12,0.06);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 12rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 2.25rem;
  overflow: hidden;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-line.accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.75rem;
  opacity: 0;
  font-weight: 400;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 1.25rem;
  opacity: 0;
}
.hero-trust-line {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero-stats {
  display: flex; align-items: center; gap: 0;
  opacity: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  width: fit-content;
}
.hero-stat {
  padding: 0 2rem;
  text-align: center;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: var(--pad);
  z-index: 10;
  display: flex; align-items: center; gap: 0.75rem;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red) 50%, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  writing-mode: vertical-lr;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.trust-track-outer { overflow: hidden; position: relative; }
.trust-track-outer::before,
.trust-track-outer::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.trust-track-outer::before { left: 0; background: linear-gradient(to right, var(--black-2), transparent); }
.trust-track-outer::after  { right: 0; background: linear-gradient(to left, var(--black-2), transparent); }

.trust-track {
  display: flex;
  animation: trustScroll 30s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }

@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.35rem 2.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.72);
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.trust-item:hover { color: var(--white); }
.trust-icon {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.trust-dot { color: var(--red); font-size: 1.2rem; flex-shrink: 0; }

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  border-color: rgba(224,0,12,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(224,0,12,0.15);
}

.product-card-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.018) 28px,
    rgba(255,255,255,0.018) 29px
  );
}
.product-card-icon {
  width: 80px; height: 80px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out), color 0.3s;
}
.product-card:hover .product-card-icon {
  transform: scale(1.12);
  color: rgba(255,255,255,0.85);
}
.product-card-visual-num {
  position: absolute;
  bottom: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  user-select: none;
}
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem; left: auto;
  z-index: 5;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.badge--bestseller { background: var(--red); color: var(--white); }
.badge--popular    { background: #e07000; color: var(--white); }
.badge--new        { background: #0070e0; color: var(--white); }
.badge--promo      { background: var(--red); color: var(--white); }
.badge--pro        { background: var(--black-5); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.badge--security   { background: #006b3c; color: var(--white); }
.badge--practical  { background: #005f8c; color: var(--white); }
.badge--bundle     { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); color: var(--white); letter-spacing: 0.1em; }

.product-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.product-card-body {
  padding: 1.375rem 1.5rem 0.75rem;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.product-card-footer {
  padding: 0.75rem 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
/* ── Card color swatches ── */
.card-swatches {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 0.75rem;
}
.card-swatch-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: transform 0.15s, border-color 0.15s;
}
.product-card:hover .card-swatch-dot {
  border-color: rgba(255,255,255,0.5);
}
.card-swatch-dot--transparent {
  background: conic-gradient(#ccc 0% 50%, transparent 50%) !important;
  border-style: dashed;
}
.card-swatch-sep {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: rgba(255,255,255,0.2);
  margin: 0 3px;
  flex-shrink: 0;
}
.product-card-cat {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.product-card-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.product-card-tagline {
  font-size: 0.8rem;
  color: var(--gray-1);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.product-card-rating {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.stars {
  display: flex; gap: 1px;
}
.star {
  width: 12px; height: 12px;
  fill: #f5a623; color: #f5a623;
}
.star-empty { fill: var(--black-5); color: var(--black-5); }
.rating-count {
  font-size: 0.72rem;
  color: var(--gray-2);
  font-family: var(--font-sans);
}
.product-card-pricing {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 1rem;
}
.price-current {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
}
.price-old {
  font-size: 0.875rem;
  color: var(--gray-2);
  text-decoration: line-through;
}
.price-discount {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-subtle);
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  margin-left: auto;
}
.product-card-cta {
  width: 100%;
  justify-content: center;
}

/* ── Demo Section ── */
.demo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.demo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.demo-item:hover {
  border-color: rgba(224,0,12,0.35);
  box-shadow: 0 0 40px rgba(224,0,12,0.12), 0 20px 50px rgba(0,0,0,0.6);
}
.demo-item:nth-child(1) { grid-row: 1 / 3; aspect-ratio: auto; }
.demo-item:nth-child(2) { grid-column: 2; }
.demo-item:nth-child(3) { grid-column: 3; }
.demo-item:nth-child(4) { grid-column: 2; }
.demo-item:nth-child(5) { grid-column: 3; }

/* ── GIF / real image ── */
.demo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
  filter: contrast(1.08) saturate(1.1) brightness(1.25);
  will-change: transform;
}
.demo-item:hover .demo-img {
  transform: scale(1.07);
  filter: contrast(1.25) saturate(1.4) brightness(1.08);
}

/* ── CSS gradient fallback ── */
.demo-visual {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.demo-item:hover .demo-visual { transform: scale(1.07); }

/* ── Cinematic overlays ── */
.demo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.75) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 0%,   rgba(0,0,0,0.35) 0%, transparent 60%),
    linear-gradient(135deg, rgba(224,0,12,0.04) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.demo-item:hover::before {
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.7) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 0%,   rgba(0,0,0,0.25) 0%, transparent 55%),
    linear-gradient(135deg, rgba(224,0,12,0.08) 0%, transparent 45%);
}

/* ── Vignette frame ── */
.demo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.55);
  border-radius: 16px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 180px 70px at 100% 100%, rgba(0,0,0,1) 35%, transparent 78%);
}

/* ── Info overlay ── */
.demo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.demo-item:hover .demo-overlay,
.demo-item:nth-child(1) .demo-overlay { opacity: 1; }

.demo-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.demo-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: demoDotPulse 1.6s ease-in-out infinite;
}
@keyframes demoDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}
.demo-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.demo-caption {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.demo-item:nth-child(1) .demo-caption { font-size: 1.05rem; }

/* ── CSS gradient fallback backgrounds ── */
.demo-bg-1 { background: radial-gradient(ellipse at 30% 60%, #1a2a3a 0%, #0a0a14 100%); }
.demo-bg-2 { background: radial-gradient(ellipse at 70% 40%, #2a1a0a 0%, #0a0a0a 100%); }
.demo-bg-3 { background: radial-gradient(ellipse at 30% 70%, #0a1a0a 0%, #0a0a0a 100%); }
.demo-bg-4 { background: radial-gradient(ellipse at 60% 40%, #1a0a0a 0%, #0a0a0a 100%); }
.demo-bg-5 { background: radial-gradient(ellipse at 40% 60%, #0a0a1a 0%, #0a0a0a 100%); }

/* ── SVG icon (no image) ── */
.demo-icon-wrap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.demo-icon-wrap svg { width: 64px; height: 64px; color: rgba(255,255,255,0.1); }
.demo-item:nth-child(1) .demo-icon-wrap svg { width: 100px; height: 100px; }

/* ── Problem / Solution ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.problem-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.problem-card:hover {
  border-color: rgba(224,0,12,0.25);
  transform: translateY(-4px);
}
.problem-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gray-1);
}
.problem-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 0.4rem;
}
.problem-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.solution-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.solution-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.result-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: #4ade80;
}
.result-arrow {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* ── UGC / Testimonials Video Section ── */
/* ── Best Sellers Section ── */
.best-sellers-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #110506 50%, #0a0a0a 100%);
  position: relative;
}
.best-sellers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(224,0,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Promo Banner */
.bs-promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #1a0204 0%, #2a0407 50%, #1a0204 100%);
  border: 1px solid rgba(224,0,12,0.35);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.bs-promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,0,12,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.bs-promo-left { flex: 1; }
@keyframes tagBlink {
  0%, 49% { opacity: 1; box-shadow: 0 0 12px rgba(224,0,12,0.7); }
  50%, 100% { opacity: 0.35; box-shadow: none; }
}
.bs-promo-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  animation: tagBlink 1s step-end infinite;
}
.bs-promo-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.bs-promo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
  gap: 0.2rem;
}
.bs-promo-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
}
.bs-promo-num sup {
  font-size: 0.4em;
  vertical-align: super;
}
.bs-promo-article {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.bs-promo-pct {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 40px rgba(224,0,12,0.5);
}

/* Slot machine */
.bs-slot-wrap {
  height: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  position: relative;
}
.bs-slot-wrap::before,
.bs-slot-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 30%;
  z-index: 1;
  pointer-events: none;
}
.bs-slot-wrap::before { top: 0; background: linear-gradient(to bottom, #1a0204, transparent); }
.bs-slot-wrap::after  { bottom: 0; background: linear-gradient(to top, #1a0204, transparent); }
.bs-slot-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.bs-slot-item {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  height: clamp(3.5rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.bs-slot-winner {
  color: var(--red) !important;
  text-shadow: 0 0 40px rgba(224,0,12,0.6);
}
.bs-promo-right { flex: 1; display: flex; justify-content: flex-end; }

@media (max-width: 768px) {
  .bs-promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  .bs-promo-left { text-align: center; }
  .bs-promo-right { justify-content: center; }
}

.ugc-section {
  background: var(--black-1);
  position: relative;
  overflow: hidden;
}
.ugc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224,0,12,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.section-header--center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.ugc-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black-2);
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.ugc-card:hover {
  border-color: rgba(224,0,12,0.3);
  transform: translateY(-5px);
}
.ugc-card--featured {
  transform: translateY(-12px);
  border-color: rgba(224,0,12,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(224,0,12,0.15);
}
.ugc-card--featured:hover {
  transform: translateY(-17px);
}
.ugc-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.ugc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.ugc-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s var(--ease-out);
}
.ugc-card:hover .ugc-thumb-img {
  transform: scale(1.04);
}
.ugc-card[data-youtube] { cursor: pointer; }

/* ── YouTube modal ── */
.yt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ytFadeIn 0.2s ease;
}
@keyframes ytFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.yt-modal-inner {
  position: relative;
  width: min(400px, 90vw);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9);
}
.yt-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s;
  padding: 4px 8px;
}
.yt-modal-close:hover { opacity: 1; }
.ugc-play {
  width: 52px; height: 52px;
  background: rgba(224,0,12,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(224,0,12,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ugc-card:hover .ugc-play {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(224,0,12,0.1);
}
.ugc-play svg {
  width: 22px; height: 22px;
  margin-left: 3px;
}
.ugc-coming {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ugc-info {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.ugc-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.ugc-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.ugc-product {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.4rem;
}
.ugc-quote {
  font-size: 0.8rem;
  color: var(--gray-1);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}
.ugc-cta-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--gray-2);
}
.ugc-cta-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.ugc-cta-link:hover { opacity: 0.75; }

/* ── Stats Section ── */
.stats-section {
  background: var(--black-1);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(224,0,12,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--black-1);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: var(--black-2); }
.stat-number-wrap {
  display: flex; align-items: baseline; justify-content: center; gap: 0.15em;
  margin-bottom: 0.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  color: var(--white);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--red);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-1);
  text-transform: uppercase;
}

/* ── Categories Section ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.category-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat-cover {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0a0a;
}
.cat-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
  filter: brightness(0.85);
}
.category-card:hover .cat-cover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.cat-body {
  padding: 1.5rem;
  position: relative;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-subtle) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.category-card:hover {
  border-color: rgba(224,0,12,0.35);
  transform: translateY(-5px);
  background: var(--black-3);
}
.category-card:hover::before { opacity: 1; }

.cat-icon {
  width: 40px; height: 40px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.category-card:hover .cat-icon {
  color: var(--red);
  transform: scale(1.15);
}
.cat-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.cat-count {
  font-size: 0.775rem;
  color: var(--gray-2);
}
.cat-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 20px; height: 20px;
  color: var(--gray-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), color 0.3s;
}
.category-card:hover .cat-arrow {
  opacity: 1;
  transform: none;
  color: var(--red);
}

/* ── Why Section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.why-content { }
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-item:hover { border-color: var(--border-h); }
.why-item-icon {
  width: 46px; height: 46px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover .why-item-icon {
  border-color: var(--red);
  background: var(--red-subtle);
}
.why-item-icon svg { width: 20px; height: 20px; color: var(--red); }
.why-item-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.why-item-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-1);
}

.why-visual {
  position: relative;
}
.why-visual-main {
  aspect-ratio: 4/5;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.why-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(224,0,12,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}
.why-visual-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.why-big-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: rgba(255,255,255,0.04);
  text-align: center;
  letter-spacing: 0.02em;
  user-select: none;
}
.why-accent-card {
  position: absolute;
  bottom: 1.5rem; right: 1rem;
  z-index: 20;
  background: rgba(224,0,12,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.4rem;
  min-width: 140px;
  box-shadow: 0 6px 22px rgba(224,0,12,0.25);
}
.why-accent-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.why-accent-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}
.why-dot-card {
  position: absolute;
  top: 1.5rem; left: 1rem;
  z-index: 20;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 1rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.why-dot-row {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
}
.why-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.why-dot.green { background: #4ade80; }
.why-dot.amber { background: #fbbf24; }

/* ── Why GIF + Keywords ── */
.why-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
}
.why-keywords {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.why-kw {
  position: absolute;
  top: var(--kw-top, 50%);
  left: var(--kw-left, 5%);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.95);
  text-stroke: 1.5px rgba(255,255,255,0.95);
  text-shadow:
    1px 2px 0 rgba(255,255,255,0.2),
    3px 5px 0 rgba(255,255,255,0.1),
    5px 8px 12px rgba(0,0,0,0.55);
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  animation: kwAppear 11s var(--kw-delay, 0s) infinite both;
  user-select: none;
}
.why-kw--red {
  -webkit-text-stroke: 1.5px rgba(224,0,12,1);
  text-stroke: 1.5px rgba(224,0,12,1);
  text-shadow:
    1px 2px 0 rgba(224,0,12,0.32),
    3px 5px 0 rgba(224,0,12,0.18),
    5px 8px 12px rgba(0,0,0,0.55);
}

@keyframes kwAppear {
  0%   { opacity: 0; transform: translateY(8px) scale(0.93); }
  7%   { opacity: 1; transform: translateY(0) scale(1); }
  22%  { opacity: 1; transform: translateY(0) scale(1); }
  28%  { opacity: 0; transform: translateY(-5px) scale(1.03); }
  100% { opacity: 0; }
}

/* Mobile-only GIF block */
.why-mobile-visual { display: none; }
.why-mobile-gif-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 480px;
  margin: 0 auto;
}
.why-mobile-gif-wrap .why-gif {
  border-radius: inherit;
}
.why-mobile-gif-wrap .why-keywords { border-radius: inherit; }
.why-mobile-gif-wrap .why-kw {
  font-size: clamp(1.4rem, 7vw, 2.2rem);
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.95);
  text-stroke: 1.5px rgba(255,255,255,0.95);
  text-shadow:
    1px 2px 0 rgba(255,255,255,0.18),
    2px 3px 0 rgba(255,255,255,0.1),
    3px 5px 8px rgba(0,0,0,0.55);
}
.why-mobile-gif-wrap .why-kw--red {
  -webkit-text-stroke: 1.5px rgba(224,0,12,1);
  text-stroke: 1.5px rgba(224,0,12,1);
  text-shadow:
    1px 2px 0 rgba(224,0,12,0.3),
    2px 3px 0 rgba(224,0,12,0.16),
    3px 5px 8px rgba(0,0,0,0.55);
}
/* ── Cartes réduites sur mobile ── */
.why-mobile-gif-wrap .why-dot-card {
  padding: 0.55rem 0.85rem;
  gap: 0.28rem;
}
.why-mobile-gif-wrap .why-dot-row {
  font-size: 0.7rem;
}
.why-mobile-gif-wrap .why-accent-card {
  padding: 0.7rem 0.95rem;
  min-width: 90px;
  box-shadow: 0 5px 18px rgba(224,0,12,0.4);
}
.why-mobile-gif-wrap .why-accent-num {
  font-size: 1.8rem;
}
.why-mobile-gif-wrap .why-accent-label {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

/* ── Reviews Carousel ── */
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  overflow: hidden;
}
.review-card:hover {
  border-color: rgba(224,0,12,0.25);
  transform: translateY(-4px);
}
.review-product-img-wrap {
  width: calc(100% + 3rem);
  height: 140px;
  margin: -1.5rem -1.5rem 1.25rem;
  background: var(--black-3);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.review-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.review-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-1);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--red); font-size: 1.2em; font-style: normal; }
.review-text::after  { content: '"'; color: var(--red); font-size: 1.2em; font-style: normal; }
.review-meta {
  display: flex; align-items: center; gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black-4);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.review-product {
  font-size: 0.72rem;
  color: var(--gray-2);
  margin-top: 0.1rem;
}
.review-verified {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #4ade80;
  text-transform: uppercase;
}
.verified-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 0.4rem; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black-5);
  transition: background 0.3s, width 0.3s;
}
.carousel-dot.active { width: 20px; border-radius: 3px; background: var(--red); }

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
}
.faq-icon svg { width: 10px; height: 10px; }
.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--gray-1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out), padding 0.4s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.5rem;
}

/* ── Section scroll hint (chevron bas) ── */
@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1;   }
}
.section-scroll-hint {
  display: block;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  animation: scrollHintBounce 2s ease-in-out infinite;
  z-index: 4;
}
.section-scroll-hint svg { width: 18px; height: 18px; }
.section-scroll-hint:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  animation-play-state: paused;
}
/* Les sections qui portent un scroll-hint doivent être position:relative */
#packs, #demo, #best-sellers, #avis { position: relative; }

/* ── GWP — Gift With Purchase ── */
.gwp-teaser {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: rgba(255,215,0,0.05);
  border: 1px dashed rgba(255,215,0,0.3);
  border-radius: 0.875rem;
  margin-top: 1.25rem;
  cursor: default;
}
.gwp-teaser-emoji { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.gwp-teaser-title { font-size: 0.82rem; font-weight: 700; color: #fbbf24; margin-bottom: 0.15rem; }
.gwp-teaser-desc  { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

.gwp-bar {
  margin: 0 0 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(251,191,36,0.05);
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: 0.875rem;
}
.gwp-bar.gwp-unlocked {
  background: rgba(74,222,128,0.06);
  border-color: rgba(74,222,128,0.22);
}
.gwp-bar-header {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.55rem;
}
.gwp-bar.gwp-unlocked .gwp-bar-header { color: #4ade80; }
.gwp-progress-track {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.gwp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gwp-bar.gwp-unlocked .gwp-progress-fill {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}
.gwp-bar-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
}
.gwp-bar.gwp-unlocked .gwp-bar-sub { color: rgba(74,222,128,0.7); }

/* Toast cadeau débloqué */
.gift-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 600;
  color: #fff;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.gift-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.gift-toast-icon { font-size: 1.4rem; }
.gift-toast-text { line-height: 1.3; }
.gift-toast-sub { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }

/* ── FAQ extra (masqué par défaut) ── */
.faq-extra {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-extra.open {
  max-height: 9999px;
}
.faq-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1.75rem;
}
.faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.faq-more-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.faq-more-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
.faq-more-btn.open .faq-more-icon {
  transform: rotate(180deg);
}

/* ── Final CTA ── */
/* ── Final CTA — GIF Background ── */
.final-cta {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 0;
  min-height: 760px;
  display: flex;
  align-items: stretch;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  z-index: 3;
}
.cta-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}
.cta-gif--mobile { display: none; }
.cta-gif--desktop { display: block; }
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 42% 55% at 13% 28%, rgba(0,0,0,0.50) 0%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.0) 42%);
}
/* Grille subtile desktop */
.cta-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
/* Fond dégradé bas pour cacher le watermark Veo centré en bas */
.final-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.30) 60%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}
/* Watermark covers — plus nécessaires avec la vidéo MP4 propre */
.cta-veo { display: none; }
.cta-wm  { display: none; }
.cta-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: left;
  padding: 7.5rem 0 5rem;
}
.cta-content .section-eyebrow {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 0 40px rgba(0,0,0,0.55);
  animation: ctaTitleIn 0.9s var(--ease-out) 0.2s both;
}
@keyframes ctaTitleIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 3rem;
}
.cta-btn-main:hover {
  background: var(--red);
  color: var(--white);
}
.cta-features {
  display: flex;
  flex-direction: row;
  gap: 1.8rem;
  align-items: flex-start;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.75);
}
.cta-feature svg { flex-shrink: 0; color: var(--red); opacity: 1; }
.cta-feat-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.cta-feat-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
/* Mobile */
@media (max-width: 768px) {
  .cta-gif--desktop { display: none; }
  .cta-gif--mobile  { display: block; }
  .cta-wm { display: none; }
  .final-cta { min-height: 820px; }
  .cta-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.18) 60%,
      rgba(0,0,0,0.35) 100%
    );
  }
  .final-cta::after { height: 110px; }
  .cta-content {
    text-align: center;
    padding: 3.5rem 0 2rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 780px;
  }
  .cta-content .section-eyebrow { justify-content: center; }
  /* Chaque mot sur sa propre ligne, taille réduite */
  .cta-title {
    font-size: clamp(2.8rem, 12.5vw, 4.5rem);
    margin-bottom: 0;
  }
  /* Bouton ancré en bas juste au-dessus des icônes */
  .cta-btns {
    margin-top: auto;
    margin-bottom: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .cta-btn-main {
    width: auto;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    margin-bottom: 0;
  }
  /* 3 features en ligne juste sous le bouton */
  .cta-features {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 100%;
    margin-top: 0;
    gap: 0.5rem;
  }
  .cta-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    flex: 1;
  }
  .cta-feat-title { font-size: 0.62rem; }
  .cta-feat-sub   { font-size: 0.58rem; }
}

/* ── Footer ── */
.footer {
  background: var(--black-1);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--red) 50%, transparent 100%);
}
.footer-top {
  padding: clamp(3.5rem, 6vw, 5rem) 0 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-1);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-promise {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-socials {
  display: flex; gap: 0.5rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: var(--black-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn svg { width: 16px; height: 16px; }
.social-btn--instagram { color: #e1306c; border-color: rgba(225,48,108,0.3); }
.social-btn--instagram:hover { background: linear-gradient(135deg,#405de6,#833ab4,#c13584,#e1306c,#fd1d1d) !important; border-color: transparent !important; color: #fff; }
.social-btn--facebook { color: #1877F2; border-color: rgba(24,119,242,0.3); }
.social-btn--facebook:hover { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff; }
.social-btn--tiktok { color: #fff; border-color: rgba(255,255,255,0.2); }
.social-btn--tiktok:hover { background: #010101 !important; border-color: #69C9D0 !important; color: #69C9D0; }
.social-btn--snapchat { color: #FFFC00; border-color: rgba(255,252,0,0.3); }
.social-btn--snapchat:hover { background: #FFFC00 !important; border-color: #FFFC00 !important; color: #111; }
.social-btn--youtube { color: #FF0000; border-color: rgba(255,0,0,0.3); }
.social-btn--youtube:hover { background: #FF0000 !important; border-color: #FF0000 !important; color: #fff; }

/* ── Comparison Table ── */
.comparison-section { background: var(--black-2); }
.comparison-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); margin-top: 3rem; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead tr { background: var(--black-3); }
.comparison-table th, .comparison-table td { padding: 1.1rem 1.4rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 1rem; vertical-align: middle; }
.comparison-table th { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray-2); text-align: center; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.025); transition: background 0.2s; }
.cmp-feature-label { color: var(--white); font-weight: 700; width: 40%; font-size: 1rem; }
.cmp-col-us { background: rgba(224,0,12,0.06) !important; color: var(--white); font-weight: 600; text-align: left; }
.cmp-col-them { color: var(--gray-2); text-align: center; }

/* Logo in header */
/* Logo clippé (k=1.2 → 48px visible) */
.cmp-logo-wrap { overflow: hidden; height: 43px; position: relative; width: 100%; }
.cmp-logo { position: absolute; width: 194px; height: 194px; top: -75px; left: 50%; transform: translateX(-50%); filter: brightness(1.1); }
.comparison-table th.cmp-col-us   { width: 30%; padding: 0.6rem 1.25rem; }
.comparison-table th.cmp-col-them { width: 30%; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.1em; color: var(--white); padding: 0.6rem 1.25rem; text-align: center; vertical-align: middle; }

/* SVG icons */
.cmp-svg { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; vertical-align: middle; margin-right: 0.5rem; }
.cmp-detail { font-size: 0.95rem; color: rgba(255,255,255,0.75); vertical-align: middle; }

/* Icon initial states (pre-animation) */
.cmp-svg--check polyline { stroke-dasharray: 30; stroke-dashoffset: 30; }
.cmp-svg--cross line    { stroke-dasharray: 20; stroke-dashoffset: 20; opacity: 0; }

/* Row entrance animation */
@keyframes cmpRowIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes cmpCheckDraw {
  from { stroke-dashoffset: 30; }
  to   { stroke-dashoffset: 0; }
}
@keyframes cmpCrossIn {
  from { stroke-dashoffset: 20; opacity: 0; }
  to   { stroke-dashoffset: 0;  opacity: 1; }
}

.comparison-table tbody tr { opacity: 0; }
.comparison-table tbody tr.cmp-visible { animation: cmpRowIn 0.42s ease forwards; }
.cmp-visible .cmp-svg--check polyline   { animation: cmpCheckDraw 0.32s ease forwards; }
.cmp-visible .cmp-svg--cross line       { animation: cmpCrossIn   0.28s ease forwards; }

/* Mobile — compact: juste l'icône, texte masqué */
@media (max-width: 560px) {
  .comparison-wrap { overflow-x: unset; }
  .comparison-table th, .comparison-table td { padding: 0.65rem 0.5rem; font-size: 0.8rem; }
  .comparison-table th.cmp-col-us { padding: 0.4rem 0.3rem; width: 38%; }
  .comparison-table th.cmp-col-them { width: 22%; padding: 0.4rem 0.3rem; font-size: 0.85rem; }
  .cmp-logo-wrap { height: 28px; }
  .cmp-logo { width: 126px; height: 126px; top: -49px; }
  .cmp-detail { display: none; }
  .cmp-svg { margin-right: 0; }
  .cmp-col-us { text-align: center; }
  .cmp-feature-label { width: 40%; font-size: 0.78rem; }
}

/* ── Vu sur logos (inline SVG) ── */
.vu-sur-logo { display: flex; align-items: center; justify-content: center; }
.vu-sur-logo svg { height: 36px; width: auto; display: block; border-radius: 4px; }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex; flex-direction: column; gap: 0.625rem;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--gray-1);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

.footer-contact-email {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-email:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-rights {
  font-size: 0.775rem;
  color: var(--gray-2);
}
.footer-made {
  font-size: 0.72rem;
  color: var(--gray-2);
}
.footer-bg-text {
  position: absolute;
  bottom: -0.5rem; right: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  color: rgba(255,255,255,0.022);
  letter-spacing: 0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── Boutique Page ── */
.page-hero {
  padding: 10rem var(--pad) 4rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.boutique-filters {
  padding: 2rem var(--pad);
  border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
}
.filter-group { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-1);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--white); border-color: var(--border-h); }
.filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.filter-btn--pack { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.filter-btn--pack:hover { color: #c4b5fd; border-color: rgba(167,139,250,0.6); }
.filter-btn--pack.active { background: linear-gradient(135deg, #7c3aed, #a855f7); border-color: #7c3aed; }

.packs-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.sort-select {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-1);
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.45rem 1rem;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.sort-select:focus { border-color: var(--red); color: var(--white); }

.boutique-grid-wrap { padding: 3rem var(--pad) 5rem; }
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.product-hidden { display: none; }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--red);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
}

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: calc(1.5rem + 44px + 1rem);
  width: 44px; height: 44px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 150;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--red); border-color: var(--red); }
.back-top svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .demo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .demo-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16/7;
  }
  .demo-item:nth-child(n+2) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .why-mobile-visual { display: block; margin-top: 2.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .ugc-card--featured { transform: none; }
  .ugc-card--featured:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta-desktop { display: none; }

  .hero-content { padding: 8rem var(--pad) 4rem; }
  .hero-title { font-size: clamp(3.75rem, 17vw, 6rem); line-height: 0.9; }
  .hero-sub { font-size: clamp(0.95rem, 3.5vw, 1.1rem); max-width: 100%; color: rgba(255,255,255,0.78); }
  .hero-badge { font-size: 0.68rem; letter-spacing: 0.12em; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
  .hero-stat { padding: 0 1rem; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-trust-line { font-size: 0.68rem; }

  .problems-grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .ugc-card--featured { transform: none; }
  .ugc-card--featured:hover { transform: translateY(-5px); }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .review-card { min-width: calc(100vw - 3rem); max-width: none; }

  .demo-grid { grid-template-columns: 1fr; }
  .demo-item { aspect-ratio: 4/3 !important; grid-column: auto !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .lang-switcher { top: auto; bottom: 5rem; transform: none; }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.25rem, 18vw, 5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust-line { text-align: center; }
  .ugc-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 1rem 1.75rem; font-size: 0.82rem; }
  .logo-mark svg { width: 42px; height: 42px; }
  .logo-e, .logo-c { font-size: 1.65rem; }
}

/* ═══════════════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════════════ */

.product-page { padding-top: 80px; }

/* Breadcrumb */
.product-breadcrumb {
  border-bottom: 1px solid var(--border);
  background: var(--black-1);
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--gray-1);
}
.breadcrumb-nav a {
  color: var(--gray-1);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav span { color: var(--gray-2); }
.breadcrumb-current { color: var(--white); font-weight: 500; }

/* Product 2-column layout */
.product-section-wrap { padding: 3rem 0 4rem; }
.product-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Visual column */
.product-visual-col { position: sticky; top: 100px; }
.product-visual-card {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.product-visual-card:hover {
  box-shadow: 0 0 60px rgba(224,0,12,0.12), 0 20px 60px rgba(0,0,0,0.5);
}
.product-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px);
  pointer-events: none;
  z-index: 0;
}
.product-visual-badge { position: absolute; top: 1.25rem; right: 1.25rem; left: auto; z-index: 2; }
.product-visual-icon {
  width: 55%;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.08));
}
.product-visual-icon svg { width: 100%; height: auto; }
.product-visual-number {
  position: absolute;
  bottom: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Mini trust bar */
.product-mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.mini-trust-item {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.mini-trust-item:hover { border-color: var(--red-glow); }
.mini-trust-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  margin: 0 auto 0.4rem;
  display: block;
}
.mini-trust-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: 0.02em;
}
.mini-trust-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gray-1);
  display: block;
  margin-top: 0.15rem;
}

/* Info column */
.product-info-col { display: flex; flex-direction: column; gap: 0; }

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.product-cat-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.product-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-1);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.product-rating-value {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.product-rating-count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-1);
}

/* Price block */
.product-price-block {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-price-left { display: flex; flex-direction: column; gap: 0.2rem; }
.product-price-old {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-1);
  text-decoration: line-through;
}
.product-price-main {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}
.product-price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
.product-price-savings {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}
.product-price-saving-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray-1);
}

/* Stock badge */
.product-stock {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* Feature pills */
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.feature-pill:hover { border-color: var(--red); background: var(--black-4); }
.feature-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Description */
.product-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-1);
  margin-bottom: 2rem;
}

/* ── Variant selector ── */
/* Pack info note */
.pack-variant-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(224, 0, 12, 0.05);
  border: 1px solid rgba(224, 0, 12, 0.18);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.4rem;
}
.pack-variant-note svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}
.pack-variant-note p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}

.product-variants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.variant-group {}
.variant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  gap: 0.5rem;
}
.variant-label-row .variant-label {
  margin-bottom: 0;
}
.variant-random-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.variant-random-btn:hover {
  border-color: rgba(224, 0, 12, 0.5);
  color: var(--red);
  background: rgba(224, 0, 12, 0.06);
}
@keyframes swatchPicked {
  0%   { transform: scale(1); box-shadow: none; }
  35%  { transform: scale(1.18); box-shadow: 0 0 0 4px rgba(224,0,12,0.3); }
  100% { transform: scale(1); box-shadow: none; }
}
.swatch-picked {
  animation: swatchPicked 0.5s var(--ease-out) both;
}
.variant-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 0.65rem;
}
.variant-label strong {
  color: var(--white);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.variant-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.variant-swatch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--black-2);
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}
.variant-swatch:hover {
  border-color: rgba(224,0,12,0.4);
  background: var(--black-3);
  transform: translateY(-1px);
}
.variant-swatch.active {
  border-color: var(--red);
  background: rgba(224,0,12,0.06);
}
.swatch-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--swatch-color, #888);
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.swatch-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.swatch-color--transparent {
  background: linear-gradient(135deg, #e8e8e8 45%, rgba(232,232,232,0.2) 45%, rgba(232,232,232,0.2) 55%, #e8e8e8 55%);
  border-color: rgba(255,255,255,0.35);
}

/* Variant — quantity pill */
.variant-qty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  background: var(--black-2);
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  position: relative;
}
.variant-qty:hover {
  border-color: rgba(224,0,12,0.4);
  background: var(--black-3);
  transform: translateY(-1px);
}
.variant-qty.active {
  border-color: var(--red);
  background: rgba(224,0,12,0.06);
}
.qty-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.qty-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
}
.qty-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 2px 6px;
  border-radius: 20px;
  white-space: nowrap;
}

/* CTA buttons */
.product-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn--cart {
  flex: 1;
  min-width: 200px;
  gap: 0.6rem;
}
.btn--success {
  background: #16a34a !important;
  border-color: #16a34a !important;
}
.nav-cart-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.nav-cart-btn:hover { border-color: var(--red); background: var(--black-3); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specs Section */
.specs-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--black-1);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.spec-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.spec-card:hover { border-color: var(--red); transform: translateY(-5px); }
.spec-card-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  color: var(--red);
}
.spec-card-icon svg { width: 100%; height: auto; }
.spec-card-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Reviews grid (product page version) */
.product-reviews-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.product-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.product-review-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.product-review-card:hover { border-color: var(--red-glow); transform: translateY(-3px); }

/* Related products */
.related-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--black-1);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

/* Cart Toast */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--black-2);
  border: 1px solid var(--red);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 10000;
  transform: translateY(140%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(224,0,12,0.2);
  max-width: 320px;
}
.cart-toast.show { transform: translateY(0); }
.cart-toast-icon { width: 22px; height: 22px; color: #4ade80; flex-shrink: 0; }
.cart-toast-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.cart-toast-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-1);
  margin-top: 0.1rem;
}
.cart-toast-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  padding-left: 0.5rem;
  flex-shrink: 0;
}
.cart-toast-link:hover { text-decoration: underline; }

/* ── Product page responsive ── */
@media (max-width: 960px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-visual-col { position: relative; top: 0; }
  .product-visual-card { max-width: 480px; margin: 0 auto; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .product-reviews-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-price-block { flex-direction: column; align-items: flex-start; }
  .product-price-right { align-items: flex-start; }
  .product-ctas { flex-direction: column; }
  .btn--cart { min-width: 0; width: 100%; }
  .related-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .product-mini-trust { gap: 0.4rem; }
  .mini-trust-label { font-size: 0.58rem; }
  .cart-toast { right: 1rem; left: 1rem; max-width: none; }
}

/* ═══════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════ */

.cart-page { padding-top: 80px; min-height: 80vh; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

/* Cart heading */
.cart-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

/* Items header */
.cart-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.cart-items-count {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-1);
}
.cart-clear-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--gray-1);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.cart-clear-btn:hover { color: var(--red); background: rgba(224,0,12,0.06); }

/* Cart item */
.cart-items-list { display: flex; flex-direction: column; gap: 1.25rem; }
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  transition: border-color 0.3s;
  overflow: hidden;
}
.cart-item:hover { border-color: var(--border-h); }

.cart-item-visual {
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-visual-link {
  position: absolute;
  inset: 0;
}
.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.cart-item-icon {
  width: 55%;
  color: rgba(255,255,255,0.8);
}
.cart-item-icon svg { width: 100%; height: auto; }

.cart-item-info { display: flex; flex-direction: column; gap: 0; }
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.cart-item-cat {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.cart-item-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.cart-item-name:hover { color: var(--red); }
.cart-item-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-1);
}
.cart-item-remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-1);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.cart-item-remove:hover { color: var(--red); border-color: var(--red); background: rgba(224,0,12,0.06); }

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-item-pricing { display: flex; align-items: center; gap: 0.5rem; }
.cart-item-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.cart-item-old {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-1);
  text-decoration: line-through;
}
.cart-item-discount {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

/* Quantity control */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.qty-btn:hover { background: var(--red); }
.qty-value {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  min-width: 32px;
  text-align: center;
}

.cart-item-total {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Cart Summary */
.cart-summary-col { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.25rem; }

.cart-summary-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}
.cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cart-summary-lines { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.5rem; }
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--gray-1);
}
.cart-summary-savings { color: var(--white); }
.savings-amount { color: #4ade80; font-weight: 700; }
.shipping-free { color: #4ade80; font-weight: 700; }

/* Free shipping progress */
.cart-free-shipping-notice {
  background: var(--black-3);
  border-radius: 10px;
  padding: 0.875rem;
  margin-top: 0.5rem;
}
.cart-free-shipping-bar {
  height: 4px;
  background: var(--black-5);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.cart-free-shipping-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.cart-free-shipping-notice p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gray-1);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.cart-secure-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray-1);
  justify-content: center;
  margin-bottom: 1rem;
}
.cart-continue-link {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--gray-1);
  text-decoration: none;
  transition: color 0.2s;
}
.cart-continue-link:hover { color: var(--white); }

/* Cart trust section */
.cart-trust {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.cart-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cart-trust-item strong {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.cart-trust-item span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray-1);
  display: block;
  margin-top: 0.15rem;
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--gray-2);
}
.cart-empty-icon svg { width: 100%; height: auto; }
.cart-empty-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cart-empty-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-1);
  margin-bottom: 2rem;
}

/* Cart responsive */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cart-summary-col { position: relative; top: 0; }
  .cart-item { grid-template-columns: 90px 1fr; }
}
@media (max-width: 480px) {
  .cart-item { grid-template-columns: 75px 1fr; gap: 1rem; }
  .cart-item-bottom { flex-direction: column; align-items: flex-start; }
  .cart-layout { padding: 2rem 0 4rem; }
}

/* =========================================================
   Product Image Gallery
   ========================================================= */

/* Product page — image variant */
.product-visual-card--image {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.product-main-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  flex: 1;
  z-index: 1;
}
.product-main-img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--black-2);
  transition: transform 0.5s var(--ease-out), opacity 0.25s;
}
.product-main-img.is-switching {
  opacity: 0;
  transform: scale(0.97);
}
.product-img-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}
.product-img-thumbs::-webkit-scrollbar { display: none; }
.product-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
  background: var(--black-3);
  padding: 0;
}
.product-thumb:hover { transform: scale(1.05); }
.product-thumb.active { border-color: var(--red); }
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Product card — image thumbnail */
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card-img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .product-main-img { height: 260px; }
  .product-img-thumbs { padding: 0.5rem 0.75rem; }
  .product-thumb { width: 52px; height: 52px; }
}

/* =========================================================
   Countdown Timer — Product Cards
   ========================================================= */

.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 0, 12, 0.08);
  border-top: 1px solid rgba(224, 0, 12, 0.15);
  padding: 0.5rem 1.25rem;
}

.countdown-icon {
  color: var(--red);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.countdown-timer {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--gray-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stock badge */
.stock-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #ff8c00;
  padding: 0.35rem 1.25rem 0.2rem;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8c00;
  flex-shrink: 0;
  animation: stockPulse 1.5s ease-in-out infinite;
}

.stock-num {
  font-weight: 700;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.stock-pulse {
  animation: stockFlash 0.4s ease;
}

@keyframes stockFlash {
  0%, 100% { color: #ff8c00; }
  50%       { color: #fff; }
}

/* =========================================================
   Currency Selector — Navbar
   ========================================================= */

.currency-selector {
  position: relative;
  display: inline-flex;
}

.currency-btn-main {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-family: var(--font-sans);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.currency-btn-main:hover { color: var(--white); }

.currency-btn-main:hover {
  border-color: var(--red);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, pointer-events 0s;
  z-index: 500;
}

.currency-selector.open .currency-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.currency-option {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}

.currency-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.currency-option.active {
  color: var(--red);
}

/* =========================================================
   Language Selector — Inline Nav Version
   ========================================================= */

.nav-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-lang-btn {
  padding: 0.28rem 0.5rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-sans);
  line-height: 1;
}

.nav-lang-btn:hover,
.nav-lang-btn.active {
  color: var(--white);
}

.nav-lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  padding: 0 1px;
  pointer-events: none;
  user-select: none;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 500;
}

.nav-lang.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.lang-option.active {
  color: var(--red);
}

/* =========================================================
   Upsell Popup
   ========================================================= */

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

.upsell-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.upsell-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  max-width: 600px;
  width: 100%;
  background: #141414;
  border-radius: 20px 20px 0 0;
  padding: 2rem;
  z-index: 1001;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.upsell-overlay.open .upsell-popup {
  transform: translateX(-50%) translateY(0);
}

.upsell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.upsell-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.upsell-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.upsell-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.upsell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.upsell-product {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  border: 1px solid transparent;
}

.upsell-product:hover {
  border-color: rgba(224, 0, 12, 0.3);
  transform: translateY(-2px);
}

.upsell-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  display: block;
}

.upsell-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.upsell-price {
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

/* =========================================================
   Chatbot
   ========================================================= */

.chatbot-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(224, 0, 12, 0.4);
  transition: transform 0.2s, opacity 0.3s;
  animation: chatbotBounce 3s ease-in-out 5s 3;
}

.chatbot-bubble:hover {
  transform: scale(1.1);
}

.chatbot-bubble.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
}

@keyframes chatbotBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.chatbot-bubble-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #0a0a0a;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.3); }
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 340px;
  height: 480px;
  background: #141414;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 901;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chatbot-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a1a1a;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.chatbot-status {
  font-size: 0.72rem;
  color: #22c55e;
}

.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--gray-1);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-close:hover {
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 2px; }

.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.83rem;
  line-height: 1.5;
}

.chat-msg--bot {
  background: #1f1f1f;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
}

.chat-msg--user {
  background: var(--red);
  color: var(--white);
  border-radius: 12px 4px 12px 12px;
  align-self: flex-end;
}

.chatbot-input-wrap {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input::placeholder { color: var(--gray-2); }

.chatbot-input:focus {
  border-color: rgba(224, 0, 12, 0.5);
}

.chatbot-send {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.chatbot-send:hover { opacity: 0.85; }

/* =========================================================
   Vu Sur — Press / Media Logos Section
   ========================================================= */

.vu-sur {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vu-sur-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.vu-sur-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.vu-sur-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  cursor: default;
}

.vu-sur-item:hover {
  opacity: 0.6;
  filter: grayscale(0);
}

.vu-sur-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* =========================================================
   Payment Icons — Footer
   ========================================================= */

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* =========================================================
   Tracking Page
   ========================================================= */

.tracking-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.tracking-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.tracking-hero-sub {
  font-size: 1rem;
  color: var(--gray-1);
  max-width: 460px;
  margin: 0 auto;
}

.tracking-form {
  max-width: 560px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.tracking-form-row {
  display: flex;
  gap: 0.75rem;
}

.tracking-input {
  flex: 1;
  background: #1f1f1f;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.tracking-input::placeholder { color: var(--gray-2); }

.tracking-input:focus {
  border-color: rgba(224, 0, 12, 0.5);
}

.tracking-submit {
  padding: 0.75rem 1.5rem;
  background: var(--red);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.tracking-submit:hover { opacity: 0.88; }

.tracking-timeline {
  max-width: 560px;
  margin: 0 auto 5rem;
}

.tracking-timeline-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--gray-1);
  position: relative;
  z-index: 1;
}

.timeline-dot.done {
  background: rgba(224, 0, 12, 0.15);
  border-color: var(--red);
  color: var(--red);
}

.timeline-dot.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(224, 0, 12, 0.2);
}

.timeline-body {
  padding-top: 4px;
}

.timeline-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.timeline-label--muted { color: var(--gray-1); }

.timeline-date {
  font-size: 0.78rem;
  color: var(--gray-2);
}

/* =========================================================
   Mobile Responsive — New Components
   ========================================================= */

@media (max-width: 768px) {
  /* Chatbot window — full-width bottom sheet on mobile */
  .chatbot-window {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    height: 70vh;
    max-height: 480px;
  }

  /* Upsell popup — single column on mobile */
  .upsell-grid {
    grid-template-columns: 1fr;
  }

  .upsell-popup {
    padding: 1.5rem 1.25rem;
  }

  /* Countdown — smaller on mobile */
  .countdown-timer {
    font-size: 0.88rem;
  }

  .countdown-wrap {
    padding: 0.4rem 1rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  /* Tracking form — stack on mobile */
  .tracking-form-row {
    flex-direction: column;
  }

  .tracking-hero {
    padding: 3.5rem 0 2rem;
  }

  /* Currency / lang dropdowns — ensure they don't overflow */
  .currency-dropdown,
  .lang-dropdown {
    right: auto;
    left: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   CART PANEL — slide-in drawer
   ═══════════════════════════════════════════════════════════ */
.cart-panel { position: fixed; inset: 0; z-index: 1100; pointer-events: none; }
.cart-panel--open { pointer-events: auto; }
.cart-panel-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(2px); }
.cart-panel--open .cart-panel-overlay { opacity: 1; }
.cart-panel-drawer { position: absolute; top: 0; right: 0; height: 100%; width: 400px; max-width: 100vw; background: var(--black-1); border-left: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 40px rgba(0,0,0,0.5); }
.cart-panel--open .cart-panel-drawer { transform: translateX(0); }
.cart-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.cart-panel-title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; margin: 0; }
.cart-panel-close { background: none; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); transition: background 0.2s, border-color 0.2s; }
.cart-panel-close:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.cart-panel-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.625rem; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent; }
.cart-panel-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; color: var(--gray-1); text-align: center; padding: 2rem; }
.cart-panel-empty svg { opacity: 0.25; margin-bottom: 0.5rem; }
.cart-panel-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem; background: var(--black-2); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.cart-panel-item-img { width: 62px; height: 62px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--black-3); display: flex; align-items: center; justify-content: center; }
.cart-panel-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-panel-item-info { flex: 1; min-width: 0; }
.cart-panel-item-name { font-size: 0.825rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.2rem; }
.cart-panel-item-price { font-size: 0.8rem; color: var(--red); font-weight: 700; margin-bottom: 0.4rem; }
.cart-panel-item-qty { display: flex; align-items: center; gap: 0.4rem; }
.qty-btn { background: var(--black-3); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); font-size: 1rem; line-height: 1; transition: background 0.2s; padding: 0; }
.qty-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.cart-panel-item-qty span { font-size: 0.825rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-panel-item-remove { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.3); transition: color 0.2s; padding: 4px; flex-shrink: 0; margin-left: auto; }
.cart-panel-item-remove:hover { color: var(--red); }
.cart-panel-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.cart-panel-subtotal, .cart-panel-shipping { display: flex; justify-content: space-between; font-size: 0.825rem; color: var(--gray-1); }
.cart-panel-shipping--free span:last-child { color: #22c55e; font-weight: 600; }
.cart-panel-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 600; padding-top: 0.625rem; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.5rem; }
.cart-panel-total strong { font-size: 1.1rem; }
.cart-panel-discount { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 700; color: #22c55e; }
.cart-discount-val { font-weight: 800; }
.cart-panel-promo-hint { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--red); font-weight: 600; background: rgba(224,0,12,0.07); border: 1px solid rgba(224,0,12,0.18); border-radius: 6px; padding: 0.4rem 0.6rem; }
.cart-bs-tag { position: absolute; bottom: 4px; left: 4px; background: var(--red); color: #fff; font-family: var(--font-sans); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 5px; border-radius: 3px; }
.cart-panel-item-img { position: relative; }
.btn--full { width: 100%; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.cart-panel-view-all { text-align: center; font-size: 0.775rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; padding: 0.25rem; }
.cart-panel-view-all:hover { color: rgba(255,255,255,0.75); }
body.cart-panel-active { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX — zoom image produit
   ═══════════════════════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.93); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; cursor: zoom-out; }
.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 820px); max-height: 86vh; object-fit: contain; border-radius: 8px; transform: scale(0.94); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.15s ease; pointer-events: none; cursor: default; }
.lightbox--open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; transition: background 0.2s; z-index: 2; }
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; transition: background 0.2s, transform 0.2s; z-index: 2; }
.lightbox-nav:hover { background: rgba(224,0,12,0.7); border-color: rgba(224,0,12,0.6); transform: translateY(-50%) scale(1.08); }
.lightbox-nav--prev { left: 1.25rem; }
.lightbox-nav--next { right: 1.25rem; }
@media (max-width: 600px) { .lightbox-nav--prev { left: 0.5rem; } .lightbox-nav--next { right: 0.5rem; } .lightbox-nav { width: 40px; height: 40px; } }
.lightbox-counter { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.4); padding: 0.3rem 0.75rem; border-radius: 20px; pointer-events: none; }
.product-main-img-wrap { cursor: zoom-in; }

/* ═══════════════════════════════════════════════════════════
   PNG LOGO — crop to content area (1055×240 within 1080×1080)
   ═══════════════════════════════════════════════════════════ */
.logo-img-crop {
  display: block;
  width: 176px;
  height: 40px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.logo-png {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -70px;
  left: -3px;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 480px) {
  .logo-img-crop { width: 150px; height: 34px; }
  .logo-png { width: 153px; height: 153px; top: -60px; }
}
