/* ═══════════════════════════════════════════════════════════
   YOURCHOICEFRANCE.FR - V2 COMPLETE
   Design: Shop × Apple - Black / White / #FF0000
   Mega Menu V2, Product Images, 4h Devis
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --gray-50: #FAFAFA;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-300: #D1D1D1;
  --gray-400: #9A9A9A;
  --gray-500: #6E6E6E;
  --gray-600: #4A4A4A;
  --red: #FF0000;
  --red-dark: #D60000;
  --red-glow: rgba(255, 0, 0, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--red); }

.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-catalogue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-catalogue:hover { color: var(--black); background: var(--gray-100); }
.nav-catalogue.active { color: var(--black); background: var(--gray-100); }

.nav-catalogue svg {
  transition: transform 0.3s var(--ease);
}
.nav-catalogue.active svg { transform: rotate(180deg); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  flex: 2;
  max-width: 840px;
  transition: all 0.3s var(--ease);
}

.nav-search:focus-within {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: none;
}

.nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  width: 100%;
  padding: 0;
}

.nav-search input::placeholder {
  color: var(--gray-400);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MEGA MENU OVERLAY ──────────────────────────────────── */

.mega-overlay {
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.mega-overlay.active { opacity: 1; visibility: visible; }

/* ─── MEGA MENU ──────────────────────────────────────────── */

.mega-menu {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  max-height: calc(100vh - 72px - 52px);
}

/* ─── LEFT TABS ──────────────────────────────────────────── */

.mega-tabs {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 6px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.mega-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--red);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.2s var(--ease-out);
}

.mega-tab:hover { background: var(--white); }
.mega-tab:hover::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }
.mega-tab.active { background: var(--white); }
.mega-tab.active::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }

.mega-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.mega-tab.active .mega-tab-icon { background: var(--red); }
.mega-tab.active .mega-tab-icon span { filter: grayscale(1) brightness(10); }

.mega-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  flex: 1;
}
.mega-tab.active .mega-tab-label { color: var(--red); }

.mega-tab-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ─── RIGHT PANELS ───────────────────────────────────────── */

.mega-content {
  padding: 8px 12px;
  overflow-y: auto;
}

.mega-panel {
  display: none;
  animation: panelIn 0.25s var(--ease-out);
}
.mega-panel.active { display: flex; flex-wrap: wrap; gap: 16px; }
.mega-panel .panel-head { flex: 0 0 100%; }
.mega-panel .subcat-grid { flex: 1; min-width: 0; order: 0; }
.mega-panel .mega-img-carousel { order: 1; align-self: center; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(6px); }
  to { opacity: 1; transform: translateX(0); }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.panel-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}

.panel-all {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.panel-all:hover { color: var(--red); }
.panel-all svg { width: 12px; height: 12px; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 6px;
  max-width: 75%;
}

.subcat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 3px 0;
  transition: all 0.25s var(--ease);
}

.subcat-link::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
}

.subcat-link:hover { color: var(--black); padding-left: 4px; }
.subcat-link:hover::before { transform: scale(1); opacity: 1; animation: pulse 2s ease-out infinite; }

.subcat-badge {
  font-size: 11px;
  color: var(--gray-400);
  margin-left: auto;
  flex-shrink: 0;
}

.subcat-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── MEGA PANEL IMAGE CAROUSEL ─────────────────────────── */

.mega-img-carousel {
  width: 364px;
  min-width: 364px;
  height: 364px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.mega-img-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mega-img-carousel img.active {
  opacity: 1;
}

/* ─── QUICK BAR (bottom) ─────────────────────────────────── */

.mega-quick {
  background: var(--black);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.quick-link:hover { color: var(--white); }
.quick-link svg { width: 13px; height: 13px; }

.quick-stats {
  display: flex;
  align-items: center;
  gap: 18px;
}
.quick-stat {
  font-size: 12px;
  color: #000;
}
.quick-stat strong { color: var(--red); font-weight: 700; }

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  padding-top: 72px;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #D1D1D1;
}

.mosaic-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  will-change: transform;
}

.mosaic-row:nth-child(odd) { animation: scrollLeft 60s linear infinite; }
.mosaic-row:nth-child(even) { animation: scrollRight 55s linear infinite; }
.mosaic-row:nth-child(1) { animation-duration: 65s; }
.mosaic-row:nth-child(2) { animation-duration: 55s; }
.mosaic-row:nth-child(3) { animation-duration: 70s; }
.mosaic-row:nth-child(4) { animation-duration: 50s; }
.mosaic-row:nth-child(5) { animation-duration: 60s; }
.mosaic-row:nth-child(6) { animation-duration: 45s; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mosaic-tile {
  flex-shrink: 0;
  width: 180px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--off-white);
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.80) 60%, rgba(0,0,0,0.50) 100%);
  border-radius: var(--radius-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease-out) forwards;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
}

.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s var(--ease-out) forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 18px);
  color: #ffffff;
  letter-spacing: 0.08em;
  margin: -16px auto 32px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.82s var(--ease-out) forwards;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s 1.05s var(--ease-out) forwards;
}

.search-bar {
  width: 100%;
  padding: 20px 28px 20px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(255,255,255,1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #000;
  outline: none;
  transition: all 0.4s var(--ease);
}

.search-bar::placeholder { color: #555; }

.search-bar:focus {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 6px rgba(255,0,0,0.12), 0 8px 32px rgba(0,0,0,0.3);
  transform: scale(1.01);
}

.search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.search-bar:focus ~ .search-icon { color: var(--red); }

.search-hint {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: fadeUp 0.9s 1.2s var(--ease-out) forwards;
}

.search-hint a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 600;
}

.search-hint a:hover {
  color: var(--white);
  border-color: var(--gray-300);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.5s var(--ease-out) forwards;
}

.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTION UTILITY ────────────────────────────────────── */

.section { padding: 40px 48px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before, .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-size: 17px;
  color: #000;
  max-width: 540px;
  margin: 20px auto 0;
  line-height: 1.65;
}

/* (Trust ticker BNP/Accor/Orange SUPPRIMÉ sur demande) */

/* ─── CLIENT LOGOS (ILS NOUS FONT CONFIANCE) ──────────────── */

.trust-logos-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

.trust-logos-title {
    font-size: clamp(20px, 3vw, 28px);
    color: #000000;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    gap: 60px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.trust-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.trust-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-logo span {
    display: none;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── CATEGORIES ─────────────────────────────────────────── */

.categories-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: none;
  background-size: cover;
  background-position: center;
}
.cat-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.1));
  pointer-events: none;
}


.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.cat-card:hover::after { opacity: 0.7; }

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.5s var(--ease-out);
}

.cat-card:hover .cat-card-content { transform: translateY(0); }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out) 0.05s;
}

.cat-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.cat-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #FF6666;
  letter-spacing: 0.02em;
}

.cat-arrow {
  display: inline-flex;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* Category backgrounds */
.cat-evenementiel .cat-card-bg { background: linear-gradient(135deg, #0f0f1a, #1a2040); }
.cat-textile .cat-card-bg { background: linear-gradient(135deg, #1B1B2F, #162447); }
.cat-bagagerie .cat-card-bg { background: linear-gradient(135deg, #2A1A10, #4A3020); }
.cat-sport .cat-card-bg { background: linear-gradient(150deg, #0A0A0A 40%, #FF0000 150%); }
.cat-bureau .cat-card-bg { background: linear-gradient(135deg, #1a1a1a, #333); }
.cat-ete .cat-card-bg { background: linear-gradient(135deg, #8B5E34, #C8873E); }
.cat-portecles .cat-card-bg { background: linear-gradient(135deg, #222, #444); }
.cat-parapluies .cat-card-bg { background: linear-gradient(135deg, #0f2027, #2C5364); }
.cat-food .cat-card-bg { background: linear-gradient(135deg, #3E1F1F, #6B3A3A); }

/* ─── PRODUCTS ───────────────────────────────────────────── */

.products-section { background: var(--off-white); padding-bottom: 30px; }

.products-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  text-decoration: none;
  color: var(--black);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.product-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}


.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 2;
}

.product-badge.eco { background: #1a7a3a; }
.product-badge.best { background: var(--black); }

.product-quick-view {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  padding: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
  z-index: 2;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-ref {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-price {
  display: none;
}

.product-price strong {
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
}

.product-price-display {
  font-size: 15px;
  font-weight: 700;
  color: #FF0000;
  margin: 8px 0;
}

.product-cta-arrow {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #FF0000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  color: white;
  font-weight: 600;
  font-size: 12px;
}

.product-card:hover .product-cta-arrow {
  background: #D60000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────── */

.process-section { background: var(--white); padding-top: 20px !important; padding-bottom: 20px !important; }

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 15%, var(--gray-200) 85%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gray-300);
  transition: all 0.5s var(--ease);
  position: relative;
}

.process-step:hover .process-number {
  border-color: var(--gray-300);
  color: var(--red);
  transform: none;
  box-shadow: 0 0 0 8px var(--red-glow);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #000;
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── STATS / COUNTERS ───────────────────────────────────── */

.stats-section {
  background: var(--black);
  padding: 80px 48px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-value { color: var(--red); }

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */

.testimonials-section { background: var(--off-white); margin-bottom: -10px; padding-top: 20px !important; padding-bottom: 20px !important; }

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  width: 16px; height: 16px;
  color: #FFB800;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--gray-400);
}

/* ─── (reassurance fusionné dans guarantees) ────────────── */

/* ─── CTA BANNER ─────────────────────────────────────────── */

.cta-banner {
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  margin-top: -10px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  border-radius: 50%;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  position: relative;
}

.cta-banner h2 em { font-style: italic; color: var(--red); }

.cta-banner p {
  font-size: 18px;
  color: #000;
  max-width: 500px;
  margin: 0 auto 48px;
  position: relative;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), #A00);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,0,0,0.35);
}

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--gray-300);
  transition: all 0.35s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 96px 48px 48px;
  position: relative;
}

.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  grid-column: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.80s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.88s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.96s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 1.04s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 1.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(16) { transition-delay: 1.20s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(n+17) { transition-delay: 1.28s; opacity: 1; transform: translateY(0); }

/* ─── ACCESSIBILITY: REDUCED MOTION ──────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .mosaic-row { animation: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .mega-inner { grid-template-columns: 1fr; }
  .mega-tabs {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 12px;
    gap: 2px;
    scrollbar-width: none;
  }
  .mega-tabs::-webkit-scrollbar { display: none; }
  .mega-tab {
    flex: 0 0 auto;
    padding: 6px 12px;
    white-space: nowrap;
  }
  .mega-tab::before { display: none; }
  .mega-tab-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
  .mega-tab-count { display: none; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-content { padding: 16px 20px; }
  .mega-quick { flex-direction: column; gap: 10px; padding: 12px 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .header-inner { padding: 0 20px; }
  .nav-main {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    z-index: 1001;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .nav-main.mobile-open { right: 0; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-catalogue { font-size: 18px; padding: 12px 0; width: 100%; }
  .nav-search { width: 100%; margin-bottom: 16px; }
  .nav-search input { width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-top: 16px; display: block; }
  .mega-menu { top: 0; height: 100vh; z-index: 1003; }
  .mega-overlay { top: 0; z-index: 1000; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { padding-top: 24px; }
  .cta-buttons { flex-direction: column; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .mosaic-tile { width: 120px !important; height: 90px !important; }
  .hero { min-height: 100svh; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
}

/* ─── TRUST BADGES BAR ────────────────────────────────────── */

.trust-badges-bar {
  width: 100%;
  background: var(--gray-100);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 0 1 160px;
  transition: none;
}

.trust-badge svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-badges-bar {
    padding: 24px 20px;
    gap: 20px;
  }
  .trust-badge {
    flex: 0 1 120px;
  }
  .trust-badge svg {
    width: 24px;
    height: 24px;
  }
  .trust-badge-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .trust-badges-bar {
    padding: 16px 12px;
    gap: 12px;
  }
  .trust-badge {
    flex: 0 1 100px;
  }
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--red); }

.logo small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-catalogue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
}

.nav-catalogue:hover { color: var(--red); }
.nav-catalogue.active { color: var(--red); }

.nav-catalogue svg {
  transition: transform 0.3s var(--ease);
}
.nav-catalogue.active svg { transform: rotate(180deg); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  flex: 2;
  max-width: 2160px;
  transition: all 0.3s var(--ease);
}

.nav-search:focus-within {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: none;
}

.nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  width: 100%;
  padding: 0;
}

.nav-search input::placeholder {
  color: var(--gray-400);
}

/* ─── FOCUS VISIBLE (WCAG AA) ─────────────────── */
*:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ─── MEGA MENU OVERLAY ──────────────────────────────────── */

.mega-overlay {
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.mega-overlay.active { opacity: 1; visibility: visible; }

/* ─── MEGA MENU ──────────────────────────────────────────── */

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 100%;
  max-width: 1200px;
  background: var(--white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 165px 1fr;
  max-height: calc(100vh - 72px - 52px);
  padding-right: 16px;
}

/* ─── LEFT TABS ──────────────────────────────────────────── */

.mega-tabs {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 6px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.mega-tab::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s var(--ease-out);
}

.mega-tab:hover { background: var(--white); }
.mega-tab:hover::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }
.mega-tab.active { background: var(--white); }
.mega-tab.active::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }

.mega-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.mega-tab.active .mega-tab-icon { background: var(--red); }
.mega-tab.active .mega-tab-icon span { filter: grayscale(1) brightness(10); }

.mega-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  flex: 1;
}
.mega-tab.active .mega-tab-label { color: var(--red); }

.mega-tab-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ─── RIGHT PANELS ───────────────────────────────────────── */

.mega-content {
  padding: 8px 12px;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mega-panel {
  display: none;
  animation: panelIn 0.25s var(--ease-out);
  flex: 1;
  min-width: 0;
  align-self: flex-start;
}
.mega-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(6px); }
  to { opacity: 1; transform: translateX(0); }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-100);
}

.panel-name {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.panel-all {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.panel-all:hover { color: var(--red); }
.panel-all svg { width: 12px; height: 12px; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75px 1.5px;
}

.subcat-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 8px;
  transition: all 0.25s var(--ease);
}

.subcat-link::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
}

.subcat-link:hover { color: var(--black); padding-left: 4px; }
.subcat-link:hover::before { transform: scale(1); opacity: 1; animation: pulse 2s ease-out infinite; }

.subcat-badge {
  font-size: 11px;
  color: var(--gray-400);
  margin-left: auto;
  flex-shrink: 0;
}

.subcat-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── MEGA PANEL LIFESTYLE IMAGE ────────────────────────── */

.panel-image {
  float: right;
  width: 120px;
  height: 120px;
  margin-left: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* ─── MINI CAROUSEL (RIGHT SIDE) ─────────────────────────── */

.mega-img-carousel {
  width: 473px;
  min-width: 473px;
  height: 473px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.mega-img-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.mega-img-carousel img.active {
  opacity: 1;
}

.mega-img-carousel a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-stat {
  font-size: 12px;
  color: #000;
}
.quick-stat strong { color: var(--red); font-weight: 700; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .mega-inner { grid-template-columns: 1fr; }
  .mega-tabs {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 12px;
    gap: 2px;
    scrollbar-width: none;
  }
  .mega-tabs::-webkit-scrollbar { display: none; }
  .mega-tab {
    flex: 0 0 auto;
    padding: 6px 12px;
    white-space: nowrap;
  }
  .mega-tab::before { display: none; }
  .mega-tab-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
  .mega-tab-count { display: none; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-content { padding: 16px 20px; }
}

@media (max-width: 768px) {
  .mega-content { overflow-y: auto; max-height: calc(100vh - 140px); }
  .header-inner { padding: 0 20px; }
  .nav-main {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    z-index: 1001;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .nav-main.mobile-open { right: 0; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-catalogue { font-size: 18px; padding: 12px 0; width: 100%; }
  .nav-search { width: 100%; margin-bottom: 16px; }
  .nav-search input { width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-top: 16px; display: block; }
  .mega-menu { top: 0; height: 100vh; z-index: 1003; }
  .mega-overlay { top: 0; z-index: 1000; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 96px 48px 48px;
  position: relative;
}

.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  grid-column: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

/* ─── TRUST BADGES ──────────────────────────────────────── */

.footer-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  max-width: 100px;
  line-height: 1.3;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── BACK TO TOP BUTTON ───────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #D60000;
  transform: translateY(-2px);
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1440px) {
  .footer-grid { grid-template-columns: repeat(6, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-trust-badges { gap: 32px; }
}

@media (max-width: 768px) {
  .footer { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { padding-top: 24px; }
  .footer-trust-badges { gap: 24px; margin-bottom: 32px; padding-bottom: 32px; }
  .trust-badge-icon { width: 28px; height: 28px; }
  .trust-badge-text { font-size: 11px; }
}

@media (max-width: 480px) {
  .footer { padding: 48px 16px 48px; }
  .footer-grid { gap: 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 12px; margin-bottom: 6px; }
  .footer-trust-badges { gap: 16px; margin-bottom: 24px; padding-bottom: 24px; }
  .trust-badge { gap: 6px; }
  .trust-badge-icon { width: 24px; height: 24px; }
  .trust-badge-text { font-size: 10px; }
}

/* Pulsing animation for call-to-action elements */
@keyframes pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}


.subcat-link[data-img]:hover { color: var(--red, #e53935); }
.subcat-link { transition: color 0.2s; }

/* Footer links: pulsing red dot on hover */
.footer-col a { position: relative; padding-left: 0; transition: padding-left 0.3s var(--ease), color 0.2s; }
.footer-col a::before { content:''; position:absolute; left:0; top:50%; width:6px; height:6px; background:var(--red); border-radius:50%; transform:translateY(-50%) scale(0); opacity:0; transition: transform 0.3s var(--ease), opacity 0.3s; }
.footer-col a:hover { padding-left: 14px; }
.footer-col a:hover::before { transform:translateY(-50%) scale(1); opacity:1; animation:pulse 2s ease-out infinite; }
>
/* ═══════════════════════════════════════════════════════════
   YOURCHOICEFRANCE.FR - V2 COMPLETE
   Design: Shop × Apple - Black / White / #FF0000
   Mega Menu V2, Product Images, 4h Devis
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --gray-50: #FAFAFA;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-300: #D1D1D1;
  --gray-400: #9A9A9A;
  --gray-500: #6E6E6E;
  --gray-600: #4A4A4A;
  --red: #FF0000;
  --red-dark: #D60000;
  --red-glow: rgba(255, 0, 0, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--red); }

.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-catalogue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-catalogue:hover { color: var(--black); background: var(--gray-100); }
.nav-catalogue.active { color: var(--black); background: var(--gray-100); }

.nav-catalogue svg {
  transition: transform 0.3s var(--ease);
}
.nav-catalogue.active svg { transform: rotate(180deg); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  flex: 2;
  max-width: 840px;
  transition: all 0.3s var(--ease);
}

.nav-search:focus-within {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: none;
}

.nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  width: 100%;
  padding: 0;
}

.nav-search input::placeholder {
  color: var(--gray-400);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MEGA MENU OVERLAY ──────────────────────────────────── */

.mega-overlay {
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.mega-overlay.active { opacity: 1; visibility: visible; }

/* ─── MEGA MENU ──────────────────────────────────────────── */

.mega-menu {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  max-height: calc(100vh - 72px - 52px);
}

/* ─── LEFT TABS ──────────────────────────────────────────── */

.mega-tabs {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 6px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.mega-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--red);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.2s var(--ease-out);
}

.mega-tab:hover { background: var(--white); }
.mega-tab:hover::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }
.mega-tab.active { background: var(--white); }
.mega-tab.active::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }

.mega-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.mega-tab.active .mega-tab-icon { background: var(--red); }
.mega-tab.active .mega-tab-icon span { filter: grayscale(1) brightness(10); }

.mega-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  flex: 1;
}
.mega-tab.active .mega-tab-label { color: var(--red); }

.mega-tab-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ─── RIGHT PANELS ───────────────────────────────────────── */

.mega-content {
  padding: 8px 12px;
  overflow-y: auto;
}

.mega-panel {
  display: none;
  animation: panelIn 0.25s var(--ease-out);
}
.mega-panel.active { display: flex; flex-wrap: wrap; gap: 16px; }
.mega-panel .panel-head { flex: 0 0 100%; }
.mega-panel .subcat-grid { flex: 1; min-width: 0; order: 0; }
.mega-panel .mega-img-carousel { order: 1; align-self: center; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(6px); }
  to { opacity: 1; transform: translateX(0); }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.panel-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}

.panel-all {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.panel-all:hover { color: var(--red); }
.panel-all svg { width: 12px; height: 12px; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 6px;
  max-width: 75%;
}

.subcat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 3px 0;
  transition: all 0.25s var(--ease);
}

.subcat-link::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
}

.subcat-link:hover { color: var(--black); padding-left: 4px; }
.subcat-link:hover::before { transform: scale(1); opacity: 1; animation: pulse 2s ease-out infinite; }

.subcat-badge {
  font-size: 11px;
  color: var(--gray-400);
  margin-left: auto;
  flex-shrink: 0;
}

.subcat-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── MEGA PANEL IMAGE CAROUSEL ─────────────────────────── */

.mega-img-carousel {
  width: 364px;
  min-width: 364px;
  height: 364px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.mega-img-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mega-img-carousel img.active {
  opacity: 1;
}

/* ─── QUICK BAR (bottom) ─────────────────────────────────── */

.mega-quick {
  background: var(--black);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.quick-link:hover { color: var(--white); }
.quick-link svg { width: 13px; height: 13px; }

.quick-stats {
  display: flex;
  align-items: center;
  gap: 18px;
}
.quick-stat {
  font-size: 12px;
  color: #000;
}
.quick-stat strong { color: var(--red); font-weight: 700; }

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  padding-top: 72px;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #D1D1D1;
}

.mosaic-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  will-change: transform;
}

.mosaic-row:nth-child(odd) { animation: scrollLeft 60s linear infinite; }
.mosaic-row:nth-child(even) { animation: scrollRight 55s linear infinite; }
.mosaic-row:nth-child(1) { animation-duration: 65s; }
.mosaic-row:nth-child(2) { animation-duration: 55s; }
.mosaic-row:nth-child(3) { animation-duration: 70s; }
.mosaic-row:nth-child(4) { animation-duration: 50s; }
.mosaic-row:nth-child(5) { animation-duration: 60s; }
.mosaic-row:nth-child(6) { animation-duration: 45s; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mosaic-tile {
  flex-shrink: 0;
  width: 180px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--off-white);
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.80) 60%, rgba(0,0,0,0.50) 100%);
  border-radius: var(--radius-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease-out) forwards;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
}

.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s var(--ease-out) forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 18px);
  color: #ffffff;
  letter-spacing: 0.08em;
  margin: -16px auto 32px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.82s var(--ease-out) forwards;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s 1.05s var(--ease-out) forwards;
}

.search-bar {
  width: 100%;
  padding: 20px 28px 20px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(255,255,255,1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #000;
  outline: none;
  transition: all 0.4s var(--ease);
}

.search-bar::placeholder { color: #555; }

.search-bar:focus {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 6px rgba(255,0,0,0.12), 0 8px 32px rgba(0,0,0,0.3);
  transform: scale(1.01);
}

.search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.search-bar:focus ~ .search-icon { color: var(--red); }

.search-hint {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: fadeUp 0.9s 1.2s var(--ease-out) forwards;
}

.search-hint a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 600;
}

.search-hint a:hover {
  color: var(--white);
  border-color: var(--gray-300);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.5s var(--ease-out) forwards;
}

.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTION UTILITY ────────────────────────────────────── */

.section { padding: 40px 48px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before, .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-size: 17px;
  color: #000;
  max-width: 540px;
  margin: 20px auto 0;
  line-height: 1.65;
}

/* (Trust ticker BNP/Accor/Orange SUPPRIMÉ sur demande) */

/* ─── CLIENT LOGOS (ILS NOUS FONT CONFIANCE) ──────────────── */

.trust-logos-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

.trust-logos-title {
    font-size: clamp(20px, 3vw, 28px);
    color: #000000;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    gap: 60px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.trust-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.trust-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-logo span {
    display: none;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── CATEGORIES ─────────────────────────────────────────── */

.categories-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: none;
  background-size: cover;
  background-position: center;
}
.cat-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.1));
  pointer-events: none;
}


.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.cat-card:hover::after { opacity: 0.7; }

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.5s var(--ease-out);
}

.cat-card:hover .cat-card-content { transform: translateY(0); }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out) 0.05s;
}

.cat-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.cat-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #FF6666;
  letter-spacing: 0.02em;
}

.cat-arrow {
  display: inline-flex;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* Category backgrounds */
.cat-evenementiel .cat-card-bg { background: linear-gradient(135deg, #0f0f1a, #1a2040); }
.cat-textile .cat-card-bg { background: linear-gradient(135deg, #1B1B2F, #162447); }
.cat-bagagerie .cat-card-bg { background: linear-gradient(135deg, #2A1A10, #4A3020); }
.cat-sport .cat-card-bg { background: linear-gradient(150deg, #0A0A0A 40%, #FF0000 150%); }
.cat-bureau .cat-card-bg { background: linear-gradient(135deg, #1a1a1a, #333); }
.cat-ete .cat-card-bg { background: linear-gradient(135deg, #8B5E34, #C8873E); }
.cat-portecles .cat-card-bg { background: linear-gradient(135deg, #222, #444); }
.cat-parapluies .cat-card-bg { background: linear-gradient(135deg, #0f2027, #2C5364); }
.cat-food .cat-card-bg { background: linear-gradient(135deg, #3E1F1F, #6B3A3A); }

/* ─── PRODUCTS ───────────────────────────────────────────── */

.products-section { background: var(--off-white); padding-bottom: 30px; }

.products-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  text-decoration: none;
  color: var(--black);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.product-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}


.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 2;
}

.product-badge.eco { background: #1a7a3a; }
.product-badge.best { background: var(--black); }

.product-quick-view {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  padding: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
  z-index: 2;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-ref {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-price {
  display: none;
}

.product-price strong {
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
}

.product-price-display {
  font-size: 15px;
  font-weight: 700;
  color: #FF0000;
  margin: 8px 0;
}

.product-cta-arrow {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #FF0000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  color: white;
  font-weight: 600;
  font-size: 12px;
}

.product-card:hover .product-cta-arrow {
  background: #D60000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────── */

.process-section { background: var(--white); padding-top: 20px !important; padding-bottom: 20px !important; }

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 15%, var(--gray-200) 85%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gray-300);
  transition: all 0.5s var(--ease);
  position: relative;
}

.process-step:hover .process-number {
  border-color: var(--gray-300);
  color: var(--red);
  transform: none;
  box-shadow: 0 0 0 8px var(--red-glow);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #000;
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── STATS / COUNTERS ───────────────────────────────────── */

.stats-section {
  background: var(--black);
  padding: 80px 48px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-value { color: var(--red); }

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */

.testimonials-section { background: var(--off-white); margin-bottom: -10px; padding-top: 20px !important; padding-bottom: 20px !important; }

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  width: 16px; height: 16px;
  color: #FFB800;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--gray-400);
}

/* ─── (reassurance fusionné dans guarantees) ────────────── */

/* ─── CTA BANNER ─────────────────────────────────────────── */

.cta-banner {
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  margin-top: -10px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  border-radius: 50%;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  position: relative;
}

.cta-banner h2 em { font-style: italic; color: var(--red); }

.cta-banner p {
  font-size: 18px;
  color: #000;
  max-width: 500px;
  margin: 0 auto 48px;
  position: relative;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), #A00);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,0,0,0.35);
}

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--gray-300);
  transition: all 0.35s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 96px 48px 48px;
  position: relative;
}

.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  grid-column: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.80s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.88s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.96s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 1.04s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 1.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(16) { transition-delay: 1.20s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(n+17) { transition-delay: 1.28s; opacity: 1; transform: translateY(0); }

/* ─── ACCESSIBILITY: REDUCED MOTION ──────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .mosaic-row { animation: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .mega-inner { grid-template-columns: 1fr; }
  .mega-tabs {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 12px;
    gap: 2px;
    scrollbar-width: none;
  }
  .mega-tabs::-webkit-scrollbar { display: none; }
  .mega-tab {
    flex: 0 0 auto;
    padding: 6px 12px;
    white-space: nowrap;
  }
  .mega-tab::before { display: none; }
  .mega-tab-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
  .mega-tab-count { display: none; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-content { padding: 16px 20px; }
  .mega-quick { flex-direction: column; gap: 10px; padding: 12px 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .header-inner { padding: 0 20px; }
  .nav-main {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    z-index: 1001;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .nav-main.mobile-open { right: 0; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-catalogue { font-size: 18px; padding: 12px 0; width: 100%; }
  .nav-search { width: 100%; margin-bottom: 16px; }
  .nav-search input { width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-top: 16px; display: block; }
  .mega-menu { top: 0; height: 100vh; z-index: 1003; }
  .mega-overlay { top: 0; z-index: 1000; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { padding-top: 24px; }
  .cta-buttons { flex-direction: column; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .mosaic-tile { width: 120px !important; height: 90px !important; }
  .hero { min-height: 100svh; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
}

/* ─── TRUST BADGES BAR ────────────────────────────────────── */

.trust-badges-bar {
  width: 100%;
  background: var(--gray-100);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 0 1 160px;
  transition: none;
}

.trust-badge svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-badges-bar {
    padding: 24px 20px;
    gap: 20px;
  }
  .trust-badge {
    flex: 0 1 120px;
  }
  .trust-badge svg {
    width: 24px;
    height: 24px;
  }
  .trust-badge-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .trust-badges-bar {
    padding: 16px 12px;
    gap: 12px;
  }
  .trust-badge {
    flex: 0 1 100px;
  }
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--red); }

.logo small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-catalogue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
}

.nav-catalogue:hover { color: var(--red); }
.nav-catalogue.active { color: var(--red); }

.nav-catalogue svg {
  transition: transform 0.3s var(--ease);
}
.nav-catalogue.active svg { transform: rotate(180deg); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  flex: 2;
  max-width: 2160px;
  transition: all 0.3s var(--ease);
}

.nav-search:focus-within {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: none;
}

.nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  width: 100%;
  padding: 0;
}

.nav-search input::placeholder {
  color: var(--gray-400);
}

/* ─── FOCUS VISIBLE (WCAG AA) ─────────────────── */
*:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ─── MEGA MENU OVERLAY ──────────────────────────────────── */

.mega-overlay {
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.mega-overlay.active { opacity: 1; visibility: visible; }

/* ─── MEGA MENU ──────────────────────────────────────────── */

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 100%;
  max-width: 1200px;
  background: var(--white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 165px 1fr;
  max-height: calc(100vh - 72px - 52px);
  padding-right: 16px;
}

/* ─── LEFT TABS ──────────────────────────────────────────── */

.mega-tabs {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 6px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.mega-tab::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s var(--ease-out);
}

.mega-tab:hover { background: var(--white); }
.mega-tab:hover::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }
.mega-tab.active { background: var(--white); }
.mega-tab.active::before { transform: translateY(-50%) scale(1); animation: pulse 2s ease-out infinite; }

.mega-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.mega-tab.active .mega-tab-icon { background: var(--red); }
.mega-tab.active .mega-tab-icon span { filter: grayscale(1) brightness(10); }

.mega-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  flex: 1;
}
.mega-tab.active .mega-tab-label { color: var(--red); }

.mega-tab-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ─── RIGHT PANELS ───────────────────────────────────────── */

.mega-content {
  padding: 8px 12px;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mega-panel {
  display: none;
  animation: panelIn 0.25s var(--ease-out);
  flex: 1;
  min-width: 0;
  align-self: flex-start;
}
.mega-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(6px); }
  to { opacity: 1; transform: translateX(0); }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-100);
}

.panel-name {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.panel-all {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.panel-all:hover { color: var(--red); }
.panel-all svg { width: 12px; height: 12px; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75px 1.5px;
}

.subcat-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 8px;
  transition: all 0.25s var(--ease);
}

.subcat-link::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
}

.subcat-link:hover { color: var(--black); padding-left: 4px; }
.subcat-link:hover::before { transform: scale(1); opacity: 1; animation: pulse 2s ease-out infinite; }

.subcat-badge {
  font-size: 11px;
  color: var(--gray-400);
  margin-left: auto;
  flex-shrink: 0;
}

.subcat-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── MEGA PANEL LIFESTYLE IMAGE ────────────────────────── */

.panel-image {
  float: right;
  width: 120px;
  height: 120px;
  margin-left: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* ─── MINI CAROUSEL (RIGHT SIDE) ─────────────────────────── */

.mega-img-carousel {
  width: 473px;
  min-width: 473px;
  height: 473px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.mega-img-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.mega-img-carousel img.active {
  opacity: 1;
}

.mega-img-carousel a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-stat {
  font-size: 12px;
  color: #000;
}
.quick-stat strong { color: var(--red); font-weight: 700; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .mega-inner { grid-template-columns: 1fr; }
  .mega-tabs {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 12px;
    gap: 2px;
    scrollbar-width: none;
  }
  .mega-tabs::-webkit-scrollbar { display: none; }
  .mega-tab {
    flex: 0 0 auto;
    padding: 6px 12px;
    white-space: nowrap;
  }
  .mega-tab::before { display: none; }
  .mega-tab-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
  .mega-tab-count { display: none; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-content { padding: 16px 20px; }
}

@media (max-width: 768px) {
  .mega-content { overflow-y: auto; max-height: calc(100vh - 140px); }
  .header-inner { padding: 0 20px; }
  .nav-main {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    z-index: 1001;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .nav-main.mobile-open { right: 0; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-catalogue { font-size: 18px; padding: 12px 0; width: 100%; }
  .nav-search { width: 100%; margin-bottom: 16px; }
  .nav-search input { width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-top: 16px; display: block; }
  .mega-menu { top: 0; height: 100vh; z-index: 1003; }
  .mega-overlay { top: 0; z-index: 1000; }
  .subcat-grid, .subcat-grid.compact { grid-template-columns: 1fr; }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 96px 48px 48px;
  position: relative;
}

.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  grid-column: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

/* ─── TRUST BADGES ──────────────────────────────────────── */

.footer-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  max-width: 100px;
  line-height: 1.3;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── BACK TO TOP BUTTON ───────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #D60000;
  transform: translateY(-2px);
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1440px) {
  .footer-grid { grid-template-columns: repeat(6, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-trust-badges { gap: 32px; }
}

@media (max-width: 768px) {
  .footer { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { padding-top: 24px; }
  .footer-trust-badges { gap: 24px; margin-bottom: 32px; padding-bottom: 32px; }
  .trust-badge-icon { width: 28px; height: 28px; }
  .trust-badge-text { font-size: 11px; }
}

@media (max-width: 480px) {
  .footer { padding: 48px 16px 48px; }
  .footer-grid { gap: 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 12px; margin-bottom: 6px; }
  .footer-trust-badges { gap: 16px; margin-bottom: 24px; padding-bottom: 24px; }
  .trust-badge { gap: 6px; }
  .trust-badge-icon { width: 24px; height: 24px; }
  .trust-badge-text { font-size: 10px; }
}

/* Pulsing animation for call-to-action elements */
@keyframes pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}


.subcat-link[data-img]:hover { color: var(--red, #e53935); }
.subcat-link { transition: color 0.2s; }

/* Footer links: pulsing red dot on hover */
.footer-col a { position: relative; padding-left: 0; transition: padding-left 0.3s var(--ease), color 0.2s; }
.footer-col a::before { content:''; position:absolute; left:0; top:50%; width:6px; height:6px; background:var(--red); border-radius:50%; transform:translateY(-50%) scale(0); opacity:0; transition: transform 0.3s var(--ease), opacity 0.3s; }
.footer-col a:hover { padding-left: 14px; }
.footer-col a:hover::before { transform:translateY(-50%) scale(1); opacity:1; animation:pulse 2s ease-out infinite; }

/* ===== PRODUCT DETAIL PAGE STYLES (restored from backup) ===== */

/* ═══ CAROUSEL ═══ */
.carousel { position: sticky; top: 104px; }

.carousel-layout { display: flex; gap: 12px; }

.carousel-thumbs-col { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; justify-content: center; }

.carousel-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.3s var(--ease); opacity: 0.5; }

.carousel-thumb:hover { opacity: 0.8; }

.carousel-thumb.active { border-color: var(--gray-300); opacity: 1; }

.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }

.carousel-main { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--gray-50); cursor: pointer; flex: 1; min-width: 0; }

.carousel-main img { width: 100%; display: block; opacity: 0; height: 0; overflow: hidden; transition: opacity 0.5s var(--ease-out); }

.carousel-main img.active { opacity: 1; height: auto; }

.carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s var(--ease); opacity: 0; color: var(--black); }

.carousel-main:hover .carousel-nav-btn { opacity: 1; }

.carousel-nav-btn:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.carousel-prev { left: 12px; }

.carousel-click-zone { position: absolute; inset: 0; z-index: 5; cursor: pointer; }

.carousel-zoom-hint { z-index: 6; }

.carousel-next { right: 12px; }

.carousel-zoom-hint { position: absolute; bottom: 12px; right: 14px; font-size: 11px; color: rgba(0,0,0,0.4); background: rgba(255,255,255,0.7); padding: 4px 10px; border-radius: 20px; opacity: 0; transition: opacity 0.3s; pointer-events: none; }

.carousel-main:hover .carousel-zoom-hint { opacity: 1; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb { max-width: 1440px; margin: 0 auto; padding: 96px 48px 0; }

.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: var(--gray-400); flex-wrap: wrap; }

.breadcrumb-list a { color: #000; transition: color 0.2s; }

.breadcrumb-list a:hover { color: var(--red); }

.breadcrumb-sep { color: var(--gray-300); }

.breadcrumb-current { color: var(--gray-600); font-weight: 500; }

/* ═══ PRODUCT TOP ═══ */
.product-top { max-width: 1440px; margin: 0 auto; padding: 32px 48px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.product-top .product-info { text-align: left; padding: 0; }

.product-ref-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

.product-ref-badge .dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

.product-ref-badge .stock { color: var(--green); text-transform: none; letter-spacing: 0; font-weight: 500; }

.product-title { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }

.product-title em { font-style: italic; color: var(--red); }

.product-short-desc { font-size: 16px; color: #000; line-height: 1.65; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); text-align: left; }

/* Specs */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }

.spec-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--gray-100); }

.spec-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--white); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }

.spec-text label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); font-weight: 600; display: block; }

.spec-text span { font-size: 14px; font-weight: 600; color: var(--black); }

/* Pricing */
.pricing-section { margin-bottom: 36px; }

.pricing-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

.pricing-label::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }

.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }

.pricing-table thead th { background: var(--black); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 10px 12px; text-align: center; }

.pricing-table thead th:first-child { text-align: left; }

.pricing-table tbody td { padding: 10px 12px; text-align: center; font-size: 13px; border-bottom: 1px solid var(--gray-100); font-weight: 500; }

.pricing-table tbody td:first-child { text-align: left; font-size: 12px; color: #000; }

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:hover { background: var(--gray-50); }

.price-best { color: var(--red); font-weight: 700; }

.price-na { color: var(--gray-300); font-weight: 400; }

.pricing-note { font-size: 12px; color: var(--gray-400); margin-top: 10px; line-height: 1.55; }

.pricing-note strong { color: var(--gray-600); }

/* USB Devis Block */
.usb-devis-block { background: linear-gradient(135deg, #f8f4f0 0%, #f3ede8 100%); border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px; text-align: center; margin: 12px 0; }

.usb-devis-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.usb-devis-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #000; margin: 0; }

.usb-devis-text { font-size: 24px; font-weight: 700; color: var(--red); margin: 0; letter-spacing: -0.01em; }

/* CTA Zone */
.cta-zone { background: var(--black); border-radius: var(--radius-lg); padding: 28px 32px; text-align: center; margin-bottom: 32px; }

.cta-price-line { font-size: 16px; color: var(--white); margin-bottom: 20px; }

.cta-price-line strong { font-size: 28px; font-weight: 700; color: var(--red); font-family: var(--font-display); }

.hero-price .currency { font-size: 0.5em; vertical-align: super; }

.btn-devis { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 18px 48px; border-radius: 100px; font-family: var(--font-body); font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: all 0.4s var(--ease); width: 100%; justify-content: center; }

.btn-devis:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,0,0,0.4); }

/* Reassurance mini */
.rea-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; justify-content: center; }

.rea-mini-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--gray-100); font-size: 12px; font-weight: 600; color: var(--black); white-space: nowrap; transition: all 0.3s; }

.rea-mini-item:hover { border-color: var(--gray-200); background: var(--gray-50); }

.rea-mini-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

/* ═══ TABS ═══ */
.tabs-section { max-width: 960px; margin: 0 auto; padding: 0 48px 20px; }

.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-100); margin-bottom: 14px; }

.tab-btn { padding: 16px 32px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--gray-400); background: none; border: none; cursor: pointer; position: relative; transition: color 0.3s; }

.tab-btn:hover { color: var(--gray-600); }

.tab-btn.active { color: var(--black); }

.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.35s var(--ease-out); }

.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; }

.tab-panel.active { display: block; }

/* Gabarits Button */
.gabarit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000000;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin: 16px 0;
    transition: background 0.2s;
}

.gabarit-btn:hover {
    background: #2d5282;
}

.gabarit-note {
    font-size: 13px;
    color: #64748b;
    margin-top: 12px;
    font-style: italic;
}

/* Content */
.content-block { max-width: 900px; }

.content-block h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.2; }

.content-block h2 em { font-style: italic; color: var(--red); }

.content-block h3 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; }

.content-block p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }

.content-block strong { color: var(--black); }

/* Use cases */
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }

.use-case { padding: 28px 24px; border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: all 0.35s var(--ease); }

.use-case:hover { border-color: var(--gray-200); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.use-case-icon { font-size: 28px; margin-bottom: 14px; }

.use-case h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }

.use-case p { font-size: 13px; color: #000; line-height: 1.6; margin: 0; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 900px; }

.faq-item { border-bottom: 1px solid var(--gray-100); }

.faq-question { width: 100%; padding: 24px 0; background: none; border: none; text-align: left; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }

.faq-question:hover { color: var(--red); }

.faq-chevron { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.35s var(--ease); color: var(--gray-400); }

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }

.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: #000; line-height: 1.7; }

/* ═══ QUOTE FORM ═══ */
.quote-section { background: var(--off-white); padding: 24px 48px; }

.quote-inner { max-width: 800px; margin: 0 auto; }

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

.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 12px; }

.section-label::before, .section-label::after { content: ''; width: 24px; height: 1px; background: var(--red); opacity: 0.4; }

.quote-header h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 400; letter-spacing: -0.02em; }

.quote-header h2 em { font-style: italic; color: var(--red); }

.quote-header p { font-size: 16px; color: #000; margin-top: 14px; }

.quote-form { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 4px 32px rgba(0,0,0,0.04); border: 1px solid var(--gray-100); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-group.full { grid-column: 1 / -1; }

.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }

.form-label .req { color: var(--red); }

.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--black); outline: none; transition: all 0.3s var(--ease); }

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gray-300); background: var(--white); box-shadow: 0 0 0 4px var(--red-glow); outline: 2px solid var(--red); outline-offset: 2px; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }

.form-ref-auto { background: var(--gray-100); color: #000; cursor: default; }

.form-date { cursor: pointer; }

.form-date::-webkit-calendar-picker-indicator { cursor: pointer; filter: opacity(0.5); transition: filter 0.2s; }

.form-date::-webkit-calendar-picker-indicator:hover { filter: opacity(1); }

/* Quantities */
.qty-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.qty-chip { display: none; }

.qty-chip + label { padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--gray-200); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s; user-select: none; }

.qty-chip + label:hover { border-color: var(--gray-400); }

.qty-chip:checked + label { background: var(--red); color: var(--white); border-color: var(--gray-300); }

/* File upload */
.file-upload { position: relative; border: 2px dashed var(--gray-200); border-radius: var(--radius-md); padding: 28px; text-align: center; cursor: pointer; transition: all 0.3s; }

.file-upload:hover { border-color: var(--gray-300); background: var(--red-glow); }

.file-upload.drag-over { border-color: var(--gray-300); background: rgba(230,57,70,0.06); }

.file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }

.file-upload-text { font-size: 14px; color: #000; }

.file-upload-text strong { color: var(--red); }

.file-upload-formats { font-size: 11px; color: var(--gray-400); margin-top: 6px; }

/* RGPD */
.rgpd-check { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; }

.rgpd-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; }

.rgpd-check label { font-size: 12px; color: #000; line-height: 1.55; }

.rgpd-check label a { color: var(--red); text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; }

.btn-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--red); color: var(--white); padding: 18px; border-radius: 100px; font-family: var(--font-body); font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: all 0.4s var(--ease); }

.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,0,0,0.35); }

/* ═══ CROSS-SELL ═══ */
.cross-section { max-width: 1440px; margin: 0 auto; padding: 50px 48px; }

.cross-section .section-header { text-align: center; margin-bottom: 48px; }

.cross-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cross-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: all 0.4s var(--ease); }

.cross-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.cross-img { aspect-ratio: 4/3; overflow: hidden; }

.cross-img-inner { width: 100%; height: 100%; transition: transform 0.5s var(--ease-out); }

.cross-card:hover .cross-img-inner { transform: scale(1.06); }

.cross-info { padding: 18px 20px 22px; }

.cross-ref { font-size: 11px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

.cross-name { font-size: 14px; font-weight: 600; margin: 5px 0 10px; }

.cross-price { font-size: 13px; color: #000; }

.cross-price strong { color: var(--black); font-size: 16px; }

.ph-1 { background: linear-gradient(145deg, #E8D5C4, #C4A882); }

.ph-2 { background: linear-gradient(145deg, #D4E7ED, #A8CCE0); }

.ph-3 { background: linear-gradient(145deg, #F0ECF8, #DDD0EE); }

.ph-4 { background: linear-gradient(145deg, #E8F4E8, #CCE4CC); }

/* ─── WHATSAPP BUTTON ────────────────────────────────────── */

.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* ═══ LIGHTBOX ═══ */
.lightbox { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s var(--ease), visibility 0.3s; }

.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }

.lightbox-img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 4px; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }

.lightbox-close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: white; font-size: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; z-index: 10; }

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 10; }

.lightbox-nav:hover { background: rgba(255,255,255,0.18); }

.lightbox-prev { left: 24px; }

.lightbox-next { right: 24px; }

/* ═══ THUMB CHEVRONS ═══ */
.thumb-nav-wrapper { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }

.carousel-thumbs-col { max-height: 352px; overflow: hidden; scroll-behavior: smooth; }

.carousel-thumb { flex-shrink: 0; }

.thumb-chevron { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1px solid rgba(0,0,0,0.06); border-radius: 50%; color: var(--black, #1e293b); font-size: 14px; transition: all 0.3s; flex-shrink: 0; user-select: none; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.thumb-chevron:hover { background: var(--white, #fff); box-shadow: 0 4px 16px rgba(0,0,0,0.12); color: var(--black, #0f172a); }

.thumb-chevron svg { transition: transform 0.2s; }
/* ===== RESPONSIVE STYLES FOR PRODUCT DETAIL (restored from backup) ===== */

@media (max-width: 768px) {
  .footer { padding: 64px 20px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { padding-top: 24px; }
  .whatsapp-button { bottom: 80px; right: 16px; }
  .footer-trust-badges { gap: 24px; margin-bottom: 32px; padding-bottom: 32px; }
  .trust-badge-icon { width: 28px; height: 28px; }
  .trust-badge-text { font-size: 11px; }
}

@media (max-width: 480px) {
  .footer { padding: 48px 16px 48px; }
  .footer-grid { gap: 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 12px; margin-bottom: 6px; }
  .whatsapp-button { width: 56px; height: 56px; bottom: 76px; }
  .footer-trust-badges { gap: 16px; margin-bottom: 24px; padding-bottom: 24px; }
  .trust-badge { gap: 6px; }
  .trust-badge-icon { width: 24px; height: 24px; }
  .trust-badge-text { font-size: 10px; }
}

@media (max-width: 1024px) {
  .product-top { grid-template-columns: 1fr; gap: 40px; }
  .carousel { position: static; }
  .carousel-layout { flex-direction: column-reverse; }
  .carousel-thumbs-col { flex-direction: row; }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .breadcrumb { padding: 88px 20px 0; }
  .product-top { padding: 24px 20px 60px; }
  .tabs-section { padding: 0 20px 20px; }
  .quote-section { padding: 24px 20px; }
  .quote-form { padding: 28px 24px; }
  .cross-section { padding: 30px 20px; }
  .footer { padding: 48px 20px 32px; }
  .nav-main { display: none; }
  .nav-toggle { display: flex; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .rea-mini { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .tabs-nav { overflow-x: auto; }
  .tab-btn { white-space: nowrap; padding: 14px 20px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 1024px) { .thumb-chevron svg { transform: rotate(-90deg); } }

@media (max-width: 1024px) {
  .thumb-nav-wrapper { flex-direction: row; }
  .carousel-thumbs-col { max-height: none; max-width: calc(5 * 64px + 4 * 8px); overflow: hidden; flex-direction: row; }
  .thumb-chevron { width: 36px; height: 36px; }
}



/* ===== CATALOGUE, BLOG, SEARCH & OTHER PAGE STYLES (restored) ===== */

.cat-header { max-width: 100%; margin: 0 auto; padding: 40px 48px 0; text-align: center; }

.cat-header h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 54px); font-weight: 400; margin-bottom: 12px; color: var(--black); }

.cat-header h1 em { font-style: italic; color: var(--red); }

.cat-header p { font-size: 16px; color: var(--gray-600); margin-top: 8px; }

.category-seo-intro { font-size: 15px; color: #64748b; max-width: 900px; margin: 16px auto 0; text-align: center; line-height: 1.6; }

.cat-intro-short { font-size: 16px; color: #475569; max-width: 900px; margin: 24px auto 40px; text-align: center; line-height: 1.6; font-weight: 500; }

.cat-layout { max-width: 1440px; margin: 0 auto; padding: 20px 48px 80px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; }

.cat-sidebar { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; }

.cat-sidebar h3 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100); }

.cat-sidebar a { display: block; font-size: 13px; color: #000; padding: 5px 0; text-decoration: none; }

.cat-sidebar a:hover { color: var(--black); padding-left: 6px; }

.cat-seo-content { max-width: 900px; margin: 0 auto 2rem; padding: 0 1.5rem; }

.cat-seo-content h2 { font-size: 1.2rem; color: #000000; margin: 1.5rem 0 0.8rem; font-family: var(--font-display); font-weight: 600; }

.cat-seo-content p, .cat-seo-content li, .cat-seo-content h4 { font-size: 0.95rem; color: #475569; line-height: 1.7; }

.cat-seo-content ul { padding-left: 1.5rem; margin: 0.8rem 0; }

.cat-seo-content .use-case { margin-bottom: 1.2rem; }

.cat-seo-content .use-case h4 { font-size: 1rem; color: #000000; margin-bottom: 0.5rem; }

.cat-seo-content .use-case p { margin: 0.5rem 0; }

@media (max-width: 1024px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.cat-expand-details { max-width: 900px; margin: 40px auto; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }

.cat-expand-summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #f8f9fa;
    border: none;
    user-select: none;
    list-style: none;
}

.cat-expand-summary:hover {
    background: #f5f5f5;
}

.cat-expand-summary::-webkit-details-marker {
    display: none;
}

.expand-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.expand-chevron {
    transition: transform 0.3s ease;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.cat-expand-details[open] .expand-chevron {
    transform: rotate(180deg);
}

.cat-expand-content {
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.cat-seo-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.cat-seo-bottom p { color: #475569; line-height: 1.7; margin-bottom: 16px; }

.cat-seo-bottom h3 { font-size: 1.1rem; color: #000000; margin: 1.5rem 0 1rem; }

.seo-internal-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }

.univers-card { display: flex; flex-direction: column; gap: 6px; padding: 20px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; text-decoration: none; transition: all 0.3s; }

.univers-card:hover { background: #fff; border-color: #FF0000; box-shadow: 0 4px 12px rgba(255,0,0,0.08); transform: translateY(-2px); }

.univers-name { font-size: 15px; font-weight: 700; color: #0f172a; }

.univers-desc { font-size: 12px; color: #64748b; line-height: 1.5; }

.univers-cta { font-size: 13px; font-weight: 600; color: #FF0000; margin-top: 4px; }

@media (max-width: 768px) { .seo-internal-links { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  .nav-main { display: none; }
  .breadcrumb { padding: 88px 20px 0; }
  .cat-header { padding: 30px 20px 20px; text-align: center; }
  .cat-header h1 { font-size: clamp(28px, 5vw, 40px); }
  .cat-intro-short { margin: 16px 0 30px; padding: 0 16px; }
  .cat-layout { padding: 20px 20px 60px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer { padding: 32px 20px; }
  .cat-expand-details { margin: 40px 16px; }
  .cat-expand-summary { padding: 14px 16px; }
}

.page-content { max-width: 900px; margin: 0 auto; padding: 140px 48px 80px; }

.page-content h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 400; margin-bottom: 40px; letter-spacing: -0.02em; }

.page-content h1 em { font-style: italic; color: var(--red); }

.page-content h2 { font-size: 24px; font-weight: 600; margin: 48px 0 16px; }

.page-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }

.page-content ul { margin: 16px 0 24px 24px; }

.page-content li { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px; }

.file-upload-filename { font-size: 13px; color: var(--red); font-weight: 500; }

.form-submit { background: var(--red); color: var(--white); border: none; padding: 16px 40px; border-radius: 100px; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 12px; }

.form-submit:hover { background: var(--red-dark); }

/* Search */
.search-box { max-width: 600px; margin: 0 auto 40px; position: relative; }

.search-input { width: 100%; padding: 18px 24px 18px 52px; border: 2px solid var(--gray-200); border-radius: 100px; font-size: 17px; font-family: var(--font-body); }

.search-input:focus { border-color: var(--gray-300); outline: none; }

.search-results { margin-top: 30px; }

.search-results p { text-align: center; color: var(--gray-400); }

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  .nav-main { display: none; }
  .page-content { padding: 120px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
}

.blog-container { max-width: 1200px; margin: 0 auto; padding: 140px 48px 80px; }

.blog-header { text-align: center; margin-bottom: 80px; }

.blog-header h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 400; margin-bottom: 20px; letter-spacing: -0.02em; }

.blog-header h1 em { font-style: italic; color: var(--red); }

.blog-header p { font-size: 18px; color: #000; max-width: 600px; margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; margin-bottom: 60px; }

.blog-grid > a { transition: transform 0.3s, box-shadow 0.3s; }

.blog-grid > a:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  .nav-main { display: none; }
  .blog-container { padding: 120px 24px 60px; }
  .blog-header { margin-bottom: 48px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}
/* ─── CATALOGUE SIDEBAR CLASS ALIAS ──────────────────────── */
/* HTML uses .catalogue-sidebar but original CSS used .cat-sidebar */
.catalogue-sidebar { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; }
.catalogue-sidebar h3,
.sidebar-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100); }
.catalogue-sidebar a { display: block; font-size: 13px; color: #000; padding: 5px 0; text-decoration: none; }
.catalogue-sidebar a:hover { color: var(--black); padding-left: 6px; }
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li { margin: 0; }
.sidebar-categories li a { display: block; font-size: 13px; color: #000; padding: 5px 0; text-decoration: none; transition: padding-left 0.2s; }
.sidebar-categories li a:hover { color: var(--black); padding-left: 6px; }
.sidebar-categories li.active a { color: var(--red); font-weight: 600; }
.cat-count { font-size: 11px; color: var(--gray-400); }

/* ─── HEADER CONTACT ─────────────────────────────────────── */
.header-contact { display: flex; align-items: center; gap: 16px; font-size: 13px; }

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 10002; padding: 12px 24px; background: var(--red); color: white; font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0; }
.skip-link:focus { position: fixed; left: 0; top: 0; width: auto; height: auto; }

/* ─── RESPONSIVE: catalogue-sidebar ──────────────────────── */
@media (max-width: 1024px) {
  .catalogue-sidebar { position: static; }
}

/* ─── BLOG ARTICLE STYLES ───────────────────────────────── */
.article-container { max-width: 900px; margin: 0 auto; padding: 140px 48px 80px; }
.article-meta { display:flex; align-items:center; gap:16px; margin-bottom:32px; font-size:14px; color:var(--gray-500); }
.article-meta a { color:var(--red); text-decoration:none; font-weight:600; }
.article-meta a:hover { text-decoration:underline; }
.article-hero { width:100%; margin:40px 0 48px; border-radius:var(--radius-lg); background-color:#f8f8f8; background-position:center; background-repeat:no-repeat; background-size:contain; min-height:300px; display:flex; align-items:center; justify-content:center; }
.article-content { font-size:17px; line-height:1.85; color:var(--gray-600); }
.article-content h2 { font-family:var(--font-display); font-size:28px; font-weight:600; margin:48px 0 24px; color:var(--black); }
.article-content h3 { font-size:22px; font-weight:600; margin:32px 0 16px; color:var(--black); }
.article-content p { margin-bottom:24px; }
.article-content ul, .article-content ol { margin:20px 0 24px 32px; }
.article-content li { margin-bottom:12px; }
.article-content strong { font-weight:600; color:var(--black); }
.article-content em { font-style:italic; }
.article-content a { color:var(--red); text-decoration:underline; }
.article-content a:hover { text-decoration:none; }
.article-cta { background:var(--off-white); border-radius:var(--radius-lg); padding:48px; margin:48px 0; text-align:center; }
.article-cta h3 { font-family:var(--font-display); font-size:24px; margin:0 0 16px; }
.article-cta a { display:inline-block; background:var(--red); color:white; padding:14px 36px; border-radius:100px; text-decoration:none; font-weight:600; margin-top:16px; transition:background 0.2s; }
.article-cta a:hover { background:var(--red-dark); text-decoration:none; }
.article-footer { margin-top:80px; padding-top:48px; border-top:1px solid var(--gray-200); }
.article-footer a { display:inline-block; background:var(--red); color:white; padding:14px 36px; border-radius:100px; text-decoration:none; font-weight:600; margin-top:12px; transition:background 0.2s; }
.article-footer a:hover { background:var(--red-dark); }

@media (max-width: 768px) {
  .article-container { padding: 120px 24px 60px; }
  .article-hero { margin: 24px 0 32px; min-height: 200px; }
  .article-content { font-size: 16px; }
  .article-content h2 { font-size: 22px; margin: 32px 0 16px; }
  .article-cta { padding: 32px 24px; }
}

/* ─── LOGO PULSE ANIMATION (red glow on logo) ─────────────── */
@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 0 rgba(200,0,0,0)); }
  20% { filter: drop-shadow(0 0 8px rgba(200,0,0,0.5)); }
  40% { filter: drop-shadow(0 0 2px rgba(200,0,0,0.15)); }
  55% { filter: drop-shadow(0 0 6px rgba(200,0,0,0.4)); }
  70% { filter: drop-shadow(0 0 0 rgba(200,0,0,0)); }
  100% { filter: drop-shadow(0 0 0 rgba(200,0,0,0)); }
}

.logo-pulse img {
  animation: logoPulse 3s ease-in-out infinite;
}

/* ─── PHONE PULSE ANIMATION ─────────────────────────────── */
@keyframes phonePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,0,0,0)); }
  15% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(255,0,0,0.6)); }
  30% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(255,0,0,0.3)); }
  45% { transform: scale(1.1); filter: drop-shadow(0 0 5px rgba(255,0,0,0.5)); }
  60% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,0,0,0)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,0,0,0)); }
}

.phone-pulse {
  animation: phonePulse 2.5s ease-in-out infinite;
  color: #FF0000;
  stroke: #FF0000;
}

/* ─── NAV CTA PULSE ANIMATION ───────────────────────────── */
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.nav-cta {
  animation: ctaPulse 2s ease-out infinite;
}

/* ─── ALL DEVIS BUTTONS PULSE ────────────────────────────── */
/* Target by class */
.btn-devis,
.btn-primary[href*="devis"],
/* Target by href - catches all inline-styled devis links that look like buttons */
a[href*="demande-devis"][style*="background"],
a[href="#quote-form"][style*="background"] {
  animation: ctaPulse 2s ease-out infinite;
}

/* Ensure btn-devis also pulses (product page quote form button) */
.btn-devis {
  animation: ctaPulse 2s ease-out infinite;
}

/* Also target submit buttons in quote forms */
button[type="submit"].btn-devis,
input[type="submit"].btn-devis {
  animation: ctaPulse 2s ease-out infinite;
}

/* ═══ CAROUSEL FIX: force dynamically-created carousel images to be visible ═══ */
.mega-menu.active .mega-img-carousel a img {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}
.mega-menu.active .mega-img-carousel a {
  display: block !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
