/* ============================================================
   Strong Muscle — Feuille de style principale
   Design premium : noir / blanc / gris + accent énergie
   Mobile-first · CSS3 · complète Bootstrap 5
   ============================================================ */

:root {
  --sm-ink: #0d0f13;
  --sm-ink-2: #171a21;
  --sm-ink-3: #232833;
  --sm-gray: #6b7280;
  --sm-gray-2: #9aa1ad;
  --sm-bg: #f6f7f9;
  --sm-paper: #ffffff;
  --sm-line: #e8eaef;
  --sm-accent: #ff4d1c;
  --sm-accent-2: #ff8a3d;
  --sm-accent-soft: #fff0ea;
  --sm-grad: linear-gradient(135deg, #ff4d1c 0%, #ff8a3d 100%);
  --sm-success: #16a34a;
  --sm-danger: #dc2626;
  --sm-warning: #d97706;
  --sm-info: #2563eb;
  --sm-radius: 16px;
  --sm-radius-sm: 10px;
  --sm-shadow: 0 6px 24px rgba(13, 15, 19, .06);
  --sm-shadow-lg: 0 18px 48px rgba(13, 15, 19, .12);
  --sm-font-display: 'Archivo', system-ui, sans-serif;
  --sm-font-body: 'Inter', system-ui, sans-serif;
  --sm-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sm-font-body);
  background: var(--sm-bg);
  color: var(--sm-ink);
  font-size: .95rem;
  line-height: 1.6;
  opacity: 0;
  transition: opacity .4s var(--sm-ease);
  overflow-x: hidden;
}
body.is-loaded { opacity: 1; }

h1, h2, h3, h4, h5, .sm-display {
  font-family: var(--sm-font-display);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--sm-ink);
}

a { color: var(--sm-ink); text-decoration: none; transition: color .25s var(--sm-ease); }
a:hover { color: var(--sm-accent); }

img { max-width: 100%; }

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

/* Scrollbar fine */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cdd2db; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: var(--sm-accent); }

/* Focus accessible */
:focus-visible { outline: 2px solid var(--sm-accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--sm-ease), transform .7s var(--sm-ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Boutons ---------- */
.sm-btn {
  --pad-y: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--sm-font-display);
  font-weight: 700;
  font-size: .92rem;
  padding: var(--pad-y) 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s var(--sm-ease), box-shadow .25s var(--sm-ease), background .25s, color .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.sm-btn:active { transform: scale(.96); }
.sm-btn--accent { background: var(--sm-grad); color: #fff; box-shadow: 0 8px 20px rgba(255, 77, 28, .3); }
.sm-btn--accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 77, 28, .4); }
.sm-btn--dark { background: var(--sm-ink); color: #fff; }
.sm-btn--dark:hover { background: var(--sm-ink-3); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13, 15, 19, .25); }
.sm-btn--light { background: #fff; color: var(--sm-ink); }
.sm-btn--light:hover { color: var(--sm-accent); transform: translateY(-2px); box-shadow: var(--sm-shadow-lg); }
.sm-btn--outline { background: transparent; color: var(--sm-ink); border-color: var(--sm-line); }
.sm-btn--outline:hover { border-color: var(--sm-ink); color: var(--sm-ink); transform: translateY(-2px); }
.sm-btn--ghost { background: var(--sm-accent-soft); color: var(--sm-accent); }
.sm-btn--ghost:hover { background: var(--sm-accent); color: #fff; }
.sm-btn:disabled { opacity: .55; pointer-events: none; }
.sm-btn--lg { --pad-y: .95rem; font-size: 1rem; padding-inline: 2rem; }

.sm-btn-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sm-line);
  background: #fff;
  color: var(--sm-ink);
  transition: all .25s var(--sm-ease);
}
.sm-btn-icon:hover { border-color: var(--sm-accent); color: var(--sm-accent); transform: translateY(-2px); }
.sm-btn-icon.is-active { background: var(--sm-accent); border-color: var(--sm-accent); color: #fff; }

.is-bump { animation: smBump .4s var(--sm-ease); }
@keyframes smBump { 30% { transform: scale(.92); } 60% { transform: scale(1.06); } }

/* ---------- Topbar ---------- */
.sm-topbar { background: var(--sm-ink); color: #cbd2dc; font-size: .78rem; padding: .45rem 0; }
.sm-topbar__msg i { color: var(--sm-accent-2); margin-right: .3rem; }
.sm-topbar__links a { color: #cbd2dc; }
.sm-topbar__links a:hover { color: #fff; }

/* ---------- Navbar ---------- */
.sm-navbar {
  /* Pas de backdrop-filter ici : bug de rendu Chromium avec position:sticky */
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--sm-line);
  padding: .8rem 0;
  transition: padding .3s var(--sm-ease), box-shadow .3s var(--sm-ease);
}
.sm-navbar.is-scrolled { padding: .5rem 0; box-shadow: 0 8px 30px rgba(13, 15, 19, .08); }

.sm-logo { display: inline-flex; align-items: center; gap: .55rem; }
.sm-logo__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sm-grad);
  color: #fff;
  border-radius: 11px;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(255, 77, 28, .35);
  transition: transform .3s var(--sm-ease);
}
.sm-logo:hover .sm-logo__icon { transform: rotate(-8deg) scale(1.06); }
.sm-logo__text { font-family: var(--sm-font-display); font-weight: 900; font-size: 1.18rem; letter-spacing: .02em; color: var(--sm-ink); }
.sm-logo__text em { font-style: normal; color: var(--sm-accent); }

.sm-nav { list-style: none; gap: .35rem; margin: 0; padding: 0; align-items: center; }
.sm-nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-weight: 600; font-size: .92rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  color: var(--sm-ink-2);
  position: relative;
}
.sm-nav__link:hover, .sm-nav__link.active { color: var(--sm-accent); background: var(--sm-accent-soft); }
.sm-nav__hot {
  font-size: .58rem; font-weight: 800;
  background: var(--sm-grad); color: #fff;
  padding: .12rem .4rem; border-radius: 999px;
  animation: smPulse 2s infinite;
}
@keyframes smPulse { 50% { transform: scale(1.12); } }

.sm-nav__drop { position: relative; }
.sm-nav__menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow-lg);
  padding: .55rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--sm-ease);
  z-index: 1050;
}
.sm-nav__drop:hover .sm-nav__menu,
.sm-nav__drop:focus-within .sm-nav__menu { opacity: 1; visibility: visible; transform: none; }
.sm-nav__menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.sm-nav__menu a, .sm-nav__menu button {
  display: flex; align-items: center; gap: .6rem;
  width: 100%; border: 0; background: none; text-align: left;
  padding: .55rem .8rem;
  border-radius: var(--sm-radius-sm);
  font-size: .88rem; font-weight: 500;
  color: var(--sm-ink-2);
  transition: all .2s var(--sm-ease);
}
.sm-nav__menu a:hover, .sm-nav__menu button:hover { background: var(--sm-accent-soft); color: var(--sm-accent); transform: translateX(4px); }
.sm-nav__drop--right .sm-nav__menu { left: auto; right: 0; }
.sm-nav__hello { font-size: .85rem; padding: .5rem .8rem .3rem; margin: 0; color: var(--sm-gray); border-bottom: 1px solid var(--sm-line); margin-bottom: .35rem; }

.sm-nav-actions { display: flex; align-items: center; gap: .5rem; }

.sm-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sm-bg);
  border: 1px solid transparent;
  color: var(--sm-ink);
  font-size: 1.1rem;
  transition: all .25s var(--sm-ease);
  cursor: pointer;
}
.sm-icon-btn:hover { background: var(--sm-accent-soft); color: var(--sm-accent); transform: translateY(-2px); }

.sm-count {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px;
  background: var(--sm-grad); color: #fff;
  font-size: .62rem; font-weight: 800;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
}
.sm-count.is-zero { display: none; }
.sm-count.is-pop { animation: smPop .4s var(--sm-ease); }
@keyframes smPop { 40% { transform: scale(1.4); } }

.sm-search {
  display: flex; align-items: center; gap: .5rem;
  background: var(--sm-bg);
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: .45rem 1rem;
  width: 220px;
  transition: all .3s var(--sm-ease);
}
.sm-search:focus-within { border-color: var(--sm-accent); background: #fff; width: 270px; box-shadow: 0 0 0 4px rgba(255, 77, 28, .12); }
.sm-search i { color: var(--sm-gray); }
.sm-search input { border: 0; background: none; outline: none; width: 100%; font-size: .88rem; }

.sm-search-mobile { max-height: 0; overflow: hidden; transition: max-height .35s var(--sm-ease); background: #fff; }
.sm-search-mobile.is-open { max-height: 80px; border-top: 1px solid var(--sm-line); }
.sm-search-mobile form { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; }
.sm-search-mobile input { border: 0; outline: none; width: 100%; font-size: .95rem; }
.sm-search-mobile i { color: var(--sm-gray); }

/* Navbar compacte sur petits écrans : tout sur une seule ligne */
@media (max-width: 575.98px) {
  .sm-navbar .container { flex-wrap: nowrap; gap: .4rem; }
  .sm-logo__text { font-size: .98rem; }
  .sm-logo__icon { width: 32px; height: 32px; font-size: .95rem; border-radius: 9px; }
  .sm-icon-btn, .sm-burger { width: 38px; height: 38px; font-size: 1rem; }
  .sm-nav-actions { gap: .35rem; }
}

/* Burger */
.sm-burger {
  width: 42px; height: 42px;
  border: 0; background: var(--sm-bg); border-radius: 50%;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
}
.sm-burger span { width: 17px; height: 2px; background: var(--sm-ink); border-radius: 2px; transition: all .3s var(--sm-ease); }
.sm-burger:hover span { background: var(--sm-accent); }
.sm-burger:hover span:nth-child(2) { width: 12px; }

/* Offcanvas */
.sm-offcanvas { max-width: 320px; }
.sm-offcanvas .offcanvas-header { border-bottom: 1px solid var(--sm-line); }
.sm-offcanvas__hello { color: var(--sm-gray); margin-bottom: 1rem; }
.sm-offcanvas__nav { display: flex; flex-direction: column; gap: .15rem; }
.sm-offcanvas__nav a {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .9rem;
  border-radius: var(--sm-radius-sm);
  font-weight: 600; font-size: .95rem;
  transition: all .2s var(--sm-ease);
}
.sm-offcanvas__nav a:hover { background: var(--sm-accent-soft); color: var(--sm-accent); transform: translateX(4px); }
.sm-offcanvas__heading { margin: 1.4rem 0 .6rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sm-gray-2); }

/* ---------- Navigation mobile basse ---------- */
.sm-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--sm-line);
  display: flex;
  z-index: 1030;
  padding: .35rem 0 max(.35rem, env(safe-area-inset-bottom));
}
.sm-bottomnav a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: .62rem; font-weight: 600;
  color: var(--sm-gray);
  padding: .3rem 0;
  transition: color .2s;
}
.sm-bottomnav a i { font-size: 1.25rem; }
.sm-bottomnav a.active, .sm-bottomnav a:hover { color: var(--sm-accent); }
.sm-bottomnav__bag { position: relative; }
@media (max-width: 991.98px) {
  body { padding-bottom: 66px; }
}

/* ---------- Retour en haut ---------- */
.sm-backtop {
  position: fixed; right: 18px; bottom: 84px;
  width: 46px; height: 46px;
  border: 0; border-radius: 50%;
  background: var(--sm-ink); color: #fff;
  box-shadow: var(--sm-shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .35s var(--sm-ease);
  z-index: 1020;
}
.sm-backtop.is-visible { opacity: 1; visibility: visible; transform: none; }
.sm-backtop:hover { background: var(--sm-accent); }
@media (min-width: 992px) { .sm-backtop { bottom: 28px; } }

/* ---------- Toasts ---------- */
.sm-toasts {
  position: fixed;
  top: 14px; right: 14px; left: 14px;
  display: flex; flex-direction: column; gap: .6rem;
  z-index: 2000;
  pointer-events: none;
}
@media (min-width: 576px) { .sm-toasts { left: auto; width: 360px; } }

.sm-toast {
  pointer-events: auto;
  position: relative;
  display: flex; align-items: flex-start; gap: .7rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--sm-line);
  border-radius: 14px;
  box-shadow: var(--sm-shadow-lg);
  padding: .85rem 1rem;
  opacity: 0; transform: translateX(40px) scale(.97);
  transition: all .4s var(--sm-ease);
  overflow: hidden;
}
.sm-toast.is-in { opacity: 1; transform: none; }
.sm-toast.is-out { opacity: 0; transform: translateX(40px) scale(.95); }
.sm-toast__icon {
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}
.sm-toast--success .sm-toast__icon, .sm-toast--cart .sm-toast__icon { background: var(--sm-success); }
.sm-toast--error .sm-toast__icon { background: var(--sm-danger); }
.sm-toast--warning .sm-toast__icon { background: var(--sm-warning); }
.sm-toast--info .sm-toast__icon { background: var(--sm-info); }
.sm-toast__body { flex: 1; min-width: 0; }
.sm-toast__title { display: block; font-size: .85rem; font-weight: 700; }
.sm-toast__msg { display: block; font-size: .8rem; color: var(--sm-gray); }
.sm-toast__close { border: 0; background: none; color: var(--sm-gray-2); font-size: .75rem; padding: .2rem; }
.sm-toast__close:hover { color: var(--sm-ink); }
.sm-toast__bar {
  position: absolute; left: 0; bottom: 0; height: 3px;
  background: var(--sm-grad);
  animation: smToastBar 3.8s linear forwards;
}
@keyframes smToastBar { from { width: 100%; } to { width: 0; } }
.sm-toast--success .sm-toast__bar, .sm-toast--cart .sm-toast__bar { background: var(--sm-success); }
.sm-toast--error .sm-toast__bar { background: var(--sm-danger); }
.sm-toast--warning .sm-toast__bar { background: var(--sm-warning); }
.sm-toast--info .sm-toast__bar { background: var(--sm-info); }

/* ---------- Sections ---------- */
.sm-section { padding: 3.2rem 0; }
@media (min-width: 992px) { .sm-section { padding: 4.5rem 0; } }
.sm-section--paper { background: var(--sm-paper); }

.sm-heading { margin-bottom: 2rem; }
.sm-heading__eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--sm-accent);
  margin-bottom: .5rem;
}
.sm-heading__eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--sm-grad); border-radius: 2px; }
.sm-heading h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0; }
.sm-heading p { color: var(--sm-gray); margin: .5rem 0 0; max-width: 560px; }

/* ---------- Hero ---------- */
.sm-hero {
  position: relative;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(255, 77, 28, .28), transparent 60%),
              radial-gradient(700px 400px at -10% 110%, rgba(255, 138, 61, .18), transparent 55%),
              var(--sm-ink);
  color: #fff;
  overflow: hidden;
}
.sm-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 500px at 60% 40%, #000, transparent);
  pointer-events: none;
}
.sm-hero__inner { position: relative; z-index: 1; padding: 3.4rem 0 3rem; }
@media (min-width: 992px) { .sm-hero__inner { padding: 5.5rem 0 5rem; } }

.sm-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  color: #ffb494;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.sm-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.sm-hero h1 .txt-grad {
  background: var(--sm-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sm-hero__lead { color: #b9c0cc; font-size: 1.02rem; max-width: 520px; margin-bottom: 1.8rem; }
.sm-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }

.sm-hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.sm-hero__stat strong { display: block; font-family: var(--sm-font-display); font-size: 1.5rem; font-weight: 900; color: #fff; }
.sm-hero__stat span { font-size: .78rem; color: #8f97a5; }

.sm-hero__visual { position: relative; display: flex; justify-content: center; }
.sm-hero__img {
  width: min(340px, 78%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .5));
  border-radius: 24px;
  animation: smFloat 5.5s ease-in-out infinite;
}
@keyframes smFloat { 50% { transform: translateY(-14px); } }

.sm-hero__chip {
  position: absolute;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: .6rem .9rem;
  color: #fff; font-size: .78rem; font-weight: 600;
  animation: smFloat 6s ease-in-out infinite;
}
.sm-hero__chip i { color: var(--sm-accent-2); font-size: 1.1rem; }
.sm-hero__chip--1 { top: 12%; left: 2%; animation-delay: .6s; }
.sm-hero__chip--2 { bottom: 16%; right: 0; animation-delay: 1.2s; }

.sm-hero__marquee { position: relative; border-top: 1px solid rgba(255,255,255,.08); padding: .8rem 0; overflow: hidden; }
.sm-marquee__track { display: flex; gap: 3rem; width: max-content; animation: smMarquee 26s linear infinite; }
.sm-marquee__track span { color: #79818f; font-family: var(--sm-font-display); font-weight: 800; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.sm-marquee__track span i { color: var(--sm-accent); margin-right: .6rem; }
@keyframes smMarquee { to { transform: translateX(-50%); } }

/* ---------- Cartes catégorie ---------- */
.sm-catcard {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem;
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: 1.4rem .8rem;
  height: 100%;
  transition: all .35s var(--sm-ease);
}
.sm-catcard:hover { transform: translateY(-6px); box-shadow: var(--sm-shadow-lg); border-color: transparent; }
.sm-catcard__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: transform .35s var(--sm-ease);
}
.sm-catcard:hover .sm-catcard__icon { transform: scale(1.12) rotate(-6deg); }
.sm-catcard span { font-weight: 700; font-size: .82rem; line-height: 1.3; }

/* ---------- Carte produit ---------- */
.sm-card {
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .35s var(--sm-ease), box-shadow .35s var(--sm-ease), border-color .35s;
}
.sm-card:hover { transform: translateY(-6px); box-shadow: var(--sm-shadow-lg); border-color: transparent; }

.sm-card__media { position: relative; background: #f2f3f6; overflow: hidden; aspect-ratio: 1; }
.sm-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--sm-ease); }
.sm-card:hover .sm-card__media img { transform: scale(1.06); }

.sm-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .68rem; font-weight: 800;
  padding: .3rem .65rem;
  border-radius: 999px;
  color: #fff;
  letter-spacing: .03em;
}
.sm-badge--promo { background: var(--sm-grad); box-shadow: 0 4px 12px rgba(255, 77, 28, .4); }
.sm-badge--new { background: var(--sm-info); }
.sm-badge--best { background: var(--sm-ink); }

.sm-card__wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px;
  border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  color: var(--sm-ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--sm-ease);
  opacity: 0; transform: translateY(-6px);
}
.sm-card:hover .sm-card__wish, .sm-card__wish.is-active { opacity: 1; transform: none; }
.sm-card__wish:hover { background: var(--sm-accent); color: #fff; }
.sm-card__wish.is-active { background: var(--sm-accent); color: #fff; }
@media (hover: none) { .sm-card__wish { opacity: 1; transform: none; } }

.sm-card__quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  border: 0;
  background: rgba(13, 15, 19, .92);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 700; font-size: .82rem;
  padding: .65rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  opacity: 0; transform: translateY(10px);
  transition: all .35s var(--sm-ease);
}
.sm-card:hover .sm-card__quick { opacity: 1; transform: none; }
.sm-card__quick:hover { background: var(--sm-accent); }
.sm-card__quick:disabled { background: var(--sm-gray-2); }
@media (hover: none) { .sm-card__quick { opacity: 1; transform: none; position: static; margin: .6rem; width: calc(100% - 1.2rem); } }

.sm-card__body { padding: .95rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .28rem; flex: 1; }
.sm-card__brand { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sm-gray-2); }
.sm-card__title { font-size: .95rem; font-weight: 700; margin: 0; line-height: 1.35; }
.sm-card__title a { color: var(--sm-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sm-card__title a:hover { color: var(--sm-accent); }
.sm-card__rating { display: flex; align-items: center; gap: .4rem; }
.sm-stars { color: #f5a623; font-size: .78rem; letter-spacing: 1px; }
.sm-card__count { font-size: .74rem; color: var(--sm-gray-2); }
.sm-card__price { display: flex; align-items: baseline; gap: .55rem; margin-top: auto; padding-top: .3rem; }
.sm-price { font-family: var(--sm-font-display); font-weight: 800; font-size: 1.08rem; color: var(--sm-ink); }
.sm-price--old { font-size: .82rem; color: var(--sm-gray-2); text-decoration: line-through; }

/* Vue liste */
.sm-card--list { flex-direction: row; }
.sm-card--list .sm-card__media { flex: 0 0 150px; aspect-ratio: auto; }
@media (min-width: 768px) { .sm-card--list .sm-card__media { flex-basis: 220px; } }
.sm-card--list .sm-card__body { padding: 1.1rem 1.2rem; }
.sm-card__desc { font-size: .84rem; color: var(--sm-gray); margin: .3rem 0 0; }
.sm-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: .6rem; flex-wrap: wrap; }
.sm-card__actions-inline { display: flex; gap: .5rem; align-items: center; }

/* ---------- Skeleton ---------- */
.sm-skel {
  position: relative;
  background: #edeef2;
  border-radius: 8px;
  overflow: hidden;
}
.sm-skel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
  animation: smShimmer 1.3s infinite;
}
@keyframes smShimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.sm-skel--img { aspect-ratio: 1; border-radius: 0; }
.sm-skel--line { height: 13px; margin-bottom: .5rem; }
.sm-skel-card { pointer-events: none; }

/* ---------- Bandeau promo ---------- */
.sm-promo {
  position: relative;
  background: radial-gradient(800px 300px at 90% 0%, rgba(255, 138, 61, .35), transparent 60%), var(--sm-ink);
  border-radius: 24px;
  color: #fff;
  padding: 2.4rem 1.6rem;
  overflow: hidden;
}
@media (min-width: 992px) { .sm-promo { padding: 3.4rem 3rem; } }
.sm-promo h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 900; }
.sm-promo p { color: #b9c0cc; }
.sm-promo__code {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1.5px dashed rgba(255, 255, 255, .35);
  border-radius: 12px;
  padding: .55rem 1.1rem;
  font-family: var(--sm-font-display); font-weight: 800; letter-spacing: .12em;
  cursor: pointer;
  transition: all .25s var(--sm-ease);
}
.sm-promo__code:hover { background: rgba(255, 255, 255, .18); transform: scale(1.03); }

/* ---------- Marques ---------- */
.sm-brandstrip { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.sm-brandstrip span {
  font-family: var(--sm-font-display); font-weight: 800; font-size: .95rem;
  color: var(--sm-gray-2);
  border: 1px solid var(--sm-line);
  background: var(--sm-paper);
  border-radius: 999px;
  padding: .6rem 1.4rem;
  transition: all .3s var(--sm-ease);
}
.sm-brandstrip span:hover { color: var(--sm-ink); border-color: var(--sm-ink); transform: translateY(-3px); box-shadow: var(--sm-shadow); }

/* ---------- Pourquoi nous ---------- */
.sm-feature {
  display: flex; gap: 1rem;
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: 1.4rem;
  height: 100%;
  transition: all .35s var(--sm-ease);
}
.sm-feature:hover { transform: translateY(-5px); box-shadow: var(--sm-shadow-lg); }
.sm-feature__icon {
  flex: 0 0 50px; width: 50px; height: 50px;
  background: var(--sm-accent-soft); color: var(--sm-accent);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: all .35s var(--sm-ease);
}
.sm-feature:hover .sm-feature__icon { background: var(--sm-grad); color: #fff; transform: rotate(-8deg); }
.sm-feature h4 { font-size: 1rem; margin-bottom: .3rem; }
.sm-feature p { font-size: .84rem; color: var(--sm-gray); margin: 0; }

/* ---------- Témoignages ---------- */
.sm-quote {
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: 1.6rem;
  height: 100%;
  position: relative;
  transition: all .35s var(--sm-ease);
}
.sm-quote:hover { transform: translateY(-5px); box-shadow: var(--sm-shadow-lg); }
.sm-quote__mark { position: absolute; top: 1rem; right: 1.2rem; font-size: 2.6rem; color: var(--sm-accent-soft); line-height: 1; font-family: Georgia, serif; }
.sm-quote p { font-size: .9rem; color: var(--sm-ink-2); margin: .8rem 0 1.1rem; }
.sm-quote__who { display: flex; align-items: center; gap: .8rem; }
.sm-quote__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sm-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--sm-font-display);
}
.sm-quote__who strong { display: block; font-size: .9rem; }
.sm-quote__who span { font-size: .76rem; color: var(--sm-gray); }

/* ---------- Newsletter ---------- */
.sm-newsletter {
  background: radial-gradient(600px 260px at 10% 0%, rgba(255, 77, 28, .25), transparent 55%), var(--sm-ink);
  border-radius: 24px;
  padding: 2.6rem 1.6rem;
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) { .sm-newsletter { padding: 3.4rem; } }
.sm-newsletter h3 { color: #fff; font-weight: 900; font-size: clamp(1.35rem, 3vw, 1.9rem); }
.sm-newsletter p { color: #b9c0cc; max-width: 480px; margin: .6rem auto 1.6rem; }
.sm-newsletter form { display: flex; gap: .6rem; max-width: 460px; margin: 0 auto; }
.sm-newsletter input {
  flex: 1;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: #fff;
  padding: .8rem 1.3rem;
  outline: none;
  transition: all .3s var(--sm-ease);
  min-width: 0;
}
.sm-newsletter input::placeholder { color: #8f97a5; }
.sm-newsletter input:focus { border-color: var(--sm-accent); background: rgba(255, 255, 255, .12); box-shadow: 0 0 0 4px rgba(255, 77, 28, .2); }
.sm-newsletter input.is-invalid { border-color: var(--sm-danger); }
@media (max-width: 575.98px) {
  .sm-newsletter form { flex-direction: column; }
}

/* ---------- Footer ---------- */
.sm-footer { background: var(--sm-ink); color: #9aa1ad; margin-top: 3rem; }
.sm-footer__main { padding: 3rem 0 2rem; }
.sm-logo--footer .sm-logo__text { color: #fff; }
.sm-footer__about { font-size: .86rem; margin: 1rem 0 1.2rem; max-width: 320px; }
.sm-footer__social { display: flex; gap: .6rem; }
.sm-footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  color: #cbd2dc;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--sm-ease);
}
.sm-footer__social a:hover { background: var(--sm-grad); color: #fff; transform: translateY(-3px); }
.sm-footer h6 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.sm-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.sm-footer ul a { color: #9aa1ad; font-size: .86rem; }
.sm-footer ul a:hover { color: var(--sm-accent-2); padding-left: 3px; }
.sm-footer__contact li { display: flex; gap: .55rem; font-size: .84rem; }
.sm-footer__contact i { color: var(--sm-accent-2); }
.sm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.2rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: .8rem;
}
.sm-footer__bottom p { margin: 0; }
.sm-footer__bottom strong { color: #fff; }
.sm-footer__pay { display: flex; flex-wrap: wrap; gap: 1rem; }
.sm-footer__pay span { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; }
.sm-footer__pay i { color: var(--sm-accent-2); }

/* ---------- Fil d'Ariane ---------- */
.sm-breadcrumb { background: var(--sm-paper); border-bottom: 1px solid var(--sm-line); padding: .9rem 0; }
.sm-breadcrumb ol { margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; font-size: .8rem; }
.sm-breadcrumb li { color: var(--sm-gray); display: flex; align-items: center; gap: .4rem; }
.sm-breadcrumb li + li::before { content: '/'; color: var(--sm-gray-2); }
.sm-breadcrumb a { color: var(--sm-gray); }
.sm-breadcrumb a:hover { color: var(--sm-accent); }
.sm-breadcrumb li[aria-current] { color: var(--sm-ink); font-weight: 600; }

/* ---------- Page header ---------- */
.sm-pagehead { background: var(--sm-ink); color: #fff; padding: 2.4rem 0; position: relative; overflow: hidden; }
.sm-pagehead::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 90% 10%, rgba(255, 77, 28, .3), transparent 60%);
}
.sm-pagehead h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin: 0; position: relative; z-index: 1; }
.sm-pagehead p { color: #b9c0cc; margin: .4rem 0 0; position: relative; z-index: 1; }

/* ---------- Boutique : filtres ---------- */
.sm-filters { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.3rem; }
.sm-filters__group { padding: 1rem 0; border-bottom: 1px solid var(--sm-line); }
.sm-filters__group:first-child { padding-top: 0; }
.sm-filters__group:last-child { border-bottom: 0; padding-bottom: 0; }
.sm-filters__title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; display: flex; justify-content: space-between; align-items: center; }
.sm-check { display: flex; align-items: center; gap: .6rem; padding: .32rem 0; cursor: pointer; font-size: .88rem; color: var(--sm-ink-2); }
.sm-check input { accent-color: var(--sm-accent); width: 16px; height: 16px; cursor: pointer; }
.sm-check:hover { color: var(--sm-accent); }
.sm-check .sm-check__n { margin-left: auto; font-size: .72rem; color: var(--sm-gray-2); }
.sm-price-inputs { display: flex; align-items: center; gap: .5rem; }
.sm-price-inputs input { width: 100%; border: 1.5px solid var(--sm-line); border-radius: 10px; padding: .45rem .6rem; font-size: .85rem; outline: none; transition: border-color .25s; }
.sm-price-inputs input:focus { border-color: var(--sm-accent); }
.sm-range { width: 100%; accent-color: var(--sm-accent); margin-top: .8rem; }

.sm-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem;
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: .7rem .9rem;
  margin-bottom: 1.2rem;
}
.sm-toolbar__count { font-size: .84rem; color: var(--sm-gray); margin-right: auto; }
.sm-toolbar select {
  border: 1.5px solid var(--sm-line);
  border-radius: 10px;
  padding: .45rem 2rem .45rem .8rem;
  font-size: .85rem; font-weight: 600;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  transition: border-color .25s;
}
.sm-toolbar select:focus { border-color: var(--sm-accent); }
.sm-viewtoggle { display: flex; border: 1.5px solid var(--sm-line); border-radius: 10px; overflow: hidden; }
.sm-viewtoggle button {
  border: 0; background: #fff;
  width: 38px; height: 36px;
  color: var(--sm-gray);
  transition: all .25s;
}
.sm-viewtoggle button.active { background: var(--sm-ink); color: #fff; }

.sm-chipbar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.sm-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--sm-accent-soft); color: var(--sm-accent);
  font-size: .78rem; font-weight: 700;
  border-radius: 999px;
  padding: .35rem .8rem;
}
.sm-chip button { border: 0; background: none; color: inherit; padding: 0; font-size: .7rem; display: flex; }

/* Pagination */
.sm-pagination { display: flex; justify-content: center; gap: .45rem; margin-top: 2rem; flex-wrap: wrap; }
.sm-pagination button {
  min-width: 42px; height: 42px;
  border: 1.5px solid var(--sm-line);
  background: var(--sm-paper);
  border-radius: 12px;
  font-weight: 700; font-size: .88rem;
  color: var(--sm-ink);
  transition: all .25s var(--sm-ease);
  padding: 0 .6rem;
}
.sm-pagination button:hover:not(:disabled) { border-color: var(--sm-accent); color: var(--sm-accent); transform: translateY(-2px); }
.sm-pagination button.active { background: var(--sm-ink); border-color: var(--sm-ink); color: #fff; }
.sm-pagination button:disabled { opacity: .4; }

.sm-empty { text-align: center; padding: 3.5rem 1rem; }
.sm-empty__icon { font-size: 3rem; color: var(--sm-gray-2); margin-bottom: .8rem; display: inline-flex; width: 92px; height: 92px; align-items: center; justify-content: center; background: var(--sm-paper); border-radius: 50%; box-shadow: var(--sm-shadow); }
.sm-empty h3 { font-size: 1.2rem; }
.sm-empty p { color: var(--sm-gray); max-width: 380px; margin: 0 auto 1.4rem; }

/* ---------- Page produit ---------- */
.sm-gallery { position: sticky; top: 96px; }
.sm-gallery__main {
  position: relative;
  background: #f2f3f6;
  border-radius: var(--sm-radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.sm-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--sm-ease); }
.sm-gallery__main.is-zoom img { transform: scale(1.9); }
.sm-gallery__thumbs { display: flex; gap: .6rem; margin-top: .7rem; }
.sm-gallery__thumbs button {
  flex: 1; max-width: 84px;
  aspect-ratio: 1;
  border: 2px solid var(--sm-line);
  border-radius: 12px;
  overflow: hidden;
  background: #f2f3f6;
  padding: 0;
  transition: all .25s var(--sm-ease);
}
.sm-gallery__thumbs button.active { border-color: var(--sm-accent); box-shadow: 0 0 0 3px rgba(255, 77, 28, .15); }
.sm-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.sm-product__brand { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--sm-accent); }
.sm-product h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin: .3rem 0 .6rem; }
.sm-product__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; font-size: .84rem; color: var(--sm-gray); }
.sm-product__price { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin: 1rem 0; }
.sm-product__price .sm-price { font-size: 1.9rem; }
.sm-product__price .sm-price--old { font-size: 1.05rem; }
.sm-product__save { background: var(--sm-accent-soft); color: var(--sm-accent); font-size: .76rem; font-weight: 800; padding: .3rem .7rem; border-radius: 999px; }

.sm-stock { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 600; }
.sm-stock--in { color: var(--sm-success); }
.sm-stock--low { color: var(--sm-warning); }
.sm-stock--out { color: var(--sm-danger); }
.sm-stock i { font-size: .6rem; }

.sm-flavors { display: flex; flex-wrap: wrap; gap: .5rem; }
.sm-flavors button {
  border: 1.5px solid var(--sm-line);
  background: #fff;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .84rem; font-weight: 600;
  transition: all .25s var(--sm-ease);
}
.sm-flavors button:hover { border-color: var(--sm-accent); color: var(--sm-accent); }
.sm-flavors button.active { background: var(--sm-ink); border-color: var(--sm-ink); color: #fff; }

.sm-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--sm-line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.sm-qty button {
  width: 42px; height: 44px;
  border: 0; background: none;
  font-size: 1rem; color: var(--sm-ink);
  transition: all .2s;
}
.sm-qty button:hover:not(:disabled) { background: var(--sm-accent-soft); color: var(--sm-accent); }
.sm-qty button:disabled { opacity: .35; }
.sm-qty input {
  width: 46px; border: 0; text-align: center;
  font-weight: 800; font-family: var(--sm-font-display);
  outline: none; background: none;
}

.sm-product__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin: 1.2rem 0; }
.sm-product__trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .6rem; margin-top: 1.4rem; }
.sm-product__trust span { display: flex; align-items: center; gap: .55rem; font-size: .78rem; color: var(--sm-gray); background: var(--sm-paper); border: 1px solid var(--sm-line); padding: .6rem .8rem; border-radius: 12px; }
.sm-product__trust i { color: var(--sm-accent); font-size: 1rem; }

.sm-share { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .84rem; color: var(--sm-gray); }
.sm-share a, .sm-share button { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--sm-line); background: #fff; color: var(--sm-ink); transition: all .25s; }
.sm-share a:hover, .sm-share button:hover { background: var(--sm-ink); color: #fff; transform: translateY(-2px); }

/* Onglets produit */
.sm-tabs { display: flex; gap: .4rem; overflow-x: auto; border-bottom: 2px solid var(--sm-line); scrollbar-width: none; }
.sm-tabs::-webkit-scrollbar { display: none; }
.sm-tabs button {
  border: 0; background: none;
  font-weight: 700; font-size: .9rem;
  padding: .8rem 1.1rem;
  color: var(--sm-gray);
  white-space: nowrap;
  position: relative;
  transition: color .25s;
}
.sm-tabs button::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2.5px; background: var(--sm-grad);
  transform: scaleX(0);
  transition: transform .3s var(--sm-ease);
}
.sm-tabs button.active { color: var(--sm-ink); }
.sm-tabs button.active::after { transform: scaleX(1); }
.sm-tabpane { display: none; padding: 1.5rem 0; animation: smFade .45s var(--sm-ease); }
.sm-tabpane.active { display: block; }
@keyframes smFade { from { opacity: 0; transform: translateY(8px); } }

/* Avis */
.sm-review { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--sm-line); }
.sm-review:last-child { border-bottom: 0; }
.sm-review__avatar { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--sm-ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--sm-font-display); }
.sm-review__head { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.sm-review__head strong { font-size: .9rem; }
.sm-review__date { font-size: .74rem; color: var(--sm-gray-2); }
.sm-review p { font-size: .87rem; color: var(--sm-ink-2); margin: .35rem 0 0; }

.sm-ratingbox { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.4rem; text-align: center; }
.sm-ratingbox strong { font-family: var(--sm-font-display); font-size: 2.6rem; font-weight: 900; display: block; line-height: 1; }

/* Achetés ensemble */
.sm-bundle { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.4rem; }
.sm-bundle__item { display: flex; align-items: center; gap: .9rem; padding: .7rem 0; }
.sm-bundle__item img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; background: #f2f3f6; }
.sm-bundle__item label { flex: 1; cursor: pointer; font-size: .88rem; font-weight: 600; }
.sm-bundle__item small { display: block; color: var(--sm-gray); font-weight: 400; }
.sm-bundle__item input { accent-color: var(--sm-accent); width: 17px; height: 17px; }

/* Barre mobile d'ajout */
.sm-stickybar {
  position: fixed; left: 0; right: 0; bottom: 65px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--sm-line);
  padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom, 0));
  display: flex; align-items: center; gap: .8rem;
  z-index: 1029;
  transform: translateY(120%);
  transition: transform .4s var(--sm-ease);
}
.sm-stickybar.is-visible { transform: none; }
.sm-stickybar__price { font-family: var(--sm-font-display); font-weight: 900; font-size: 1.05rem; }
.sm-stickybar .sm-btn { flex: 1; }
@media (min-width: 992px) { .sm-stickybar { display: none; } }

/* ---------- Panier ---------- */
.sm-cartline {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: .9rem;
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: .9rem;
  transition: all .3s var(--sm-ease);
}
.sm-cartline:hover { box-shadow: var(--sm-shadow); }
.sm-cartline.is-removing { opacity: 0; transform: translateX(30px); }
.sm-cartline__img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; background: #f2f3f6; }
.sm-cartline__title { font-size: .9rem; font-weight: 700; margin: 0; }
.sm-cartline__meta { font-size: .76rem; color: var(--sm-gray); }
.sm-cartline__row { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: .5rem; flex-wrap: wrap; }
.sm-cartline .sm-qty button { width: 34px; height: 36px; }
.sm-cartline .sm-qty input { width: 36px; font-size: .9rem; }
.sm-cartline__remove { border: 0; background: none; color: var(--sm-gray-2); font-size: 1rem; transition: color .2s, transform .2s; padding: .3rem; }
.sm-cartline__remove:hover { color: var(--sm-danger); transform: scale(1.15); }

.sm-summary { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.4rem; position: sticky; top: 96px; }
.sm-summary h5 { font-size: 1.05rem; margin-bottom: 1rem; }
.sm-summary__row { display: flex; justify-content: space-between; font-size: .9rem; padding: .4rem 0; color: var(--sm-ink-2); }
.sm-summary__row span:last-child { font-weight: 700; }
.sm-summary__row--discount { color: var(--sm-success); }
.sm-summary__total { display: flex; justify-content: space-between; border-top: 1.5px dashed var(--sm-line); margin-top: .7rem; padding-top: .9rem; font-family: var(--sm-font-display); font-weight: 900; font-size: 1.15rem; }
.sm-summary__free { font-size: .76rem; background: #ecfdf3; color: var(--sm-success); border-radius: 10px; padding: .55rem .8rem; display: flex; gap: .5rem; align-items: center; margin: .7rem 0; }
.sm-freebar { height: 6px; background: var(--sm-line); border-radius: 6px; overflow: hidden; margin: .5rem 0; }
.sm-freebar span { display: block; height: 100%; background: var(--sm-grad); border-radius: 6px; transition: width .6s var(--sm-ease); }

.sm-coupon { display: flex; gap: .5rem; }
.sm-coupon input {
  flex: 1; min-width: 0;
  border: 1.5px solid var(--sm-line);
  border-radius: 999px;
  padding: .6rem 1rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  outline: none;
  transition: border-color .25s;
}
.sm-coupon input:focus { border-color: var(--sm-accent); }

/* ---------- Formulaires ---------- */
.sm-field { position: relative; margin-bottom: 1.1rem; }
.sm-field label { font-size: .8rem; font-weight: 700; margin-bottom: .35rem; display: block; color: var(--sm-ink-2); }
.sm-field label .req { color: var(--sm-danger); }
.sm-input, .form-control.sm-input, .form-select.sm-input {
  width: 100%;
  border: 1.5px solid var(--sm-line);
  border-radius: 12px;
  padding: .72rem 1rem;
  font-size: .92rem;
  background: #fff;
  outline: none;
  transition: border-color .25s var(--sm-ease), box-shadow .25s var(--sm-ease), transform .25s;
}
.sm-input:focus { border-color: var(--sm-accent); box-shadow: 0 0 0 4px rgba(255, 77, 28, .12); }
.sm-input.is-invalid { border-color: var(--sm-danger); }
.sm-input.is-invalid:focus { box-shadow: 0 0 0 4px rgba(220, 38, 38, .12); }
.sm-input.is-valid { border-color: var(--sm-success); }
.sm-input.is-valid:focus { box-shadow: 0 0 0 4px rgba(22, 163, 74, .12); }
.sm-field .invalid-feedback { display: none; font-size: .76rem; margin-top: .3rem; }
.sm-field .is-invalid ~ .invalid-feedback,
.sm-field:has(.is-invalid) .invalid-feedback { display: block; }
textarea.sm-input { resize: vertical; min-height: 110px; border-radius: 14px; }

.sm-phone { display: flex; }
.sm-phone__prefix {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--sm-bg);
  border: 1.5px solid var(--sm-line);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  padding: 0 .85rem;
  font-weight: 700; font-size: .9rem;
  color: var(--sm-ink-2);
  white-space: nowrap;
}
.sm-phone .sm-input { border-radius: 0 12px 12px 0; }

.sm-pass { position: relative; }
.sm-pass .sm-input { padding-right: 2.8rem; }
.sm-pass__toggle {
  position: absolute; right: .5rem; top: 50%;
  transform: translateY(-50%);
  border: 0; background: none;
  color: var(--sm-gray-2);
  width: 34px; height: 34px;
  border-radius: 50%;
  transition: color .2s;
  z-index: 3;
}
.sm-pass__toggle:hover { color: var(--sm-ink); }

.sm-strength { display: flex; gap: 4px; margin-top: .45rem; }
.sm-strength span { flex: 1; height: 4px; border-radius: 4px; background: var(--sm-line); transition: background .3s; }
.sm-strength[data-level="1"] span:nth-child(-n+1) { background: var(--sm-danger); }
.sm-strength[data-level="2"] span:nth-child(-n+2) { background: var(--sm-warning); }
.sm-strength[data-level="3"] span:nth-child(-n+3) { background: #84cc16; }
.sm-strength[data-level="4"] span { background: var(--sm-success); }

/* ---------- Auth ---------- */
.sm-auth { min-height: calc(100vh - 260px); display: flex; align-items: center; padding: 3rem 0; }
.sm-auth__card {
  background: var(--sm-paper);
  border: 1px solid var(--sm-line);
  border-radius: 22px;
  box-shadow: var(--sm-shadow-lg);
  padding: 2rem 1.5rem;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 576px) { .sm-auth__card { padding: 2.6rem; } }
.sm-auth__icon {
  width: 58px; height: 58px;
  background: var(--sm-grad); color: #fff;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(255, 77, 28, .35);
  margin-bottom: 1.1rem;
}
.sm-auth__card h1 { font-size: 1.5rem; margin-bottom: .3rem; }
.sm-auth__sub { color: var(--sm-gray); font-size: .88rem; margin-bottom: 1.6rem; }
.sm-auth__alt { text-align: center; font-size: .86rem; color: var(--sm-gray); margin-top: 1.4rem; }
.sm-auth__alt a { color: var(--sm-accent); font-weight: 700; }

/* ---------- Compte ---------- */
.sm-account-nav { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); overflow: hidden; }
.sm-account-nav__user { display: flex; align-items: center; gap: .9rem; padding: 1.2rem; background: var(--sm-ink); color: #fff; }
.sm-account-nav__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sm-grad); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--sm-font-display); font-size: 1.1rem; }
.sm-account-nav__user strong { display: block; font-size: .95rem; }
.sm-account-nav__user span { font-size: .74rem; color: #9aa1ad; word-break: break-all; }
.sm-account-nav nav { display: flex; flex-direction: column; padding: .6rem; }
.sm-account-nav nav a, .sm-account-nav nav button {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .9rem;
  border: 0; background: none; text-align: left; width: 100%;
  border-radius: var(--sm-radius-sm);
  font-size: .89rem; font-weight: 600;
  color: var(--sm-ink-2);
  transition: all .22s var(--sm-ease);
}
.sm-account-nav nav a:hover, .sm-account-nav nav a.active, .sm-account-nav nav button:hover { background: var(--sm-accent-soft); color: var(--sm-accent); transform: translateX(4px); }
.sm-account-nav nav i { width: 20px; text-align: center; }

.sm-panel { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.5rem; }
.sm-panel h2 { font-size: 1.2rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.sm-panel h2 i { color: var(--sm-accent); }

.sm-statcard { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.2rem; display: flex; align-items: center; gap: 1rem; transition: all .3s var(--sm-ease); height: 100%; }
.sm-statcard:hover { transform: translateY(-4px); box-shadow: var(--sm-shadow-lg); }
.sm-statcard__icon { width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; background: var(--sm-accent-soft); color: var(--sm-accent); }
.sm-statcard strong { font-family: var(--sm-font-display); font-size: 1.35rem; font-weight: 900; display: block; line-height: 1.1; }
.sm-statcard span { font-size: .76rem; color: var(--sm-gray); }

.sm-order {
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: 1.1rem;
  transition: all .3s var(--sm-ease);
}
.sm-order:hover { box-shadow: var(--sm-shadow); border-color: var(--sm-gray-2); }
.sm-order__head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.sm-order__id { font-family: var(--sm-font-display); font-weight: 800; }
.sm-order__date { font-size: .78rem; color: var(--sm-gray); }
.sm-status { font-size: .72rem; font-weight: 800; padding: .32rem .75rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .35rem; }
.sm-status--pending { background: #fef3c7; color: #92400e; }
.sm-status--confirmed { background: #dbeafe; color: #1e40af; }
.sm-status--shipped { background: #e0e7ff; color: #3730a3; }
.sm-status--delivered { background: #dcfce7; color: #166534; }
.sm-order__items { display: flex; gap: .5rem; margin: .8rem 0; }
.sm-order__items img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; background: #f2f3f6; border: 1px solid var(--sm-line); }
.sm-order__foot { display: flex; justify-content: space-between; align-items: center; gap: .8rem; flex-wrap: wrap; }

/* Timeline suivi */
.sm-track { display: flex; margin: 1.6rem 0; }
.sm-track__step { flex: 1; text-align: center; position: relative; }
.sm-track__step::before {
  content: '';
  position: absolute; top: 19px; left: -50%; right: 50%;
  height: 3px; background: var(--sm-line);
  z-index: 0;
}
.sm-track__step:first-child::before { display: none; }
.sm-track__step.done::before { background: var(--sm-success); }
.sm-track__dot {
  position: relative; z-index: 1;
  width: 40px; height: 40px;
  margin: 0 auto .5rem;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--sm-line);
  color: var(--sm-gray-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: all .4s var(--sm-ease);
}
.sm-track__step.done .sm-track__dot { background: var(--sm-success); border-color: var(--sm-success); color: #fff; }
.sm-track__step.current .sm-track__dot { border-color: var(--sm-accent); color: var(--sm-accent); box-shadow: 0 0 0 5px rgba(255, 77, 28, .15); animation: smPulse 2s infinite; }
.sm-track__step span { font-size: .68rem; font-weight: 700; color: var(--sm-gray); display: block; }
.sm-track__step.done span, .sm-track__step.current span { color: var(--sm-ink); }

.sm-address { border: 1.5px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.1rem; height: 100%; position: relative; transition: all .3s var(--sm-ease); }
.sm-address:hover { border-color: var(--sm-accent); box-shadow: var(--sm-shadow); }
.sm-address--default { border-color: var(--sm-accent); }
.sm-address__tag { position: absolute; top: -10px; left: 14px; background: var(--sm-grad); color: #fff; font-size: .64rem; font-weight: 800; padding: .2rem .6rem; border-radius: 999px; }
.sm-address h6 { font-size: .92rem; }
.sm-address p { font-size: .82rem; color: var(--sm-gray); margin: 0; }
.sm-address__actions { display: flex; gap: .4rem; margin-top: .8rem; }

.sm-notif { display: flex; gap: .9rem; padding: .95rem; border-radius: var(--sm-radius-sm); border: 1px solid var(--sm-line); transition: background .25s; }
.sm-notif:hover { background: var(--sm-bg); }
.sm-notif__icon { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; background: var(--sm-accent-soft); color: var(--sm-accent); display: inline-flex; align-items: center; justify-content: center; }
.sm-notif p { font-size: .86rem; margin: 0; }
.sm-notif small { color: var(--sm-gray-2); font-size: .72rem; }

/* ---------- Paiement ---------- */
.sm-step-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.sm-step-head__n { width: 30px; height: 30px; border-radius: 50%; background: var(--sm-ink); color: #fff; font-weight: 800; font-size: .82rem; display: inline-flex; align-items: center; justify-content: center; font-family: var(--sm-font-display); }
.sm-step-head h2 { font-size: 1.08rem; margin: 0; }

.sm-payopt { display: flex; align-items: flex-start; gap: .9rem; border: 1.5px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1rem 1.1rem; cursor: pointer; transition: all .25s var(--sm-ease); margin-bottom: .7rem; }
.sm-payopt:hover { border-color: var(--sm-gray-2); }
.sm-payopt.active { border-color: var(--sm-accent); background: var(--sm-accent-soft); box-shadow: 0 0 0 4px rgba(255, 77, 28, .08); }
.sm-payopt input { accent-color: var(--sm-accent); width: 18px; height: 18px; margin-top: 3px; }
.sm-payopt strong { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }
.sm-payopt small { color: var(--sm-gray); font-size: .78rem; }
.sm-payopt i { color: var(--sm-accent); font-size: 1.1rem; }

.sm-checkout-item { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; }
.sm-checkout-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: #f2f3f6; }
.sm-checkout-item div { flex: 1; min-width: 0; }
.sm-checkout-item strong { font-size: .84rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sm-checkout-item small { color: var(--sm-gray); font-size: .74rem; }
.sm-checkout-item span { font-weight: 700; font-size: .86rem; white-space: nowrap; }

/* ---------- Confirmation ---------- */
.sm-success-anim { width: 96px; height: 96px; margin: 0 auto 1.4rem; position: relative; }
.sm-success-anim__circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--sm-success);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2.6rem;
  animation: smSuccessPop .6s var(--sm-ease) both;
  box-shadow: 0 16px 40px rgba(22, 163, 74, .35);
}
@keyframes smSuccessPop { 0% { transform: scale(0); } 65% { transform: scale(1.12); } 100% { transform: scale(1); } }
.sm-success-anim__ring { position: absolute; inset: -12px; border-radius: 50%; border: 2px dashed rgba(22, 163, 74, .4); animation: smSpin 14s linear infinite; }
@keyframes smSpin { to { transform: rotate(360deg); } }

.sm-confetti { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: smConfetti 1.6s var(--sm-ease) both; opacity: 0; }
@keyframes smConfetti {
  0% { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(300deg); }
}

/* ---------- Pages statiques ---------- */
.sm-prose { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.8rem; }
@media (min-width: 768px) { .sm-prose { padding: 2.5rem; } }
.sm-prose h2 { font-size: 1.25rem; margin: 1.8rem 0 .7rem; display: flex; align-items: center; gap: .6rem; }
.sm-prose h2:first-child { margin-top: 0; }
.sm-prose h2 i { color: var(--sm-accent); font-size: 1.1rem; }
.sm-prose p, .sm-prose li { color: var(--sm-ink-2); font-size: .92rem; }
.sm-prose ul { padding-left: 1.2rem; }
.sm-prose li { margin-bottom: .4rem; }
.sm-callout { background: var(--sm-accent-soft); border-left: 4px solid var(--sm-accent); border-radius: 10px; padding: 1rem 1.2rem; font-size: .88rem; margin: 1.2rem 0; }

/* ---------- Contact ---------- */
.sm-contact-card { background: var(--sm-paper); border: 1px solid var(--sm-line); border-radius: var(--sm-radius); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; height: 100%; transition: all .3s var(--sm-ease); }
.sm-contact-card:hover { transform: translateY(-4px); box-shadow: var(--sm-shadow-lg); }
.sm-contact-card__icon { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; background: var(--sm-grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.sm-contact-card h5 { font-size: .95rem; margin-bottom: .2rem; }
.sm-contact-card p { font-size: .85rem; color: var(--sm-gray); margin: 0; }

/* ---------- Divers ---------- */
.sm-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .8rem; scrollbar-width: none; }
.sm-scroller::-webkit-scrollbar { display: none; }
.sm-scroller > * { scroll-snap-align: start; }
@media (min-width: 576px) { .sm-scroller { grid-auto-columns: 44%; } }
@media (min-width: 992px) { .sm-scroller { grid-auto-columns: 23.5%; } }

.text-accent { color: var(--sm-accent) !important; }
.bg-soft { background: var(--sm-accent-soft) !important; }
