/* ═══════════════════════════════════════════
   MASQUE LED — Design System
   Style: Luxcove-inspired · Blush/Noir/Blanc
   ═══════════════════════════════════════════ */

/* Google Fonts are loaded in HTML */

:root {
  --blush:         #F9D5D3;
  --blush-light:   #FDF5F4;
  --blush-mid:     #F9D0CE;
  --salmon:        #E8896A;
  --black:         #1A1A1A;
  --black-cta:     #000000;
  --white:         #FFFFFF;
  --gray-body:     #555555;
  --gray-light:    #888888;
  --gray-border:   #EEEEEE;
  --price-old:     #AAAAAA;
  --green-stock:   #4CAF50;
  --gold-stars:    #FFD700;

  --font-head:     'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   100px;

  --shadow-card:   0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.12);
  --transition:    150ms ease;

  --max-w:         1200px;
  --px:            clamp(20px, 5vw, 80px);
  --section-py:    clamp(60px, 8vw, 100px);
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }
p  { line-height: 1.65; color: var(--gray-body); }

.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; max-width: 560px; margin: 0 auto 48px; font-size: 1rem; color: var(--gray-body); }
.text-left { text-align: left; }
.accent { color: var(--salmon); }

/* ─── LAYOUT ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section {
  padding: var(--section-py) 0;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary-large {
  display: inline-block;
  background: var(--black-cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition);
  cursor: pointer;
}
.btn-primary-large:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-atc {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  margin-top: 16px;
}
.btn-atc:hover { background: var(--salmon); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.announcement-bar {
  background: var(--blush);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.ann-track-wrap { flex: 1; overflow: hidden; text-align: center; }
.ann-track {
  display: flex;
  transition: transform 0.45s ease;
}
.ann-track span {
  flex-shrink: 0;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.ann-arrow {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--black);
  opacity: 0.6;
  padding: 0 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.ann-arrow:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow 0.2s ease;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--blush-light); }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 300;
  padding: 80px 32px 40px;
  transition: left 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--gray-border);
  transition: color var(--transition);
}
.mobile-nav ul li a:hover { color: var(--salmon); }
.mobile-nav-footer {
  margin-top: 40px;
  padding: 16px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-body);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: clamp(500px, 80vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blush-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.52) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) var(--px) clamp(48px, 7vw, 80px);
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block;
  background: var(--blush);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.hero-cta:hover { background: var(--white); transform: translateY(-1px); }
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   TESTIMONIALS MARQUEE
══════════════════════════════════════════ */
.testimonials-marquee-section { overflow: hidden; padding-bottom: 60px; }
.testi-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.testi-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.testi-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
}
.track-left  { animation: marquee-left  40s linear infinite; }
.track-right { animation: marquee-right 40s linear infinite; }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.testi-marquee-track:hover { animation-play-state: paused; }

.testi-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.testi-pill img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-pill div { flex: 1; }
.testi-pill p {
  font-size: 0.8125rem;
  color: var(--black);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}
.testi-pill span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--salmon);
}

/* ══════════════════════════════════════════
   UGC V2 — Autoplay scroll with ATC
══════════════════════════════════════════ */
.ugc-v2-section { padding: var(--section-py) 0; overflow: hidden; }
.ugc-v2-scroll-wrap { overflow-x: auto; padding: 24px var(--px); scrollbar-width: none; }
.ugc-v2-scroll-wrap::-webkit-scrollbar { display: none; }
.ugc-v2-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.ugc-v2-card {
  width: 260px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blush-light);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.ugc-v2-card video,
.ugc-v2-video {
  background: var(--blush-light) !important;
}
.ugc-v2-card:hover { transform: scale(1.02); }
.ugc-v2-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.ugc-v2-footer {
  background: var(--white);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ugc-v2-product {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ugc-v2-product img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--blush-light);
  flex-shrink: 0;
}
.ugc-v2-pname {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.ugc-v2-pprice {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--salmon);
  margin-top: 2px;
}
.ugc-v2-atc {
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.ugc-v2-atc:hover { background: var(--salmon); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   PRESS SECTION
═══════════════════════════════════════════ */
.press-section {
  padding: 40px 0 48px;
  background: var(--white);
  text-align: center;
}
.press-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
  margin-bottom: 28px;
}
.press-band {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.press-track {
  display: flex;
  align-items: center;
  gap: 72px;
  animation: press-scroll 28s linear infinite;
  width: max-content;
}
.press-logo {
  color: #E4B5B0;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
/* Brand-specific typography */
.pl-vogue {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.pl-glamour {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.pl-instyle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
}
.pl-instyle em { font-style: italic; }
.pl-wh {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.pl-elle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.pl-mc {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
}
.pl-mc em { font-style: italic; }
.pl-cosmo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   BESTSELLERS
═══════════════════════════════════════════ */
.bestsellers-section { background: #F8F5F2; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.product-img-wrap {
  position: relative;
  background: #fff;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* Product badges */
.badge-bs {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blush-mid);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.badge-off {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush-mid);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
  white-space: nowrap;
}
.product-press-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(249,208,206,0.55);
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 8px 12px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.product-press-strip span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a05a52;
}
.product-info { padding: 16px 20px 20px; }
.product-info h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--salmon); font-size: 0.875rem; letter-spacing: 1px; }
.rating-count { font-size: 0.75rem; color: var(--gray-light); }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-old { font-size: 0.875rem; color: var(--price-old); text-decoration: line-through; }
.price-new { font-size: 1rem; font-weight: 700; color: var(--black); }
.view-all-wrap { text-align: center; }

/* ═══════════════════════════════════════════
   TESTIMONIALS HERO (scatter)
═══════════════════════════════════════════ */
.testimonials-hero-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--blush-light) 100%);
}
.testimonials-scatter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.testi-bubble {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}
.testi-bubble:hover { box-shadow: var(--shadow-hover); }
.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 3px solid var(--blush);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-text {
  font-size: 0.9rem;
  color: var(--black);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 10px;
}
.testi-text::before { content: '"'; }
.testi-text::after  { content: '"'; }
.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--gray-light); }

/* offset cards on desktop */
@media (min-width: 768px) {
  .testimonials-scatter { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .bubble-2 { margin-top: 32px; }
  .bubble-4 { margin-top: 24px; }
}
@media (min-width: 1024px) {
  .testimonials-scatter { grid-template-columns: repeat(5, 1fr); }
  .bubble-1 { margin-top: 0; }
  .bubble-2 { margin-top: 40px; }
  .bubble-3 { margin-top: 0; }
  .bubble-4 { margin-top: 60px; }
  .bubble-5 { margin-top: 20px; }
}

/* ═══════════════════════════════════════════
   UGC VIDEOS
═══════════════════════════════════════════ */
.ugc-section { background: var(--blush-mid); }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .ugc-grid { grid-template-columns: repeat(4, 1fr); }
}
.ugc-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.ugc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1A1A1A;
}
.ugc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 40px 14px 14px;
}
.ugc-overlay p {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  font-style: italic;
}
.ugc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.ugc-play-btn:hover { background: rgba(255,255,255,0.35); transform: translate(-50%, -50%) scale(1.08); }
.ugc-card.playing .ugc-play-btn { opacity: 0; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
/* ── Stats V2 (donut layout) ── */
.stats-section { background: var(--white); }
.stats-v2-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .stats-v2-container { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.stats-v2-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 16px 0 28px;
}
.stats-v2-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}
.stats-v2-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.stats-v2-list { margin-top: 0; }
.stats-v2-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.donut-wrap {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}
.donut-svg {
  width: 54px;
  height: 54px;
}
.donut-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
}
.stats-v2-desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
.stats-v2-divider {
  height: 1px;
  background: #eee;
  margin: 0;
}
.stats-v2-disclaimer {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
  margin-top: 24px;
}

/* legacy (unused but kept for safety) */
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--salmon);
  flex-shrink: 0;
  line-height: 1;
  min-width: 80px;
}
.stat-desc {
  font-size: 0.9375rem;
  color: var(--gray-body);
  line-height: 1.5;
  padding-top: 6px;
}
.stat-divider { height: 1px; background: var(--gray-border); }

/* ═══════════════════════════════════════════
   BEFORE / AFTER
═══════════════════════════════════════════ */
/* ── Before/After Carousel ── */
.ba-carousel-section { background: var(--blush-mid); }
.ba-carousel-section .container { padding-bottom: 0; }
.ba-carousel-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 32px var(--px) 48px;
  cursor: grab;
}
.ba-carousel-wrap::-webkit-scrollbar { display: none; }
.ba-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.ba-c-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.ba-c-img {
  width: 100%;
  display: block;
}
.ba-c-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba-c-quote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin: 0;
}
@media (min-width: 768px) {
  .ba-c-card { width: 340px; }
}
@media (min-width: 1024px) {
  .ba-carousel-wrap { padding-left: calc((100vw - var(--max-w)) / 2 + var(--px)); }
}

/* ═══════════════════════════════════════════
   FEATURES 2×2
═══════════════════════════════════════════ */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
  margin-top: 8px;
}
.feature-item { text-align: center; }
.feature-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.feature-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.feature-item p { font-size: 0.875rem; color: var(--gray-body); line-height: 1.6; }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
.comparison-section { background: var(--blush-light); }
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.comparison-table thead th {
  padding: 20px 24px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.comp-feature-col { text-align: left; color: var(--gray-light); background: var(--white); }
.comp-us-col { background: var(--blush-mid); color: var(--black); text-align: center; }
.comp-them-col { background: #F5F5F5; color: var(--gray-light); text-align: center; }
.comparison-table tbody tr { border-top: 1px solid var(--gray-border); }
.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  color: var(--gray-body);
}
.comp-us { background: rgba(249,208,206,0.25); text-align: center; }
.comp-them { background: #FAFAFA; text-align: center; }
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  border-radius: 50%;
}
.x-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #CCCCCC;
  color: var(--white);
  font-size: 0.875rem;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   FULL TESTIMONIALS CAROUSEL
═══════════════════════════════════════════ */
.full-testimonials-section { background: var(--white); }
.testimonials-carousel { position: relative; min-height: 200px; }
.testi-card {
  display: none;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .testi-card { grid-template-columns: 1fr 1fr; }
}
.testi-card.active { display: grid; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testi-full-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.testi-stars-big { color: var(--gold-stars); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 20px; }
.testi-full-content blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testi-full-content blockquote::before { content: '"'; }
.testi-full-content blockquote::after  { content: '"'; }
.testi-full-content cite {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-body);
  font-style: normal;
}
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.dot.active { background: var(--salmon); transform: scale(1.2); }

/* ═══════════════════════════════════════════
   TRY RISK-FREE
═══════════════════════════════════════════ */
.try-risk-section { background: var(--blush-light); }
.try-risk-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .try-risk-container { grid-template-columns: 1fr 1fr; text-align: left; }
}
.try-risk-img img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
.try-risk-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.try-risk-content > p {
  font-size: 1rem;
  color: var(--gray-body);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .trust-badges-row { justify-content: flex-start; } }
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.trust-badge-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  max-width: 80px;
  line-height: 1.2;
}
.try-risk-sub {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-container { max-width: 720px; }
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--salmon); }
.faq-icon { color: var(--gray-light); flex-shrink: 0; }
.faq-chevron { margin-left: auto; flex-shrink: 0; color: var(--gray-light); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 34px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 0 20px 34px;
}
.faq-answer p { font-size: 0.9375rem; color: var(--gray-body); line-height: 1.65; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #0A0A0A;
  color: var(--white);
  padding: 64px var(--px) 32px;
}
.footer-newsletter {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-newsletter-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-newsletter-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-email-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  background: #222;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.footer-email-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 14px 16px;
  outline: none;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-email-btn {
  padding: 0 16px;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-email-btn:hover { color: var(--salmon); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 40px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-payment { text-align: center; margin-bottom: 32px; }
.footer-payment-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pay-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
}
.footer-legal {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-legal p { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-legal a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   MINI CART DRAWER
═══════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  right: -420px;
  top: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 500;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--gray-border);
}
.cart-drawer-header h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.cart-close-btn:hover { background: var(--blush-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--blush-light);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; color: var(--black); }
.cart-item-price { font-size: 0.875rem; color: var(--gray-body); }
.cart-item-remove {
  color: var(--gray-light);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  margin-top: 4px;
  display: block;
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.btn-checkout {
  width: 100%;
  background: var(--black-cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity var(--transition);
}
.btn-checkout:hover { opacity: 0.85; }
.cart-shipping-note { text-align: center; font-size: 0.75rem; color: var(--gray-light); margin-top: 10px; }
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 490;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.active { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════
   URGENCY POPUP
═══════════════════════════════════════════ */
.urgency-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 110px;
  height: 110px;
  background: var(--blush-mid);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 400;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,208,206,0.6), 0 4px 20px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 0 0 12px rgba(249,208,206,0), 0 4px 20px rgba(0,0,0,0.15); }
}
.urgency-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.6rem;
}
.urgency-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.urgency-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.urgency-timer {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--salmon);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   PRODUCT PAGE SPECIFIC
═══════════════════════════════════════════ */
.product-page-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--px) 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .product-page-main { grid-template-columns: 55% 1fr; gap: 64px; }
}

/* Gallery */
.product-gallery { position: relative; }
.gallery-main-img {
  background: var(--blush-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-badge-bs {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blush-mid);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 5;
}
.gallery-trust-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}
.gallery-trust-circle {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-press-strip {
  background: var(--blush);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px;
  margin-top: -4px;
}
.gallery-press-strip span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--salmon);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--salmon); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info-block {}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-rating-row .stars { color: var(--salmon); }
.product-rating-row .rating-text { font-size: 0.8rem; color: var(--gray-light); }
.product-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.selling-out-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush-light);
  border: 1px solid var(--blush);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.selling-dot {
  width: 8px;
  height: 8px;
  background: #FF4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.selling-out-text { font-weight: 700; color: var(--salmon); }
.product-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.product-price-block .price-old { font-size: 1.1rem; }
.product-price-block .price-new { font-size: 1.5rem; font-weight: 800; }
.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--blush-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-check svg { display: block; }
.benefit-text {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.4;
}

.btn-atc-product {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  margin-bottom: 16px;
}
.btn-atc-product:hover { background: #333; transform: translateY(-1px); }

.stock-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--gray-body);
  margin-bottom: 24px;
}
.stock-dot {
  width: 8px;
  height: 8px;
  background: var(--green-stock);
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-date { font-weight: 700; text-decoration: underline; color: var(--black); }

.trust-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 20px;
}
.trust-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.trust-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.trust-row-item span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  max-width: 72px;
}

/* Payment logos — colored badges */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}
.pay-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.counterfeit-warning {
  background: #FEF3F0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.counterfeit-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.counterfeit-body {}
.counterfeit-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--salmon);
  margin-bottom: 4px;
}
.counterfeit-text {
  font-size: 0.8rem;
  color: var(--gray-body);
  line-height: 1.5;
  margin: 0;
}

/* ─── Product reviews carousel ─── */
.reviews-section { background: var(--blush-light); padding: var(--section-py) 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush);
  background: var(--blush-light);
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.review-stars { color: var(--salmon); font-size: 0.75rem; letter-spacing: 1px; }
.review-text { font-size: 0.875rem; color: var(--gray-body); line-height: 1.6; font-style: italic; }

/* ─── LED modes carousel ─── */
.led-modes-section { background: var(--white); padding: var(--section-py) 0; }
.led-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.led-mode-item { text-align: center; }
.led-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  overflow: hidden;
}
.led-circle img { width: 100%; height: 100%; object-fit: cover; }
.led-mode-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.led-mode-wave { font-size: 0.6875rem; color: var(--gray-light); margin-bottom: 4px; }
.led-mode-desc { font-size: 0.75rem; color: var(--gray-body); line-height: 1.4; }

/* ─── vs Botox ─── */
.vs-section { background: var(--blush-light); padding: var(--section-py) 0; }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vs-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vs-col-us { background: var(--blush-mid); }
.vs-col-them { background: var(--white); box-shadow: var(--shadow-card); }
.vs-header {
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vs-col-us .vs-header { color: var(--black); }
.vs-col-them .vs-header { color: var(--gray-light); }
.vs-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vs-items { padding: 16px 20px; }
.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8125rem;
  color: var(--black);
}
.vs-check {
  width: 20px;
  height: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.vs-x {
  width: 20px;
  height: 20px;
  background: #CCCCCC;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Sticky ATC bar ─── */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-cta);
  z-index: 300;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sticky-atc-price {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.sticky-atc-btn {
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity var(--transition);
  border: none;
  font-family: var(--font-body);
}
.sticky-atc-btn:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  top: 80px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 600;
  transform: translateX(120%);
  transition: transform 0.35s ease;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .vs-grid { grid-template-columns: 1fr; }
  .led-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-container { grid-template-columns: 1fr; }
  .try-risk-container { grid-template-columns: 1fr; text-align: center; }
  .trust-badges-row { justify-content: center; }
  .urgency-popup { bottom: 16px; left: 16px; width: 90px; height: 90px; }
  .gallery-trust-badges { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { width: 100%; max-width: 340px; display: block; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ugc-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .comparison-table-wrap { font-size: 0.8125rem; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════
   COLLECTIONS PAGE
══════════════════════════════════════════════════════ */

/* ─── Collection Hero ─── */
.collection-hero-section {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--blush-light);
}
.collection-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
}
.collection-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.collection-hero-title em {
  font-style: italic;
  color: var(--salmon);
}
.collection-hero-sub {
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 1rem;
  color: var(--gray-body);
  line-height: 1.65;
}
.collection-trust-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.collection-trust-pills span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

/* ─── Rewards Banner ─── */
.rewards-banner {
  background: var(--black);
  color: var(--white);
  padding: 14px 0;
}
.rewards-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.reward-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  padding: 6px 24px;
}
.reward-pill svg { color: var(--salmon); flex-shrink: 0; }
.reward-pill strong { color: var(--white); }
.reward-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .reward-divider { display: none; }
  .reward-pill { padding: 4px 12px; }
}

/* ─── Filter Tabs ─── */
.collection-filters-bar {
  position: sticky;
  top: 66px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 0;
}
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  flex-shrink: 0;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.filter-tab:hover { color: var(--black); }
.filter-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.filter-tab-highlight { color: var(--salmon) !important; }
.filter-tab-highlight.active { border-bottom-color: var(--salmon); }

/* ─── Product Grid ─── */
.collection-grid-section { padding-top: 48px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─── Product Card ─── */
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.prod-card-img-link {
  position: relative;
  display: block;
  cursor: pointer;
}
.prod-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blush-light);
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.04); }

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 1;
}
.prod-badge-bestseller { background: var(--black); color: var(--white); }
.prod-badge-new { background: var(--salmon); color: var(--white); }
.prod-badge-gift { background: #4CAF50; color: var(--white); }

.prod-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 6px;
}
.prod-card-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--salmon);
}
.prod-card-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}
.prod-card-name a { color: inherit; }
.prod-card-name a:hover { color: var(--salmon); }
.prod-card-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}
.prod-card-desc {
  font-size: 0.8125rem;
  color: var(--gray-body);
  line-height: 1.55;
  flex: 1;
}
.prod-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.prod-price-old {
  font-size: 0.8125rem;
  color: var(--price-old);
  text-decoration: line-through;
}
.prod-price-new {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--black);
}
.prod-price-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--salmon);
  background: rgba(232,137,106,0.12);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.prod-card-atc {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  background: var(--black-cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
}
.prod-card-atc:hover { opacity: 0.82; }

/* ─── Bundle Section ─── */
.bundles-section { background: var(--blush-light); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .bundles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
.bundle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.bundle-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.bundle-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.bundle-images {
  background: var(--blush-light);
  padding: 24px;
}
.bundle-img-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -12px;
}
.bundle-img-stack img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.bundle-img-stack img:first-child { margin-left: 0; }
.bundle-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundle-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
}
.bundle-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.bundle-includes {
  font-size: 0.8125rem;
  color: var(--gray-body);
  line-height: 1.5;
}
.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0;
}
.bundle-old {
  font-size: 0.875rem;
  color: var(--price-old);
  text-decoration: line-through;
}
.bundle-new {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--black);
}
.bundle-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--salmon);
  background: rgba(232,137,106,0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.bundle-breakdown {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 4px;
}
.bundle-atc { font-size: 0.8125rem !important; padding: 14px 24px !important; }

/* ─── Upsell Banner ─── */
.upsell-banner-section { background: var(--blush); padding: 60px 0; }
.upsell-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.upsell-banner-text { flex: 1; min-width: 240px; }
.upsell-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 10px;
}
.upsell-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.upsell-sub { font-size: 0.9375rem; color: var(--gray-body); }
.upsell-banner-products {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.upsell-banner-products img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.upsell-plus, .upsell-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--salmon);
}
.upsell-savings-badge {
  width: 70px;
  height: 70px;
  background: var(--salmon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ─── Trust Row ─── */
.trust-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-row-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust-row-item h4 { font-size: 0.9375rem; font-weight: 700; color: var(--black); }
.trust-row-item p { font-size: 0.8125rem; color: var(--gray-body); line-height: 1.55; }
@media (max-width: 768px) {
  .trust-row-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-row-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   CART AOV UPGRADES
══════════════════════════════════════════════════════ */

/* ─── Cart Progress Bar ─── */
.cart-progress-wrap {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-border);
  background: var(--blush-light);
}
.cart-progress-msg {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  text-align: center;
}
.cart-progress-msg span { color: var(--salmon); }
.cart-progress-bar-track {
  height: 5px;
  background: var(--gray-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.cart-progress-bar-fill {
  height: 100%;
  background: var(--salmon);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.cart-progress-tiers {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.cart-progress-tier {
  font-size: 0.6875rem;
  color: var(--gray-light);
  font-weight: 500;
  text-align: center;
  flex: 1;
}
.cart-progress-tier.reached { color: var(--salmon); font-weight: 700; }

/* ─── Cart Upsell ─── */
.cart-upsell-wrap {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-border);
}
.cart-upsell-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-body);
  margin-bottom: 12px;
}
.cart-upsell-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: background var(--transition);
}
.cart-upsell-item:hover { background: var(--blush); }
.cart-upsell-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.cart-upsell-info { flex: 1; }
.cart-upsell-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.cart-upsell-price {
  font-size: 0.75rem;
  color: var(--salmon);
  font-weight: 700;
  margin-top: 2px;
}
.cart-upsell-add {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.cart-upsell-add:hover { opacity: 0.75; }

/* ─── LANG SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--black);
  opacity: 0.55;
  padding: 2px 4px;
  line-height: 1;
  transition: opacity var(--transition);
  text-transform: uppercase;
}
.lang-btn:hover { opacity: 0.85; }
.lang-btn.active {
  opacity: 1;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Separator dots between lang buttons */
.lang-btn + .lang-btn::before {
  content: '·';
  margin-right: 4px;
  opacity: 0.4;
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════════
   MOBILE FIXES (≤767px) — Navbar, urgency, polish
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* ── Announcement bar : police plus petite et arrows discrètes ── */
  .announcement-bar {
    height: 36px;
    padding: 0 8px;
  }
  .ann-track span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 0 4px;
  }
  .ann-arrow { padding: 0 4px; font-size: 1rem; }

  /* ── Navbar : logo recentré, lang masqué, search masqué ── */
  .navbar-inner {
    height: 56px;
    padding: 0 12px;
  }
  .nav-logo {
    gap: 6px;
  }
  .nav-logo-text,
  .nav-logo span:not(.nav-logo-mark) {
    font-size: 1.05rem;
    letter-spacing: 2.5px;
  }
  .nav-logo-mark,
  .nav-logo svg.nav-logo-mark {
    width: 14px;
    height: 14px;
  }
  /* Cache le lang switcher et la recherche en mobile (lang dispo via menu) */
  .nav-actions .lang-switcher { display: none; }
  .nav-actions > button[aria-label="Search"] { display: none; }
  .nav-icon-btn { width: 40px; height: 40px; }

  /* ── Mobile menu : ajoute le lang switcher en bas ── */
  .mobile-nav { padding: 70px 24px 32px; }
  .mobile-nav ul li a { padding: 14px 0; font-size: 1.05rem; }

  /* ── Urgency popup : beaucoup plus petit et discret ── */
  .urgency-popup {
    width: 72px !important;
    height: 72px !important;
    bottom: 88px !important;
    left: 12px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }
  .urgency-title, .urgency-sub { font-size: 0.55rem; }
  .urgency-timer { font-size: 0.8rem; }
  .urgency-close {
    width: 16px;
    height: 16px;
    top: 4px;
    right: 4px;
    font-size: 0.55rem;
  }

  /* ── Hero : trust badges en colonne sur mobile très étroit ── */
  .hero-trust-badges,
  .trust-badges-row {
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
  }

  /* ── Sticky ATC bottom : ne plus déborder ── */
  .sticky-atc-bar,
  .sticky-atc {
    padding: 10px 12px;
    gap: 8px;
  }
  .sticky-atc-title,
  .sticky-atc-name {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  /* ── Top "100,000+ CLIENTS" banner si présent ── */
  .top-banner,
  .pre-header-bar {
    font-size: 0.7rem;
    text-align: center;
    padding: 6px 12px;
  }
}

/* ═══════════════════════════════════════════════════════
   VERY SMALL PHONES (≤375px) — ajustements supplémentaires
   ═══════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  .nav-logo-text,
  .nav-logo span:not(.nav-logo-mark) {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  .ann-track span { font-size: 0.6rem; letter-spacing: 0.5px; }
  .navbar-inner { padding: 0 8px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE FIXES V2 (≤767px) — Aggressive overrides
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* ── Empêche scroll horizontal partout ── */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  * { max-width: 100vw; }

  /* ── NAVBAR : layout flex propre, plus de superposition ── */
  .navbar-inner {
    position: relative !important;
    height: 52px !important;
    padding: 0 12px !important;
  }
  .nav-logo {
    position: static !important;
    transform: none !important;
    flex: 1 !important;
    justify-content: center !important;
    pointer-events: none;
  }
  .nav-logo span:not(.nav-logo-mark) {
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
  }
  .nav-logo-mark, .nav-logo svg.nav-logo-mark {
    width: 14px !important;
    height: 14px !important;
  }
  /* Hide non-essential nav elements on mobile */
  .nav-actions .lang-switcher,
  .nav-actions > button[aria-label="Search"] {
    display: none !important;
  }
  .nav-actions {
    flex-shrink: 0;
  }
  .nav-icon-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* ── ANNOUNCEMENT BAR : pas de débordement ── */
  .announcement-bar { height: 34px !important; padding: 0 4px !important; }
  .ann-track span {
    font-size: 0.6rem !important;
    letter-spacing: 0.5px !important;
    padding: 0 4px;
  }
  .ann-arrow { padding: 0 2px; font-size: 0.9rem; }

  /* ── HERO : texte taille réduite ── */
  .hero-title, .hero-section h1 {
    font-size: 1.6rem !important;
    line-height: 1.15 !important;
    padding: 0 16px;
  }
  .hero-subtitle, .hero-section p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    padding: 0 24px;
  }
  .hero-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 1.5px !important;
    padding: 0 16px;
  }
  .hero-cta {
    font-size: 0.8rem !important;
    padding: 14px 24px !important;
    letter-spacing: 1.5px !important;
  }
  .hero-trust-badges {
    font-size: 0.7rem !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px !important;
  }

  /* ══════════════════════════════════════════
     BESTSELLERS CARDS — SIMPLIFIED FOR MOBILE
     Image + name + price + ONE button
     ══════════════════════════════════════════ */
  .products-grid,
  .bestsellers-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 12px;
  }
  .product-card {
    padding: 8px !important;
  }
  /* HIDE clutter on cards: press logos, badges, stars */
  .product-card .badge-bs,
  .product-card .badge-new,
  .product-card .press-logos,
  .product-card .product-stars,
  .product-card .rating-count,
  .product-card .stars,
  .product-card .product-press {
    display: none !important;
  }
  /* Keep only essential info */
  .product-card .badge-off {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    bottom: 8px !important;
    left: 8px !important;
  }
  .product-card .product-name {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    margin: 8px 0 4px !important;
    min-height: auto !important;
  }
  .product-card .product-price {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }
  .product-card .price-old { display: none !important; }
  .product-card .price-new { font-size: 0.95rem !important; }
  .product-card .btn-atc {
    font-size: 0.7rem !important;
    padding: 10px 8px !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    border-radius: 100px !important;
  }

  /* Section titles + subtitles */
  .section-title { font-size: 1.5rem !important; }
  .section-subtitle { font-size: 0.85rem !important; padding: 0 20px; }

  /* ══════════════════════════════════════════
     PRODUCT PAGE — Image must fit viewport!
     ══════════════════════════════════════════ */
  .product-hero,
  .product-page,
  .product-gallery,
  .gallery-main,
  .gallery-stack,
  .product-images,
  .product-media {
    max-width: 100vw !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .product-gallery img,
  .gallery-main img,
  .gallery-stack img,
  .product-images img,
  .product-media img,
  .gallery-thumb img,
  .product-page img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
  /* Two-column product layout → stack on mobile */
  .product-hero,
  .product-main,
  .product-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  /* Product title */
  .product-h1, .product-page h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    padding: 0 16px;
  }
  .product-price-block,
  .product-info {
    padding: 0 16px !important;
  }
  .price-new, .product-price-new {
    font-size: 1.4rem !important;
  }
  .price-old, .product-price-old {
    font-size: 0.95rem !important;
  }
  /* Benefits/bullets */
  .product-benefits, .benefit-list, .product-bullets {
    padding: 0 16px !important;
  }
  .benefit-item, .product-benefit, .product-bullet {
    font-size: 0.85rem !important;
  }
  /* Main ATC button */
  .btn-atc-product, .product-page .btn-atc {
    width: calc(100% - 32px) !important;
    margin: 12px 16px !important;
    padding: 16px !important;
    font-size: 0.9rem !important;
  }
  /* Breadcrumb */
  .breadcrumb, .breadcrumb-section {
    font-size: 0.7rem !important;
    padding: 8px 16px !important;
    overflow-x: auto;
    white-space: nowrap;
  }
  /* Trust badges 3 columns on product page */
  .trust-row-3 {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 8px !important;
    padding: 0 16px !important;
  }
  .trust-row-item {
    font-size: 0.7rem !important;
    text-align: center;
  }
  .trust-row-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  /* Section spacing */
  section { padding: 32px 0 !important; }
  .section { padding: 32px 0 !important; }

  /* Counterfeit warning - smaller */
  .counterfeit-warning,
  .contrefacon-warning {
    font-size: 0.8rem !important;
    padding: 12px 16px !important;
    margin: 16px !important;
  }

  /* Vogue/Glamour press logos in product page hero */
  .product-press-row, .gallery-trust-badges {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
    gap: 12px !important;
    padding: 8px 16px !important;
  }

  /* Top "100,000+ CLIENTS" banner */
  .pre-announcement,
  .top-banner,
  .pre-header-bar {
    font-size: 0.65rem !important;
    padding: 6px 8px !important;
    letter-spacing: 0.5px !important;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
  }

  /* All H2 headings */
  h2 { font-size: 1.4rem !important; }
  h3 { font-size: 1.1rem !important; }
}

/* ═══════════════════════════════════════════════════════
   VERY SMALL (≤390px) — iPhone standard
   ═══════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .nav-logo span:not(.nav-logo-mark) {
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
  }
  .hero-title { font-size: 1.4rem !important; }
  .product-h1 { font-size: 1.3rem !important; }
  .product-card .btn-atc { font-size: 0.65rem !important; }
}

/* ═══════════════════════════════════════════════════════
   COLLECTIONS .prod-card SIMPLIFICATION (mobile only)
   Image + name + price + button — c'est tout
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .prod-card {
    padding: 6px !important;
  }
  /* Hide all clutter inside .prod-card on mobile */
  .prod-card .prod-card-cat,
  .prod-card .prod-card-desc,
  .prod-card .prod-card-stars,
  .prod-card .stars-gold,
  .prod-card .stars-count,
  .prod-card .prod-price-save,
  .prod-card .prod-price-old {
    display: none !important;
  }
  /* Keep image clean */
  .prod-card .prod-card-img {
    border-radius: 12px !important;
  }
  .prod-card .prod-card-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  /* Badge top-left only (if present) */
  .prod-card .prod-badge,
  .prod-card .prod-badge-bestseller,
  .prod-card .prod-badge-new {
    font-size: 0.6rem !important;
    padding: 3px 8px !important;
    top: 8px !important;
    left: 8px !important;
  }
  /* Simplified name */
  .prod-card .prod-card-name,
  .prod-card .prod-card-name a {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    margin: 8px 0 6px !important;
    min-height: auto !important;
    /* Limit to 2 lines max */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  /* Price : just the sale price, prominent */
  .prod-card-price-row {
    margin: 0 0 8px !important;
    gap: 0 !important;
  }
  .prod-card .prod-price-new {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: var(--black) !important;
  }
  /* Single CTA button */
  .prod-card .prod-card-atc,
  .prod-card .btn-add-cart,
  .prod-card button.prod-card-atc {
    font-size: 0.65rem !important;
    padding: 9px 4px !important;
    letter-spacing: 0.8px !important;
    width: 100% !important;
    border-radius: 100px !important;
    line-height: 1 !important;
  }

  /* Bundle cards — simplify too */
  .bundle-card .bundle-breakdown,
  .bundle-card .stars-count {
    display: none !important;
  }
  .bundle-card .bundle-card-name {
    font-size: 0.85rem !important;
  }
  .bundle-card .bundle-pricing {
    font-size: 0.9rem !important;
  }
}

/* ═══════════════════════════════════════════════════════
   BESTSELLERS HOMEPAGE — Simplification finale mobile
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Hide press strip (VOGUE/GLAMOUR/Women's Health/ELLE) */
  .product-card .product-press-strip {
    display: none !important;
  }
  /* Reduce product title size on bestseller cards */
  .product-card .product-info h3,
  .bestsellers-grid .product-info h3 {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    margin: 8px 0 4px !important;
    /* Limit to 2 lines */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 36px !important;
  }
  /* Compact product-info padding */
  .product-card .product-info {
    padding: 8px !important;
  }
  /* Reduce price size */
  .product-card .price-new {
    font-size: 0.95rem !important;
  }
  .product-card .price-old {
    font-size: 0.75rem !important;
  }
  /* Hide rating to save space on small cards */
  .product-card .product-rating {
    margin: 2px 0 !important;
  }
  .product-card .rating-count {
    font-size: 0.65rem !important;
  }
  .product-card .stars {
    font-size: 0.7rem !important;
  }
}

/* ═══════════════════════════════════════════════════════
   BESTSELLERS HOMEPAGE V2 — Cards minimal : photo + nom + prix + bouton
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Hide all badges on bestseller cards */
  .product-card .badge-bs,
  .product-card .badge-new,
  .product-card .badge-off {
    display: none !important;
  }
  /* Hide rating row too for max simplicity */
  .product-card .product-rating {
    display: none !important;
  }
  /* Hide old price strikethrough */
  .product-card .price-old {
    display: none !important;
  }
  /* Allow title to take 3 lines max */
  .product-card .product-info h3,
  .bestsellers-grid .product-info h3 {
    -webkit-line-clamp: 3 !important;
    min-height: 54px !important;
  }
}
