/* ==========================================================================
   SANDAGA DAKAR — Feuille de style principale
   Palette dérivée du logo : bleu marine (#053262) + vert (#00BF63).
   ========================================================================== */

:root {
  --navy: #053262;
  --navy-deep: #032140;
  --navy-soft: #0B4A87;
  --green: #00BF63;
  --green-deep: #019A50;
  --green-light: #37D686;

  --paper: #FBFCFB;
  --paper-dim: #F1F4F3;
  --line: #E1E6E4;

  --text: #142A22;
  --text-muted: #5B6B65;
  --text-on-navy: #F1F5F3;
  --text-on-navy-muted: #AEC2D6;

  --danger: #C0392B;
  --ok: #1F8A4C;

  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-s: 6px;
  --radius-m: 10px;
  --container: 1200px;
  --shadow-card: 0 1px 2px rgba(5,50,98,0.06), 0 12px 26px -14px rgba(5,50,98,0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--navy);
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 52px 0; } }

.eyebrow { font-weight: 700; font-size: 0.82rem; color: var(--green-deep); margin: 0 0 10px; letter-spacing: 0.02em; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--text-muted); font-size: 1.02rem; }

:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }

/* --------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 24px; border-radius: var(--radius-s); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background-color .12s ease, border-color .12s ease, color .12s ease,
              transform .08s ease, box-shadow .12s ease, filter .08s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px -6px rgba(5,50,98,0.25); }
.btn:active { transform: translateY(0) scale(0.96); box-shadow: none; filter: brightness(0.94); transition-duration: .05s; }
.btn-green { background: var(--green); color: #04331C; }
.btn-green:hover { background: var(--green-light); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(241,245,243,0.5); color: var(--text-on-navy); }
.btn-outline-light:hover { background: rgba(241,245,243,0.12); border-color: #fff; }
.btn-whatsapp { background: #25D366; color: #05300F; }
.btn-whatsapp:hover { background: #34e077; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn[disabled]:hover, .btn[disabled]:active { transform: none; box-shadow: none; filter: none; }
.btn svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(5,50,98,0.03); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { height: 40px; width: auto; }

/* Barre de recherche horizontale, coeur de l'en-tête */
.header-search-form {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px;
  background: var(--paper-dim); border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 6px 6px 18px; transition: border-color .15s ease;
}
.header-search-form { display: flex; }
.header-search-form:focus-within { border-color: var(--green); background: #fff; }
.cart-link.search-toggle-mobile { display: none; }
@media (max-width: 760px) {
  .header-search-form { display: none; }
  .header-search-form.mobile-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
    background: #fff; border-radius: 0; border: none; border-bottom: 1px solid var(--line);
    padding: 12px 16px; box-shadow: 0 12px 20px -12px rgba(5,50,98,0.15);
  }
  .cart-link.search-toggle-mobile { display: flex; }
}
.header-search-form > svg { flex: none; width: 18px; height: 18px; color: var(--text-muted); }
.header-search-form input {
  flex: 1; min-width: 0; border: none; background: transparent; font-family: inherit;
  font-size: 0.95rem; padding: 10px 0;
}
.header-search-form input:focus { outline: none; }
.header-search-form button {
  flex: none; display: flex; align-items: center; gap: 7px; background: var(--green); color: #fff; border: none;
  border-radius: 100px; padding: 10px 18px; font-family: inherit; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: background-color .15s ease;
}
.header-search-form button:hover { background: var(--green-deep); }
.header-search-form button svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .header-search-form button .long { display: none; }
  .header-search-form button { padding: 10px 13px; }
}

/* --------------------------------------------------------------------
   Menu (accessible via le bouton hamburger, sur tous les écrans —
   la barre du haut est désormais dédiée à la recherche)
   -------------------------------------------------------------------- */
.main-nav {
  position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 20px -12px rgba(5,50,98,0.15); flex-direction: column; align-items: stretch;
  padding: 10px 16px 20px; display: none; max-height: calc(100vh - 76px); overflow-y: auto;
}
.main-nav.open { display: flex; }
.main-nav a { font-size: 0.95rem; font-weight: 600; color: var(--navy); opacity: 0.8; padding: 12px 10px; border-radius: var(--radius-s); transition: background-color .15s, opacity .15s; }
.main-nav a:hover { opacity: 1; background: var(--paper-dim); }
.main-nav a.active { color: var(--green-deep); opacity: 1; }
.main-nav .menu-sub-link { font-size: 0.88rem; font-weight: 500; padding-left: 22px; opacity: 0.68; }
.main-nav .menu-group-title { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin: 14px 10px 2px; }
.main-nav .menu-group-title:first-of-type { margin-top: 6px; }
@media (min-width: 761px) {
  /* Sur grand écran, un vrai menu déroulant compact et encadré plutôt
     qu'une liste étalée sur toute la largeur de l'écran. */
  .main-nav {
    left: auto; right: 24px; top: 66px; width: 260px; border-radius: var(--radius-m);
    border: 1px solid var(--line); box-shadow: 0 20px 45px -18px rgba(5,50,98,0.3);
    max-height: none; padding: 14px;
  }
}

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.cart-link { position: relative; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-s); color: var(--navy); border: 1px solid var(--line); transition: background-color .12s ease, transform .08s ease, border-color .12s ease; }
.cart-link:hover { background: var(--paper-dim); border-color: var(--navy); }
.cart-link:active { transform: scale(0.9); background: var(--line); transition-duration: .05s; }

.cart-wrap { position: relative; }
.cart-preview {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 150;
  width: min(300px, 88vw); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: 0 18px 40px -12px rgba(5,50,98,0.28); padding: 16px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.cart-preview.show { opacity: 1; visibility: visible; transform: translateY(0); }
.cart-preview::before {
  content: ""; position: absolute; top: -6px; right: 16px; width: 12px; height: 12px;
  background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg);
}
.cart-preview-added { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); margin-bottom: 12px; }
.cart-preview-added img { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; flex: none; }
.cart-preview-added .name { font-size: 0.86rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.cart-preview-added .qty { font-size: 0.78rem; color: var(--green-deep); font-weight: 600; }
.cart-preview-added svg { color: var(--green-deep); flex: none; margin-left: auto; width: 18px; height: 18px; }
.cart-preview-summary { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.86rem; margin-bottom: 14px; }
.cart-preview-summary b { font-family: var(--font-display); color: var(--navy); font-size: 1rem; }
.cart-preview-actions { display: flex; gap: 8px; }
.cart-preview-actions .btn { flex: 1; padding: 9px 10px; font-size: 0.82rem; }
@media (max-width: 500px) { .cart-preview { right: -10px; } }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--green); color: #04331C; font-size: 0.68rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 100px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.nav-toggle { display: flex; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-s); width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--navy); transition: background-color .12s ease, transform .08s ease; }
.nav-toggle:hover { background: var(--paper-dim); }
.nav-toggle:active { transform: scale(0.9); background: var(--line); transition-duration: .05s; }
@media (max-width: 960px) {
  .header-actions .btn span.long { display: none; }
}

/* --------------------------------------------------------------------
   Hero — slider à 3 diapositives, avec effet de zoom lent sur l'image
   -------------------------------------------------------------------- */
.hero-slider { position: relative; background: var(--navy); color: var(--text-on-navy); overflow: hidden; }
.hero-layout { display: flex; gap: 36px; align-items: flex-start; position: relative; z-index: 1; }
.hero-categories {
  flex: none; width: 230px; padding: 28px 0; display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-categories h4 { color: rgba(255,255,255,0.5); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 8px; padding: 0 6px; }
.hero-categories a {
  color: var(--text-on-navy); text-decoration: none; font-size: 0.94rem; font-weight: 600;
  padding: 11px 6px; border-radius: 8px; transition: background-color .15s ease, color .15s ease;
}
.hero-categories a:hover { background: rgba(255,255,255,0.08); color: var(--green-light); }
.hero-categories a.hero-cat-all { margin-top: 6px; color: var(--green-light); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 15px; }
.hero-slides-viewport { position: relative; flex: 1; min-width: 0; }
.hero-slider::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,191,99,0.18), transparent 55%);
}
.hero-slide {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  opacity: 0; visibility: hidden; transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide .hero-slide-content { position: relative; padding: 90px 0 70px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; color: var(--green-light); margin-bottom: 16px; }
.hero-kicker::before { content: ""; width: 26px; height: 1px; background: var(--green-light); }
.hero-slide h1, .hero-slide h2.hero-heading { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; margin-bottom: 18px; font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
.hero-slide p.lede { font-size: 1.08rem; color: var(--text-on-navy-muted); max-width: 46ch; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; border-radius: var(--radius-m); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); aspect-ratio: 4/3; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1); }
.hero-slide.active .hero-visual img { animation: heroImgZoom 9s ease-in-out forwards; }
@keyframes heroImgZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-slide.active .hero-visual img { animation: none; } }

.hero-dots { position: relative; z-index: 3; display: flex; justify-content: center; gap: 9px; padding-bottom: 26px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; padding: 0; cursor: pointer; transition: background-color .2s, transform .2s; }
.hero-dots button.active { background: var(--green); transform: scale(1.25); }

/* --------------------------------------------------------------------
   Bannière compacte (façon Jumia, hauteur réduite)
   -------------------------------------------------------------------- */
.compact-banner { position: relative; height: 190px; overflow: hidden; }
.compact-slide {
  position: absolute; inset: 0; display: none; grid-template-columns: 1fr auto;
  align-items: center; padding: 0 90px 0 48px; color: #fff; overflow: hidden;
}
.compact-slide.active { display: grid; }
.compact-text { max-width: 480px; }
.compact-text.light { color: #fff; }
.compact-brand { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; opacity: 0.85; margin-bottom: 6px; }
.compact-headline { font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.compact-cta-row { display: flex; align-items: center; gap: 12px; }
.compact-cta-badge { flex: none; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.compact-cta-badge.dark { background: rgba(0,0,0,0.18); }
.compact-cta-title { font-weight: 700; font-size: 0.88rem; line-height: 1.3; }
.compact-cta-sub { font-size: 0.76rem; opacity: 0.85; line-height: 1.3; }
.compact-image { height: 190px; width: 220px; display: flex; align-items: center; justify-content: center; }
.compact-image img { max-height: 165px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.25)); }
.compact-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.85); border: none;
  color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background-color .12s ease, transform .08s ease;
}
.compact-nav::before { content: ""; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.compact-prev { left: 12px; }
.compact-prev::before { transform: rotate(-135deg) translate(1px,-1px); }
.compact-next { right: 12px; }
.compact-next::before { transform: rotate(45deg) translate(-1px,-1px); }
.compact-nav:hover { background: #fff; }
.compact-nav:active { transform: translateY(-50%) scale(0.88); }
.compact-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 6px; }
.compact-dots button { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer; }
.compact-dots button.active { background: #fff; width: 16px; border-radius: 100px; }
@media (max-width: 720px) {
  .compact-banner { height: 230px; }
  .compact-slide { grid-template-columns: 1fr; padding: 20px 24px; align-content: center; gap: 10px; }
  .compact-image { display: none; }
  .compact-nav { display: none; }
}

@media (max-width: 860px) {
  .hero-categories { display: none; }
  .hero-layout { gap: 0; }
  .hero-slide .hero-slide-content { grid-template-columns: 1fr; padding: 40px 0 70px; }
  .hero-visual { order: -1; }
}
@media (max-width: 480px) {
  /* Réserve l'espace de la bulle WhatsApp flottante (bas-droite) uniquement
     sur les blocs de texte susceptibles de s'étendre jusqu'au bord — sans
     décaler la mise en page générale, qui doit rester centrée. */
  .hero-slide p.lede,
  .filter-bar,
  #pName,
  .auth-card {
    padding-right: 60px;
  }
}

/* --------------------------------------------------------------------
   Bandeau de confiance
   -------------------------------------------------------------------- */
.trust-strip { background: var(--navy-deep); color: var(--text-on-navy-muted); padding: 20px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: space-between; align-items: center; font-size: 0.86rem; }
.trust-strip .item { display: flex; align-items: center; gap: 9px; }
.trust-strip svg { width: 17px; height: 17px; color: var(--green-light); }

/* --------------------------------------------------------------------
   Bannière de partenariat (marque tierce, ex : Astech)
   -------------------------------------------------------------------- */
.partner-banner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 22px 30px; margin-bottom: 44px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--green);
  position: relative;
}
.partner-banner-logos { display: flex; align-items: center; gap: 18px; flex: none; }
.partner-logo-sandaga { height: 46px; width: auto; }
.partner-x { font-size: 1.3rem; color: var(--line); font-weight: 300; }
.partner-logo-astech { height: 26px; width: auto; }
.partner-banner-text { border-left: 1px solid var(--line); padding-left: 26px; flex: 1; min-width: 240px; }
.partner-banner-title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.02rem; margin-bottom: 4px; }
.partner-banner-text p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
@media (max-width: 720px) {
  .partner-banner { flex-direction: column; align-items: flex-start; text-align: left; padding: 22px; }
  .partner-banner-text { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
}

/* --------------------------------------------------------------------
   Navigation rapide par catégorie (accueil)
   -------------------------------------------------------------------- */
.quick-nav-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.quick-nav-row {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 8px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.quick-nav-row::-webkit-scrollbar { display: none; }
.quick-nav-item {
  flex: none; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center;
  gap: 10px; width: 92px; text-align: center;
}
.quick-nav-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
  flex: none;
}
.quick-nav-icon svg { width: 26px; height: 26px; }
.quick-nav-item span:last-child { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.quick-nav-item:hover .quick-nav-icon { background: var(--green); color: #fff; transform: translateY(-3px); }
@media (min-width: 900px) {
  .quick-nav-row { justify-content: center; flex-wrap: wrap; overflow: visible; }
}

/* --------------------------------------------------------------------
   Carrousel "Offres de la semaine"
   -------------------------------------------------------------------- */
.promo-carousel { display: flex; align-items: center; gap: 14px; }
.promo-viewport { flex: 1; overflow: hidden; border-radius: var(--radius-m); }
.promo-slide { display: none; grid-template-columns: 1.15fr 1fr; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); min-height: 340px; }
.promo-slide.active { display: grid; }
.promo-slide-info { padding: 38px 42px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.promo-ribbon { display: inline-flex; align-self: flex-start; background: var(--danger); color: #fff; font-weight: 800; font-size: 0.78rem; padding: 8px 18px; border-radius: 100px; letter-spacing: 0.01em; }
.promo-slide-info h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--navy); margin: 0; line-height: 1.25; }
.promo-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.promo-features li { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-muted); }
.promo-features svg { width: 16px; height: 16px; color: var(--green-deep); flex: none; }
.promo-price-row { display: flex; align-items: baseline; gap: 14px; }
.promo-price-row .price-old { font-size: 1.15rem; }
.promo-price-row b { font-family: var(--font-display); font-size: 2rem; color: var(--danger); }
.promo-slide-image { position: relative; background: var(--paper-dim); min-height: 240px; }
.promo-slide-image a { display: block; width: 100%; height: 100%; }
.promo-slide-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-nav { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--navy); cursor: pointer; transition: background-color .12s ease, transform .08s ease; }
.promo-nav svg { width: 20px; height: 20px; }
.promo-nav:hover { background: var(--paper-dim); }
.promo-nav:active { transform: scale(0.9); transition-duration: .05s; }
.promo-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.promo-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; transition: all .15s ease; }
.promo-dots button.active { background: var(--danger); width: 24px; border-radius: 100px; }
.promo-empty { display: none; }
@media (max-width: 780px) {
  .promo-slide { grid-template-columns: 1fr; min-height: auto; }
  .promo-slide-image { aspect-ratio: 4/3; min-height: 0; }
  .promo-slide-info { padding: 26px; }
  .promo-nav { display: none; }
}

/* --------------------------------------------------------------------
   Bandeau défilant (ticker) — produits mis en avant aléatoirement
   -------------------------------------------------------------------- */
.ticker-wrap { background: var(--navy-deep); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 26px; animation: tickerScroll 45s linear infinite; will-change: transform; }
/* Pause au survol réservée aux appareils avec une vraie souris : sur écran
   tactile, le survol peut rester "collé" après un tap (pas de mouseleave),
   ce qui figeait le défilement en permanence sur mobile. */
@media (hover: hover) and (pointer: fine) {
  .ticker-wrap:hover .ticker-track { animation-play-state: paused; }
}
.ticker-item { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; padding: 6px 18px 6px 6px; transition: background-color .12s ease; }
.ticker-item:hover { background: rgba(255,255,255,0.14); }
.ticker-item img { width: 30px; height: 30px; object-fit: cover; border-radius: 50%; flex: none; background: #fff; }
.ticker-item .t-name { color: #fff; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.ticker-item .t-price { color: var(--green-light); font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* --------------------------------------------------------------------
   Catégories (accueil)
   -------------------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 780px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 26px; text-align: center; position: relative; overflow: hidden;
}
a.category-card { display: block; color: inherit; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
a.category-card:hover { border-color: var(--green); transform: translateY(-2px); }
.category-card .icon-wrap { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.category-card .icon-wrap svg { width: 26px; height: 26px; color: var(--navy); }
.category-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.category-card p { font-size: 0.88rem; color: var(--text-muted); }
.category-card.soon { opacity: 0.6; }
.category-card .soon-badge { position: absolute; top: 14px; right: 14px; background: var(--paper-dim); color: var(--text-muted); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }

/* --------------------------------------------------------------------
   Cartes produit
   -------------------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-card); }
.product-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-dim); }
.product-card .thumb-link { display: block; }
.product-card .title-link { color: inherit; text-decoration: none; }
.product-card .title-link:hover { color: var(--green-deep); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.product-card .badge { background: rgba(5,50,98,0.85); color: var(--green-light); font-size: 0.7rem; font-weight: 700; padding: 5px 9px; border-radius: 100px; }
.product-card .badge.cond-neuf { background: rgba(0,191,99,0.92); color: #04331C; }
.product-card .badge.badge-out, .badge.badge-out { background: rgba(192,57,43,0.92); color: #fff; }
.product-card.is-out .thumb img { opacity: 0.55; filter: grayscale(30%); }
.product-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card .cat { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.product-card h3 { font-size: 1.04rem; margin: 0; line-height: 1.3; }
.product-card .specs-mini { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 0.8rem; color: var(--text-muted); padding: 8px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.product-card .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; }
.product-card .price b { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.product-card .price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.price-promo { color: var(--danger) !important; }
.badge.badge-promo { background: var(--danger); color: #fff; font-weight: 800; }
.product-card .actions { display: flex; gap: 8px; }
.product-card .actions .btn { flex: 1; padding: 10px 12px; font-size: 0.86rem; }

/* --------------------------------------------------------------------
   Filtres (boutique)
   -------------------------------------------------------------------- */
.search-bar-wrap { margin-bottom: 20px; }
.search-input-form {
  display: flex; align-items: center; gap: 8px; max-width: 520px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 6px 6px 6px 18px;
}
.search-input-form:focus-within { border-color: var(--green); }
.search-input-form > svg { flex: none; width: 18px; height: 18px; color: var(--text-muted); }
.search-input-form input { flex: 1; min-width: 0; border: none; background: transparent; font-family: inherit; font-size: 0.95rem; padding: 10px 0; }
.search-input-form input:focus { outline: none; }
.search-input-form button {
  flex: none; background: var(--green); color: #fff; border: none; border-radius: 100px;
  padding: 10px 20px; font-family: inherit; font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: background-color .15s ease;
}
.search-input-form button:hover { background: var(--green-deep); }
@media (max-width: 480px) { .search-input-form button { padding: 10px 14px; } }

.home-search-section { background: var(--paper-dim); padding: 28px 0; border-bottom: 1px solid var(--line); }
.home-search-form { display: flex; align-items: center; gap: 10px; max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.home-search-icon { flex: none; width: 20px; height: 20px; color: var(--text-muted); }
.home-search-icon svg { width: 100%; height: 100%; }
.home-search-form input { flex: 1; border: none; font-family: inherit; font-size: 1rem; padding: 10px 0; background: transparent; }
.home-search-form input:focus { outline: none; }
.home-search-form button { flex: none; border-radius: 100px; padding: 12px 26px; }
@media (max-width: 640px) {
  .home-search-form { flex-wrap: wrap; border-radius: 20px; padding: 14px; }
  .home-search-form input { width: 100%; order: 1; }
  .home-search-icon { order: 0; }
  .home-search-form button { order: 2; width: 100%; }
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-result-count {
  font-weight: 700; color: var(--green-deep); font-size: 0.95rem;
  margin: -12px 0 20px; scroll-margin-top: 90px;
}
.filter-result-count.pulse { animation: filterPulse 0.5s ease; }
@keyframes filterPulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); color: var(--navy); }
  100% { transform: scale(1); }
}
.filter-chip { border: 1px solid var(--line); background: #fff; padding: 10px 18px; border-radius: 100px; font-weight: 600; font-size: 0.88rem; color: var(--text-muted); cursor: pointer; transition: background-color .12s ease, transform .08s ease, color .12s ease, border-color .12s ease; }
.filter-chip:hover { border-color: var(--navy); color: var(--navy); }
.filter-chip:active { transform: scale(0.95); transition-duration: .05s; }
.filter-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* --------------------------------------------------------------------
   Comment ça marche / étapes
   -------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--green-deep); border: 1px solid var(--green); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

/* --------------------------------------------------------------------
   Section marine / pourquoi nous
   -------------------------------------------------------------------- */
.section-navy { background: var(--navy); color: var(--text-on-navy); }
.section-navy .section-head p { color: var(--text-on-navy-muted); }
.section-navy .section-head h2 { color: #fff; }
.section-navy .eyebrow { color: var(--green-light); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { background: var(--navy); padding: 26px 22px; }
.feature svg { width: 24px; height: 24px; color: var(--green-light); margin-bottom: 14px; }
.feature h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.feature p { color: var(--text-on-navy-muted); font-size: 0.9rem; }

/* --------------------------------------------------------------------
   Bandeau CTA
   -------------------------------------------------------------------- */
.cta-banner { background: linear-gradient(120deg, var(--green-deep), var(--green)); color: #04331C; padding: 52px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { color: #04331C; font-size: 1.6rem; margin-bottom: 6px; }
.cta-banner p { color: rgba(4,51,28,0.75); }

/* --------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--text-on-navy-muted); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.03em; margin-bottom: 15px; font-family: var(--font-body); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid li { display: flex; align-items: center; }
.footer-grid a, .footer-grid li.footer-address { display: flex; align-items: center; gap: 9px; }
.footer-grid .fticon { display: inline-flex; flex: none; }
.footer-grid .fticon svg { width: 16px; height: 16px; color: var(--green-light); }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 32ch; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.social-row svg { width: 16px; height: 16px; }
.social-row a:hover { border-color: var(--green-light); color: var(--green-light); }
.footer-bottom { padding: 20px 0 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }

/* --------------------------------------------------------------------
   Bandeau de titre (pages secondaires)
   -------------------------------------------------------------------- */
.page-head { background: var(--navy); color: var(--text-on-navy); padding: 60px 0 36px; }
.page-head .eyebrow { color: var(--green-light); }
.page-head h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.page-head p { color: var(--text-on-navy-muted); max-width: 56ch; }
.breadcrumb { font-size: 0.84rem; color: var(--text-on-navy-muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }

/* --------------------------------------------------------------------
   Fiche produit
   -------------------------------------------------------------------- */
.detail-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 46px; align-items: start; }
@media (max-width: 940px) { .detail-layout { grid-template-columns: 1fr; } }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; gap: 28px; } .about-split img { order: -1; } }

.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; gap: 30px; } }
.gallery-main { aspect-ratio: 4/3; border-radius: var(--radius-m); overflow: hidden; background: var(--paper-dim); margin-bottom: 12px; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main img.zoomable { cursor: zoom-in; }
.gallery-main::after {
  content: ""; position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(5,50,98,0.7);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3M11 8v6M8 11h6'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 18px 18px; pointer-events: none;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumbs button { width: 84px; height: 64px; padding: 0; border-radius: var(--radius-s); overflow: hidden; border: 2px solid transparent; cursor: pointer; background: none; transition: border-color .12s ease, transform .08s ease, opacity .12s ease; opacity: 0.7; }
.gallery-thumbs button:hover { opacity: 1; }
.gallery-thumbs button:active { transform: scale(0.93); transition-duration: .05s; }
.gallery-thumbs button.active { border-color: var(--green); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 12px 4px; font-size: 0.93rem; }
.spec-table td:first-child { color: var(--text-muted); width: 45%; }
.spec-table td:last-child { font-weight: 600; }

.buy-card { border: 1px solid var(--line); border-radius: var(--radius-m); background: #fff; padding: 26px; position: sticky; top: 96px; box-shadow: var(--shadow-card); }
.buy-card .price-lead { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.buy-card .price-lead b { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-s); overflow: hidden; width: fit-content; }
.qty-stepper button { width: 38px; height: 38px; border: none; background: var(--paper-dim); font-size: 1.1rem; cursor: pointer; transition: background-color .12s ease, transform .08s ease; }
.qty-stepper button:hover:not(:disabled) { background: var(--line); }
.qty-stepper button:active:not(:disabled) { transform: scale(0.88); transition-duration: .05s; }
.qty-stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-stepper input { width: 46px; text-align: center; border: none; font-size: 0.95rem; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------------------------------------------
   Formulaires
   -------------------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field .hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
input[type=text], input[type=tel], input[type=email], input[type=number], select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--paper); color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-deep); background: #fff; }
textarea { resize: vertical; min-height: 100px; }
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill { border: 1px solid var(--line); border-radius: 100px; padding: 12px 18px; font-size: 0.9rem; font-weight: 600; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; gap: 9px; flex: 1; justify-content: center; transition: background-color .12s ease, border-color .12s ease, transform .08s ease; }
.radio-pill:hover { border-color: var(--navy); }
.radio-pill:active { transform: scale(0.97); transition-duration: .05s; }
.radio-pill input { accent-color: var(--green-deep); }
.radio-pill.active { border-color: var(--green-deep); color: var(--navy); background: var(--paper-dim); }
.form-msg { font-size: 0.88rem; padding: 12px 14px; border-radius: var(--radius-s); margin-top: 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #E4F6EC; color: var(--ok); }
.form-msg.error { background: #FBEAE7; color: var(--danger); }

/* --------------------------------------------------------------------
   Panier & récapitulatif
   -------------------------------------------------------------------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-info img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-s); background: var(--paper-dim); }
.cart-item-info .name { font-weight: 600; font-size: 0.94rem; }
.cart-item-info .cond { font-size: 0.8rem; color: var(--text-muted); }
.cart-remove { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 0.85rem; font-weight: 600; }
.summary-box { background: var(--paper-dim); border: 1px dashed var(--line); border-radius: var(--radius-s); padding: 18px 20px; margin: 20px 0; font-size: 0.92rem; }
.summary-box .row { display: flex; justify-content: space-between; padding: 6px 0; }
.summary-box .row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 1.1rem; color: var(--navy); font-family: var(--font-display); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); border: 1px dashed var(--line); border-radius: var(--radius-m); }

/* --------------------------------------------------------------------
   Lightbox (visionneuse plein écran)
   -------------------------------------------------------------------- */
.lightbox-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(3,20,38,0.96); display: flex; align-items: center; justify-content: center; animation: lbFade .15s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-stage { width: min(92vw, 1100px); height: min(84vh, 800px); display: flex; align-items: center; justify-content: center; }
.lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 0.85rem; }
@media (max-width: 640px) { .lightbox-nav { width: 38px; height: 38px; } .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } .lightbox-close { top: 12px; right: 12px; } }

/* --------------------------------------------------------------------
   WhatsApp flottant
   -------------------------------------------------------------------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { background: #1fbd5a; }
@media (max-width: 480px) {
  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* Utilitaires */
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.icon-wrap svg { width: 32px; height: 32px; }
.payment-icon { width: 20px; height: 20px; flex: none; display: inline-block; vertical-align: middle; border-radius: 50%; overflow: hidden; }
.payment-icon-row { display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-opt { padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: 0.88rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .12s ease; }
.variant-opt:hover { border-color: var(--green); }
.variant-opt.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.variant-label.variant-missing { color: var(--danger); }
.variant-label.variant-missing::after { content: " — merci de choisir une option"; font-weight: 500; font-size: 0.82rem; }

/* --------------------------------------------------------------------
   Comptes clients (connexion, inscription, mon compte)
   -------------------------------------------------------------------- */
.auth-wrap { max-width: 440px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 34px 36px; box-shadow: var(--shadow-card); }
.auth-card h1 { font-size: 1.4rem; margin-bottom: 6px; }
.auth-card p.lede { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 0.9rem; color: var(--text-muted); }
.auth-switch a { color: var(--green-deep); font-weight: 600; }
.account-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.account-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-dim); display: flex; align-items: center; justify-content: center; flex: none; }
.account-avatar svg { width: 26px; height: 26px; color: var(--navy); }
.account-orders-table td { vertical-align: top; }
