/* ============================================================
   DISTRIPRO — Feuille de style principale
   DA : jaune logo (#FFD400) + noir charbon + papier chaud
   Typo : Archivo (variable, axe largeur) + Noto Sans SC (zh)
   ============================================================ */

:root {
  --yellow: #FFD400;
  --yellow-deep: #E3B900;
  --ink: #0E0D0A;
  --coal: #17150E;
  --coal-2: #1F1D14;
  --paper: #FAF7EF;
  --paper-2: #F1ECDF;
  --grey: #6B675C;
  --line: rgba(14, 13, 10, .12);
  --line-inv: rgba(250, 247, 239, .14);
  --ef-red: #D8232A;
  --lifwel-gold: #C9A227;
  --starpharm-orange: #F07818;
  --font-main: "Archivo", "Noto Sans SC", sans-serif;
  --shadow-pop: 8px 8px 0 var(--ink);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.dark :focus-visible, .site-footer :focus-visible {
  outline-color: var(--paper);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Typographie display ---------- */

.display {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 3px;
  background: var(--yellow);
}

.hl { /* surlignage jaune type marqueur */
  background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%);
}
.dark .hl, .hl-dark {
  background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%);
  color: var(--paper);
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  font-family: var(--font-main);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 2px solid var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-yellow:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.dark .btn-yellow { box-shadow: 5px 5px 0 rgba(255, 212, 0, .25); border-color: var(--yellow); }
.dark .btn-yellow:hover { box-shadow: 8px 8px 0 rgba(255, 212, 0, .25); }
.dark .btn-ghost { color: var(--paper); border-color: var(--paper); }
.dark .btn-ghost:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 0;
}
.logo-link img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  padding: .3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.btn-pro {
  padding: .6rem 1.1rem;
  font-size: .75rem;
}

/* Sélecteur de langue */
.lang-switch {
  display: flex;
  border: 2px solid var(--ink);
  overflow: hidden;
}
.lang-switch a {
  white-space: nowrap;
  writing-mode: horizontal-tb;
  padding: .55rem .7rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  border-right: 2px solid var(--ink);
}
.lang-switch a:last-child { border-right: none; }
.lang-switch a.on { background: var(--ink); color: var(--yellow); }
.lang-switch a:not(.on):hover { background: var(--yellow); }

/* Burger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections génériques ---------- */

section { padding: 5.5rem 0; }
.dark {
  background: var(--coal);
  color: var(--paper);
}
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin: .9rem 0 1rem; }
.section-head p { color: var(--grey); font-size: 1.05rem; }
.dark .section-head p { color: rgba(250, 247, 239, .65); }

/* ---------- Hero ---------- */

.hero {
  background: var(--coal);
  color: var(--paper);
  position: relative;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}
/* trame de points façon carte logistique */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 212, 0, .13) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(115deg, black 30%, transparent 75%);
  -webkit-mask-image: linear-gradient(115deg, black 30%, transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  margin: 1.3rem 0 1.5rem;
}
.hero h1 .y { color: var(--yellow); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(250, 247, 239, .72);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* collage images hero */
.hero-visual { position: relative; }
.hero-visual .ph-main {
  border: 3px solid var(--yellow);
  box-shadow: 14px 14px 0 rgba(255, 212, 0, .18);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.hero-visual .ph-small {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--paper);
  bottom: -2.2rem;
  left: -2.6rem;
}
.hero-visual .tag-founded {
  position: absolute;
  top: -1.2rem;
  right: -0.6rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .55rem .9rem;
}

/* stats hero */
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--line-inv);
  margin-top: 4.5rem;
}
.hero-stats .stat {
  padding: 1.6rem 1.4rem;
  border-right: 2px solid var(--line-inv);
}
.hero-stats .stat:last-child { border-right: none; }
.stat .num {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  font-stretch: 115%;
  color: var(--yellow);
  line-height: 1.1;
}
.stat .lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(250, 247, 239, .6);
  margin-top: .3rem;
}

/* ---------- Bandeau marquee marques ---------- */

.marquee {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: .85rem 0;
}
.marquee-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.4rem;
  row-gap: .4rem;
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.marquee-track span {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .06em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.marquee-track span:not(:last-child)::after { content: "✕"; font-size: .75rem; }

/* ---------- Expertise / à propos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
}
.about-img-wrap .chip {
  position: absolute;
  bottom: 1.6rem;
  left: -1.4rem;
  background: var(--ink);
  color: var(--yellow);
  padding: .8rem 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .12em;
}
.features { display: grid; gap: 0; margin-top: 2.2rem; border: 2px solid var(--ink); }
.feature {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 2px solid var(--ink);
  transition: background .18s ease;
}
.feature:last-child { border-bottom: none; }
.feature:hover { background: var(--yellow); }
.feature .n {
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.15rem;
}
.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .25rem; }
.feature p { font-size: .92rem; color: var(--grey); }
.feature:hover p { color: var(--ink); }

/* ---------- Marques ---------- */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.brand-card {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.brand-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.brand-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent, var(--yellow));
}
.brand-card .brand-logo {
  height: 42px;
  width: auto;
  max-width: 75%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: .9rem;
}
.brand-card .brand-name {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: .2rem;
}
.brand-card .brand-origin {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--grey);
  margin-bottom: .9rem;
}
.brand-card p { font-size: .92rem; color: var(--grey); }
.brand-card .brand-cat {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--ink);
  color: var(--paper);
  padding: .35rem .7rem;
}

/* ---------- Réseau boutiques ---------- */

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.store-card {
  position: relative;
  border: 3px solid var(--paper);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.store-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.store-card:hover img { transform: scale(1.05); }
.store-card .store-label {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  padding: .7rem 1.1rem;
  font-size: .95rem;
}
.store-info {
  border: 2px solid var(--line-inv);
  border-top: none;
  padding: 1rem 1.1rem;
  font-size: .84rem;
  color: rgba(250, 247, 239, .75);
}
.store-info strong { color: var(--paper); display: block; margin-bottom: .2rem; }
.store-info a { color: var(--yellow); }
.store-info .hrs { display: block; margin-top: .35rem; font-size: .78rem; color: rgba(250, 247, 239, .72); }

.founder-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
  width: 100%;
  object-fit: cover;
}
.timeline-chips { display: grid; gap: .8rem; margin-top: 1.8rem; }
.timeline-chips .tchip {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-left: 4px solid var(--yellow);
  padding: .4rem 0 .4rem 1.1rem;
}
.timeline-chips .tchip b {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: .95rem;
  white-space: nowrap;
}
.timeline-chips .tchip span { color: var(--grey); font-size: .92rem; }
@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 460px; }
}

.export-list {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.5rem;
}
.export-list .pill {
  border: 2px solid var(--paper);
  padding: .55rem 1.1rem;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.export-list .pill.on { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* ---------- Diass / production ---------- */

.diass {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.diass-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: center;
}
.diass h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: .9rem 0 1.2rem; }
.diass p { font-size: 1rem; margin-bottom: 1rem; }
.diass .eyebrow::before { background: var(--ink); }
.diass-facts { display: grid; gap: 1rem; }
.diass-facts .fact {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.3rem 1.5rem;
  box-shadow: 5px 5px 0 var(--ink);
}
.diass-facts .fact .num {
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.7rem;
  line-height: 1.15;
}
.diass-facts .fact .lbl {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--grey);
  font-weight: 700;
}

/* ---------- Ambitions ---------- */

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) {
  .goals-grid { grid-template-columns: 1fr; }
}
.goal {
  border: 2px solid var(--line-inv);
  padding: 2.2rem 2rem;
  position: relative;
  transition: border-color .2s ease;
}
.goal:hover { border-color: var(--yellow); }
.goal .goal-num {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  font-stretch: 115%;
  color: var(--yellow);
  line-height: 1.05;
}
.goal .goal-when {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: .4rem 0 1rem;
  color: rgba(250, 247, 239, .6);
}
.goal p { font-size: .95rem; color: rgba(250, 247, 239, .72); }

/* ---------- Partenaires ---------- */

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1rem 0;
}
.partners-row img {
  height: 44px;
  width: auto;
  filter: grayscale(1) contrast(.85);
  opacity: .75;
  transition: filter .2s ease, opacity .2s ease;
}
.partners-row img:hover { filter: none; opacity: 1; }

/* ---------- CTA Espace Pro ---------- */

.pro-cta { position: relative; overflow: hidden; }
.pro-cta::after { /* hachures jaunes en coin */
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: repeating-linear-gradient(45deg, var(--yellow) 0 14px, transparent 14px 32px);
  opacity: .25;
  transform: rotate(8deg);
}
.pro-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
}
.pro-cta h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: .9rem 0 1rem; }
.pro-cta p { color: rgba(250, 247, 239, .7); max-width: 32rem; }
.pro-cta .actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

/* ---------- Page contact ---------- */

.contact-hero { padding: 4.5rem 0 3rem; }
.contact-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  border: 2px solid var(--ink);
  background: #fff;
  padding: 2.2rem;
  box-shadow: var(--shadow-pop);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: .95rem;
  padding: .8rem .9rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--yellow);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--grey); margin-top: 1rem; }
.form-alert {
  border: 2px solid var(--ink);
  padding: 1rem 1.2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  display: none;
}
.form-alert.ok { background: #DFF3D8; display: block; }
.form-alert.err { background: #F8D7D7; display: block; }

.contact-info .info-block {
  border-left: 4px solid var(--yellow);
  padding: .2rem 0 .2rem 1.3rem;
  margin-bottom: 1.8rem;
}
.contact-info .info-block h3 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--grey);
  margin-bottom: .3rem;
}
.contact-info .info-block p, .contact-info .info-block a { font-size: 1.05rem; font-weight: 600; }
.contact-info .info-block a:hover { background: var(--yellow); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-wordmark {
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.02em;
}
.footer-wordmark .d { color: var(--yellow); }
.footer-quote {
  font-size: .9rem;
  font-style: italic;
  color: rgba(250, 247, 239, .55);
  margin-top: 1rem;
  max-width: 24rem;
}
.site-footer h4 {
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.site-footer li { margin-bottom: .55rem; }
.site-footer li a, .site-footer li span { font-size: .92rem; color: rgba(250, 247, 239, .78); }
.site-footer li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--line-inv);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(250, 247, 239, .5);
}

/* ---------- Bouton WhatsApp flottant ---------- */

.wa-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: .75rem 1.1rem;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-fab:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.wa-fab svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 760px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: .8rem; border-radius: 50%; }
}

/* ---------- Slider avant / après ---------- */

.ba-wrap { margin-top: 3rem; }
.ba-slider {
  position: relative;
  max-width: 560px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--paper);
  user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-after { clip-path: inset(0 0 0 var(--cut, 50%)); }
.ba-slider .ba-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--cut, 50%);
  width: 4px;
  background: var(--yellow);
  transform: translateX(-2px);
  pointer-events: none;
}
.ba-slider .ba-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E0D0A' stroke-width='2.5' stroke-linecap='square'%3E%3Cpath d='M8 7l-5 5 5 5M16 7l5 5-5 5'/%3E%3C/svg%3E") center / 60% no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.ba-slider .ba-tag {
  position: absolute;
  bottom: .8rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .35rem .7rem;
  pointer-events: none;
}
.ba-slider .ba-tag.avant { left: .8rem; }
.ba-slider .ba-tag.apres { right: .8rem; background: var(--yellow); color: var(--ink); }

/* ---------- Section e-commerce / app ---------- */

.shop-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.shop-phone {
  max-width: 300px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
}
@media (max-width: 980px) {
  .shop-grid { grid-template-columns: 1fr; }
}


/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid, .about-grid, .diass-grid, .pro-cta-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .about-img-wrap { max-width: 460px; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(2n) { border-right: none; }
  .hero-stats .stat:nth-child(-n+2) { border-bottom: 2px solid var(--line-inv); }
  .stores-grid { grid-template-columns: 1fr; max-width: 480px; }
  .goals-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 62px;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 90;
  }
  .nav-open .main-nav { transform: none; }
  .main-nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header-cta .btn-pro { display: none; }
  .brands-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual .ph-small { left: 0; }
  section { padding: 3.8rem 0; }
}
