/* ========================================================== */
/*  BOUTIQUE — Dark Streetwear Theme                          */
/* ========================================================== */

:root {
  --bg: #060606;
  --surface: #0e0e0e;
  --surface-2: #161616;
  --border: #1f1d18;
  --border-strong: #2c2922;
  --text: #f5f5f5;
  --text-dim: #a0a0a0;
  --text-muted: #6b6b6b;
  /* CHRS REPS gold (matches the logo) */
  --accent: #d9b870;
  --accent-soft: rgba(217, 184, 112, 0.12);
  --accent-glow: rgba(217, 184, 112, 0.22);
  --accent-strong: #e6c87a;
  --accent-ink: #0a0a0a;
  --danger: #ff3030;
  --radius: 2px;
  --header-h: 68px;
  --max-w: 1480px;
}

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

/* Ensure the HTML `hidden` attribute actually hides elements even when we
   override their `display` via a class (e.g. .product-summary { display: flex }). */
[hidden] { display: none !important; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* -------------------- HEADER -------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.nav { display: flex; gap: 4px; flex: 1; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.nav-demande {
  color: var(--accent);
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 600;
}
.nav a.nav-demande:hover { color: var(--text); }
.nav a.nav-demande.active { color: var(--text); }
.btn-wa {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -8px var(--accent);
}
.btn-wa svg { width: 16px; height: 16px; }

/* -------------------- HERO STRIP -------------------- */
.strip {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #060606;
}
/* Soft golden vignette behind the logo */
.strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(180, 140, 70, 0.18) 0%, rgba(120, 90, 40, 0.06) 35%, transparent 65%),
    radial-gradient(ellipse at center, rgba(20, 18, 14, 0.6) 0%, #060606 80%);
  pointer-events: none;
}
/* Subtle grain texture overlay (SVG noise) */
.strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 28px 40px;
  position: relative;
  z-index: 1;
}
.strip h1 {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.strip h1 .accent { color: var(--accent); }
.strip p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

/* Hero strip with logo image (textured backdrop + centered gold logo) */
.strip-hero {
  background: #060606;
}
.strip-hero .strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 90px;
  min-height: 340px;
}
.strip-logo {
  display: inline-block;
  filter:
    drop-shadow(0 0 60px rgba(180, 140, 70, 0.25))
    drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.strip-logo:hover { transform: translateY(-2px) scale(1.015); }
.strip-logo img {
  display: block;
  max-width: 100%;
  width: auto;
  height: clamp(120px, 17vw, 230px);
  object-fit: contain;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 640px) {
  .strip-hero .strip-inner { padding: 60px 16px 60px; min-height: 260px; }
  .strip-logo img { height: clamp(95px, 28vw, 160px); }
}
/* -------------------- MARQUEE (scrolling features bar) -------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(217,184,112,0) 0%, rgba(217,184,112,0.05) 50%, rgba(217,184,112,0) 100%);
  padding: 18px 0;
  user-select: none;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  white-space: nowrap;
}
.marquee-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.marquee-sep {
  color: var(--accent);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 0s;
    animation: none;
  }
}

.contact-line {
  margin-top: 18px;
}
.contact-line {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-line span b { color: var(--text); font-weight: 600; }

/* -------------------- FILTER BAR -------------------- */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: all 0.15s;
}
.chip:hover { color: var(--text); border-color: var(--text-muted); }
.chip.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 700;
}
.chip-count {
  margin-left: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  opacity: 0.6;
}
.search-input {
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  width: 240px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.15s;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { border-color: var(--accent); }

/* -------------------- PRODUCT GRID -------------------- */
.grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0d0d;
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.2,.6,.2,1);
}
.card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10,10,10,0.85);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius);
}

/* "NOUVEAU" auto-badge — shows for 7 days after a product was added */
.card-badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 4px 14px -2px rgba(217, 184, 112, 0.5);
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 14px -2px rgba(217, 184, 112, 0.5), 0 0 0 0 rgba(217, 184, 112, 0.4); }
  50%      { box-shadow: 0 4px 14px -2px rgba(217, 184, 112, 0.5), 0 0 0 8px rgba(217, 184, 112, 0); }
}

/* ============================================================
   /LIVRAISON — Premium dark/gold redesign
============================================================ */
@keyframes liv-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes liv-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- HERO ---------- */
.liv-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 80px;
  background: #060606;
  border-bottom: 1px solid var(--border);
}
.liv-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(217, 184, 112, 0.20) 0%, rgba(217, 184, 112, 0.05) 40%, transparent 70%),
    radial-gradient(ellipse at center, rgba(20, 18, 14, 0.6) 0%, #060606 80%);
  pointer-events: none;
}
.liv-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.liv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.liv-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: liv-fade-up 0.5s ease-out;
}
.liv-hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
  animation: liv-fade-up 0.6s ease-out 0.05s both;
}
.liv-hero-title .accent { color: var(--accent); }
.liv-hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
  animation: liv-fade-up 0.6s ease-out 0.12s both;
}
.liv-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  animation: liv-fade-up 0.6s ease-out 0.18s both;
}
.liv-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.liv-hero-pill:hover { border-color: var(--accent); color: var(--accent); }
.liv-hero-pill svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- SECTION HEADS ---------- */
.liv-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.liv-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.liv-section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}
.liv-section-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- TIMELINE ---------- */
.liv-timeline-wrap {
  padding: 90px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.liv-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: grid;
  gap: 28px;
}
.liv-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-strong) 12%, var(--border-strong) 88%, transparent);
}
.liv-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: flex-start;
  animation: liv-fade-up 0.55s ease-out both;
}
.liv-step:nth-child(1) { animation-delay: 0.05s; }
.liv-step:nth-child(2) { animation-delay: 0.15s; }
.liv-step:nth-child(3) { animation-delay: 0.25s; }
.liv-step:nth-child(4) { animation-delay: 0.35s; }
.liv-step-bullet {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.liv-step-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.liv-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg), 0 8px 24px -8px rgba(217, 184, 112, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.liv-step-icon svg { width: 24px; height: 24px; }
.liv-step:hover .liv-step-icon {
  transform: scale(1.06);
  box-shadow: 0 0 0 6px var(--bg), 0 14px 32px -8px rgba(217, 184, 112, 0.6);
}
.liv-step-body {
  padding: 8px 0 24px;
}
.liv-step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.liv-step-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.liv-step-text b { color: var(--accent); font-weight: 700; }

/* ---------- INFO BLOCKS ---------- */
.liv-info-wrap {
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(217, 184, 112, 0.04) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.liv-info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.liv-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.liv-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}
.liv-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 184, 112, 0.25);
  color: var(--accent);
}
.liv-info-icon svg { width: 22px; height: 22px; }
.liv-info-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.liv-info-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.liv-info-text b { color: var(--text); font-weight: 600; }

/* ---------- CTA FINAL ---------- */
.liv-cta {
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
  background: #060606;
  text-align: center;
}
.liv-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(217, 184, 112, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.liv-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.liv-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.liv-cta-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.liv-cta-title .accent { color: var(--accent); }
.liv-cta-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}
.liv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s;
  box-shadow: 0 14px 36px -10px rgba(217, 184, 112, 0.55);
}
.liv-cta-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -10px rgba(217, 184, 112, 0.7);
}
.liv-cta-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.liv-cta-btn:hover svg { transform: translateX(4px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .liv-hero { padding: 60px 18px 50px; }
  .liv-section-head { margin-bottom: 36px; }
  .liv-timeline-wrap { padding: 60px 18px; }
  .liv-timeline::before { left: 22px; }
  .liv-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .liv-step-icon { width: 44px; height: 44px; }
  .liv-step-icon svg { width: 18px; height: 18px; }
  .liv-step-body { padding-bottom: 16px; }
  .liv-info-wrap { padding: 60px 18px; }
  .liv-info-card { padding: 24px 18px; }
  .liv-cta { padding: 60px 20px; }
  .liv-cta-btn { padding: 14px 24px; font-size: 12px; }
}
.card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-name-mono {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}
.card-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.card-sizes {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* -------------------- EMPTY STATE -------------------- */
.empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty h3 {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* -------------------- PRODUCT PAGE -------------------- */
.product-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-dim); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-strong); }

.product {
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
}
@media (max-width: 900px) {
  .product {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}
.thumb {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.thumb:hover { border-color: var(--text-muted); }
.thumb.active { border-color: var(--accent); }
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}
.info-cat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.info-model {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.25;
}
.info-name {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.info-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 8px;
}
.info-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.info-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-meta-row .k { color: var(--text-muted); }
.info-meta-row .v { color: var(--text); font-weight: 600; }

/* -------------------- SIZE SELECTOR (product page) -------------------- */
.size-block {
  margin: 24px 0 28px;
  padding-top: 4px;
}
.size-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
  transition: color 0.2s;
}
.size-label-warn {
  color: var(--accent) !important;
  font-weight: 700;
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  gap: 8px;
}
.size-grid.shake {
  animation: size-shake 0.5s ease-in-out;
}
@keyframes size-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.size-btn {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: var(--radius);
  text-align: center;
}
.size-btn:hover {
  border-color: var(--text-muted);
  background: var(--surface-2);
}
.size-btn.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: scale(1.04);
}
.size-btn.active:hover {
  background: var(--accent);
}

/* -------------------- BUY BUTTON -------------------- */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px var(--accent);
}

/* Secondary CTA on product page (small WhatsApp link under "Faire une demande") */
.btn-buy-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  margin-top: 10px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-buy-secondary svg { width: 14px; height: 14px; }
.btn-buy-secondary:hover {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: #333;
}

/* Product summary card shown on /demande when arriving from a product page */
.product-summary {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 18px 20px;
  margin: 0 0 28px;
  max-width: 720px;
}
.product-summary-img {
  flex: 0 0 110px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-summary-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-summary-body { flex: 1; min-width: 0; }
.product-summary-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-summary-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.2;
  word-break: break-word;
}
.product-summary-ref {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.product-summary-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.product-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-summary-item .k {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-summary-item .v {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 560px) {
  .product-summary { flex-direction: column; }
  .product-summary-img { width: 100%; flex: none; max-width: 220px; }
}
.btn-buy svg { width: 18px; height: 18px; }

.info-note {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.description {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* -------------------- VARIANT SELECTOR -------------------- */
.variant-select {
  position: relative;
  margin: 16px 0 24px;
}
.variant-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.variant-toggle {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}
.variant-toggle:hover { border-color: var(--text-muted); }
.variant-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  background: rgba(217,184,112,0.05);
}
.variant-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(217,184,112,0.14);
  padding: 5px 9px;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
}
.variant-name {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
}
.variant-caret {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.variant-toggle[aria-expanded="true"] .variant-caret {
  transform: rotate(180deg);
  color: var(--accent);
}

.variant-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  list-style: none;
  padding: 6px;
  max-height: 380px;
  overflow-y: auto;
  z-index: 30;
  display: none;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.7);
}
.variant-list.open { display: block; }
.variant-list::-webkit-scrollbar { width: 8px; }
.variant-list::-webkit-scrollbar-track { background: transparent; }
.variant-list::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }

.variant-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.1s;
}
.variant-option:hover { background: rgba(255, 255, 255, 0.04); }
.variant-option.active {
  background: rgba(217, 184, 112, 0.12);
}
.variant-option .num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  min-width: 26px;
  letter-spacing: 0.05em;
}
.variant-mini {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.variant-option.active .variant-mini { border-color: var(--accent); }
.variant-option .name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--text-dim);
}
.variant-option.active .name { color: var(--text); font-weight: 600; }

/* -------------------- ALBUM HEAD -------------------- */
.album-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.album-head-cat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.album-head-name {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.album-head-price {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.album-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.album-head-meta b { color: var(--text); font-weight: 600; }

/* -------------------- LIGHTBOX -------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* -------------------- IPTV PAGE -------------------- */
.iptv-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- HERO --- */
.iptv-hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.iptv-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(217,184,112,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.iptv-hero-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.iptv-hero-line {
  display: block;
}
@media (min-width: 720px) {
  .iptv-hero-line {
    white-space: nowrap;
  }
}
.iptv-hero-title .accent { color: var(--accent); }
.iptv-hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.iptv-hero-sub strong { color: var(--text); font-weight: 600; }

/* --- SECTION GLOBAL --- */
.iptv-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.iptv-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.iptv-h2 {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 800px;
}
.iptv-h2 .accent { color: var(--accent); }

/* --- FEATURES GRID --- */
.iptv-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .iptv-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .iptv-feat-grid { grid-template-columns: 1fr; } }

.iptv-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.iptv-feat:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.iptv-feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(217, 184, 112, 0.12);
  border: 1px solid rgba(217, 184, 112, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.iptv-feat-icon svg { width: 22px; height: 22px; }
.iptv-feat-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.iptv-feat-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}
.iptv-feat-desc strong { color: var(--accent); font-weight: 600; }

/* --- PRICING --- */
.iptv-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) { .iptv-packs { grid-template-columns: 1fr; } }

.iptv-pack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.iptv-pack-best {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(217,184,112,0.06) 0%, var(--surface) 100%);
}

.iptv-pack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.iptv-pack-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
}
.iptv-pack-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.iptv-pack-badge-new {
  background: var(--surface-2);
  color: var(--accent);
  border: 1px solid rgba(217,184,112,0.45);
}
.iptv-pack-badge-best {
  background: var(--accent);
  color: var(--accent-ink);
}
.iptv-pack-duration {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.iptv-pack-price {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.iptv-pack-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}
.iptv-pack-month {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 28px;
}
.iptv-pack-best .iptv-pack-month { color: var(--text-dim); }

.iptv-pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border);
  flex: 1;
}
.iptv-pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.iptv-pack-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9b870' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.iptv-pack-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.15s;
}
.iptv-pack-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.iptv-pack-btn svg { width: 16px; height: 16px; }
.iptv-pack-btn-best {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.iptv-pack-btn-best:hover {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 30px -10px var(--accent);
  transform: translateY(-2px);
}

/* --- COMPATIBILITY --- */
.iptv-devices {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .iptv-devices { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .iptv-devices { grid-template-columns: repeat(2, 1fr); } }

.iptv-device {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.iptv-device:hover { border-color: var(--border-strong); }
.iptv-device-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.iptv-device-icon svg { width: 28px; height: 28px; }
.iptv-device-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-dim);
}

/* --- FINAL CTA --- */
.iptv-final { text-align: center; }
.iptv-final-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 520px;
  margin: -32px auto 32px;
}

/* -------------------- INFO PAGE (Livraison etc) -------------------- */
.info-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.info-hero {
  text-align: center;
  margin-bottom: 56px;
}
.info-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.info-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.info-title .accent { color: var(--accent); }
.info-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.info-card-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-icon {
  font-size: 26px;
  line-height: 1;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}
.info-list li:first-child {
  border-top: none;
  padding-top: 4px;
}
.info-list li:last-child {
  padding-bottom: 4px;
}
.info-bullet {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}
.info-list strong {
  color: var(--text);
  font-weight: 600;
}
.info-tip {
  background: rgba(217, 184, 112, 0.06);
  border: 1px solid rgba(217, 184, 112, 0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 48px;
}
.info-tip strong { color: var(--accent); font-weight: 700; }
.info-tip-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1.3;
}
.info-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------- CTA SEARCH (home bottom) -------------------- */
.cta-search {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 184, 112, 0.07) 0%, transparent 55%),
    var(--surface);
  padding: 84px 28px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.cta-search::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
.cta-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-title .accent { color: var(--accent); }
.cta-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 30px;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px var(--accent);
}
.cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.cta-btn:hover svg { transform: translateX(5px); }

/* -------------------- CONTACT / FORM PAGE -------------------- */
.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}
.contact-head {
  text-align: center;
  margin-bottom: 48px;
}
.contact-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-title .accent { color: var(--accent); }
.contact-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 22px; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field > span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(217,184,112,0.03);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.form-file .file-display {
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.form-file .file-display:hover {
  border-color: var(--accent);
  background: rgba(217,184,112,0.05);
}
.form-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.form-file.has-file .file-display {
  border-style: solid;
  border-color: var(--accent);
  background: rgba(217,184,112,0.06);
}
.file-icon {
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.file-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.form-file.has-file .file-text { color: var(--text); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 20px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  margin-top: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px var(--accent);
}
.btn-submit svg { width: 16px; height: 16px; }

.form-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(217, 184, 112, 0.06);
  border: 1px solid rgba(217, 184, 112, 0.25);
  border-radius: var(--radius);
}
.form-note-icon {
  font-size: 22px;
  line-height: 1.4;
  flex-shrink: 0;
}
.form-note-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}
.form-note-text strong { color: var(--text); font-weight: 600; }

.form-status {
  font-size: 13px;
  line-height: 1.5;
  padding: 0;
  text-align: center;
  min-height: 0;
  transition: all 0.2s;
}
.form-status:empty { display: none; }
.form-status-info {
  color: var(--text-dim);
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.form-status-success {
  color: var(--accent);
  padding: 14px 18px;
  background: rgba(217, 184, 112, 0.07);
  border: 1px solid rgba(217, 184, 112, 0.35);
  border-radius: var(--radius);
}
.form-status-error {
  color: #ff8080;
  padding: 14px 18px;
  background: rgba(255, 80, 80, 0.05);
  border: 1px solid rgba(255, 80, 80, 0.25);
  border-radius: var(--radius);
  text-align: left;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none !important;
  box-shadow: none !important;
}

/* Thank you page */
.merci-head {
  text-align: center;
  padding-top: 40px;
}
.merci-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.merci-icon svg { width: 42px; height: 42px; }
.merci-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.merci-title .accent { color: var(--accent); }
.merci-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 40px;
}
.merci-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--text); }
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-wa-large:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px var(--accent);
}
.btn-wa-large svg { width: 16px; height: 16px; }

/* -------------------- FOOTER -------------------- */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 36px 28px;
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.footer a { color: var(--text-dim); }
.footer a:hover { color: var(--accent); }

/* Discrete admin link in the footer */
.footer-admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted) !important;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.footer-admin svg { width: 11px; height: 11px; }
.footer-admin:hover {
  opacity: 1;
  color: var(--accent) !important;
  border-color: var(--accent-soft);
}

/* -------------------- RESPONSIVE -------------------- */
/* -------------------- HAMBURGER (mobile menu toggle) -------------------- */
.nav-toggle,
.nav-close {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.nav-toggle:hover,
.nav-close:hover {
  border-color: var(--text);
  background: var(--surface);
}
.nav-toggle svg,
.nav-close svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp button shown only inside the mobile menu drawer */
.nav-wa-mobile { display: none; }

/* Mobile category chips in the header (between logo area and hamburger) */
.mobile-cats { display: none; }

/* =====================================================================
   FLOATING CONTACT BUBBLE (bottom-right, all pages)
===================================================================== */
.contact-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 70;
}
.contact-fab-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 14px 30px -8px rgba(217, 184, 112, 0.45), 0 8px 22px -8px rgba(0,0,0,0.55);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, background 0.2s;
  animation: contact-pulse 2.6s ease-in-out infinite;
}
@keyframes contact-pulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(217, 184, 112, 0.45), 0 0 0 0 rgba(217, 184, 112, 0.35); }
  50%      { box-shadow: 0 14px 30px -8px rgba(217, 184, 112, 0.45), 0 0 0 14px rgba(217, 184, 112, 0); }
}
.contact-fab-trigger:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--accent-strong);
}
.contact-fab-trigger svg {
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}
.contact-fab-trigger .icon-close { display: none; }
.contact-fab.is-open .contact-fab-trigger {
  animation: none;
  background: var(--surface);
  color: var(--accent);
  border-color: var(--border-strong);
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.6);
}
.contact-fab.is-open .icon-chat  { display: none; }
.contact-fab.is-open .icon-close { display: block; }

.contact-fab-panel {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.7);
  animation: fab-pop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
@keyframes fab-pop {
  from { transform: translateY(8px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.contact-fab-head {
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.contact-fab-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.contact-fab-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.contact-fab-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  text-decoration: none;
  color: var(--text);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.contact-fab-action:hover {
  background: var(--surface-2);
}
.contact-fab-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-fab-icon svg { width: 18px; height: 18px; }
.contact-fab-icon-wa {
  background: #25d366;
  color: #fff;
}
.contact-fab-icon-demande {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(217, 184, 112, 0.3);
}
.contact-fab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-fab-action-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.contact-fab-action-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .contact-fab { bottom: 16px; right: 16px; }
  .contact-fab-panel { width: calc(100vw - 32px); max-width: 280px; }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 12px;
    gap: 10px;
    justify-content: flex-start;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }
  .btn-wa { display: none; } /* hidden on mobile, accessible via menu drawer */

  /* Mobile category chips: scrollable horizontal row left of hamburger */
  .mobile-cats {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 2px;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
  }
  .mobile-cats::-webkit-scrollbar { display: none; }
  .mobile-cats a {
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--text-dim);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.1s;
    white-space: nowrap;
  }
  .mobile-cats a:active { transform: scale(0.96); }
  .mobile-cats a:hover,
  .mobile-cats a.is-active {
    color: var(--accent);
    border-color: var(--accent-soft);
    background: var(--accent-soft);
  }

  /* Nav becomes a fullscreen overlay */
  .nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 84px 24px 32px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4, .2, .2, 1);
    overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { transform: translateX(0); }

  .nav-close {
    display: flex;
    position: absolute;
    top: 14px;
    right: 16px;
  }

  .nav a {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 18px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    margin-left: 0 !important;
    text-align: left;
  }
  .nav a:hover { color: var(--accent); }
  .nav a.nav-demande {
    color: var(--accent);
    margin-top: 4px;
  }
  .nav a.nav-demande::before { display: none; }

  .nav-wa-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: var(--accent-ink) !important;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 18px;
    border-radius: var(--radius);
    margin-top: 28px;
    text-align: center;
    border: none !important;
  }
  .nav-wa-mobile svg {
    width: 18px;
    height: 18px;
  }

  .strip-inner { padding: 24px 16px 28px; }
  .filter-inner { padding: 12px 16px; }
  .search-input { display: none; }
  .grid-wrap { padding: 16px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-wrap { padding: 16px; }
  .lightbox { padding: 20px; }
}
