﻿/* ============================================================
   Dr Cannabinoïd v2 — CSS
   Design system calqué sur le fichier layout.css de la démo
   Fonts : Syne (titres) + DM Sans (corps)
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- Variables (fidèles au layout.css de la démo) ---- */
:root {
  --background:         hsl(150, 10%, 5%);
  --foreground:         hsl(120, 5%, 95%);
  --card:               hsl(150, 8%, 8%);
  --card-foreground:    hsl(120, 5%, 95%);
  --primary:            hsl(142, 69%, 58%);
  --primary-foreground: hsl(150, 10%, 5%);
  --secondary:          hsl(150, 5%, 15%);
  --secondary-foreground: hsl(120, 5%, 85%);
  --muted:              hsl(150, 5%, 12%);
  --muted-foreground:   hsl(120, 5%, 55%);
  --accent:             hsl(142, 69%, 58%);
  --accent-foreground:  hsl(150, 10%, 5%);
  --border:             hsl(150, 5%, 18%);
  --input:              hsl(150, 5%, 15%);
  --ring:               hsl(142, 69%, 58%);
  --radius:             0.75rem;

  /* Brand tokens */
  --brand-green:          hsl(142, 69%, 58%);
  --brand-green-dim:      hsl(142, 55%, 43%);
  --brand-dark:           hsl(150, 10%, 5%);
  --brand-dark-card:      hsl(150, 8%, 8%);
  --brand-dark-elevated:  hsl(150, 6%, 11%);
  --brand-border:         hsl(150, 5%, 18%);
  --brand-text-muted:     hsl(120, 5%, 55%);

  --container: 1200px;
  --section-py: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: clip; }


body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-primary { color: var(--primary); }
.text-muted   { color: var(--muted-foreground); }

/* Section label badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: hsl(142 69% 58% / 0.1);
  border: 1px solid hsl(142 69% 58% / 0.25);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 560px;
  line-height: 1.65;
}

.section-header { margin-bottom: 48px; }
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.link-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color .2s;
  white-space: nowrap;
}
.link-arrow:hover { color: var(--primary); }

.section-sep {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px hsl(142 69% 58% / 0.3);
}
.btn-primary:hover {
  background: hsl(142, 69%, 65%);
  box-shadow: 0 6px 28px hsl(142 69% 58% / 0.45);
  transform: translateY(-1px);
}

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

.btn-ghost {
  color: var(--muted-foreground);
  background: transparent;
}
.btn-ghost:hover { color: var(--primary); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ============================================================
   AGE GATE
   ============================================================ */
/* Masquage immédiat si âge déjà vérifié (avant paint, via classe sur <html>) */
.age-verified .age-gate { display: none !important; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity .4s ease, visibility .4s ease;
}
.age-gate--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 7, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate__modal {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid hsl(142 69% 58% / 0.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px hsl(142 69% 58% / 0.1), 0 24px 64px rgba(0,0,0,.6);
}

.age-gate__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.age-gate__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.age-gate__title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.age-gate__text {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 20px;
}

.age-gate__question {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--foreground);
}

.age-gate .btn-primary {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 26px;
}

.age-gate__deny {
  font-size: 13px;
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}
.age-gate__deny:hover { color: var(--foreground); }

.age-gate__disclaimer {
  font-size: 11px;
  color: hsl(120 5% 35%);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 24px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(150, 8%, 7%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo img { height: 44px; width: auto; }

.header__nav { display: flex; align-items: center; }
.header__nav > ul { display: flex; align-items: center; gap: 2px; }
.header__nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.header__nav > ul > li > a:hover,
.header__nav > ul > li.active > a {
  color: var(--foreground);
  background: var(--muted);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--muted-foreground);
  border-radius: 6px;
  transition: all .15s;
}
.dropdown li a:hover {
  color: var(--primary);
  background: hsl(142 69% 58% / 0.08);
}

/* Actions */
.header__actions { flex-shrink: 0; display: flex; align-items: center; gap: 4px; }

.header__icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .2s, background .2s;
}
.header__icon-btn:hover { color: var(--foreground); background: hsl(150 5% 15% / 0.5); }
.header__icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header__cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: hsl(142 69% 58% / 0.10);
  border: 1px solid hsl(142 69% 58% / 0.30);
  color: var(--primary);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.header__cart-btn:hover { background: hsl(142 69% 58% / 0.20); }
.header__cart-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  margin-left: 4px;
}
.header__burger:hover { color: var(--foreground); }
.header__burger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   HERO
   ============================================================ */

.text-gradient {
  color: var(--primary);
}

/* Lueur verte (image container) */
.glow-green {
  box-shadow: 0 0 40px hsl(142 69% 58% / 0.25), 0 0 80px hsl(142 69% 58% / 0.10);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* --- Arrière-plans --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    hsl(150, 10%, 5%) 0%,
    hsl(150, 12%, 7%) 50%,
    hsl(150, 8%,  4%) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__orb--green {
  top: 25%;
  right: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(142, 69%, 58%) 0%, transparent 70%);
  opacity: 0.06;
}
.hero__orb--teal {
  bottom: 25%;
  left: 33%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(180, 60%, 50%) 0%, transparent 70%);
  opacity: 0.04;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(hsl(142, 69%, 58%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(142, 69%, 58%) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* --- Inner layout --- */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Contenu gauche --- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(142 69% 58% / 0.10);
  border: 1px solid hsl(142 69% 58% / 0.25);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero__badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: currentColor;
  flex-shrink: 0;
}

.hero__content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 5vw + 1rem, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 24px;
}

.hero__content p {
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__ctas .btn-primary {
  border-radius: var(--radius);
  box-shadow: 0 0 30px hsl(142 69% 58% / 0.3);
  padding: 16px 40px;
  font-size: 16px;
}
.hero__ctas .btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__ctas .btn-primary:hover {
  box-shadow: 0 0 40px hsl(142 69% 58% / 0.5);
  transform: translateY(-1px);
}

/* Bouton secondaire hero */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid var(--border);
  background: hsl(150 5% 15% / 0.5);
  color: var(--foreground);
}
.btn-secondary:hover {
  background: var(--secondary);
}

/* --- Preuve sociale --- */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsl(142 69% 58% / 0.20);
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }

.hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 2px;
}
.hero__stars svg {
  width: 14px;
  height: 14px;
  fill: hsl(45, 100%, 55%);
  stroke: hsl(45, 100%, 55%);
  stroke-width: 0;
}
.hero__stars span {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  margin-left: 4px;
}
.hero__reviews-count {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* --- Visuel produit --- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__img-wrap {
  position: relative;
}
.hero__img-container {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(142 69% 58% / 0.20);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.hero__img-container::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: hsl(142 20% 8% / 0.35);
  border-radius: inherit;
  z-index: 0;
}
.hero__img-container img,
.hero__img-overlay {
  position: relative;
  z-index: 1;
}
.hero__img-container img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    hsl(150, 10%, 5%, 0.6) 0%,
    transparent 50%);
}
.hero__img-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px hsl(142 69% 58% / 0.4);
  z-index: 2;
}
.hero__price-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
}
.hero__price-label {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}
.hero__price-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
}

/* ============================================================
   RÉASSURANCE
   ============================================================ */
.reassurance {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsl(150 8% 8% / 0.3);
}
.reassurance__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
}
.reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reassurance__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reassurance__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsl(150 5% 15% / 0.5);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reassurance__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reassurance__icon--green { color: var(--primary); }
.reassurance__icon--blue  { color: hsl(217, 91%, 70%); }
.reassurance__icon--amber { color: hsl(45, 100%, 55%); }
.reassurance__icon--violet { color: hsl(270, 70%, 75%); }

.reassurance__label {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}
.reassurance__sub {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* ============================================================
   SECTIONS génériques
   ============================================================ */
.section {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.section-alt { background: var(--muted); }

/* ============================================================
   PRODUITS — nouvelle section "Meilleures ventes"
   ============================================================ */
.products-section {
  border-top: 1px solid var(--border);
}
.products-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.products-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.products-section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.products-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
}
.products-section__voir-tout {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.products-section__voir-tout:hover { color: hsl(142 69% 58% / 0.75); }
.products-section__voir-tout svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Grille 4 colonnes */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Carte produit */
.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pcard:hover {
  border-color: hsl(142 69% 58% / 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

/* Image */
.pcard__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: hsl(150 5% 15% / 0.3);
}
.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pcard:hover .pcard__img img { transform: scale(1.05); }

/* Badge */
.pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
  backdrop-filter: blur(4px);
}
.pcard__badge--amber {
  background: hsl(45 100% 55% / 0.2);
  color: hsl(45, 100%, 62%);
  border-color: hsl(45 100% 55% / 0.3);
}
.pcard__badge--green {
  background: hsl(142 69% 58% / 0.2);
  color: var(--primary);
  border-color: hsl(142 69% 58% / 0.3);
}
.pcard__badge--violet {
  background: hsl(270 70% 65% / 0.2);
  color: hsl(270, 70%, 75%);
  border-color: hsl(270 70% 65% / 0.3);
}

/* Bouton "Ajouter" glissant */
.pcard__add {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.pcard:hover .pcard__add { transform: translateY(0); }
.pcard__add button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.pcard__add button:hover { background: hsl(142 69% 48%); }
.pcard__add button svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Body */
.pcard__body { padding: 16px; }

/* Étoiles */
.pcard__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.pcard__stars svg {
  width: 14px; height: 14px;
  stroke-width: 0;
}
.pcard__stars svg.star-fill  { fill: hsl(45, 100%, 55%); stroke: hsl(45, 100%, 55%); }
.pcard__stars svg.star-empty { fill: hsl(120 5% 55% / 0.3); stroke: hsl(120 5% 55% / 0.3); }
.pcard__stars span {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-left: 4px;
}

/* Nom & prix */
.pcard__name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.35;
  margin-bottom: 12px;
}
.pcard__price {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   NOUVEAUX PRODUITS — Gamme THCX (cartes horizontales)
   ============================================================ */
.newprods {
  border-top: 1px solid var(--border);
}
.newprods__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.newprods__header {
  margin-bottom: 40px;
}
.newprods__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.newprods__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
}

/* Grille 2 colonnes */
.npgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Carte horizontale */
.npcard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.npcard:hover {
  border-color: hsl(142 69% 58% / 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* Vignette 80×80 */
.npcard__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: hsl(150 5% 15% / 0.3);
}
.npcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.npcard:hover .npcard__img img { transform: scale(1.08); }

/* Texte */
.npcard__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.npcard__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  background: hsl(142 69% 58% / 0.15);
  color: var(--primary);
  border: 1px solid hsl(142 69% 58% / 0.2);
  margin-bottom: 2px;
}
.npcard__name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.npcard__price {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   CATÉGORIES
   ============================================================ */
.categories {
  background: hsl(150 8% 8% / 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categories__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.categories__header {
  text-align: center;
  margin-bottom: 48px;
}
.categories__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.categories__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
}

/* Grille 3 colonnes */
.catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte catégorie */
.catcard {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.catcard:hover {
  transform: translateY(-3px);
}

/* Variantes de couleur */
.catcard--cyan {
  background: linear-gradient(135deg, hsl(192 91% 50% / 0.1), hsl(217 91% 60% / 0.1));
  border: 1px solid hsl(192 91% 50% / 0.2);
}
.catcard--cyan:hover { border-color: hsl(192 91% 50% / 0.4); }

.catcard--green {
  background: linear-gradient(135deg, hsl(142 69% 58% / 0.1), hsl(160 69% 47% / 0.1));
  border: 1px solid hsl(142 69% 58% / 0.2);
}
.catcard--green:hover { border-color: hsl(142 69% 58% / 0.4); }

.catcard--lime {
  background: linear-gradient(135deg, hsl(84 81% 44% / 0.1), hsl(142 69% 44% / 0.1));
  border: 1px solid hsl(84 81% 44% / 0.2);
}
.catcard--lime:hover { border-color: hsl(84 81% 44% / 0.4); }

/* Contenu */
.catcard__emoji {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.catcard__name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.catcard__name--cyan  { color: hsl(192, 91%, 60%); }
.catcard__name--green { color: var(--primary); }
.catcard__name--lime  { color: hsl(84, 81%, 55%); }

.catcard__desc {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.catcard__link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}
.catcard__link--cyan  { color: hsl(192, 91%, 60%); }
.catcard__link--green { color: var(--primary); }
.catcard__link--lime  { color: hsl(84, 81%, 55%); }

.catcard__arrow {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease;
}
.catcard:hover .catcard__arrow { transform: translateX(4px); }

/* ============================================================
   FEATURES / USP
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color .25s;
}
.feature-card:hover { border-color: hsl(142 69% 58% / 0.35); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: hsl(142 69% 58% / 0.1);
  border: 1px solid hsl(142 69% 58% / 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.feature-card p {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ============================================================
   À PROPOS
   ============================================================ */
.about {
  border-top: 1px solid var(--border);
}
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Colonne image --- */
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  max-width: 480px;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(150 10% 5% / 0.5), transparent 60%);
}

/* Badge flottant */
.about__float-card {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(0,0,0,.5);
  min-width: 160px;
}
.about__float-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.about__float-icon {
  width: 20px; height: 20px;
  stroke: var(--primary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.about__float-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
.about__float-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about__float-sub {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* --- Colonne texte --- */
.about__content { }

.about__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.about__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about__text {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about__text strong { color: var(--foreground); font-weight: 600; }
.about__text--last { margin-bottom: 32px; }

/* Mini-stats 3 colonnes */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.about__stat {
  text-align: center;
  padding: 16px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.about__stat-icon {
  width: 20px; height: 20px;
  stroke: var(--primary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  margin: 0 auto 8px;
  display: block;
}
.about__stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
}
.about__stat-sub {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* Bouton */
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: hsl(150 5% 15% / 0.5);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.about__btn:hover {
  background: hsl(150 5% 15%);
  border-color: hsl(150 5% 25%);
}
.about__btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages {
  background: hsl(150 8% 8% / 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.temoignages__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.temoignages__header {
  text-align: center;
  margin-bottom: 48px;
}

.temoignages__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.temoignages__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 8px;
}

.temoignages__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.temoignages__score-stars { display: flex; align-items: center; gap: 3px; }

.tstar-fill {
  width: 20px;
  height: 20px;
  fill: hsl(45, 100%, 55%);
}

.temoignages__score-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--foreground);
}

.temoignages__score-sub { font-size: 14px; color: var(--muted-foreground); }

.temoignages__sag {
  height: 22px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* Grille */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.tcard__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.tcard__stars .tstar-fill { width: 14px; height: 14px; }

.tcard__text {
  font-size: 14px;
  color: var(--foreground);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tcard__name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--foreground);
}

.tcard__verified { font-size: 12px; color: var(--muted-foreground); }

.tcard__date { font-size: 11px; color: hsl(120 5% 55% / 0.6); white-space: nowrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 0;
}

.faq-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.faq-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: rgba(255,255,255,.85);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color .2s;
}
.faq__question:hover { color: #fff; }

.faq__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform .3s;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.faq__item.open .faq__arrow { transform: rotate(45deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq__answer-inner {
  padding: 0 0 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
}
.faq__answer-inner strong { color: rgba(255,255,255,.8); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  background: hsl(150 8% 8% / 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.blog-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
}

.blog-section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--foreground);
}

.blog-section__voir-tout {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity .2s;
  flex-shrink: 0;
}
.blog-section__voir-tout:hover { opacity: .75; }

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s;
}
.blog-card:hover {
  border-color: hsl(142 69% 58% / 0.35);
  transform: translateY(-3px);
}

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.blog-card__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: hsl(142 69% 58% / 0.1);
  color: var(--primary);
  border: 1px solid hsl(142 69% 58% / 0.2);
}

.blog-card__date { font-size: 11px; color: var(--muted-foreground); }

.blog-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--foreground);
  flex: 1;
  transition: color .2s;
}
.blog-card:hover .blog-card__title { color: var(--primary); }

.blog-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  transition: gap .2s;
}
.blog-card:hover .blog-card__link { gap: 8px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 0;
}

.cta-final__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.cta-final__box {
  position: relative;
  border: 1px solid hsl(142 69% 58% / 0.2);
  border-radius: 24px;
  overflow: hidden;
  padding: 56px 40px;
  text-align: center;
  background: linear-gradient(135deg, hsl(142 69% 58% / 0.06) 0%, hsl(150 10% 5%) 50%, hsl(142 69% 58% / 0.04) 100%);
  box-shadow: 0 0 80px hsl(142 69% 58% / 0.05) inset;
}

.cta-final__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(142 69% 58% / 0.6), transparent);
}
.cta-final__line--top { top: 0; }
.cta-final__line--bottom { bottom: 0; }

.cta-final__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-final__sub {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 0 40px hsl(142 69% 58% / 0.35);
  transition: opacity .2s, box-shadow .2s;
}
.cta-final__btn:hover {
  opacity: .9;
  box-shadow: 0 0 56px hsl(142 69% 58% / 0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: hsl(150, 8%, 5%);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Brand col */
.footer__logo {
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
}

.footer__desc {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social { display: flex; gap: 8px; }

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: hsl(150 5% 15% / 0.5);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.footer__social-btn:hover { color: var(--primary); border-color: hsl(142 69% 58% / 0.3); }

/* Cols */
.footer__col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 13.5px;
  color: var(--muted-foreground);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--primary); }
.footer__phone { font-size: 13.5px; color: var(--foreground); }

/* Bottom */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__bottom-copy { font-size: 11px; color: hsl(120 5% 55% / 0.6); }
.footer__bottom-legal { font-size: 11px; color: hsl(120 5% 55% / 0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablette large ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pgrid                 { grid-template-columns: repeat(2, 1fr); }
  .npgrid                { grid-template-columns: repeat(2, 1fr); }
  .catgrid               { grid-template-columns: repeat(2, 1fr); }
  .about__grid           { grid-template-columns: 1fr; }
  .about__visual         { overflow: hidden; }
  .about__float-card     { right: 0; }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .tgrid                 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .footer__grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__inner           { grid-template-columns: 1fr; padding: 72px 24px; }
  .hero__visual          { display: none; }
  .hero__content p       { max-width: 100%; }
  .reassurance__grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .header__inner        { height: 52px; }

  /* Nav mobile → masquée par défaut, visible via classe nav-open */
  .header__nav {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
  }
  .header__nav.nav-open { display: flex; }
  .header__nav > ul     { flex-direction: column; gap: 0; width: 100%; }
  .header__nav > ul > li > a { padding: 11px 10px; font-size: 15px; }
  .header__burger       { display: flex; }
  /* Masquer le texte du panier → icône seule */
  .header__cart-btn span { display: none; }
  .header__cart-btn      { padding: 8px; gap: 0; }
  /* Bouton ajouter toujours visible sur mobile (pas de hover) */
  .pcard__add            { transform: translateY(0); }
  /* Dropdown inline sur mobile */
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 4px 12px;
    min-width: auto;
  }

  /* Hero */
  .hero                  { min-height: auto; }
  .hero__inner           { padding: clamp(40px, 8vw, 56px) 16px; }
  .hero__content p       { font-size: clamp(14px, 3.5vw, 16px); }
  .hero__ctas .btn-primary { padding: 14px 28px; font-size: 15px; }

  /* Paddings de section uniformes */
  .products-section__inner,
  .newprods__inner,
  .categories__inner,
  .about__inner,
  .temoignages__inner,
  .faq-section__inner,
  .blog-section__inner,
  .cta-final__inner      { padding-top: 52px; padding-bottom: 52px;
                           padding-left: 16px; padding-right: 16px; }
  .reassurance__inner    { padding-left: 16px; padding-right: 16px; }
  .footer__inner         { padding-left: 16px; padding-right: 16px; }
  .header__wrap          { padding: 0 16px; }

  /* Grilles */
  .catgrid               { grid-template-columns: 1fr; }
  .npgrid                { grid-template-columns: 1fr; }
  .tgrid                 { grid-template-columns: 1fr; }
  .faq__grid             { grid-template-columns: 1fr; }
  .blog-grid             { grid-template-columns: 1fr; }
  .footer__grid          { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom        { flex-direction: column; text-align: center; }

  /* Section headers qui peuvent déborder */
  .products-section__header,
  .blog-section__header  { flex-wrap: wrap; gap: 12px; }

  /* CTA final */
  .cta-final__box        { padding: clamp(32px, 6vw, 40px) clamp(16px, 5vw, 24px); }
  .cta-final__sub        { font-size: clamp(14px, 3.5vw, 16px); }
}

/* ── Petit mobile ────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-py: 40px; }

  .pgrid                 { grid-template-columns: 1fr; }
  .npgrid                { grid-template-columns: 1fr; }
  .catgrid               { grid-template-columns: 1fr; }
  .about__stats          { grid-template-columns: 1fr; }
  .features-grid         { grid-template-columns: 1fr; }
  .reassurance__grid     { grid-template-columns: 1fr; }
  .tgrid                 { grid-template-columns: 1fr; }

  .hero__ctas            { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn-primary { text-align: center; padding: 14px 16px; }

  .products-section__inner,
  .newprods__inner,
  .categories__inner,
  .about__inner,
  .temoignages__inner,
  .faq-section__inner,
  .blog-section__inner,
  .cta-final__inner      { padding-left: 14px; padding-right: 14px; }
  .reassurance__inner,
  .header__wrap,
  .footer__inner         { padding-left: 14px; padding-right: 14px; }

  .announce-bar          { font-size: 11px; padding: 8px 12px; }
  .age-gate__modal       { padding: 28px 18px; }
  .cta-final__btn        { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
  /* Logo plus petit sur petit mobile */
  .header__logo img      { height: 32px; }
  /* Product cards compactes */
  .pcard__img            { aspect-ratio: 4/3; }
  .pcard__body           { padding: 10px 12px; }
  .pcard__name           { font-size: 13px; margin-bottom: 8px; }
  .pcard__price          { font-size: 16px; }
}

/* ============================================================
   UI OVERLAYS  —  Auth · Search · Side Cart
   ============================================================ */

/* ── Backdrop commun ── */
.ui-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.ui-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Bouton fermeture ── */
.ui-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: hsl(150 5% 15% / 0.6);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  cursor: pointer;
  flex-shrink: 0;
  transition: color .2s, background .2s;
}
.ui-close-btn:hover { color: var(--foreground); background: hsl(150 5% 20%); }
.ui-close-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════════════════════════════════
   AUTH MODAL
══════════════════════════════════════════════════════════════ */
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  z-index: 801;
  width: min(440px, 92vw);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.auth-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.auth-modal > .ui-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* Logo */
.auth-modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.auth-modal__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Tabs */
.auth-modal__tabs {
  display: flex;
  gap: 4px;
  background: hsl(150 5% 12%);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 8px 0;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color .2s, background .2s;
}
.auth-tab.active {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}

/* Forms */
.auth-form { display: none; flex-direction: column; gap: 16px; }
.auth-form.active { display: flex; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted-foreground);
  font-family: 'DM Sans', sans-serif;
}
.auth-field input {
  background: hsl(150 5% 10%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--foreground);
  outline: none;
  transition: border-color .2s;
}
.auth-field input:focus { border-color: var(--primary); }
.auth-forgot {
  font-size: .8rem;
  color: var(--muted-foreground);
  text-decoration: none;
  text-align: right;
  margin-top: -8px;
  transition: color .2s;
}
.auth-forgot:hover { color: var(--primary); }
.auth-legal {
  font-size: .75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 4px;
}
.auth-legal a { color: var(--primary); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   SEARCH MODAL
══════════════════════════════════════════════════════════════ */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 801;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.search-modal.open {
  opacity: 1;
  pointer-events: all;
}
.search-modal__inner {
  width: min(760px, 92vw);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
}
.search-modal__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid hsl(142 69% 58% / 0.30);
  border-radius: 12px;
  padding: 0 16px;
  box-shadow: 0 0 40px hsl(142 69% 58% / 0.12);
}
.search-modal__icon {
  width: 20px; height: 20px;
  stroke: var(--muted-foreground); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.search-modal__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--foreground);
  padding: 16px 0;
}
.search-modal__input::placeholder { color: var(--muted-foreground); }

/* Results */
.search-modal__results {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow-y: auto;
  max-height: calc(100vh - 260px);
}
.search-empty {
  padding: 32px;
  text-align: center;
  color: var(--muted-foreground);
  font-family: 'DM Sans', sans-serif;
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.search-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  text-decoration: none;
  padding: 16px;
  transition: background .2s;
  gap: 10px;
}
.search-card:hover { background: hsl(150 5% 13%); }
.search-card__img {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: hsl(150 5% 10%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
}
.search-card__info { display: flex; flex-direction: column; gap: 4px; }
.search-card__name {
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}
.search-card__price {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   SIDE CART
══════════════════════════════════════════════════════════════ */
.side-cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  z-index: 801;
  background: var(--card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.side-cart.open { transform: translateX(0); }

.side-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.side-cart__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
.side-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-cart__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Cart empty */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 48px 0;
  color: var(--muted-foreground);
  font-family: 'DM Sans', sans-serif;
}
.cart-empty svg {
  width: 48px; height: 48px;
  stroke: var(--border); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cart-empty p { font-size: .95rem; }

/* Cart items */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: hsl(150 5% 10%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: hsl(150 5% 8%);
  flex-shrink: 0;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cart-item__name {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.cart-item__name:hover { color: var(--primary); }
.cart-item__price {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cart-qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: hsl(150 5% 14%);
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.cart-qty-btn:hover { background: hsl(142 69% 58% / 0.15); border-color: var(--primary); }
.cart-qty-val { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-item__del {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 2px 4px;
  flex-shrink: 0;
  transition: color .15s;
}
.cart-item__del:hover { color: #ef4444; }

/* Cart footer */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--foreground);
  font-weight: 500;
}
.cart-total strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.cart-shipping-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--muted-foreground);
  margin-top: 6px;
  text-align: center;
}
.cart-shipping-hint--ok { color: var(--primary); }
.cart-shipping-hint strong { color: var(--foreground); }

/* Badge panier */
.header__cart-btn { position: relative; }
.header__cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--primary);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity .2s, transform .2s;
}
.header__cart-count.visible { opacity: 1; transform: scale(1); }

/* ── Responsive search grid ── */
@media (max-width: 600px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .search-modal { padding-top: 48px; }
  .auth-modal  { padding: 28px 20px 24px; }
}

/* ============================================================
   SCROLLBAR CUSTOM
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(150 10% 5%); }
::-webkit-scrollbar-thumb {
  background: hsl(142 69% 58% / 0.5);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(142 69% 58% / 0.85);
}
* { scrollbar-width: thin; scrollbar-color: hsl(142 69% 58% / 0.5) hsl(150 10% 5%); }

/* ============================================================
   ANIMATIONS D'APPARITION  —  data-anim system
   ============================================================ */

/* État initial : éléments invisibles avant animation */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity .25s cubic-bezier(.25,.46,.45,.94),
    transform .25s cubic-bezier(.25,.46,.45,.94);
}

[data-anim="fade-up"]    { transform: translateY(12px); }
[data-anim="fade-down"]  { transform: translateY(-12px); }
[data-anim="fade-left"]  { transform: translateX(14px); }
[data-anim="fade-right"] { transform: translateX(-14px); }
[data-anim="zoom-in"]    { transform: scale(.97); }
[data-anim="fade-in"]    { transform: none; }

/* État visible : déclenché par JS (.anim-visible) */
[data-anim].anim-visible {
  opacity: 1;
  transform: none;
}

/* Délais de décalage (stagger) */
[data-anim-delay="50"]  { transition-delay: 20ms; }
[data-anim-delay="100"] { transition-delay: 40ms; }
[data-anim-delay="150"] { transition-delay: 65ms; }
[data-anim-delay="200"] { transition-delay: 85ms; }
[data-anim-delay="250"] { transition-delay: 110ms; }
[data-anim-delay="300"] { transition-delay: 130ms; }
[data-anim-delay="350"] { transition-delay: 155ms; }
[data-anim-delay="400"] { transition-delay: 175ms; }
[data-anim-delay="500"] { transition-delay: 210ms; }
[data-anim-delay="600"] { transition-delay: 245ms; }

/* Respect du paramètre d'accessibilité (mouvement réduit) */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

