/* =============================================================
   SECOS — Design System 2026
   Direction : image-first, blanc, typographie élégante,
   navigation par marchés (référence validée : berlinpackaging.eu)
   Bootstrap 5 = grille uniquement.
   ============================================================= */

/* -------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------- */
:root {
  /* Marque */
  --blue:        #14539A;
  --blue-bright: #1E74D0;
  --blue-deep:   #0D3A6E;
  --red:         #E63946;

  /* Neutres */
  --navy:    #08111D;    /* footer / overlays */
  --text:    #101B2B;
  --muted:   #61708A;
  --muted-2: #9DAcC4;
  --bg:      #FFFFFF;
  --bg-soft: #F5F7FA;
  --sky:     #ECF3FA;
  --border:  #E6EAF0;

  /* Typographie */
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Échelle fluide */
  --fs-hero: clamp(2.4rem, 5.4vw, 4.6rem);
  --fs-1:    clamp(1.9rem, 3.6vw, 2.9rem);
  --fs-2:    clamp(1.4rem, 2.4vw, 1.9rem);
  --fs-3:    clamp(1.1rem, 1.7vw, 1.35rem);

  /* Rayons & ombres */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 27, 43, .06), 0 4px 14px rgba(16, 27, 43, .06);
  --shadow-md: 0 2px 6px rgba(16, 27, 43, .05), 0 14px 36px rgba(16, 27, 43, .11);
  --shadow-lg: 0 6px 16px rgba(16, 27, 43, .08), 0 28px 64px rgba(16, 27, 43, .16);

  /* Rythme & animation */
  --space: clamp(4.5rem, 9vw, 7.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .35s;
}

/* -------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; height: auto; }

a { color: var(--blue); text-decoration: none; transition: color var(--dur); }
a:hover { color: var(--blue-bright); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.14;
  margin: 0 0 .55em;
  color: inherit;
}

p { margin: 0 0 1.15em; }

:focus-visible {
  outline: 3px solid rgba(30, 116, 208, .45);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 3000;
  padding: .8rem 1.4rem;
  background: var(--navy);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  font-size: .85rem;
}
.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------
   3. UTILITAIRES
   ------------------------------------------------------------- */
.fs-hero { font-size: var(--fs-hero); }
.fs-1 { font-size: var(--fs-1); }
.fs-2 { font-size: var(--fs-2); }
.fs-3 { font-size: var(--fs-3); }

.text-muted-s { color: var(--muted); }
.section { padding: var(--space) 0; }
.section-soft { background: var(--navy); }
.section-sky  { background: var(--sky); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy .text-muted-s { color: var(--muted-2); }

/* Étiquette de section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.section-navy .eyebrow { color: #7FB4E8; }

.section-head { margin-bottom: clamp(2.2rem, 4.5vw, 3.5rem); }
.section-head .lead-s {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0;
}
.section-navy .section-head .lead-s { color: var(--muted-2); }

/* -------------------------------------------------------------
   4. BOUTONS
   ------------------------------------------------------------- */
.btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.7rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), background var(--dur), color var(--dur), border-color var(--dur);
}
.btn-s:hover { transform: translateY(-1px); }
.btn-s:active { transform: translateY(0); }
.btn-s .ico { transition: transform var(--dur) var(--ease); }
.btn-s:hover .ico { transform: translateX(3px); }

.btn-primary-s {
  background: var(--blue);
  color: #fff;
}
.btn-primary-s:hover {
  background: var(--blue-bright);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20, 83, 154, .25);
}

.btn-red-s {
  background: var(--red);
  color: #fff;
}
.btn-red-s:hover {
  background: #D62F3C;
  color: #fff;
  box-shadow: 0 6px 18px rgba(230, 57, 70, .25);
}

.btn-outline-s {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline-s:hover { border-color: var(--text); color: var(--text); }

.btn-white-s {
  background: #fff;
  color: var(--text);
}
.btn-white-s:hover { color: var(--blue); box-shadow: 0 10px 26px rgba(0, 0, 0, .2); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .22); color: #fff; }

/* Lien fléché */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
}
.link-arrow .ico { transition: transform var(--dur) var(--ease); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* -------------------------------------------------------------
   5. HEADER
   ------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: var(--muted-2);
  font-size: .8rem;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .55rem 0;
}
.topbar a { color: #C7D3E4; font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar .links { display: flex; align-items: center; gap: 1.5rem; }
.topbar .item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.topbar .item .ico { color: #6FB1F0; flex: none; }
.topbar .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .18); }
.topbar .socials { display: flex; align-items: center; gap: .35rem; }
.topbar .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background var(--dur), color var(--dur);
}
.topbar .socials a:hover { background: var(--blue-bright); color: #fff; }

.header-s {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.header-s.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(16, 27, 43, .06);
}
.header-s .inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 78px;
  transition: height var(--dur);
}
.header-s.is-scrolled .inner { height: 66px; }

.brand-s { display: flex; align-items: center; gap: .7rem; }
.brand-s img { height: 60px; width: auto; display: block; transition: height var(--dur); }
.header-s.is-scrolled .brand-s img { height: 55px; }

.nav-s {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.6vw, 1.7rem);
  margin-left: auto;
}
.nav-s > a,
.nav-s .nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  padding: .5rem 0;
}
.nav-s > a::after,
.nav-s .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.nav-s > a:hover::after,
.nav-s > a.is-active::after,
.nav-s .nav-item > a:hover::after,
.nav-s .nav-item.is-open > a::after,
.nav-s .nav-item > a.is-active::after { transform: scaleX(1); }
.nav-s > a.is-active,
.nav-s .nav-item > a.is-active { color: var(--blue); font-weight: 600; }

/* Chevron des entrées à sous-menu */
.nav-s .nav-item > a .chev { transition: transform var(--dur) var(--ease); }
.nav-s .nav-item.is-open > a .chev { transform: rotate(180deg); }

/* ---- Dropdown simple ---- */
.nav-item { position: relative; }
.dropdown-s {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  z-index: 1100;
}
.nav-item.is-open .dropdown-s {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dropdown-s a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .85rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--dur), color var(--dur);
}
.dropdown-s a:hover { background: var(--sky); color: var(--blue); }
.dropdown-s a .ico { color: var(--blue); flex: none; }

/* ---- Méga-menu Produits ---- */
.mega-s {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: min(880px, 92vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s .28s;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 280px;
}
.nav-item.is-open .mega-s {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.mega-s .mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  padding: 1.1rem;
}
.mega-s .mega-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .8rem;
  border-radius: var(--r-sm);
  color: var(--text);
  transition: background var(--dur);
}
.mega-s .mega-link:hover { background: var(--sky); }
.mega-s .mega-link .thumb {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--sky);
  overflow: hidden;
}
.mega-s .mega-link .thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-s .mega-link .t { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.mega-s .mega-link .d { font-size: .76rem; color: var(--muted); line-height: 1.35; }
.mega-s .mega-side {
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mega-s .mega-side h4 { font-size: 1.02rem; }
.mega-s .mega-side p { font-size: .84rem; color: var(--muted); }
.mega-s .mega-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1.4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: .84rem;
}
@media (max-width: 1399.98px) {
  .mega-s { grid-template-columns: 1fr 240px; }
}

/* ---- Outils header : recherche + liste de devis ---- */
.header-tools {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: none;
}
.tool-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.tool-btn:hover { border-color: var(--blue); color: var(--blue); }
.tool-btn .count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Barre de recherche déroulante */
.search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(16, 27, 43, .12);
  padding: 1.1rem 0;
  display: none;
}
.search-bar.is-open { display: block; }
.search-bar form {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: .35rem .5rem .35rem 1.3rem;
  transition: border-color var(--dur);
}
.search-bar form:focus-within { border-color: var(--blue); }
.search-bar input {
  flex: 1;
  border: 0;
  outline: none;
  background: none;
  font-size: .95rem;
  color: var(--text);
  min-width: 0;
}
.search-bar .hints {
  margin-top: .7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--muted);
}
.search-bar .hints a {
  background: var(--sky);
  border-radius: var(--r-pill);
  padding: .22rem .8rem;
  font-weight: 500;
  font-size: .76rem;
}

.header-cta { flex: none; }

/* Burger */
.burger-s {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.burger-s span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger-s.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-s.is-open span:nth-child(2) { opacity: 0; }
.burger-s.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: #fff;
  padding: 7rem 7vw 3rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu nav a:hover { color: var(--blue); }
.mobile-menu .menu-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

@media (max-width: 1199.98px) {
  .nav-s, .header-cta { display: none; }
  .burger-s { display: flex; }
}

/* -------------------------------------------------------------
   6. HERO — photo plein cadre, voile en dégradé
   ------------------------------------------------------------- */
.hero-s {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-s .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-s .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero-s .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(5, 16, 30, .92) 0%, rgba(8, 26, 48, .78) 38%, rgba(10, 33, 60, .35) 68%, rgba(10, 33, 60, .18) 100%);
}
.hero-s .inner {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(7rem, 12vw, 9.5rem);
  max-width: 660px;
}
.hero-s .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1.6rem;
}
.hero-s .hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.hero-s h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  margin-bottom: 1.3rem;
}
.hero-s h1 .hl { color: #6FB1F0; }
.hero-s .hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  max-width: 33rem;
  margin-bottom: 2.2rem;
}
.hero-s .hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Bandeau stats chevauchant le bas du hero */
.hero-stats {
  position: relative;
  z-index: 5;
  margin-top: clamp(-4.5rem, -6vw, -3.5rem);
}
.hero-stats .card-stats {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.hero-stats .stat {
  padding: 1.9rem 1.6rem;
  text-align: center;
  position: relative;
}
.hero-stats .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
.hero-stats .num {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.hero-stats .num .unit { color: var(--red); font-size: .58em; font-weight: 700; margin-left: .1em; }
.hero-stats .label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: .3rem;
}
@media (max-width: 991.98px) {
  .hero-stats .card-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(3)::before { display: none; }
  .hero-stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* -------------------------------------------------------------
   6b. BARRE DE RÉASSURANCE
   ------------------------------------------------------------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .95rem;
}
.trust-item .t-ico {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item .t { font-family: var(--font-head); font-weight: 700; font-size: .95rem; line-height: 1.25; }
.trust-item .d { font-size: .8rem; color: var(--muted); line-height: 1.4; }
@media (max-width: 991.98px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .trust-bar { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------
   6c. LOGOS CLIENTS
   ------------------------------------------------------------- */
.logos-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.logos-strip .logo-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: #AEB9C9;
  filter: grayscale(1);
  transition: color var(--dur), filter var(--dur);
  white-space: nowrap;
}
.logos-strip .logo-item:hover { color: var(--blue); filter: none; }

/* -------------------------------------------------------------
   7. CARTES MARCHÉS — image-first (référence Berlin Packaging)
   ------------------------------------------------------------- */
.market-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.market-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: #fff; }
.market-card img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.market-card:hover img.bg { transform: scale(1.06); }
.market-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 29, 0) 30%, rgba(6, 16, 29, .55) 62%, rgba(6, 16, 29, .88) 100%);
  transition: background var(--dur);
}
.market-card .content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.6rem 1.6rem 1.5rem;
}
.market-card h3 {
  font-size: 1.3rem;
  margin-bottom: .35rem;
}
.market-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: .9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s;
}
.market-card:hover p { max-height: 90px; opacity: 1; }
.market-card .go {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
}
.market-card .go .ico { transition: transform var(--dur) var(--ease); }
.market-card:hover .go .ico { transform: translateX(4px); }
.market-card .tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: .3rem .85rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   8. CARTES CATÉGORIES PRODUITS (e-commerce)
   ------------------------------------------------------------- */
.cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  color: var(--text);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--text);
}
.cat-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sky);
  overflow: hidden;
}
.cat-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.cat-card:hover .thumb img { transform: scale(1.07); }
.cat-card .thumb .count {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: rgba(8, 17, 29, .72);
  color: #fff;
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: .25rem .75rem;
  font-size: .72rem;
  font-weight: 600;
}
.cat-card .body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.cat-card h3 { font-size: 1.1rem; margin: 0; }
.cat-card .desc { font-size: .88rem; color: var(--muted); margin: 0; }
.cat-card .go {
  margin-top: auto;
  padding-top: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--blue);
}
.cat-card .go .ico { transition: transform var(--dur) var(--ease); }
.cat-card:hover .go .ico { transform: translateX(4px); }

/* -------------------------------------------------------------
   9. SECTION SPLIT (image + contenu)
   ------------------------------------------------------------- */
.split-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.split-img img { display: block; width: 100%; height: 100%; object-fit: cover; }

.float-chip {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: .9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.float-chip .chip-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.float-chip .chip-label { font-size: .8rem; font-weight: 500; color: var(--muted); line-height: 1.35; }

/* Liste à puces avec coche */
.check-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .65rem; }
.check-list li {
  position: relative;
  padding-left: 2.1rem;
  font-size: .97rem;
}
.check-list li strong { font-weight: 600; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2314539A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.2 4.8 9 10 3.4'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.section-navy .check-list li::before { background-color: rgba(255, 255, 255, .12); }

/* -------------------------------------------------------------
   10. PROCESS — étapes
   ------------------------------------------------------------- */
.process-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-dark, rgba(255,255,255,.1));
  border-radius: var(--r-md);
  padding: 1.9rem 1.7rem;
  height: 100%;
  transition: background var(--dur), transform var(--dur) var(--ease);
}
.process-card:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.process-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 8px 20px rgba(20, 83, 154, .4);
}
.process-card h3 { font-size: 1.12rem; color: #fff; }
.process-card p { font-size: .9rem; color: var(--muted-2); margin: 0; }

/* -------------------------------------------------------------
   11. TÉMOIGNAGE
   ------------------------------------------------------------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0;
  color: var(--sky);
  position: absolute;
  top: 2.6rem;
  right: 2.2rem;
  user-select: none;
}
.testimonial-card blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.01em;
  margin: 0 0 1.6rem;
  max-width: 46rem;
}
.testimonial-card .who { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.testimonial-card .who .name { font-weight: 600; font-size: .95rem; }
.testimonial-card .who .role { font-size: .82rem; color: var(--muted); }

/* -------------------------------------------------------------
   12. CTA FINAL
   ------------------------------------------------------------- */
.cta-s {
  border-radius: var(--r-md);
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(2.6rem, 5vw, 4rem);
}
.cta-s h2 { font-size: var(--fs-2); max-width: 30rem; }
.cta-s .note { color: rgba(255, 255, 255, .75); font-size: .92rem; }

/* -------------------------------------------------------------
   13. ACTUALITÉS
   ------------------------------------------------------------- */
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  color: var(--text);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--text); }
.news-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--sky); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-card .meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .7rem;
}
.news-card .badge-s { margin: 0; }
.news-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.news-card p { font-size: .88rem; color: var(--muted); margin: 0; }
.news-card .go {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--blue);
}

/* Badge générique */
.badge-s {
  display: inline-block;
  background: var(--sky);
  color: var(--blue-deep);
  border-radius: var(--r-pill);
  padding: .28rem .8rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.badge-red { background: #FDECEE; color: var(--red); }
.badge-green { background: #E8F6EE; color: #178A50; }

/* -------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------- */
.footer-s {
  background: var(--navy);
  color: var(--muted-2);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
  font-size: .92rem;
}
.footer-s .brand-block img { height: 52px; margin-bottom: 1.2rem; background: #fff; border-radius: var(--r-sm); padding: .35rem .7rem; }
.footer-s h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-s ul { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .55rem; }
.footer-s a { color: var(--muted-2); }
.footer-s a:hover { color: #fff; }
.footer-s .newsletter {
  display: flex;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-sm);
  padding: .3rem;
  max-width: 380px;
}
.footer-s .newsletter input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: #fff;
  padding: .5rem 1rem;
  font-size: .9rem;
  min-width: 0;
}
.footer-s .newsletter input::placeholder { color: var(--muted-2); }
.footer-s .newsletter button {
  border: 0;
  border-radius: calc(var(--r-sm) - 3px);
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .55rem 1.3rem;
  cursor: pointer;
  transition: background var(--dur);
}
.footer-s .newsletter button:hover { background: #EF4D5A; }
.footer-s .foot-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  font-size: .8rem;
}

/* -------------------------------------------------------------
   15. PANIER LATÉRAL (offcanvas)
   ------------------------------------------------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1290;
  background: rgba(8, 17, 29, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  width: min(460px, 100vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .45s var(--ease);
  box-shadow: -24px 0 60px rgba(16, 27, 43, .18);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer .cd-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer .cd-head h2 {
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cart-drawer .cd-head .count-pill {
  background: var(--sky);
  color: var(--blue);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  padding: .1rem .65rem;
}
.cart-drawer .cd-close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--dur), border-color var(--dur);
}
.cart-drawer .cd-close:hover { color: var(--text); border-color: var(--text); }

/* Progression livraison offerte */
.cart-drawer .cd-shipping {
  padding: .9rem 1.4rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}
.cart-drawer .cd-shipping strong { color: var(--text); }
.cart-drawer .ship-bar {
  margin-top: .5rem;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--border);
  overflow: hidden;
}
.cart-drawer .ship-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--blue);
  transition: width .5s var(--ease);
}
.cart-drawer .cd-shipping.is-free .ship-bar i { background: #1A9A5C; }

.cart-drawer .cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.4rem;
}

/* Article du panier */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item .ci-thumb {
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: var(--r-sm);
  background: var(--sky);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cart-item .ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .ci-main { flex: 1; min-width: 0; }
.cart-item .ci-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .6rem;
}
.cart-item .ci-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}
.cart-item .ci-ref { font-size: .74rem; color: var(--muted); }
.cart-item .ci-hint { margin-top: 6px; font-size: .7rem; color: var(--muted); letter-spacing: .01em; }
.cart-item .ci-remove {
  flex: none;
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  color: var(--muted-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--dur), background var(--dur);
}
.cart-item .ci-remove:hover { color: var(--red); background: #FDECEE; }

/* Variantes : couleur + contenance */
.cart-item .ci-variants {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  margin: .55rem 0 .7rem;
}
.cart-item .v-group { display: flex; align-items: center; gap: .45rem; }
.cart-item .v-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.swatches { display: flex; gap: .3rem; }
.swatch {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  padding: 0;
  transition: box-shadow var(--dur), transform var(--dur);
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { box-shadow: 0 0 0 2px var(--blue); }
.chips-v { display: flex; gap: .3rem; flex-wrap: wrap; }
.chip-v {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  padding: .1rem .55rem;
  font-size: .74rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--dur);
}
.chip-v:hover { border-color: var(--blue); color: var(--blue); }
.chip-v.is-active {
  border-color: var(--blue);
  background: var(--sky);
  color: var(--blue);
}

/* Quantité + total ligne */
.cart-item .ci-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-stepper button {
  width: 30px;
  height: 32px;
  border: 0;
  background: #fff;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
}
.qty-stepper button:hover { background: var(--sky); color: var(--blue); }
.qty-stepper input {
  width: 40px;
  height: 32px;
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item .ci-price { text-align: right; }
.cart-item .ci-unit { display: block; font-size: .72rem; color: var(--muted); }
.cart-item .ci-total {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
}

/* Panier vide */
.cart-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--muted);
  display: none;
}
.cart-empty .ce-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer.is-empty .cart-empty { display: block; }
.cart-drawer.is-empty .cd-shipping,
.cart-drawer.is-empty .cd-foot { display: none; }

/* Récapitulatif */
.cart-drawer .cd-foot {
  border-top: 1px solid var(--border);
  padding: 1.15rem 1.4rem 1.3rem;
  background: #fff;
}
.cart-drawer .sum-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
  padding: .18rem 0;
}
.cart-drawer .sum-row strong { color: var(--text); font-weight: 600; }
.cart-drawer .sum-row.total {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 700;
  border-top: 1px dashed var(--border);
  margin-top: .5rem;
  padding-top: .7rem;
}
.cart-drawer .cd-actions {
  display: grid;
  gap: .6rem;
  margin-top: 1rem;
}
.cart-drawer .cd-actions .btn-s { width: 100%; }
.cart-drawer .cd-note {
  margin: .8rem 0 0;
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* -------------------------------------------------------------
   16. PAGE SHOP — bannière, filtres, cartes produit
   ------------------------------------------------------------- */
.page-banner {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0 3.4rem;
}
.page-banner .breadcrumb-s {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  font-size: .8rem;
  color: var(--muted-2);
  margin-bottom: .9rem;
}
.page-banner .breadcrumb-s a { color: var(--muted-2); }
.page-banner .breadcrumb-s a:hover { color: #fff; }
.page-banner h1 { font-size: var(--fs-1); margin-bottom: .6rem; }
.page-banner .lead-s { color: var(--muted-2); max-width: 44rem; }

/* Barre d'outils : compteur + tri */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.shop-toolbar .result-count { font-size: .9rem; color: var(--muted); }
.shop-toolbar .result-count strong { color: var(--text); }
.shop-toolbar select {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  padding: .5rem 2.2rem .5rem .9rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none' stroke='%235B6B7F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 6 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
}

/* Filtres latéraux */
.filters {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.4rem;
  position: sticky;
  top: 96px;
}
.filters .f-block { padding: 1.1rem 0; border-top: 1px solid var(--border); }
.filters .f-block:first-child { padding-top: 0; border-top: 0; }
.filters .f-block:last-child { padding-bottom: 0; }
.filters h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}
.filters .f-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .3rem 0;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
}
.filters .f-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.filters .f-check .n { margin-left: auto; font-size: .76rem; color: var(--muted); }
.filters .f-reset {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  background: none;
  padding: 0;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
}

/* Carte produit */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-card .pc-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.product-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .pc-media img { transform: scale(1.05); }
.product-card .pc-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .6rem;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
}
.product-card .pc-badge.new { background: #1A9A5C; }
.product-card .pc-badge.promo { background: var(--red); }
.product-card .pc-body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .pc-cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .3rem;
}
.product-card .pc-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.35;
  margin-bottom: .25rem;
}
.product-card .pc-name a { color: inherit; }
.product-card .pc-name a:hover { color: var(--blue); }
.product-card .pc-pack { font-size: .78rem; color: var(--muted); margin-bottom: .7rem; }
.product-card .pc-moq {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--r-sm);
  padding: .22rem .5rem;
  margin-bottom: .7rem;
  line-height: 1.2;
}
.product-card .pc-moq svg { flex: none; color: #fff; }
.product-card .pc-moq strong { color: #fff; font-weight: 700; }
.product-card .pc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.product-card .pc-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
}
.product-card .pc-price .u { display: block; font-size: .7rem; font-weight: 500; color: var(--muted); }
.product-card .pc-add {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  padding: .55rem .95rem;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur);
}
.product-card .pc-add:hover { background: var(--blue-bright); transform: translateY(-1px); }

/* Bouton aperçu rapide sur l'image */
.product-card .pc-quick {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 0;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .95);
  color: var(--text);
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  padding: .5rem .8rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur), color var(--dur), opacity var(--dur), transform var(--dur);
}
.product-card .pc-quick:hover { background: var(--navy); color: #fff; }
@media (hover: hover) {
  .product-card .pc-quick { opacity: 0; transform: translateY(6px); }
  .product-card:hover .pc-quick { opacity: 1; transform: translateY(0); }
}

/* Variantes dans la carte */
.product-card .pc-variants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .8rem;
}

/* Mobile-first : cartes compactes */
@media (max-width: 575.98px) {
  .product-card .pc-body { padding: .85rem .6rem 1rem; }
  .product-card .pc-name { font-size: .88rem; }
  .product-card .pc-price { font-size: .94rem; }
  .product-card .pc-add { padding: .5rem .7rem; }
  .product-card .pc-add .lbl { display: none; }
  .product-card .pc-quick { padding: .45rem .6rem; }
  .product-card .pc-quick .lbl { display: none; }
}

/* -------------------------------------------------------------
   16b. QUICK VIEW — bottom sheet mobile, dialogue desktop
   ------------------------------------------------------------- */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 1310;
  background: rgba(8, 17, 29, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s .3s;
}
.qv-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease);
}

.qv-modal {
  position: fixed;
  z-index: 1320;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 92vh;
  background: #fff;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: translateY(103%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.qv-modal.is-open { transform: translateY(0); }

.qv-modal .qv-grip {
  flex: none;
  width: 44px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--border);
  margin: .65rem auto .2rem;
}
.qv-modal .qv-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--dur), border-color var(--dur);
}
.qv-modal .qv-close:hover { color: var(--text); border-color: var(--text); }

.qv-modal .qv-scroll { overflow-y: auto; }
.qv-modal .qv-media {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.qv-modal .qv-media img { width: 100%; height: 100%; object-fit: cover; }
.qv-modal .qv-body { padding: 1.3rem 1.4rem 1.6rem; }
.qv-modal .qv-cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.qv-modal h3 { font-size: 1.25rem; margin: .25rem 0 .15rem; }
.qv-modal .qv-ref { font-size: .78rem; color: var(--muted); margin-bottom: .8rem; }
.qv-modal .qv-desc { font-size: .9rem; color: var(--muted); margin-bottom: 1.1rem; }
.qv-modal .qv-vgroup { margin-bottom: 1rem; }
.qv-modal .qv-vgroup .v-label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .45rem;
}
.qv-modal .qv-vgroup .swatch { width: 26px; height: 26px; }
.qv-modal .qv-vgroup .chip-v { padding: .3rem .8rem; font-size: .82rem; }
.qv-modal .qv-buy {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
}
.qv-modal .qv-buy .qty-stepper { flex: none; }
.qv-modal .qv-buy .btn-s { flex: 1; }
.qv-modal .qv-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: .4rem;
}
.qv-modal .qv-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
}
.qv-modal .qv-pack { font-size: .8rem; color: var(--muted); }
.qv-modal .qv-moq {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--r-sm);
  padding: .3rem .6rem;
  margin-top: .1rem;
}
.qv-modal .qv-moq svg { flex: none; color: #fff; }
.qv-modal .qv-meta {
  display: grid;
  gap: .4rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}
.qv-modal .qv-meta li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.qv-modal .qv-meta .ico { color: var(--blue); flex: none; }
.qv-modal .qv-meta ul { margin: 0; padding: 0; display: grid; gap: .4rem; }

/* Desktop : dialogue centré 2 colonnes */
@media (min-width: 768px) {
  .qv-modal {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(880px, 94vw);
    max-height: min(620px, 92vh);
    border-radius: var(--r-lg);
    transform: translate(-50%, -46%) scale(.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
  }
  .qv-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .qv-modal .qv-grip { display: none; }
  .qv-modal .qv-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    height: 100%;
  }
  .qv-modal .qv-media { aspect-ratio: auto; height: 100%; }
  .qv-modal .qv-body { overflow-y: auto; max-height: min(620px, 92vh); padding: 2rem 1.8rem; }
}

/* Pagination */
.pagination-s {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 2.4rem;
}
.pagination-s a,
.pagination-s span {
  min-width: 40px;
  height: 40px;
  padding: 0 .6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--dur);
}
.pagination-s a:hover { border-color: var(--blue); color: var(--blue); }
.pagination-s .is-current { background: var(--blue); border-color: var(--blue); color: #fff; }

/* -------------------------------------------------------------
   17. ANIMATIONS D'APPARITION (GSAP)
   ------------------------------------------------------------- */
[data-reveal] { opacity: 0; }
.gsap-off [data-reveal] { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .hero-s .hero-badge .pulse { animation: none; }
}

/* -------------------------------------------------------------
   18. CHECKOUT — Validation de commande (premium)
   ------------------------------------------------------------- */
.co-section {
  padding: clamp(1.6rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(1200px 400px at 80% -5%, rgba(30,116,208,.06), transparent 60%),
    var(--bg-soft);
  min-height: 70vh;
}

/* Fil d'Ariane */
.co-crumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.co-crumb a { color: var(--muted); text-decoration: none; }
.co-crumb a:hover { color: var(--blue); }
.co-crumb .current { color: var(--text); font-weight: 600; }

/* Stepper */
.co-stepper {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  margin: 0 0 clamp(1.4rem, 3vw, 2.2rem);
  padding: 0;
  max-width: 560px;
}
.co-stepper > li:not(.co-step-bar) {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted-2);
  font-weight: 600;
  font-size: .9rem;
}
.co-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--muted-2);
  font-size: .85rem;
  flex: none;
  transition: all var(--dur) var(--ease);
}
.co-stepper .is-done { color: var(--blue); }
.co-stepper .is-done .co-step-num { background: var(--blue); border-color: var(--blue); color: #fff; }
.co-stepper .is-active { color: var(--text); }
.co-stepper .is-active .co-step-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(230,57,70,.15);
}
.co-step-bar {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  min-width: 20px;
}
.co-step-bar.is-done { background: var(--blue); }
.co-step-lbl { white-space: nowrap; }

/* Boîtes formulaire */
.co-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.co-box-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.co-badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex: none;
}

/* Champs */
.co-fields { display: grid; gap: 1rem; }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.co-field { display: flex; flex-direction: column; gap: .4rem; }
.co-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.co-field .req { color: var(--red); }
.co-field input,
.co-field select,
.co-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .7rem .9rem;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  appearance: none;
}
.co-field textarea { resize: vertical; min-height: 76px; line-height: 1.6; }
.co-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2361708A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.2rem;
}
.co-field input::placeholder,
.co-field textarea::placeholder { color: var(--muted-2); }
.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,83,154,.1);
}
.co-field.has-error input,
.co-field.has-error select,
.co-field.has-error textarea {
  border-color: var(--red);
  background: #FEF3F4;
}
.co-field.has-error input:focus,
.co-field.has-error textarea:focus { box-shadow: 0 0 0 4px rgba(230,57,70,.12); }
.co-err {
  font-size: .74rem;
  color: var(--red);
  font-weight: 600;
  display: none;
}
.co-field.has-error .co-err { display: block; }

/* Paiement */
.co-pay { display: grid; gap: .7rem; }
.co-pay-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  position: relative;
}
.co-pay-item:hover { border-color: var(--blue-bright); }
.co-pay-item input { position: absolute; opacity: 0; pointer-events: none; }
.co-pay-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--muted-2);
  flex: none;
  margin-top: 2px;
  transition: all var(--dur);
  position: relative;
}
.co-pay-item.is-active {
  border-color: var(--blue);
  background: var(--sky);
  box-shadow: 0 0 0 3px rgba(20,83,154,.08);
}
.co-pay-item.is-active .co-pay-dot { border-color: var(--blue); }
.co-pay-item.is-active .co-pay-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
}
.co-pay-body { display: flex; flex-direction: column; gap: .15rem; }
.co-pay-name { font-weight: 600; color: var(--text); font-size: .95rem; }
.co-pay-desc { font-size: .8rem; color: var(--muted); line-height: 1.45; }
.co-pay-soon {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--r-sm);
  padding: .6rem .8rem;
}
.co-pay-soon svg { color: var(--blue); flex: none; }

/* CGV + soumission */
.co-terms {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: .2rem 0 1.1rem;
  cursor: pointer;
}
.co-terms input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  flex: none;
}
.co-terms a { color: var(--text); font-weight: 600; text-decoration: underline; }
.co-terms a:hover { color: var(--blue); }
.co-submit {
  justify-content: center;
  gap: .55rem;
}
.co-submit[disabled] { opacity: .55; cursor: not-allowed; }
.co-legal {
  font-size: .74rem;
  color: var(--muted-2);
  text-align: center;
  margin: .9rem 0 0;
  line-height: 1.5;
}

/* Récapitulatif (sticky) */
.co-summary {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  box-shadow: var(--shadow-md);
}
.co-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.co-summary-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.co-edit-cart { font-size: .8rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.co-edit-cart:hover { text-decoration: underline; }

/* Barre livraison offerte */
.co-ship-progress {
  background: var(--sky);
  border-radius: var(--r-sm);
  padding: .7rem .85rem;
  margin-bottom: 1rem;
}
.co-ship-msg { font-size: .78rem; color: var(--text); margin-bottom: .45rem; line-height: 1.4; }
.co-ship-msg strong { color: var(--blue); }
.co-ship-progress.is-free .co-ship-msg strong { color: #1E9E62; }
.co-ship-bar { height: 6px; border-radius: 6px; background: rgba(20,83,154,.15); overflow: hidden; }
.co-ship-bar > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 6px;
  transition: width .5s var(--ease);
}
.co-ship-progress.is-free .co-ship-bar > i { background: linear-gradient(90deg, #1E9E62, #38C172); }

/* Items du récap */
.co-review-items {
  display: grid;
  gap: .7rem;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: .2rem;
}
.co-review-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.co-review-item:last-child { border-bottom: 0; padding-bottom: 0; }
.co-review-item .ci-img { position: relative; width: 52px; height: 52px; flex: none; }
.co-review-item .ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.co-review-item .ci-qty-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(230,57,70,.4);
}
.co-review-item .ci-name { font-size: .88rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.co-review-item .ci-attr { font-size: .74rem; color: var(--muted); margin-top: 1px; }
.co-review-item .ci-price {
  text-align: right;
  font-weight: 700;
  color: var(--text);
  font-size: .9rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.co-review-item .ci-unit { font-size: .7rem; font-weight: 500; color: var(--muted); }

/* Totaux */
.co-sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
  padding: .35rem 0;
}
.co-sum-row strong { color: var(--text); font-weight: 700; }
.co-sum-row.total {
  border-top: 1.5px solid var(--border);
  margin-top: .4rem;
  padding-top: .8rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.co-sum-row.total span:last-child { color: var(--blue); }

.co-submit--mirror { margin: 1rem 0 .2rem; }

/* Réassurance */
.co-trust {
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.co-trust span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}
.co-trust svg { color: #1E9E62; flex: none; }

/* Encart devis B2B */
.co-quote {
  margin-top: 1rem;
  padding: .95rem 1rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: var(--r-sm);
  color: #fff;
}
.co-quote-t { font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
.co-quote p { font-size: .78rem; color: rgba(255,255,255,.85); margin: 0 0 .6rem; line-height: 1.5; }
.co-quote-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 1px;
}
.co-quote-link:hover { color: #fff; border-color: #fff; }

.co-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.co-back:hover { color: var(--blue); }

/* Spinner */
.co-spin {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: co-spin .7s linear infinite;
  vertical-align: -2px;
  margin-right: 6px;
}
@keyframes co-spin { to { transform: rotate(360deg); } }

@media (max-width: 991px) {
  .co-summary { position: static; margin-top: 1.2rem; }
  .co-submit--mirror { display: none; }
}
@media (max-width: 575px) {
  .co-row { grid-template-columns: 1fr; }
  .co-stepper .co-step-lbl { display: none; }
  .co-stepper .is-active .co-step-lbl { display: inline; }
}

/* -------------------------------------------------------------
   19. CONFIRMATION DE COMMANDE
   ------------------------------------------------------------- */
.co-confirm .cc-wrap { max-width: 720px; margin: 0 auto; }
.cc-hero { text-align: center; margin-bottom: 2rem; }
.cc-check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E9E62, #38C172);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 30px rgba(30,158,98,.35);
  animation: cc-pop .5s var(--ease);
}
@keyframes cc-pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.cc-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .6rem;
}
.cc-hero p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0 auto; max-width: 560px; }

.cc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.cc-card-head {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 1.3rem;
}
.cc-card-head svg { color: var(--blue); }
.cc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.cc-cell { display: flex; flex-direction: column; gap: .3rem; }
.cc-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); font-weight: 600; }
.cc-val { font-size: 1rem; font-weight: 600; color: var(--text); }
.cc-order-num { color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.cc-total { font-family: var(--font-head); font-weight: 700; }
.cc-contact { font-size: .9rem; word-break: break-word; }
.cc-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  padding: .25rem .7rem;
  background: #FFF7E6;
  color: #A66A00;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}
.cc-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #E9A800; }

.cc-steps {
  background: var(--sky);
  border-radius: var(--r-md);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}
.cc-steps h2 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--blue-deep); margin: 0 0 1rem; }
.cc-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.cc-steps li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: var(--text); line-height: 1.5; }
.cc-steps .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.cc-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cc-help { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.6; }
.cc-help a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cc-help a:hover { text-decoration: underline; }

.cc-empty { text-align: center; padding: 2rem 0; }
.cc-empty-ico {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-soft); color: var(--muted-2);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.cc-empty h1 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin: 0 0 .5rem; }
.cc-empty p { color: var(--muted); margin: 0 auto 1.5rem; max-width: 440px; line-height: 1.6; }

@media (max-width: 575px) {
  .cc-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* -------------------------------------------------------------
   20. CATALOGUE / SHOP PAGE — Ultra avancé, mobile-first
   ------------------------------------------------------------- */

/* Hero Catalogue */
.sh-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.sh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
}
.sh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,83,154,.55) 0%, rgba(10,20,40,.8) 100%);
}
.sh-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .5rem;
}
.sh-desc {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.8);
  margin: 0 0 1.5rem;
  max-width: 600px;
}
.co-crumb--light a,
.co-crumb--light span { color: rgba(255,255,255,.6); }
.co-crumb--light a:hover { color: #fff; }
.co-crumb--light .current { color: #fff; }

/* Barre de recherche hero */
.sh-search {
  display: flex;
  align-items: center;
  max-width: 540px;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.sh-search-ico { margin-left: 1rem; color: var(--muted-2); flex: none; }
.sh-search input {
  flex: 1;
  border: none;
  padding: .8rem .7rem;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
  outline: none;
  min-width: 0;
}
.sh-search input::placeholder { color: var(--muted-2); }
.sh-search-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: .8rem 1.3rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--dur);
  white-space: nowrap;
}
.sh-search-btn:hover { background: var(--blue-deep); }

/* Category Pills */
.sh-pills-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.sh-pills {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sh-pills::-webkit-scrollbar { display: none; }
.sh-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: all var(--dur);
}
.sh-pill:hover { border-color: var(--blue); color: var(--blue); }
.sh-pill.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.sh-pill-count {
  font-size: .72rem;
  background: var(--bg-soft);
  color: var(--muted);
  padding: 1px 6px;
  border-radius: 999px;
}
.sh-pill.is-active .sh-pill-count { background: rgba(255,255,255,.2); color: #fff; }

.sh-sub-pills {
  display: flex;
  gap: .4rem;
  padding: 0 0 .8rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.sh-sub-pills::-webkit-scrollbar { display: none; }
.sh-sub-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  text-decoration: none;
  transition: all var(--dur);
}
.sh-sub-pill:hover { color: var(--blue); background: var(--sky); }
.sh-sub-pill.is-active { background: var(--sky); color: var(--blue); font-weight: 700; }
.sh-sub-count { font-size: .68rem; opacity: .7; }

/* Main Layout */
.sh-main {
  padding: clamp(1.2rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 3.5rem);
  background: var(--bg-soft);
}
.sh-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.8rem;
  align-items: start;
}

/* Sidebar */
.sh-sidebar {
  position: sticky;
  top: 130px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.sh-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sh-sidebar-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.sh-sidebar-close { display: none; background: none; border: none; color: var(--muted); cursor: pointer; padding: .3rem; }

/* Filter Groups */
.sh-filter-group {
  border-bottom: 1px solid var(--border);
  padding-bottom: .9rem;
  margin-bottom: .9rem;
}
.sh-filter-group:last-of-type { border-bottom: 0; margin-bottom: 0; }
.sh-filter-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  padding: .3rem 0;
  user-select: none;
}
.sh-filter-group summary::-webkit-details-marker { display: none; }
.sh-filter-group summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted-2);
  border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg);
  transition: transform .2s;
  flex: none;
}
.sh-filter-group[open] summary::after { transform: rotate(-135deg); }
.sh-filter-body { padding-top: .7rem; }

/* Category links */
.sh-cat-item { margin-bottom: .3rem; }
.sh-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem .5rem;
  border-radius: var(--r-sm);
  font-size: .84rem;
  color: var(--text);
  text-decoration: none;
  transition: background var(--dur), color var(--dur);
}
.sh-cat-link:hover { background: var(--sky); color: var(--blue); }
.sh-cat-link.is-active { background: var(--sky); color: var(--blue); font-weight: 700; }
.sh-cat-link--child { padding-left: 1.2rem; font-size: .8rem; }
.sh-cat-count { font-size: .72rem; color: var(--muted-2); }
.sh-cat-children { display: none; }
.sh-cat-item.is-open .sh-cat-children { display: block; }

/* Price range */
.sh-price-range { display: flex; align-items: center; gap: .5rem; }
.sh-price-field { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.sh-price-field label { font-size: .7rem; font-weight: 600; color: var(--muted-2); }
.sh-price-field input {
  width: 100%;
  padding: .5rem .6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .85rem;
  color: var(--text);
  background: var(--bg-soft);
}
.sh-price-field input:focus { border-color: var(--blue); outline: none; }
.sh-price-sep { color: var(--muted-2); font-size: .9rem; margin-top: 1rem; }
.sh-price-apply {
  margin-top: .7rem;
  width: 100%;
  padding: .5rem;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur);
}
.sh-price-apply:hover { background: var(--blue); color: #fff; }

/* Checkboxes */
.sh-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem 0;
  font-size: .84rem;
  color: var(--text);
  cursor: pointer;
}
.sh-check input { position: absolute; opacity: 0; pointer-events: none; }
.sh-check-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex: none;
  position: relative;
  transition: all var(--dur);
}
.sh-check input:checked ~ .sh-check-box { background: var(--blue); border-color: var(--blue); }
.sh-check input:checked ~ .sh-check-box::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Filter actions */
.sh-filter-actions { margin-top: 1rem; text-align: center; }
.sh-filter-reset {
  display: inline-block;
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--muted);
  text-decoration: underline;
}
.sh-filter-reset:hover { color: var(--red); }

/* Toolbar */
.sh-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.sh-toolbar-left { display: flex; align-items: center; gap: .8rem; }
.sh-filter-toggle {
  display: none;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur);
}
.sh-filter-toggle:hover { border-color: var(--blue); }
.sh-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sh-results-count { font-size: .85rem; color: var(--muted); margin: 0; }
.sh-results-count strong { color: var(--text); }
.sh-clear-search { color: var(--blue); font-weight: 600; text-decoration: underline; font-size: .82rem; }

.sh-sort { display: flex; align-items: center; gap: .4rem; }
.sh-sort-label { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.sh-sort select {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .45rem .7rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}
.sh-sort select:focus { border-color: var(--blue); outline: none; }

/* Active filter tags */
.sh-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-size: .76rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--dur);
}
.sh-tag:hover { background: var(--blue); color: #fff; }
.sh-tag svg { flex: none; }
.sh-tag--reset { background: transparent; border: 1px dashed var(--border); color: var(--muted); }
.sh-tag--reset:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Product Grid */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* Pagination */
.sh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 2rem;
}
.sh-page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 .6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: all var(--dur);
}
.sh-page-btn:hover { border-color: var(--blue); color: var(--blue); }
.sh-page-btn.is-current { background: var(--blue); border-color: var(--blue); color: #fff; }
.sh-page-dots { color: var(--muted-2); font-size: .9rem; }

/* Empty State */
.sh-empty { text-align: center; padding: 3rem 1rem; }
.sh-empty-ico { color: var(--muted-2); margin-bottom: 1rem; }
.sh-empty-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 0 0 .5rem; }
.sh-empty-desc { font-size: .92rem; color: var(--muted); margin: 0 0 1.5rem; max-width: 400px; margin-inline: auto; line-height: 1.6; }
.sh-empty-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

/* CTA */
.sh-cta {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.sh-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sh-cta-text h2 { font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: #fff; margin: 0 0 .4rem; }
.sh-cta-text p { font-size: .95rem; color: rgba(255,255,255,.8); margin: 0; max-width: 500px; }
.sh-cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

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

/* Tablet (≤991px) : sidebar becomes a drawer */
@media (max-width: 991px) {
  .sh-layout { grid-template-columns: 1fr; }
  .sh-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    max-height: none;
    z-index: 1100;
    transform: translateX(-105%);
    transition: transform .3s var(--ease);
    border-radius: 0;
    border: none;
    box-shadow: 4px 0 24px rgba(0,0,0,.2);
    overflow-y: auto;
  }
  .sh-sidebar.is-open { transform: translateX(0); }
  .sh-sidebar-close { display: block; }
  .sh-filter-toggle { display: inline-flex; }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .sh-grid { grid-template-columns: repeat(2, 1fr); gap: .3rem; }
  .sh-search { flex-direction: column; border-radius: var(--r-sm); }
  .sh-search input { padding: .7rem .8rem; }
  .sh-search-btn { width: 100%; border-radius: 0 0 var(--r-sm) var(--r-sm); }
  .sh-search-ico { display: none; }
  .sh-toolbar { gap: .5rem; }
  .sh-cta-inner { flex-direction: column; text-align: center; }
  .sh-cta-actions { justify-content: center; }
  .product-card .pc-cat{font-size: .52rem;}
  .product-card .pc-pack{font-size: .58rem;}
  .product-card .pc-name{font-size: .78rem;}²
  .product-card .pc-moq{font-size: .52rem;}
}

/* Overlay for sidebar drawer */
.sh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.sh-overlay.is-visible { opacity: 1; visibility: visible; }
