/* ═══════════════════════════════════════════════════
   ReNeuf Lab — Webshop Styles
   Font: Baloo Thambi 2 · Colors: Navy #1A2E4A + Orange #E8501A
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400;500;600;700;800&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
  --navy-950: #060d18;
  --navy-900: #0F1F3D;
  --navy-800: #1A2E4A;
  --navy-700: #243d5f;
  --navy-600: #2f5079;
  --navy-400: #6189ac;
  --navy-100: #dce8f0;
  --navy-50:  #f0f5f9;
  --orange-700: #c63b10;
  --orange-600: #E8501A;
  --orange-500: #FD5011;
  --orange-400: #fd7040;
  --orange-100: #ffd8cd;
  --orange-50:  #fff0eb;
  --neutral-50:  #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --white: #ffffff;

  --font: 'Baloo Thambi 2', system-ui, sans-serif;
  --header-h: 68px;
  --content-max: 1280px;
  --section-py: 88px;
  --px: 32px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 9999px;

  --shadow-card:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.13);
  --t: 220ms ease-in-out;
  --t-fast: 140ms ease-in-out;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea { font-family: var(--font); }
img { display: block; }

/* ── Layout ─────────────────────────────────────── */
.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section { padding-block: var(--section-py); }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.section-hd { margin-bottom: 48px; }
.section-hd h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 8px;
}
.section-hd .sub {
  font-size: 1rem;
  color: var(--neutral-500);
  margin-top: 10px;
  max-width: 540px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--navy-900);
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hdr-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
  display: flex !important;
  align-items: center !important;
  gap: 18px;
}
.hdr-logo img { height: 38px; width: auto; flex-shrink: 0; }

/* Search */
.hdr-search {
  flex: 1;
  max-width: 380px;
  align-self: center;
  position: relative;       /* icon anchors here for front-page plain input */
}
.hdr-search form {
  width: 100%;
  margin: 0; padding: 0;
  position: relative;       /* icon anchors here on inner pages */
  display: block;
}
.hdr-search .ico {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 1;
}
.hdr-search input,
.hdr-search input[type="search"],
.hdr-search input[type="text"] {
  width: 100% !important;
  height: 38px !important;
  padding: 0 14px 0 34px !important;
  margin: 0 !important;               /* cancel theme's margin-bottom:15px */
  background: rgba(255,255,255,0.09) !important;
  border: 1px solid rgba(255,255,255,0.11) !important;
  border-radius: var(--r-full) !important;
  color: white !important;
  font-size: 0.855rem !important;
  font-family: var(--font) !important;
  outline: none !important;
  box-shadow: none !important;
  transition: var(--t);
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  vertical-align: middle !important;
  line-height: 38px !important;
}
.hdr-search input::placeholder,
.hdr-search input[type="search"]::placeholder { color: rgba(255,255,255,0.38); }
.hdr-search input:focus,
.hdr-search input[type="search"]:focus { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }
/* Hide browser's native search clear button */
.hdr-search input[type="search"]::-webkit-search-decoration,
.hdr-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/* Nav */
.hdr-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 13px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem; font-weight: 500;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: var(--t-fast);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; }

/* Catalogue dropdown */
.nav-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 36px rgba(0,0,0,0.18);
  min-width: 290px;
  padding: 6px;
  opacity: 0; pointer-events: none;
  transition: var(--t);
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu { opacity: 1; pointer-events: auto; }
.drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border-radius: var(--r-md);
  color: var(--navy-800);
  transition: var(--t-fast);
}
.drop-item:hover { background: var(--neutral-50); }
.drop-item-icon { width: 18px; height: 18px; color: var(--orange-600); flex-shrink: 0; }
.drop-item strong { display: block; font-size: 0.875rem; font-weight: 600; }
.drop-item small  { display: block; font-size: 0.76rem; color: var(--neutral-500); margin-top: 2px; }

/* CTA button */
.btn-header-devis {
  display: flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 18px;
  background: var(--orange-500);
  color: white;
  font-size: 0.855rem; font-weight: 700;
  border-radius: var(--r-md);
  flex-shrink: 0;
  transition: var(--t-fast);
}
.btn-header-devis svg { width: 14px; height: 14px; }
.btn-header-devis:hover { background: var(--orange-700); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  /* exact height: full viewport minus the fixed header */
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  background: var(--navy-900)
    url('https://shop.reneuflab.com/wp-content/uploads/2026/06/hero-shop.png')
    right center / cover no-repeat;
  margin-top: var(--header-h);   /* push below fixed header */
  padding-top: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Navy gradient left → transparent right */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-900) 0%,
    rgba(15,31,61,0.96) 30%,
    rgba(15,31,61,0.75) 52%,
    rgba(15,31,61,0.2)  70%,
    transparent         100%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}
.hero-glow  { display: none; }   /* hidden — image replaces decorative glows */
.hero-glow-2{ display: none; }

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* Hero text column — left-pinned with breathing room */
.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc(var(--px) * 2);
  padding-right: var(--px);
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  gap: 0;                              /* let each child control its own spacing */
}

.hero-kicker { margin-bottom: 6px; }

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 6px;                     /* was 14px */
}
.hero-title .hl { color: var(--orange-400); }

.hero-sub {
  margin-top: 10px;                    /* was 18px */
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.hero-ctas {
  display: flex; gap: 12px;
  margin-top: 18px;                    /* was 28px */
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--orange-500);
  color: white;
  font-size: 0.9375rem; font-weight: 700;
  border-radius: var(--r-md);
  transition: var(--t);
}
.btn-hero-primary:hover { background: var(--orange-700); transform: translateY(-1px); }
.btn-hero-primary svg { width: 16px; height: 16px; }

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem; font-weight: 500;
  border-radius: var(--r-md);
  transition: var(--t);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.45); color: white; background: rgba(255,255,255,0.05); }

.hero-brands {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;                    /* was 44px */
}
.hero-brand-label {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-right: 6px;
}
.brand-pill {
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

/* Stats bar */
.hero-stats-bar {
  display: flex;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}
.stat-cell {
  flex: 1;
  padding: 14px var(--px);       /* reduced from 26px → compact bar */
  display: flex; flex-direction: column; gap: 2px;
}
.stat-cell + .stat-cell { border-left: 1px solid rgba(255,255,255,0.07); }
.stat-num {
  font-size: 1.6rem; font-weight: 800;   /* slightly smaller */
  color: var(--orange-400);
  letter-spacing: -0.03em; line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════ */
.bg-light { background: var(--neutral-50); }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  display: flex; flex-direction: column;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.cat-thumb {
  height: 96px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cat-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.cat-thumb svg { width: 34px; height: 34px; color: rgba(255,255,255,0.85); position: relative; }
.ct-endo  { background: var(--navy-800); }
.ct-sys   { background: var(--orange-600); }
.ct-conso { background: var(--navy-800); }
.ct-acc   { background: var(--orange-600); }

/* PNG images inside cat thumbs */
.cat-thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1); /* white tint to match the card style */
}

.cat-body { padding: 18px 20px; flex: 1; }
.cat-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy-800); }
.cat-body p  { font-size: 0.8rem; color: var(--neutral-500); margin-top: 5px; line-height: 1.5; }

.cat-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.78rem; font-weight: 600;
  color: var(--orange-600);
}
.cat-footer svg { width: 13px; height: 13px; }

/* ═══════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════ */
.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filters { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

.brand-filters {
  display: flex; gap: 4px;
  background: var(--neutral-100);
  padding: 4px;
  border-radius: var(--r-md);
}
.f-brand {
  padding: 7px 18px;
  font-size: 0.855rem; font-weight: 500;
  color: var(--neutral-500);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.f-brand.active, .f-brand:hover {
  background: white; color: var(--navy-800);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.f-brand.active { font-weight: 700; }

.cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.f-cat {
  padding: 5px 13px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--neutral-600);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-full);
  background: white;
  transition: var(--t-fast);
}
.f-cat.active, .f-cat:hover {
  background: var(--navy-800); color: white; border-color: var(--navy-800);
}
.f-cat.active { font-weight: 600; }

.results-info {
  font-size: 0.82rem; color: var(--neutral-400);
  margin-bottom: 24px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }

.show-all-wrap {
  text-align: center;
  margin-top: 36px;
}
.btn-show-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  border-radius: 10px;
  border: 2px solid var(--navy-800);
  background: var(--navy-800);
  color: white !important;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.btn-show-all:hover { background: var(--navy-900); color: white !important; }
.prod-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--t);
  text-decoration: none;   /* card is now an <a> */
  color: inherit;
  cursor: pointer;
}
.prod-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* Product thumbnail */
.prod-thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}
.prod-thumb svg { width: 52px; height: 52px; color: rgba(255,255,255,0.22); position: relative; }
.pt-endo  { background: linear-gradient(135deg, #0c1c30 0%, #1e3d5e 100%); }
.pt-sys   { background: linear-gradient(135deg, #0a2233 0%, #1a5272 100%); }
.pt-conso { background: linear-gradient(135deg, #380f04 0%, #c33a0f 100%); }
.pt-acc   { background: linear-gradient(135deg, #152336 0%, #2a4560 100%); }

.thumb-brand {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 0.65rem; font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.thumb-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(232,80,26,0.85);
  color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}

/* Product body */
.prod-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prod-meta { display: flex; align-items: center; justify-content: space-between; }

.brand-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-sm);
}
.bt-olympus  { background: #e5eef8; color: #1a3a6e; }
.bt-fujifilm { background: var(--orange-50); color: var(--orange-700); }

.status-dispo   { font-size: 0.7rem; font-weight: 600; color: #1a8c5b; }
.status-demand  { font-size: 0.7rem; font-weight: 500; color: var(--neutral-400); }

.prod-name { font-size: 0.9375rem; font-weight: 700; color: var(--navy-800); line-height: 1.3; }
.prod-ref  { font-size: 0.75rem; color: var(--neutral-400); font-weight: 400; }
.prod-price {
  margin-top: auto;
  padding-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
}
.prod-price bdi { font-weight: 700; }
.prod-price.no-price {
  font-size: 0.8rem;
  color: var(--neutral-400);
  font-weight: 500;
  font-style: italic;
}
.prod-desc { font-size: 0.8rem; color: var(--neutral-500); line-height: 1.55; flex: 1; }

.btn-card-devis {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  background: var(--navy-800);
  color: white;
  font-size: 0.855rem; font-weight: 600;
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.btn-card-devis:hover { background: var(--orange-500); }

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 72px 0;
  color: var(--neutral-400);
  font-size: 1rem;
}
.no-results svg { width: 40px; height: 40px; margin: 0 auto 16px; }

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.bg-dark { background: var(--navy-900); }
.bg-dark .section-hd h2 { color: white; }
.bg-dark .section-hd .sub { color: rgba(255,255,255,0.45); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--t);
}
.svc-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.13); }
.svc-num {
  display: block;
  font-size: 2.5rem; font-weight: 800;
  color: var(--orange-500);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.svc-card h3 {
  font-size: 1.0625rem; font-weight: 700;
  color: white; margin-bottom: 10px; line-height: 1.3;
}
.svc-card p {
  font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   DEVIS / CTA
   ═══════════════════════════════════════════════════ */
.bg-orange { background: var(--orange-500); }

.devis-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.devis-text .eyebrow { color: rgba(255,255,255,0.65); }
.devis-text h2 {
  font-size: 2rem; font-weight: 800;
  color: white; margin-top: 10px; line-height: 1.15;
}
.devis-text > p {
  font-size: 0.9375rem; color: rgba(255,255,255,0.82);
  margin-top: 14px; line-height: 1.65;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.clink {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 600; color: white;
  transition: var(--t-fast);
}
.clink svg { width: 17px; height: 17px; opacity: 0.7; }
.clink:hover { opacity: 0.8; }

.devis-form {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.devis-form h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy-800); margin-bottom: 4px;
}
.f-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--navy-800);
  outline: none;
  transition: var(--t-fast);
  font-family: var(--font);
}
.f-input:focus { border-color: var(--navy-700); }
.f-input::placeholder { color: var(--neutral-400); }
.f-textarea { min-height: 100px; resize: vertical; }
.btn-send {
  padding: 12px;
  background: var(--orange-500);
  color: white;
  font-size: 0.9375rem; font-weight: 700;
  border-radius: var(--r-md);
  transition: var(--t-fast);
  font-family: var(--font);
  border: none; cursor: pointer; width: 100%;
}
.btn-send:hover { background: var(--orange-700); }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer { background: var(--navy-950); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px;
}
.ft-brand img { height: 40px; }
.ft-brand p {
  font-size: 0.855rem; color: rgba(255,255,255,0.38);
  margin-top: 14px; max-width: 210px; line-height: 1.65;
}
.ft-contacts {
  display: flex; flex-direction: column; gap: 8px; margin-top: 18px;
}
.ft-contacts a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
  transition: var(--t-fast);
}
.ft-contacts a:hover { color: rgba(255,255,255,0.7); }
.ft-contacts a svg { width: 13px; height: 13px; }

.ft-col h4 {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.ft-col a {
  display: block;
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: var(--t-fast);
}
.ft-col a:hover { color: white; }

.footer-bottom {
  background: var(--navy-950) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px var(--px);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85) !important;
  width: 100%;
}

/* ── Live demo additions ─────────────────────────── */
.prod-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  border-radius: inherit;
}
.prod-thumb { position: relative; overflow: hidden; }

.card-actions {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 16px;
}
.btn-card-view {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  background: var(--navy-800); color: white;
  transition: background 0.18s;
  text-decoration: none;
}
.btn-card-view:hover { background: var(--navy-900); }
.btn-card-devis { flex: 1; margin-top: 0; }

.bt-autre { background: #f1f1f1; color: #555; }

.loading-state {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; padding: 80px 0;
  color: #888;
}
.loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--orange-500);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Choix section ───────────────────────────────── */
.choix-section {
  display: flex;
  flex-direction: column;
  height: auto;
}
.choix-header {
  background: white;
  padding: 36px var(--px) 28px;
  text-align: center;
}
.choix-header .eyebrow { display: block; margin-bottom: 6px; }
.choix-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.025em;
  margin: 0;
}
.choix-panels {
  display: flex;
  height: 480px;
}
.choix-panels .choix-panel { flex: 1; }

@media (max-width: 700px) {
  .choix-panels { flex-direction: column; height: auto; }
  .choix-panels .choix-panel { min-height: 260px; }
}
@media (max-width: 700px) {
  .choix-section { flex-direction: column; height: auto; }
}

.choix-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex 0.4s ease;
}
.choix-panel:hover { flex: 1.18; }
@media (max-width: 700px) {
  .choix-panel { min-height: 300px; }
}

.choix-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,40,0.82) 0%, rgba(5,15,40,0.25) 60%, transparent 100%);
  transition: background 0.3s;
}
.choix-panel:hover .choix-overlay {
  background: linear-gradient(to top, rgba(5,15,40,0.9) 0%, rgba(5,15,40,0.35) 60%, transparent 100%);
}

.choix-content {
  position: relative;
  padding: 40px 44px;
  z-index: 1;
}
.choix-content h3 {
  font-size: 1.75rem; font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.choix-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 340px;
}
.choix-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700;
  color: white;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.choix-panel:hover .choix-cta { border-color: white; gap: 12px; }
.choix-cta svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* ── Tablet landscape (≤ 1024px) ─────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 64px; --px: 24px; }

  /* Header */
  .hdr-search { max-width: 240px; }
  .btn-header-devis span { display: none; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }

  /* Stats bar */
  .stat-num { font-size: 1.6rem; }

  /* Categories */
  .cats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Devis */
  .devis-inner { gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-brand { grid-column: 1 / -1; }
}

/* ── Tablet portrait (≤ 768px) ───────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 52px; --px: 20px; --header-h: 60px; }

  /* Header — hide nav, keep logo + devis */
  .hdr-nav { display: none; }
  .hdr-search { max-width: none; flex: 1; }
  .btn-header-devis { font-size: 0.8rem; padding: 0 14px; }

  /* Hero */
  .hero {
    height: auto;
    min-height: calc(100vh - var(--header-h));
    /* on mobile gradient covers more so text is readable */
  }
  .hero::before {
    background: linear-gradient(
      to right,
      var(--navy-900) 0%,
      rgba(15,31,61,0.92) 50%,
      rgba(15,31,61,0.65) 100%
    );
  }
  .hero-body { padding-top: 48px; padding-bottom: 40px; }
  .hero-body .wrap { max-width: 100%; }
  .hero-title { font-size: clamp(1.85rem, 6vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
  .hero-brands { flex-wrap: wrap; }

  /* Stats bar — 2×2 grid */
  .stat-num { font-size: 1.5rem; }

  /* Section headings */
  .section-hd h2 { font-size: 1.65rem; }

  /* Categories */
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Products top */
  .products-top { flex-direction: column; align-items: flex-start; }
  .filters { align-items: flex-start; width: 100%; }
  .brand-filters { flex-wrap: wrap; }
  .cat-filters { gap: 6px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Devis */
  .devis-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-block: 48px; }
  .ft-brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤ 600px) ────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-py: 44px; --px: 16px; }

  /* Header */
  .hdr-search { display: none; }
  .hdr-logo img { height: 30px; }

  /* Hero */
  .hero-title { font-size: 1.85rem; letter-spacing: -0.025em; }
  .hero-sub br { display: none; }
  .hero-kicker { font-size: 0.7rem; }

  /* Stats bar — horizontal scroll strip */
  .hero-stats-bar {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-stats-bar::-webkit-scrollbar { display: none; }
  .stat-cell {
    flex: 0 0 auto;
    min-width: 44vw;
    padding: 20px 20px;
    scroll-snap-align: start;
    border-left: none !important;
    border-top: none !important;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.72rem; }

  /* Categories */
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-thumb { height: 70px; }
  .cat-thumb svg { width: 26px; height: 26px; }
  .cat-body { padding: 12px 14px; }
  .cat-body h3 { font-size: 0.875rem; }
  .cat-body p { display: none; }
  .cat-footer { padding: 8px 14px; font-size: 0.72rem; }

  /* Products */
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  /* prod-thumb stays square via aspect-ratio */
  .prod-body { padding: 12px 14px 14px; }
  .prod-name { font-size: 0.82rem; }
  .prod-ref  { font-size: 0.72rem; }

  /* Choix panels */
  .choix-section { flex-direction: column; height: auto; }
  .choix-panel   { min-height: 260px; }
  .choix-content { padding: 28px 24px; }
  .choix-content h3 { font-size: 1.4rem; }

  /* Services */
  .svc-card { padding: 24px 20px; }
  .svc-num { font-size: 2rem; }

  /* Devis form */
  .devis-form { padding: 24px 20px; }
  .devis-text h2 { font-size: 1.6rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Show-all button */
  .btn-show-all { width: 100%; justify-content: center; }
}

/* ── Small mobile (≤ 400px) ──────────────────────── */
@media (max-width: 400px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.6rem; }
  .stat-cell { min-width: 60vw; }
}

/* ── Trust ribbon ────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-ribbon {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-ribbon:hover .trust-track { animation-play-state: paused; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item i {
  font-size: 1.15rem;
  color: var(--orange-400);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Hamburger button ────────────────────────────── */
.hbg-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 7px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.hbg-btn:hover { background: rgba(255,255,255,0.13); }

.hbg-bar {
  display: block;
  width: 100%; height: 2px;
  background: white;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Animate to X */
.hbg-btn.open .hbg-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg-btn.open .hbg-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg-btn.open .hbg-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ──────────────────────────────── */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 299;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mob-overlay.open { opacity: 1; }

/* ── Mobile drawer ───────────────────────────────── */
.mob-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--navy-900);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mob-logo { height: 30px; }

.mob-close {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background 0.18s;
}
.mob-close:hover { background: rgba(255,255,255,0.14); }
.mob-close svg { width: 18px; height: 18px; }

.mob-search {
  position: relative;
  margin: 16px 20px;
  display: flex;
  align-items: center;
}
.mob-search form { width: 100%; margin: 0; padding: 0; }
.mob-search .ico {
  position: absolute; left: 11px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 1;
}
.mob-search input,
.mob-search input[type="search"],
.mob-search input[type="text"] {
  width: 100% !important;
  height: 40px !important;
  padding: 0 14px 0 34px !important;
  margin: 0 !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.11) !important;
  border-radius: var(--r-full) !important;
  color: white !important;
  font-size: 0.875rem !important;
  font-family: var(--font) !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  vertical-align: middle !important;
  line-height: 40px !important;
}
.mob-search input::placeholder,
.mob-search input[type="search"]::placeholder { color: rgba(255,255,255,0.35); }
.mob-search input:focus,
.mob-search input[type="search"]:focus { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); }
.mob-search input[type="search"]::-webkit-search-decoration,
.mob-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

.mob-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  gap: 2px;
}
.mob-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 13px 14px !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.875rem !important;      /* match desktop nav-link */
  font-weight: 500 !important;
  font-family: var(--font) !important;
  border-radius: var(--r-md) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.4 !important;
  transition: background 0.18s, color 0.18s;
}
.mob-link:hover { background: rgba(255,255,255,0.07) !important; color: white !important; }
.mob-link svg { width: 17px; height: 17px; color: var(--orange-400); flex-shrink: 0; }

.mob-cart-badge {
  margin-left: auto;
  background: var(--orange-500); color: white;
  border-radius: 99px; padding: 1px 8px;
  font-size: .72rem; font-weight: 700;
}

.mob-devis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 20px 0;
  padding: 13px;
  background: var(--orange-500);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: background 0.18s;
}
.mob-devis-btn:hover { background: var(--orange-700); }
.mob-devis-btn svg { width: 16px; height: 16px; }

/* ── Show hamburger on mobile ────────────────────── */
@media (max-width: 768px) {
  .hbg-btn { display: flex; margin-left: auto; }
  .btn-header-devis { display: none; }
  .mob-overlay { display: block; pointer-events: none; }
  .mob-overlay.open { pointer-events: auto; }
}

/* ── Footer social icons ─────────────────────────── */
.ft-social {
  display: flex; gap: 9px; margin-top: 18px;
}
.ft-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  font-size: 14px;
}
.ft-social a:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; }

/* ── Cart count badge ────────────────────────────── */
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--orange-500); color: white;
  border-radius: 99px; font-size: .68rem; font-weight: 700;
  margin-left: 2px;
}

/* ── Inner page content padding ──────────────────── */
.wrapper-content { min-height: 60vh; }
