/* =============================================================
   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: var(--muted);
  background: var(--bg-2, #f3f6fb);
  border: 1px solid var(--line, #e4e9f2);
  border-radius: var(--r-sm);
  padding: .22rem .5rem;
  margin-bottom: .7rem;
  line-height: 1.2;
}
.product-card .pc-moq svg { flex: none; color: var(--blue); }
.product-card .pc-moq strong { color: var(--text); 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 .9rem 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-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; }
}
