/* =========================================================
   MYPACK — Premium packaging brand stylesheet
   Base     : #1F2937 (text) / #FFFFFF / #F8F9FA
   Primary  : Cyan #00A6D6
   Accents  : Jaune #F4C400 (secondary) · Fuchsia #E6007E (punctual)
   Type     : Cormorant Garamond (display) + Manrope (body)
   ========================================================= */

:root {
  /* Bases */
  --white:        #FFFFFF;
  --off-white:    #F8F9FA;   /* fonds de section alternés */
  --grey-1:       #F1F3F5;   /* sections alternées claires */
  --grey-2:       #E5E7EB;   /* borders marquées */
  --black:        #1F2937;   /* texte principal */
  --dark:         #374151;   /* texte secondaire foncé */
  --body-text:    #6B7280;   /* texte courant */

  /* Couleur principale */
  --cyan:         #00A6D6;   /* action principale */
  --cyan-dark:    #0090BB;   /* hover cyan */

  /* Accents */
  --yellow:       #F4C400;   /* accent secondaire */
  --fuchsia:      #E6007E;   /* accent très ponctuel */

  /* Alias de compatibilité — tout pointe vers la nouvelle palette */
  --magenta:      #00A6D6;   /* compat → cyan */
  --magenta-dark: #0090BB;
  --ivory:        #FFFFFF;
  --ivory-2:      #F8F9FA;
  --beige:        #F1F3F5;
  --beige-2:      #E5E7EB;
  --charcoal:     #1F2937;
  --charcoal-2:   #374151;
  --muted:        #6B7280;
  --line:         #E5E7EB;
  --gold:         #00A6D6;   /* compat → cyan */
  --gold-dark:    #00A6D6;
  --gold-soft:    #F4C400;

  /* Typo */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --radius-sm: 3px;
  --radius:    6px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --shadow:    0 12px 40px -12px rgba(0,0,0,.11);

  --container: 1240px;
}

* { box-sizing: border-box; }

html, body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4, .display, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.08; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.2; }
p  { color: var(--body-text); }
a  { color: var(--black); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta); }

/* Accent typographique magenta */
.text-accent  { color: var(--magenta); }
.text-cyan    { color: var(--cyan); }
.text-yellow  { color: var(--yellow); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}

.container-mp { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container-mp { padding: 0 18px; } }

section { padding: clamp(64px, 9vw, 120px) 0; }

.text-muted-mp { color: var(--muted); }
.text-gold     { color: var(--magenta); }
.bg-ivory      { background: var(--white); }
.bg-ivory-2    { background: var(--off-white); }
.bg-beige      { background: var(--grey-1); }
.bg-charcoal   { background: var(--black); color: var(--white); }
.bg-charcoal h1,.bg-charcoal h2,.bg-charcoal h3 { color: var(--white); }
.bg-charcoal p { color: #9A9A9A; }
.section-alt   { background: var(--off-white); }
.divider       { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn-mp {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-mp i { font-size: 14px; transition: transform .25s ease; }
.btn-mp:hover i { transform: translateX(3px); }

/* Primaire — cyan */
.btn-primary-mp {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}
.btn-primary-mp:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: var(--white);
}

/* Cyan — accent principal */
.btn-gold-mp, .btn-magenta-mp {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}
.btn-gold-mp:hover, .btn-magenta-mp:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: #fff;
}

/* Outline sombre → hover fond foncé */
.btn-outline-mp {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-mp:hover {
  background: var(--black);
  color: var(--white);
}

/* Outline cyan */
.btn-outline-magenta {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .22s, color .22s;
  cursor: pointer;
}
.btn-outline-magenta:hover { background: var(--cyan); color: var(--white); }

/* Ghost — bordure grise */
.btn-ghost-mp {
  background: transparent;
  color: var(--dark);
  border-color: var(--line);
}
.btn-ghost-mp:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #E8EAED;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--black);
}
.brand__dot {
  width: 7px; height: 7px; background: var(--cyan); border-radius: 50%;
  display: inline-block;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: -4px;
}
.nav-mp {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin: 0; padding: 0;
}
.nav-mp > li > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--dark);
  position: relative;
}
.nav-mp a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav-mp > li > a:hover::after,
.nav-mp > li > a.active::after { transform: scaleX(1); }

/* ── Dropdown nav-mp ── */
.nav-mp .has-sub { position: relative; }
.nav-mp .has-sub > a {
  display: flex; align-items: center; gap: 5px; cursor: default;
}
.nav-mp .has-sub > a::after { display: none; }
.nav-mp .has-sub > a.active,
.nav-mp .has-sub:hover > a { color: var(--magenta); }
.nav-sub__arrow { font-size: 10px; transition: transform .2s ease; }
.nav-mp .has-sub:hover .nav-sub__arrow { transform: rotate(180deg); }

.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 230px;
  list-style: none; margin: 0; padding: 10px 0 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 100;
}
.nav-mp .has-sub:hover .nav-sub,
.nav-mp .has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-sub::before {
  content: ''; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--line);
}
.nav-sub::after {
  content: ''; position: absolute; top: 9px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}
.nav-sub li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  font-size: 13px; font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  position: relative;
}
.nav-sub li a::after { display: none; }
.nav-sub li a:hover { color: var(--cyan); background: rgba(0,166,214,.05); }
.nav-sub li a.active { color: var(--cyan); font-weight: 600; }
.nav-sub li + li { border-top: 1px solid var(--line); }

/* Mobile sous-menu */
.mobile-menu .mm-sub {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu .mm-sub.open { max-height: 400px; }

/* Categories grid in mobile menu */
.mobile-menu .mm-sub--cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mobile-menu .mm-sub--cats.open {
  max-height: 700px;
  gap: 10px;
  padding: 12px 2px;
}
.mobile-menu .mm-sub--cats li { border-bottom: none; }
.mobile-menu .mm-sub--cats li a {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 8px; text-align: center;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--charcoal-2); text-decoration: none;
  transition: border-color .15s, background .15s;
}
.mobile-menu .mm-sub--cats li a:hover {
  border-color: var(--cyan); background: rgba(0,166,214,.05);
  color: var(--cyan);
}
.mm-cat-img {
  width: 52px; height: 52px; border-radius: 4px; overflow: hidden;
  background-color: var(--off-white); background-size: cover; background-position: center;
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mm-cat-img .bi { font-size: 22px; color: var(--magenta); }
.mobile-menu .mm-sub--cats .mm-cat-all {
  grid-column: 1 / -1;
}
.mobile-menu .mm-sub--cats .mm-cat-all a {
  flex-direction: row; gap: 8px; justify-content: center;
  background: var(--ivory-2); border-color: var(--line);
  font-size: 14px;
}
.mobile-menu .mm-sub li { border-bottom: none; }
.mobile-menu .mm-sub li a {
  padding: 12px 0 12px 20px;
  font-size: 17px;
  color: var(--dark);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-sub li:last-child a { border-bottom: none; }
.mm-parent-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; padding: 18px 0;
  font-family: var(--serif); font-size: 24px;
  color: var(--black); cursor: pointer; text-align: left;
}
.mm-parent-btn.active { color: var(--magenta); }
.mm-parent-btn .nav-sub__arrow { font-size: 14px; transition: transform .25s; }
.mm-parent-btn.open .nav-sub__arrow { transform: rotate(180deg); }

.menu-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  font-size: 22px; color: var(--black);
}

@media (max-width: 992px) {
  .nav-mp, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 28px;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0; flex: 1; overflow-y: auto; }
.mobile-menu ul li {
  border-bottom: 1px solid var(--line);
}
.mobile-menu ul a {
  display: block; padding: 18px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--black);
}

/* ---------- Brands marquee strip ---------- */
.brands-strip {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.brands-strip__label {
  flex-shrink: 0;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  height: 72px;
  display: flex;
  align-items: center;
}
.brands-marquee {
  flex: 1;
  overflow: hidden;
  height: 72px;
  display: flex;
  align-items: center;
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: brands-scroll 28s linear infinite;
  will-change: transform;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .2s;
}
.brand-item:hover { opacity: 1; }
.brand-item img {
  max-height: 36px;
  max-width: 80px;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  transition: filter .2s;
}
.brand-item:hover img { filter: grayscale(0); }
.brand-item span {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--dark);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .brands-strip__label { display: none; }
  .brand-item span { font-size: 14px; }
  .brands-track { gap: 36px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 .accent {
  font-style: italic; color: var(--magenta); font-weight: 400;
}
.hero__lede {
  font-size: 17px; color: var(--charcoal-2);
  max-width: 520px; margin-top: 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__meta {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__meta strong {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  display: block; color: var(--charcoal);
}
.hero__meta span {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Placeholder imagery ---------- */
.ph {
  background-color: var(--beige);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0) 18px,
      rgba(255,255,255,.35) 18px,
      rgba(255,255,255,.35) 19px),
    linear-gradient(180deg, var(--beige) 0%, var(--beige-2) 100%);
  position: relative;
  overflow: hidden;
}
.ph--dark {
  background-color: #222222;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0) 18px,
      rgba(255,255,255,.05) 18px,
      rgba(255,255,255,.05) 19px),
    linear-gradient(180deg, #222222 0%, #111111 100%);
  color: #AAAAAA;
}
.ph--gold {
  background-color: var(--cyan);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0) 18px,
      rgba(255,255,255,.15) 18px,
      rgba(255,255,255,.15) 19px),
    linear-gradient(180deg, #00B8EC 0%, var(--cyan) 100%);
}
.ph__label {
  position: absolute; left: 16px; top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  background: rgba(255,255,255,.8);
  padding: 4px 8px;
  border-radius: 2px;
}
.ph--dark .ph__label { color: #AAAAAA; background: rgba(0,0,0,.4); }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
}
.hero__visual .ph { position: absolute; inset: 0; }
.hero__visual .floater {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--ivory); padding: 12px 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.hero__visual .floater i { font-size: 18px; color: var(--gold-dark); flex-shrink: 0; }
.hero__visual .floater strong { display: block; font-family: var(--serif); font-size: 14px; }
.hero__visual .floater small { color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Section heading ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}
.section-head h2 { margin: 12px 0 0; }
.section-head .head-end { font-size: 15px; color: var(--muted); max-width: 460px; }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.cat-card {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .3s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cat-card .ph { aspect-ratio: 4/3; }
.cat-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.cat-card__body h3 { margin: 0 0 8px; }
.cat-card__body p { font-size: 14px; color: var(--muted); flex: 1; margin: 0 0 18px; }
.cat-card__link {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.cat-card__link i { transition: transform .2s ease; }
.cat-card:hover .cat-card__link i { transform: translateX(4px); }

.cat-card--feat { grid-column: span 8; }
.cat-card--feat .ph { aspect-ratio: 16/10; }
.cat-card--sm { grid-column: span 4; }

@media (max-width: 900px) {
  .cat-card, .cat-card--feat, .cat-card--sm { grid-column: span 12; }
}

/* ---------- Why-us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid > div {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.why-grid > div:last-child { border-right: 0; }
.why-grid i {
  font-size: 28px; color: var(--cyan);
  display: block; margin-bottom: 22px;
}
.why-grid h4 {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  margin: 0 0 10px;
}
.why-grid p { font-size: 13.5px; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .why-grid > div:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-grid > div { border-right: 0; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .ph { width:100%; height:100%; transition: transform .6s ease; }
.gallery-item:hover .ph { transform: scale(1.04); }
.gallery-item:hover .ph { transform: scale(1.04); }
.gallery-item__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.88) 100%);
}
.gallery-item__caption small {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); display: block; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.gallery-item__caption h4 {
  font-family: var(--serif); font-size: 15px; font-weight: 700;
  color: #ffffff; margin: 3px 0 0; line-height: 1.25;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 4; }
.g-6 { grid-column: span 6; }
.g-8 { grid-column: span 8; }
@media (max-width: 800px) {
  .g-3, .g-4, .g-6, .g-8 { grid-column: span 12; }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .g-3 { grid-column: span 6; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}
.process-step {
  text-align: center;
  padding: 0 20px 8px;
  position: relative;
}
.process-step__icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--gold-dark);
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: border-color .2s, background .2s;
}
.process-step:hover .process-step__icon-wrap {
  border-color: var(--gold-dark);
  background: var(--off-white);
}
.process-step__num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  opacity: .7;
  display: block;
  margin-bottom: 8px;
}
.process-step__title {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  margin: 0 0 8px;
}
.process-step__desc {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.65; margin: 0;
}
@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-step { padding: 20px; border-bottom: 1px solid var(--line); }
  .process-step:last-child, .process-step:nth-child(2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0B1E2D 0%, #0A2540 55%, #0E3352 100%);
  border-top: none;
  border-bottom: none;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,166,214,.22), transparent 65%);
  top: -140px; right: -80px;
  pointer-events: none;
}
.cta-banner::after {
  content: ""; position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,196,0,.07), transparent 65%);
  bottom: -80px; left: -40px;
  pointer-events: none;
}
.cta-banner__inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner .eyebrow { color: var(--yellow); }
.cta-banner .eyebrow::before { background: var(--yellow); }
.cta-banner h2 { color: #ffffff; margin: 14px 0 0; }
.cta-banner p { color: rgba(255,255,255,.65); margin: 16px 0 0; max-width: 520px; }
.cta-banner .btn-mp { justify-self: end; }
@media (max-width: 800px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner .btn-mp { justify-self: start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grey-1);
  color: var(--body-text);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h5 {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 20px; font-weight: 700;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { color: var(--body-text); font-size: 14px; transition: color .2s; }
.footer-grid ul a:hover { color: var(--cyan); }
.footer-brand .brand { color: var(--black); }
.footer-brand p { color: var(--body-text); font-size: 14px; max-width: 320px; margin: 18px 0 24px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--body-text);
  font-size: 15px;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-socials a:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- WhatsApp floater ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .25s ease, bottom .3s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
/* Pousse le bouton WhatsApp au-dessus de la barre CTA sticky mobile */
@media (max-width: 767px) {
  .has-sticky-cta .wa-float { bottom: 90px; }
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  background: linear-gradient(135deg, #0B1E2D 0%, #0A2540 55%, #0E3352 100%);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(0,166,214,.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin: 14px 0 0; max-width: 880px; color: #ffffff; }
.page-hero p.lede {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 640px; margin-top: 22px;
}
.page-hero .eyebrow { color: var(--cyan); }
.page-hero .eyebrow::before { background: var(--cyan); }
/* Yellow variant — coffrets rigides */
.page-hero--yellow::before {
  background: radial-gradient(circle, rgba(244,196,0,.2) 0%, transparent 65%);
}
.page-hero--yellow .eyebrow { color: var(--yellow); }
.page-hero--yellow .eyebrow::before { background: var(--yellow); }
.page-hero--yellow h1 em,
.page-hero--yellow h1 span[style*="gold"] { color: var(--yellow) !important; }
.breadcrumb-mp {
  display: flex; gap: 10px; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.breadcrumb-mp a { color: var(--muted); }
.page-hero .breadcrumb-mp { color: rgba(255,255,255,.45); }
.page-hero .breadcrumb-mp a { color: rgba(255,255,255,.45); }
.page-hero .breadcrumb-mp a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-mp a:hover { color: var(--gold-dark); }

/* ---------- Form ---------- */
.form-mp .form-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--charcoal-2); margin-bottom: 8px;
}
.form-mp .form-control,
.form-mp .form-select {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  font-size: 15px;
  color: var(--charcoal);
  box-shadow: none !important;
}
.form-mp .form-control:focus,
.form-mp .form-select:focus {
  border-color: var(--cyan);
  background: transparent;
}
.form-mp textarea.form-control { min-height: 120px; }
.form-mp .form-check { padding-left: 28px; margin-bottom: 10px; }
.form-mp .form-check-input {
  width: 16px; height: 16px;
  background: transparent;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  margin-left: -28px;
  box-shadow: none !important;
}
.form-mp .form-check-input:checked {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.form-mp .form-check-label { font-size: 14px; color: var(--charcoal-2); }
.form-mp .upload-box {
  border: 1px dashed var(--line);
  padding: 28px; text-align: center;
  cursor: pointer;
  transition: border-color .2s ease;
}
.form-mp .upload-box:hover { border-color: var(--gold); }
.form-mp .upload-box i { font-size: 28px; color: var(--gold-dark); display: block; margin-bottom: 10px; }
.form-mp .upload-box small { font-size: 12px; color: var(--muted); }

/* ---------- Reassurance box ---------- */
.reassure {
  background: var(--ivory-2);
  padding: 32px;
  border: 1px solid var(--line);
}
.reassure h4 { font-family: var(--serif); font-size: 22px; margin: 0 0 18px; }
.reassure ul { list-style: none; margin: 0; padding: 0; }
.reassure ul li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.reassure ul li:first-child { border-top: 0; padding-top: 0; }
.reassure ul li i { color: var(--cyan); font-size: 18px; margin-top: 2px; }
.reassure ul li strong { font-family: var(--serif); font-size: 17px; font-weight: 500; display: block; }
.reassure ul li small { font-size: 13px; color: var(--muted); }

/* ---------- Filter chips ---------- */
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 10px 20px;
  border: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  color: var(--charcoal-2);
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--charcoal); }
.filter-chip.active { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }

/* ---------- Spec list ---------- */
.spec-list {
  list-style: none; margin: 0; padding: 0;
}
.spec-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
}
.spec-list li:first-child { border-top: 0; }
.spec-list li .num {
  font-family: var(--serif); color: var(--gold-dark);
  font-size: 18px; min-width: 36px;
}
.spec-list li strong { font-family: var(--serif); font-size: 20px; font-weight: 500; display: block; margin-bottom: 4px; }
.spec-list li p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Finitions chips ---------- */
.finishes {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.finish-chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12.5px;
  color: var(--charcoal-2);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.finish-chip i { color: var(--gold-dark); font-size: 14px; }

/* ---------- Usage tags ---------- */
.usage-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 800px) { .usage-grid { grid-template-columns: repeat(2, 1fr); } }
.usage-tag {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.usage-tag i { display: block; font-size: 26px; color: var(--cyan); margin-bottom: 12px; }
.usage-tag strong { font-family: var(--serif); font-size: 18px; font-weight: 500; display: block; }
.usage-tag small { font-size: 12px; color: var(--muted); }

/* ── Specs bar (coffrets) ─────────────────────────────────────────── */
.specs-bar { background: var(--cyan); }
.specs-bar-inner {
  display: flex; align-items: stretch; justify-content: space-between;
}
.spec-badge {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.spec-badge:last-child { border-right: 0; }
.spec-badge__val {
  font-family: var(--serif); font-size: 20px;
  color: #fff; font-weight: 500;
  display: block; margin-bottom: 4px;
}
.spec-badge__lbl {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 1.4px; color: rgba(255,255,255,.65);
}

/* ── Type cards ───────────────────────────────────────────────────── */
.type-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.type-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-3px); }
.type-card__icon {
  padding: 32px 24px 24px;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.type-card__icon i {
  font-size: 36px; color: var(--gold-dark);
}
.type-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.type-card__title {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  margin: 0 0 10px; color: var(--charcoal);
}
.type-card__desc {
  font-size: 13.5px; color: var(--muted); margin: 0 0 18px;
  line-height: 1.65; flex: 1;
}
.type-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.type-card__tag {
  font-size: 11px; padding: 3px 10px;
  background: var(--ivory-2); border-radius: 20px;
  color: var(--charcoal); letter-spacing: .3px;
  border: 1px solid var(--line);
}

/* ── Grammage ─────────────────────────────────────────────────────── */
.gram-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gram-card {
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 28px 16px 22px; text-align: center;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.gram-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0,166,214,.14);
}
.gram-card--highlight {
  border-color: var(--cyan);
  background: rgba(0,166,214,.05);
}
.gram-card__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold-dark); color: var(--white);
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.gram-card__gsm {
  font-size: 34px; font-weight: 700;
  color: var(--gold-dark); font-family: var(--serif);
  line-height: 1; display: block;
}
.gram-card__unit {
  font-size: 10px; color: var(--muted); letter-spacing: .5px;
  display: block; margin: 3px 0 12px;
}
.gram-card__label {
  font-size: 13px; font-weight: 700; color: var(--charcoal);
  display: block; margin-bottom: 6px;
}
.gram-card__usages {
  font-size: 11.5px; color: var(--muted);
  line-height: 1.6; margin-bottom: 8px;
}
.gram-card__note {
  font-size: 10.5px; color: var(--gold-dark);
  font-style: italic; border-top: 1px solid var(--line);
  padding-top: 8px; margin-top: 4px;
}


/* ── Finition cards ───────────────────────────────────────────────── */
.fin-card {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.fin-card__body { padding: 16px 0 4px; }
.fin-card__title {
  color: var(--ivory); font-family: var(--serif);
  font-size: 18px; font-weight: 500; margin: 0 0 6px;
}
.fin-card__desc { color: #AAAAAA; font-size: 13.5px; margin: 0; }

/* ── Responsive coffrets ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .type-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .type-cards-grid { grid-template-columns: 1fr; }
  .gram-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-bar-inner { flex-wrap: wrap; }
  .spec-badge { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ---------- About metrics ---------- */
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
@media (max-width: 800px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
.metric strong {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; display: block; color: var(--charcoal);
}
.metric span {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Contact card ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 800px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}
.contact-card i { font-size: 22px; color: var(--cyan); display: block; margin-bottom: 14px; }
.contact-card small { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-card strong { font-family: var(--serif); font-size: 19px; font-weight: 500; display: block; color: var(--charcoal); }

/* ---------- Utilities ---------- */
.lead-mp { font-size: 18px; color: var(--charcoal-2); line-height: 1.55; }
.maxw-720 { max-width: 720px; }
.maxw-560 { max-width: 560px; }
.tag-pill {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ivory-2); color: var(--charcoal-2);
  padding: 5px 10px; border: 1px solid var(--line);
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════════════════════ */
.nav-mp .has-mega {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-mp .has-mega > a {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  height: 100%;
}
.nav-mp .has-mega > a::after { display: none; }
.nav-mp .has-mega > a.active,
.nav-mp .has-mega:hover > a { color: var(--magenta); }
.nav-mp .has-mega:hover .nav-sub__arrow { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .3s;
  z-index: 99;
}
/* invisible bridge: fills the gap between the nav <li> bottom and the mega panel top */
.nav-mega::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 40px;
}
.nav-mp .has-mega:hover .nav-mega,
.nav-mp .has-mega:focus-within .nav-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-mega__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 28px 24px 20px;
}
.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.nav-mega__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 13px; font-weight: 500;
  transition: border-color .15s, background .15s;
  text-decoration: none;
}
.nav-mega__item:hover {
  border-color: var(--cyan);
  background: rgba(0,166,214,.05);
  color: var(--cyan);
}
.nav-mega__icon {
  width: 56px; height: 56px; border-radius: 4px;
  overflow: hidden; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-mega__icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-mega__icon--ph { color: var(--magenta); font-size: 24px; }
.nav-mega__footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: right;
}
.nav-mega__footer a {
  font-size: 13px; font-weight: 600;
  color: var(--magenta);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .02em;
}
.nav-mega__footer a:hover { text-decoration: underline; }

/* Mega menu variants */
.nav-mega__item--active {
  border-color: var(--cyan);
  background: rgba(0,166,214,.06);
  color: var(--cyan);
}

/* 2-column variant (Personnaliser — 2 items) */
.nav-mega--sm .nav-mega__inner {
  max-width: 480px;
}
.nav-mega--sm .nav-mega__grid {
  grid-template-columns: repeat(2, 1fr);
}

/* 4-column variant (Découvrir — 4 items) */
.nav-mega--md .nav-mega__inner {
  max-width: 820px;
}
.nav-mega--md .nav-mega__grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE — GRID & CARDS
══════════════════════════════════════════════════════════ */
.section-products { padding: 56px 0 96px; }

.products-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.products-results-bar h2 {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--charcoal); margin: 0;
}
.products-results-bar span { font-size: 13px; color: var(--muted); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

.prod-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: box-shadow .18s, transform .18s;
  overflow: hidden;
}
.prod-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.prod-card__name a { color: inherit; text-decoration: none; }
.prod-card:hover .prod-card__name { color: var(--gold-dark); }
.prod-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory-2);
}
.prod-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.prod-card:hover .prod-card__img-wrap img { transform: scale(1.04); }
.prod-card__badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(17,17,17,.78); color: #F4C400;
  padding: 3px 10px; backdrop-filter: blur(8px);
}
.prod-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: var(--gold); opacity: .4;
}
.prod-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.prod-card__name {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--charcoal); line-height: 1.3; margin: 0;
}
.prod-card__desc {
  font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0;
  flex: 1;
}
.prod-card__moq {
  font-size: 12px; font-weight: 500; color: var(--gold-dark);
  letter-spacing: .04em;
}
.prod-card__actions { margin-top: 12px; }
.prod-card__actions .btn-mp {
  width: 100%; justify-content: center; font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE — CATEGORY SIDEBAR
══════════════════════════════════════════════════════════ */
.cat-sidebar-block { position: sticky; top: 96px; }
.cat-sidebar-list {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid var(--line);
}
.cat-sidebar-item { border-bottom: 1px solid var(--line); }
.cat-sidebar-item:last-child { border-bottom: none; }
.cat-sidebar-item a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  font-size: 13.5px; font-weight: 500;
  color: var(--charcoal-2);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.cat-sidebar-item a:hover { color: var(--gold-dark); background: rgba(0,0,0,.02); }
.cat-sidebar-item a.active {
  color: var(--cyan); background: rgba(0,166,214,.06);
  font-weight: 600;
}
.cat-count {
  font-size: 11px; color: var(--muted);
  background: var(--off-white); padding: 2px 8px;
  border-radius: 10px; border: 1px solid var(--line);
  font-weight: 400; flex-shrink: 0;
}
.cat-sidebar-item a.active .cat-count {
  background: var(--cyan); color: #fff; border-color: var(--cyan);
}
.cat-sidebar-cta {
  margin-top: 16px; padding: 22px 18px;
  background: rgba(0,166,214,.07); border: 1px solid rgba(0,166,214,.18); text-align: center;
}
.cat-sidebar-cta p {
  font-family: var(--serif); font-size: 16px;
  color: var(--black); margin: 0 0 14px; line-height: 1.4;
}
.cat-sidebar-cta .btn-mp {
  width: 100%; justify-content: center; font-size: 13px;
}

/* ── Matières & Supports page ───────────────────────────────── */
.mat-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.mat-section--alt {
  background: var(--ivory-2);
}
.mat-section__inner {
  display: grid;
  gap: 64px;
  align-items: center;
}
.mat-section__inner--right {
  grid-template-columns: 1fr 420px;
}
.mat-section__inner--left {
  grid-template-columns: 420px 1fr;
}
.mat-section__content .eyebrow {
  margin-bottom: 10px;
  display: inline-flex;
}
.mat-section__content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
}
.mat-section__lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.mat-section__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mat-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mat-block {
  margin-bottom: 22px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mat-section--alt .mat-block {
  background: var(--ivory);
}
.mat-block h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dark);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mat-block ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.mat-block ul li { margin-bottom: 4px; }
.mat-block ul li:last-child { margin-bottom: 0; }
.mat-block ul strong { color: var(--charcoal); }

/* Solutions section */
.mat-solutions {
  padding: 72px 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mat-solutions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mat-solutions h2 {
  color: var(--black);
  font-size: clamp(26px, 2.8vw, 36px);
  margin: 10px 0 16px;
}
.mat-solutions p {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.mat-solutions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mat-solutions__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.55;
}
.mat-solutions__list li i {
  color: var(--cyan);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Why choose section */
.mat-why {
  background: var(--ivory);
}
.mat-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mat-why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mat-why__item > i {
  font-size: 22px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.mat-why__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.mat-why__item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .mat-section__inner--right,
  .mat-section__inner--left {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mat-section__inner--left .mat-section__photo {
    order: -1;
  }
  .mat-solutions__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mat-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .mat-section { padding: 52px 0; }
  .mat-why__grid { grid-template-columns: 1fr; }
}

/* ── Affichage prix produit (détail + cartes) ────────────────── */

/* Page produit détail */
.prod-det-price {
  margin-bottom: 20px;
}
.pdp-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  display: inline-block;
}
.pdp-price--promo { color: #C53030; }
.pdp-promo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.pdp-badge-promo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #FEE2E2;
  color: #C53030;
  padding: 3px 8px;
  border-radius: 4px;
}
.pdp-original {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Cartes produits */
.prod-card__price {
  margin: 0 0 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pcp-main {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}
.pcp-main--promo { color: #C53030; }
.pcp-original {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ── Bouton flottant configurateur ───────────────────────────────────── */
.cfg-float-wrap {
  position: fixed;
  right: 22px;
  bottom: 90px; /* au-dessus du WhatsApp : 22 + 56 + 12 */
  z-index: 91;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.cfg-float-wrap > * { pointer-events: auto; }
.cfg-float-bubble {
  background: var(--charcoal);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(6px) scale(.94);
  transition: opacity .28s ease, transform .28s ease;
}
.cfg-float-wrap:hover .cfg-float-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cfg-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,166,214,.38);
  animation: cfg-pulse 2.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cfg-float i { font-size: 17px; flex-shrink: 0; }
.cfg-float:hover {
  color: #fff;
  background: var(--cyan-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0,166,214,.48);
  animation: none;
}
@keyframes cfg-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,166,214,.38); }
  50%       { box-shadow: 0 8px 28px rgba(0,166,214,.38), 0 0 0 10px rgba(0,166,214,.12); }
}
@media (max-width: 767px) {
  .cfg-float-bubble { display: none; }
  .cfg-float-label  { display: none; }
  .cfg-float {
    width: 52px; height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .cfg-float i { font-size: 21px; }
}

/* ── À la une section ─────────────────────────────────────────────────── */
.section-alune {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.alune-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.alune-content { flex: 1; }
.alune-badge {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.alune-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 14px;
  line-height: 1.25;
}
.alune-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 560px;
}
.alune-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alune-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
}
.alune-points li i {
  color: var(--gold-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.alune-cta {
  flex-shrink: 0;
}
.alune-btn {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .alune-inner {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .alune-cta { text-align: center; }
  .alune-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   OPTION CHIP PICKER — produit-detail & devis
══════════════════════════════════════════════════════════ */

/* ── Base chip ── */
.opt-chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  line-height: 1.3;
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.opt-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,166,214,.05);
}
.opt-chip.is-active {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,166,214,.22);
}
.opt-chip:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ── Regular pills (Finition, Couleur, Impression…) ── */
.opt-picker--chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.opt-picker--chips .opt-chip { padding: 8px 18px; }

/* ── Quantity pills ── */
.opt-picker--qty { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.opt-picker--qty .opt-chip { padding: 8px 16px; font-size: 12.5px; }

/* ── Dimension cards ── */
.opt-picker--dims {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.opt-picker--dims .opt-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px 14px;
  text-align: center;
  border-radius: 6px;
}
.opt-chip__sketch {
  width: 38px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color .15s;
  flex-shrink: 0;
}
.opt-chip.is-active .opt-chip__sketch { color: rgba(255,255,255,.9); }
.opt-chip:hover .opt-chip__sketch { color: var(--cyan); }
.opt-chip.is-active:hover .opt-chip__sketch { color: rgba(255,255,255,.9); }
.opt-chip__label {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  color: inherit;
}
/* error state */
.opt-picker.is-required-err .opt-chip {
  border-color: #F87171;
}
.opt-picker-err-msg {
  font-size: 12px;
  color: #B91C1C;
  margin-top: 5px;
  display: none;
}
.opt-picker-err-msg.visible { display: block; }

@media (max-width: 576px) {
  .opt-picker--dims { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

/* ============================================================
   HERO DARK
   ============================================================ */
.hero-dark {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1E2D 0%, #0A2540 55%, #0E3352 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(0,166,214,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 45%;
  height: 55%;
  background: radial-gradient(circle, rgba(244,196,0,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,166,214,.15);
  border: 1px solid rgba(0,166,214,.35);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-dark__badge i { font-size: 14px; }
.hero-dark__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero-dark__title em {
  font-style: italic;
  color: var(--cyan);
}
.hero-dark__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-dark__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-dark__cta .btn-mp.btn-primary-mp {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(0,166,214,.38);
}
.hero-dark__cta .btn-mp.btn-primary-mp:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  box-shadow: 0 12px 36px rgba(0,166,214,.48);
}
.hero-dark__cta .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.hero-dark__cta .btn-glass:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.hero-dark__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-dark__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.hero-dark__stat span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  margin-top: 4px;
  display: block;
}
/* Right — glassmorphism cards */
.hero-dark__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-dark__card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  padding: 28px 22px;
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-dark__card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(0,166,214,.35);
  transform: translateY(-4px);
}
.hero-dark__card i {
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}
.hero-dark__card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hero-dark__card p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
}
/* Hero with image variant */
.hero-dark__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-dark__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-dark__floater {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
}
.hero-dark__floater i {
  font-size: 22px;
  color: var(--cyan);
}
.hero-dark__floater strong { font-size: 13px; display: block; }
.hero-dark__floater small { font-size: 11px; color: rgba(255,255,255,.55); }
@media (max-width: 900px) {
  .hero-dark { padding: 100px 0 60px; min-height: unset; }
  .hero-dark__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-dark__cards { grid-template-columns: 1fr 1fr; }
  .hero-dark__lede { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-dark__cards { grid-template-columns: 1fr; }
  .hero-dark__stats { gap: 24px; }
  .hero-dark__cta { flex-direction: column; }
}
