/* ════════════════════════════════════════════════════════
   VNails Diffusion — Shared Stylesheet v3.0 (impeccable)
   Palette : Encre · Terracotta · Grès
   Typo    : Gloock (display) + Figtree (corps) — Bunny Fonts
════════════════════════════════════════════════════════ */

/* ── View Transitions (Chrome 126+) — navigation cross-page fluide ── */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: 80ms ease-out vt-fade-out forwards;
}
::view-transition-new(root) {
  animation: 150ms ease-in vt-fade-in forwards;
}
@keyframes vt-fade-out { to   { opacity: 0; transform: scale(.98); } }
@keyframes vt-fade-in  { from { opacity: 0; transform: scale(.99); } }

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* ── Palette OKLCH — Encre / Terracotta / Grès ── */
  --cream:        oklch(97.5% 0.008 48);    /* grès chaud, légère teinte terracotta */
  --cream-dark:   oklch(94% 0.014 48);      /* surface secondaire */
  --charcoal:     oklch(20% 0.018 345);     /* encre, quasi-noir à nuance violacée */
  --charcoal-mid: oklch(27% 0.022 345);     /* encre allégée pour survol */
  --rose:         oklch(58% 0.13 28);       /* terracotta — ancien dusty rose, renommé en valeur */
  --rose-dark:    oklch(50% 0.13 28);       /* terracotta foncé */
  --rose-pale:    oklch(95% 0.025 48);      /* fond terracotta très léger */
  --muted:        oklch(52% 0.018 345);     /* pierre chaude */
  --border:       oklch(90% 0.014 48);      /* bordure chaude */
  --white:        oklch(99% 0.004 48);      /* pas pur blanc */

  /* ── Typographie ── */
  --font-display: 'Gloock', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  /* ── Espacements (échelle 4pt) ── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  --section-py: clamp(3.5rem, 7vw, 6rem);
  --container:  min(1280px, 100% - 2 * clamp(1rem, 4vw, 3rem));

  /* ── Rayons — réduits, moins génériques ── */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 18px;

  /* ── Ombres — atténuées, sans couleur froide ── */
  --shadow-sm: 0 1px 4px oklch(20% 0.018 345 / 0.08);
  --shadow-md: 0 4px 16px oklch(20% 0.018 345 / 0.10);
  --shadow-lg: 0 12px 40px oklch(20% 0.018 345 / 0.13);

  --t: 200ms cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout ── */
.container   { width: var(--container); margin-inline: auto; }
.section     { padding-block: var(--section-py); }
.section--alt   { background: var(--cream-dark); }
.section--dark  { background: var(--charcoal); color: var(--cream); }
.section--blush { background: var(--rose-pale); }
.section--white { background: var(--white); }

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .65rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: .65rem;
}
.section-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-head { margin-bottom: clamp(2rem,5vw,3.5rem); }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.6rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  white-space: nowrap;
  border: none;
  line-height: 1;
}
.btn--primary   { background: var(--rose); color: var(--white); }
.btn--primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,151,153,.35); }
.btn--dark      { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline   { background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--cream); }
.btn--ghost { background: transparent; border: 1.5px solid var(--border); color: var(--charcoal); }
.btn--ghost:hover { background: var(--cream-dark); border-color: var(--rose); color: var(--rose-dark); }
.btn--ghost-light { background: transparent; border: 1.5px solid rgba(250,248,246,.3); color: rgba(250,248,246,.85); }
.btn--ghost-light:hover { border-color: rgba(250,248,246,.7); color: var(--cream); }
.btn--sm { padding: .5rem 1.1rem; font-size: .78rem; }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 99px;
  font-size: .73rem;
  font-weight: 600;
  background: var(--rose-pale);
  color: var(--rose-dark);
  border: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════════════ */
.topbar {
  background: var(--charcoal);
  color: rgba(250,248,246,.65);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.topbar strong { color: var(--rose); }
.topbar a { color: rgba(250,248,246,.65); text-decoration: none; transition: color var(--t); }
.topbar a:hover { color: var(--rose); }

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,246,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
#site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--charcoal);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: -.03em;
  flex-shrink: 0;
  transition: background var(--t);
}
.logo-link:hover .logo-mark { background: var(--rose-dark); }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.01em;
  line-height: 1;
}
.logo-wordmark span { color: var(--rose-dark); font-weight: 400; font-style: italic; }

/* Nav */
.desktop-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 960px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color var(--t);
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--charcoal); }

/* Mega dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t);
  flex-shrink: 0;
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;                /* flush — pas de trou entre le lien et le menu */
  left: 50%;
  transform: translateX(-50%);
  padding-top: 1rem;        /* l'espacement visuel est dans le padding, pas top */
  z-index: 300;
}
/* Contenu visible du menu */
.mega-menu > * {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  min-width: 600px;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .mega-menu { display: block; }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .25rem;
}
.mega-grid a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: var(--r-sm);
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.mega-grid a:hover { background: var(--rose-pale); color: var(--rose-dark); }
.mega-grid a::before { content: '→'; font-size: .65rem; color: var(--rose); flex-shrink: 0; }

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  padding: .5rem 1.2rem !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
  font-size: .79rem !important;
  transition: background var(--t), transform var(--t) !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px) !important; color: var(--white) !important; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t);
  padding: 4px;
}
@media (min-width: 960px) { .burger { display: none; } }
.burger:hover { background: var(--cream-dark); }
.burger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 300ms ease;
  transform-origin: center;
}
.burger span:nth-child(3) { width: 70%; align-self: flex-end; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: rotate(-45deg) translate(5px, -5px); }

#mobile-menu { background: var(--white); border-top: 1px solid var(--border); }
#mobile-menu[hidden] { display: none; }
.mobile-nav { padding: 1rem; display: flex; flex-direction: column; gap: .2rem; }
.mobile-nav a {
  display: block;
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: background var(--t);
}
.mobile-nav a:hover { background: var(--rose-pale); color: var(--rose-dark); }
.mobile-nav hr { border: none; border-top: 1px solid var(--border); margin: .5rem 0; }
.mobile-nav .mobile-cta {
  margin-top: .5rem;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  border-radius: 99px;
}

/* ════════════════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .65rem 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .4rem;
  list-style: none;
  font-size: .75rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb li + li::before { content: '/'; color: var(--border); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb [aria-current="page"] { color: var(--charcoal); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   CATEGORY HERO
════════════════════════════════════════════════════════ */
.cat-hero {
  background: var(--charcoal);
  padding-block: clamp(3rem,7vw,5.5rem);
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(196,151,153,.15), transparent 60%);
  pointer-events: none;
}
.cat-hero__inner { position: relative; z-index: 1; max-width: 680px; }
.cat-hero__count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(196,151,153,.12);
  border: 1px solid rgba(196,151,153,.25);
  border-radius: 99px;
  padding: .35rem .9rem;
  margin-bottom: 1.25rem;
}
.cat-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .85rem;
}
.cat-hero__title em { color: var(--rose); font-weight: 400; font-style: italic; }
.cat-hero__desc {
  font-size: .95rem;
  color: rgba(250,248,246,.6);
  line-height: 1.8;
  max-width: 540px;
}

/* ════════════════════════════════════════════════════════
   PRODUCT GRID
════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;                               /* ligne de grille au lieu d'espacement */
  background: var(--border);              /* les lignes viennent du fond */
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .products-grid { grid-template-columns: repeat(5, 1fr); } }

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background var(--t);
  text-decoration: none;
}
.product-card:hover {
  background: var(--rose-pale);
}

.product-card__img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }

/* Placeholder when no image */
.product-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  background: var(--cream-dark);
  color: var(--border);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .08em;
}

.product-card__body {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
  border-top: 1px solid var(--border);
}
.product-card__brand {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
}
.product-card__name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  flex: 1;
}
.product-card__ref {
  font-size: .68rem;
  color: var(--muted);
  font-family: 'Courier New', monospace;
}
.product-card__actions {
  margin-top: .5rem;
  padding-top: .5rem;
}
.product-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: .4rem 0;
  transition: color var(--t);
}
.product-card__link:hover { color: var(--rose); }

/* ════════════════════════════════════════════════════════
   BRAND BLOCK (in category pages)
════════════════════════════════════════════════════════ */
.brand-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.brand-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--rose-pale), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.brand-block__header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.brand-block__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.brand-block__desc { font-size: .88rem; color: var(--muted); line-height: 1.75; max-width: 640px; }

/* ════════════════════════════════════════════════════════
   CATEGORY SIDEBAR / FILTER NAV
════════════════════════════════════════════════════════ */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) { .catalog-layout { grid-template-columns: 240px 1fr; } }

.cat-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(68px + 1rem);
}
.cat-sidebar h3 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 1rem;
}
.cat-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: .15rem; }
.cat-sidebar a {
  display: block;
  padding: .55rem .85rem;
  border-radius: var(--r-sm);
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.cat-sidebar a:hover,
.cat-sidebar a.active {
  background: var(--rose-pale);
  color: var(--rose-dark);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(250,248,246,.6);
  padding-block: 3.5rem 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250,248,246,.08);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: .7rem;
}
.footer-logo span { color: var(--rose); font-style: italic; font-weight: 400; }
.footer-desc { font-size: .8rem; line-height: 1.8; margin-bottom: 1rem; }
.footer-contacts a {
  display: block;
  font-size: .8rem;
  color: var(--rose);
  text-decoration: none;
  transition: color var(--t);
  font-weight: 600;
}
.footer-contacts a:hover { color: var(--cream); }

.footer-col h4 {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,248,246,.3);
  margin-bottom: .85rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.footer-links a {
  font-size: .8rem;
  color: rgba(250,248,246,.55);
  text-decoration: none;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--rose); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .73rem;
  color: rgba(250,248,246,.3);
}

/* ════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.animate-in.visible { opacity: 1; transform: none; }
.animate-in:nth-child(2) { transition-delay: 60ms; }
.animate-in:nth-child(3) { transition-delay: 120ms; }
.animate-in:nth-child(4) { transition-delay: 180ms; }
.animate-in:nth-child(5) { transition-delay: 240ms; }
.animate-in:nth-child(6) { transition-delay: 300ms; }

/* ════════════════════════════════════════════════════════
   HOMEPAGE-SPECIFIC
════════════════════════════════════════════════════════ */
/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88svh, 680px);
  display: flex;
  align-items: center;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 40%, rgba(196,151,153,.18), transparent 65%),
    radial-gradient(ellipse 50% 60% at 5% 70%, rgba(196,151,153,.07), transparent 50%),
    var(--charcoal);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(250,248,246,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; padding-block: clamp(4.5rem, 10vw, 8rem); max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(196,151,153,.12); border: 1px solid rgba(196,151,153,.28);
  border-radius: 99px; padding: .38rem .95rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose);
  margin-bottom: 1.4rem;
}
.hero__badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--cream);
  line-height: 1.07; letter-spacing: -.025em; margin-bottom: 1.2rem;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--rose); }
.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(250,248,246,.58); line-height: 1.8; margin-bottom: 2rem; max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(250,248,246,.09); }
.stat__num { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--rose); line-height: 1; }
.stat__label { font-size: .7rem; color: rgba(250,248,246,.4); letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }

/* USP Strip — spec list typographique */
.usp-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.5rem;
}
.usp-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}
@media (max-width: 640px) { .usp-specs { grid-template-columns: repeat(2, 1fr); } }
.usp-spec {
  padding: .65rem 1.5rem;
  border-right: 1px solid var(--border);
}
.usp-spec:last-child { border-right: none; }
.usp-spec dt {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .25rem;
}
.usp-spec dd {
  font-size: .82rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Home categories grid (larger cards) */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 560px) { .home-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .home-cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .home-cat-grid { grid-template-columns: repeat(6, 1fr); } }

.home-cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.home-cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-pale), transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
}
.home-cat-card:hover { border-color: var(--rose); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.home-cat-card:hover::before { opacity: 1; }
.home-cat-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  transition: background var(--t), transform var(--t);
  position: relative; z-index: 1;
}
.home-cat-card:hover .home-cat-icon { background: var(--rose); transform: scale(1.08); }
.home-cat-name {
  font-size: .78rem; font-weight: 600; color: var(--charcoal);
  letter-spacing: .02em; line-height: 1.25;
  position: relative; z-index: 1;
  transition: color var(--t);
}
.home-cat-card:hover .home-cat-name { color: var(--rose-dark); }

/* Featured products on home */
.featured-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
@media (min-width: 700px) { .featured-products { grid-template-columns: repeat(4,1fr); } }
