/* ============================================================
   LE CENTRE — Design System Airbnb
   Tokens: Rausch #ff385c · Ink #222222 · Canvas #ffffff
   ============================================================ */

/* ---- Variables ---- */
:root {
  --ab-primary:       #ff385c;
  --ab-primary-dark:  #e00b41;
  --ab-primary-pale:  #ffd1da;
  --ab-ink:           #222222;
  --ab-body:          #3f3f3f;
  --ab-muted:         #6a6a6a;
  --ab-muted-soft:    #929292;
  --ab-hairline:      #dddddd;
  --ab-hairline-soft: #ebebeb;
  --ab-canvas:        #ffffff;
  --ab-surface-soft:  #f7f7f7;
  --ab-surface-strong:#f2f2f2;
  --ab-success:       #2d7a4f;
  --ab-error:         #c13515;

  /* Legacy aliases so older classes still resolve */
  --lc-primary:     var(--ab-primary);
  --lc-accent:      var(--ab-primary);
  --lc-accent-dark: var(--ab-primary-dark);
  --lc-soft:        var(--ab-surface-soft);
  --lc-border:      var(--ab-hairline);
  --lc-text:        var(--ab-ink);
  --lc-text-muted:  var(--ab-muted);
  --lc-white:       var(--ab-canvas);
  --lc-success:     var(--ab-success);
  --lc-danger:      var(--ab-error);

  --font-main: 'Inter', -apple-system, system-ui, Roboto, 'Helvetica Neue', sans-serif;
  /* No display/serif — Airbnb uses a single variable font */
  --font-display: var(--font-main);

  --shadow-card: rgba(0,0,0,.02) 0 0 0 1px, rgba(0,0,0,.04) 0 2px 6px, rgba(0,0,0,.1) 0 4px 8px;
}

* { box-sizing: border-box; }
body {
  font-family: var(--font-main);
  color: var(--ab-ink);
  background: var(--ab-canvas);
  font-size: 16px;
  line-height: 1.5;
}
.text-muted { color: var(--ab-muted) !important; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
body, p, nav, button, input { font-family: 'Inter', sans-serif; }

/* ============================================================
   NAVBAR — white, 80px, Airbnb pattern
   ============================================================ */
.lc-navbar {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline);
  padding: 0;
  height: 80px;
  z-index: 1000;
}
.lc-navbar .container {
  height: 80px;
  display: flex;
  align-items: center;
}
.lc-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--ab-primary) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}
.lc-navbar-logo { height: 36px; width: auto; }

/* Nav links */
.lc-navbar .nav-link {
  color: var(--ab-ink) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: background .15s;
}
.lc-navbar .nav-link:hover { background: var(--ab-surface-soft); }
.lc-navbar .nav-link.active { background: var(--ab-surface-soft); }

/* Dropdown */
.lc-dropdown {
  border: 1px solid var(--ab-hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  min-width: 200px;
}
.lc-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  color: var(--ab-ink);
}
.lc-dropdown .dropdown-item:hover { background: var(--ab-surface-soft); }

/* Category grid dropdown */
.lc-cat-dropdown { min-width: 290px; padding: 12px 12px 8px; }
.lc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lc-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ab-ink);
  transition: background .15s, transform .15s;
}
.lc-cat-item:hover { background: var(--ab-surface-soft); color: var(--ab-ink); transform: translateY(-1px); }
.lc-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .15s;
}
.lc-cat-item:hover .lc-cat-icon { transform: scale(1.08); }
.lc-cat-label { font-size: 12px; font-weight: 600; text-align: center; }
.lc-cat-icon--mode     { background: #fce4ec; color: #c2185b; }
.lc-cat-icon--tech     { background: #e3f2fd; color: #1565c0; }
.lc-cat-icon--food     { background: #e8f5e9; color: #2e7d32; }
.lc-cat-icon--services { background: #ede7f6; color: #6a1b9a; }
.lc-cat-icon--maison   { background: #fff8e1; color: #e65100; }
.lc-cat-icon--beaute   { background: #f3e5f5; color: #ad1457; }
.lc-cat-all {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ab-primary);
  padding: 6px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.lc-cat-all:hover { background: var(--ab-surface-soft); color: var(--ab-primary); }

/* Pill search — Airbnb signature */
.lc-search-form { gap: 0; }
.lc-search-pill {
  display: flex;
  align-items: center;
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  background: var(--ab-canvas);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 46px;
  transition: box-shadow .2s;
}
.lc-search-pill:focus-within {
  box-shadow: rgba(0,0,0,.02) 0 0 0 1px, rgba(0,0,0,.06) 0 4px 12px;
}
.lc-search-input {
  border: none !important;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--ab-ink);
  padding: 0 16px;
  width: 200px;
  height: 100%;
}
.lc-search-input:focus {
  outline: none;
  box-shadow: none !important;
}
.lc-search-input::placeholder { color: var(--ab-muted); font-weight: 400; }
.lc-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px !important;
  background: var(--ab-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-right: 3px;
  flex-shrink: 0;
  transition: background .2s;
}
.lc-search-btn:hover { background: var(--ab-primary-dark); }

/* Icon buttons */
.lc-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--ab-ink);
  font-size: 18px;
  text-decoration: none;
  transition: background .15s;
  background: transparent;
  border: 1px solid var(--ab-hairline);
  cursor: pointer;
}
.lc-icon-btn:hover { background: var(--ab-surface-soft); color: var(--ab-ink); }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--ab-primary);
  color: #fff;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ab-canvas);
}

/* ============================================================
   BUTTONS — Airbnb spec (8px radius, 48px height)
   ============================================================ */
.btn-lc-primary {
  background: var(--ab-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 24px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  line-height: 1;
  text-align: center;
}
.btn-lc-primary:hover { background: var(--ab-primary-dark); color: #fff; }
.btn-lc-primary:disabled { background: var(--ab-primary-pale); }

.btn-lc-outline {
  background: var(--ab-canvas);
  color: var(--ab-ink);
  border: 1px solid var(--ab-ink);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  padding: 13px 23px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  transition: background .15s;
  line-height: 1;
}
.btn-lc-outline:hover { background: var(--ab-surface-soft); color: var(--ab-ink); }

/* Small size variant */
.btn-lc-primary.btn-sm,
.btn-lc-primary.btn-sm:hover {
  font-size: 14px;
  padding: 9px 18px;
  height: 38px;
}
.btn-lc-outline.btn-sm,
.btn-lc-outline.btn-sm:hover {
  font-size: 14px;
  padding: 8px 17px;
  height: 38px;
}

/* Pill variant (secondary CTAs) */
.btn-lc-pill {
  background: var(--ab-primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  transition: background .15s;
  display: inline-flex;
  align-items: center;
}
.btn-lc-pill:hover { background: var(--ab-primary-dark); color: #fff; }

/* ============================================================
   HERO — Photo plein écran avec overlay
   ============================================================ */
.lc-hero {
  min-height: 90vh;
  padding: 0;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0500;
}
.lc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 4, 0, 0.90) 0%,
    rgba(8, 4, 0, 0.70) 50%,
    rgba(8, 4, 0, 0.22) 100%
  );
}
.lc-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.lc-hero-sm { min-height: 56vh; }
.lc-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lc-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ab-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.lc-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}
.lc-hero-title span {
  color: var(--ab-primary);
}
.lc-hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.68);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 460px;
}
.hero-link-muted {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  align-self: center;
  transition: color .15s;
}
.hero-link-muted:hover { color: #fff; }
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 9999px;
}
.hero-trust-pill i { font-size: 14px; }

/* Hero search bar — larger version of pill */
.hero-search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  background: var(--ab-canvas);
  box-shadow: var(--shadow-card);
  height: 66px;
  max-width: 720px;
  overflow: hidden;
}
.hero-search-segment {
  flex: 1;
  padding: 0 24px;
  border-right: 1px solid var(--ab-hairline);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-search-segment:last-of-type { border-right: none; }
.hero-search-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ab-ink);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-search-placeholder {
  font-size: 14px;
  color: var(--ab-muted);
  line-height: 1;
}
.hero-search-orb {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: var(--ab-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 7px;
  flex-shrink: 0;
  transition: background .2s;
  cursor: pointer;
}
.hero-search-orb:hover { background: var(--ab-primary-dark); }

/* Hero collage — conservé pour usage futur */
.hero-collage { display: none; }

/* ============================================================
   STATS BAND
   ============================================================ */
.lc-stats-band {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
  padding: 44px 0;
}
.stat-icon {
  font-size: 22px;
  color: var(--ab-primary);
  display: block;
  margin-bottom: 10px;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--ab-ink);
  letter-spacing: -2px;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--ab-muted);
  margin-top: 6px;
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  background: var(--ab-hairline);
  height: 48px;
  align-self: center;
  display: none;
}
@media (min-width: 768px) { .stat-sep { display: block; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ab-primary);
  margin-bottom: 5px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ab-ink);
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}
.section-link {
  font-size: 14px;
  color: var(--ab-ink);
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
  padding-bottom: 2px;
}
.section-link:hover { color: var(--ab-primary); }

/* ============================================================
   CATEGORY STRIP — Airbnb-style scroll chips
   ============================================================ */
.lc-cat-strip {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
  padding: 16px 0;
}
.cat-card {
  border: 1px solid var(--ab-hairline-soft);
  border-radius: 20px;
  background: var(--ab-canvas);
  transition: transform .25s, box-shadow .25s, border-color .2s;
  min-height: 140px;
  color: var(--ab-ink);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,.09);
  border-color: var(--ab-hairline);
  color: var(--ab-ink);
}
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform .2s;
}
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-icon-mode     { background: #fce4ec; color: #c2185b; }
.cat-icon-tech     { background: #e3f2fd; color: #1565c0; }
.cat-icon-food     { background: #e8f5e9; color: #2e7d32; }
.cat-icon-services { background: #fff3e0; color: #e65100; }
.cat-icon-maison   { background: #fbe9e7; color: #bf360c; }
.cat-icon-beaute   { background: #f3e5f5; color: #7b1fa2; }
.cat-icon-agriculture { background: #e8f5e9; color: #388e3c; }
.cat-icon-auto-moto   { background: #ede7f6; color: #512da8; }
.cat-name { font-size: 14px; font-weight: 700; color: var(--ab-ink); }
.cat-count { font-size: 12px; color: var(--ab-muted); margin-top: 2px; }

/* Filter pills */
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ab-ink);
  background: var(--ab-canvas);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none;
}
.filter-pill:hover { border-color: var(--ab-ink); color: var(--ab-ink); }
.filter-pill.active { background: var(--ab-ink); border-color: var(--ab-ink); color: #fff; }

/* ============================================================
   SHOP CARDS — Airbnb property-card pattern
   ============================================================ */
.shop-card {
  background: transparent;
  color: var(--ab-ink);
  text-decoration: none;
  display: block;
  transition: opacity .2s;
}
.shop-card:hover {
  opacity: .88;
  color: var(--ab-ink);
}
.shop-cover {
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  border: none;
  background: var(--ab-surface-soft);
}
.shop-cover-icon {
  font-size: 96px;
  color: rgba(34,34,34,.22);
}
/* Cover gradients — lighter, warm Airbnb palette */
.shop-cover-mode,
.shop-cover-tech,
.shop-cover-food,
.shop-cover-services,
.shop-cover-beaute,
.shop-cover-maison,
.shop-cover-default { background: #f5f5f5; }

/* Product image placeholder — tinted by category */
.prod-ph-mode,
.prod-ph-tech,
.prod-ph-food,
.prod-ph-services,
.prod-ph-beaute,
.prod-ph-maison { background: #f5f5f5; }

/* Guest-favorite style badge (top-left on cover) */
.shop-cover-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ab-canvas);
  color: var(--ab-ink);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
}
/* Heart save button (top-right) */
.shop-save-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(255,255,255,.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ab-ink);
  cursor: pointer;
  transition: color .15s;
}
.shop-save-btn:hover { color: var(--ab-primary); }

.shop-body { padding: 12px 4px 16px; }
.shop-logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: var(--ab-surface-strong);
  color: var(--ab-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.shop-logo-sm {
  width: 26px; height: 26px;
  background: var(--ab-surface-strong);
  color: var(--ab-ink);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.shop-name { font-size: 15px; font-weight: 600; line-height: 1.25; }
.shop-desc { font-size: 14px; color: var(--ab-muted); line-height: 1.5; margin-bottom: 8px; }
.shop-rating { font-size: 14px; color: var(--ab-ink); }
.shop-cta { font-size: 14px; font-weight: 500; color: var(--ab-ink); text-decoration: underline; }

/* Niche Badges */
.niche-badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-weight: 600;
  border: 1px solid var(--ab-hairline);
  color: var(--ab-muted);
  background: var(--ab-canvas);
}
.badge-mode     { border-color: #f8bbd0; color: #c2185b; background: #fce4ec; }
.badge-tech     { border-color: #bbdefb; color: #1565c0; background: #e3f2fd; }
.badge-food     { border-color: #c8e6c9; color: #2e7d32; background: #e8f5e9; }
.badge-services { border-color: #ffe0b2; color: #e65100; background: #fff3e0; }
.badge-beaute   { border-color: #e1bee7; color: #7b1fa2; background: #f3e5f5; }
.badge-maison   { border-color: #ffccbc; color: #bf360c; background: #fbe9e7; }

.badge-vedette {
  background: var(--ab-canvas);
  color: var(--ab-ink);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-weight: 600;
  border: 1px solid var(--ab-hairline);
  box-shadow: var(--shadow-card);
}
.badge-new {
  background: var(--ab-canvas);
  color: var(--ab-ink);
  font-size: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 9999px;
  font-weight: 700;
  border: 1px solid var(--ab-hairline);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.prod-card {
  background: transparent;
  transition: opacity .2s;
}
.prod-card:hover { opacity: .88; }

.prod-img-wrap { position: relative; display: block; overflow: hidden; border-radius: 14px; aspect-ratio: 3/4; background: var(--ab-surface-soft); }
.prod-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ab-surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(34,34,34,.15);
  transition: transform .3s;
}
.prod-card:hover .prod-img-placeholder { transform: scale(1.03); }

.prod-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .2s;
}
.prod-card:hover .prod-actions { opacity: 1; transform: translateY(0); }
.prod-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255,255,255,.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--ab-ink);
  padding: 0;
  transition: color .15s;
}
.prod-action-btn:hover { color: var(--ab-primary); }

.prod-badge-promo {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ab-canvas);
  color: var(--ab-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
}

.prod-body { padding: 10px 2px 12px; }
.prod-shop-name { font-size: 12px; color: var(--ab-muted); margin-bottom: 2px; }
.prod-name { font-size: 14px; font-weight: 500; color: var(--ab-ink); display: block; margin-bottom: 4px; }
.prod-name:hover { color: var(--ab-primary); }
.prod-price { font-size: 14px; font-weight: 600; color: var(--ab-ink); margin-bottom: 2px; }
.prod-price-old { font-size: 12px; font-weight: 400; color: var(--ab-muted); text-decoration: line-through; }
.prod-rating { font-size: 12px; color: var(--ab-ink); }
.prod-rating span { color: var(--ab-muted); font-size: 12px; margin-left: 3px; }

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-banner {
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}
.promo-banner-1 { background: linear-gradient(135deg, var(--ab-primary) 0%, #c00035 100%); }
.promo-banner-2 { background: linear-gradient(135deg, #1a1a1a 0%, #383838 100%); }
.promo-banner::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -90px; right: -60px;
  pointer-events: none;
}
.promo-banner::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -60px; right: 80px;
  pointer-events: none;
}
.promo-banner-body { position: relative; z-index: 1; }
.promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.20);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.promo-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.18; letter-spacing: -0.5px; }
.promo-desc { font-size: 14px; color: rgba(255,255,255,.72); margin-bottom: 24px; line-height: 1.6; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-item {
  background: var(--ab-canvas);
  border: 1px solid var(--ab-hairline-soft);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.feature-item:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
  transform: translateY(-5px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--ab-surface-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ab-ink);
  margin: 0 auto 18px;
  transition: background .2s, color .2s, transform .2s;
}
.feature-item:hover .feature-icon { background: var(--ab-primary); color: #fff; transform: scale(1.08); }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ab-ink); }
.feature-desc { font-size: 14px; color: var(--ab-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   NEWSLETTER — dark version
   ============================================================ */
.lc-newsletter {
  background: var(--ab-ink);
  border-top: none;
  border-bottom: none;
  padding: 80px 0;
}
.newsletter-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-input {
  border-radius: 9999px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  font-size: 15px;
  padding: 14px 24px;
  height: 54px;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(8px);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.38) !important; }
.newsletter-input:focus {
  box-shadow: none !important;
  border-color: rgba(255,255,255,.45) !important;
  background: rgba(255,255,255,.12) !important;
  outline: none;
}
.btn-newsletter {
  background: var(--ab-primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  padding: 0 28px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s;
}
.btn-newsletter:hover { background: var(--ab-primary-dark); color: #fff; }
.newsletter-note { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 16px; }
.lc-cta-vendeur { padding: 80px 0; }

/* ============================================================
   FOOTER — fond blanc
   ============================================================ */
.lc-footer {
  background: var(--ab-canvas);
  color: var(--ab-ink);
  border-top: 1px solid var(--ab-hairline);
  padding-top: 48px;
  padding-bottom: 0;
  background-image: none !important;
}
.lc-footer-overlay { display: none; }
.footer-inner { position: relative; }
.lc-footer-logo { height: 34px; width: auto; }
.footer-desc { font-size: 14px; color: var(--ab-muted); line-height: 1.6; }
.footer-heading { font-size: 13px; font-weight: 600; color: var(--ab-ink); margin-bottom: 12px; letter-spacing: 0; text-transform: none; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--ab-ink); text-decoration: none; transition: color .15s; }
.footer-links a:hover { text-decoration: underline; color: var(--ab-ink); }
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: 1px solid var(--ab-hairline);
  color: var(--ab-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social:has(.bi-facebook):hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.footer-social:has(.bi-instagram):hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 35%, #d6249f 65%, #285AEB 95%); border-color: transparent; color: #fff; }
.footer-social:has(.bi-twitter-x):hover { background: #000; border-color: #000; color: #fff; }
.footer-social:has(.bi-linkedin):hover  { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.footer-hr { border-color: var(--ab-hairline); margin: 0; }
.footer-copy { font-size: 13px; color: var(--ab-muted); }

/* Logos Mobile Money footer */
.mm-pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ab-hairline);
  border-radius: 8px;
  padding: 5px 12px;
  height: 34px;
}
.mm-pay-img {
  height: 18px;
  width: auto;
  display: block;
}
.mm-pay-img--sq { height: 22px; }

/* Legal band */
.lc-legal-band {
  border-top: 1px solid var(--ab-hairline-soft);
  padding: 20px 0;
  font-size: 13px;
  color: var(--ab-muted);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.lc-breadcrumb { font-size: 13px; }
.lc-breadcrumb .breadcrumb-item a { color: var(--ab-muted); text-decoration: none; }
.lc-breadcrumb .breadcrumb-item a:hover { color: var(--ab-ink); text-decoration: underline; }
.lc-breadcrumb .breadcrumb-item.active { color: var(--ab-muted); }

/* ============================================================
   UTILITY
   ============================================================ */
.lc-hr { border-color: var(--ab-hairline); }
.lc-bg-soft { background: var(--ab-surface-soft); }
.lc-form-label { font-size: 13px; font-weight: 600; color: var(--ab-ink); }
.lc-form-control {
  border-color: var(--ab-hairline) !important;
  border-radius: 8px !important;
  font-size: 14px;
  height: 56px;
  padding: 14px 12px;
}
.lc-form-control:focus { border-color: var(--ab-ink) !important; box-shadow: none !important; border-width: 2px !important; }
.lc-select-sm { width: auto !important; font-size: 13px !important; border-color: var(--ab-hairline) !important; border-radius: 8px !important; }
.lc-textarea { resize: none; }
.lc-page-desc { font-size: 15px; color: var(--ab-muted); }
.lc-body-text { font-size: 15px; line-height: 1.7; color: var(--ab-body); }
.lc-text-sm-muted { font-size: 13px; color: var(--ab-muted); }
.lc-card {
  background: var(--ab-canvas);
  border: 1px solid var(--ab-hairline);
  border-radius: 14px;
}

/* ============================================================
   PAGE HERO (boutiques, recherche…)
   ============================================================ */
.page-hero {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
  padding: 110px 0 90px;
}
.page-hero-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ab-ink);
  letter-spacing: -0.3px;
}

/* Variante avec photo de fond */
.page-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero--img .page-hero-title { color: #fff; }
.page-hero--img .lc-page-desc { color: rgba(255,255,255,.78); }
.page-hero--img .lc-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-hero--img .lc-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.page-hero--img .lc-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.55); }
.page-hero--img .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* Filter bar */
.filter-bar {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
  padding: 14px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

/* Pagination */
.lc-pagination { gap: 4px; }
.lc-pagination .page-link {
  border-radius: 9999px !important;
  border-color: var(--ab-hairline);
  color: var(--ab-ink);
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lc-pagination .page-item.active .page-link { background: var(--ab-ink); border-color: var(--ab-ink); }
.lc-pagination .page-item.disabled .page-link { border-color: var(--ab-hairline); color: var(--ab-muted); }

/* ============================================================
   BOUTIQUE SINGLE
   ============================================================ */
.boutique-hero {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  position: relative;
}
.boutique-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,.52) 0%, rgba(10,10,15,.72) 100%);
}
.boutique-hero-body {
  position: relative;
  z-index: 1;
  padding-top: 36px;
  padding-bottom: 40px;
}
.boutique-hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); }
.boutique-hero-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.boutique-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.boutique-tabs-bar {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
}
.boutique-header {
  background: var(--ab-canvas);
  border-bottom: 1px solid var(--ab-hairline-soft);
  padding: 32px 0;
}
.boutique-cover {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--ab-surface-soft);
  color: var(--ab-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 1px solid var(--ab-hairline);
}
.boutique-name { font-size: 22px; font-weight: 600; color: var(--ab-ink); letter-spacing: -0.2px; }
.boutique-meta { font-size: 14px; color: var(--ab-muted); }
.boutique-desc { font-size: 14px; color: var(--ab-muted); max-width: 500px; line-height: 1.6; }
.boutique-tab {
  border: none !important;
  font-size: 14px;
  font-weight: 600;
  background: transparent !important;
  color: var(--ab-muted);
  padding: 8px 16px !important;
}
.boutique-tab.active {
  border-bottom: 2px solid var(--ab-ink) !important;
  color: var(--ab-ink) !important;
}

/* Boutique Single — cover hero */
.bs-hero {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--ab-surface-soft);
}
.bs-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bs-hero-mode,
.bs-hero-tech,
.bs-hero-food,
.bs-hero-services,
.bs-hero-beaute,
.bs-hero-maison { background: #f5f5f5; }
.bs-logo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 3px solid var(--ab-canvas);
  background: var(--ab-surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--ab-muted);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  overflow: hidden;
}
.bs-logo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }

/* ============================================================
   PRODUCT SINGLE
   ============================================================ */
.product-img-main {
  aspect-ratio: 1;
  background: var(--ab-surface-soft);
  border-radius: 14px;
  border: 1px solid var(--ab-hairline-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(34,34,34,.12);
}
.product-title { font-size: 22px; font-weight: 600; color: var(--ab-ink); letter-spacing: -0.2px; line-height: 1.3; }
.product-price { font-size: 26px; font-weight: 700; color: var(--ab-ink); }
.product-shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  font-size: 14px;
  color: var(--ab-ink);
  text-decoration: none;
}
.product-shop-badge:hover { border-color: var(--ab-ink); }
.prod-rating-text { font-size: 14px; color: var(--ab-muted); }
.prod-stock-ok { font-size: 13px; color: var(--ab-success); font-weight: 600; }
.prod-desc { font-size: 15px; color: var(--ab-body); line-height: 1.7; margin-bottom: 24px; }
.variant-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; }

/* Thumbnails */
.prod-thumb {
  width: 72px; height: 72px;
  border: 1px solid var(--ab-hairline);
  border-radius: 10px;
  background: var(--ab-surface-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.prod-thumb.active { border-color: var(--ab-ink); border-width: 2px; }
.prod-thumb-icon { font-size: 20px; color: rgba(34,34,34,.25); }

/* Size / variant buttons */
.size-btn {
  min-width: 44px; padding: 8px 14px;
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  background: var(--ab-canvas);
  font-size: 14px; font-weight: 500;
  color: var(--ab-ink);
  cursor: pointer;
  transition: border-color .15s;
}
.size-btn:hover, .size-btn.active { border-color: var(--ab-ink); border-width: 2px; }

/* Color swatches */
.color-dot {
  width: 28px; height: 28px;
  border-radius: 9999px;
  border: 2px solid var(--ab-hairline);
  cursor: pointer;
  transition: box-shadow .15s;
}
.color-dot.active, .color-dot:hover { box-shadow: 0 0 0 2px var(--ab-canvas), 0 0 0 4px var(--ab-ink); }
.color-noir { background: #1a1a1a; }
.color-marron { background: #8b5e3c; }

/* Qty control */
.qty-control {
  border: 1px solid var(--ab-hairline);
  border-radius: 9999px;
  overflow: hidden;
  display: flex; align-items: center;
}
.qty-btn {
  width: 40px; height: 40px;
  border: none; background: var(--ab-surface-soft);
  font-size: 18px; cursor: pointer; color: var(--ab-ink);
  transition: background .15s;
}
.qty-btn:hover { background: var(--ab-surface-strong); }
.qty-input {
  width: 52px; height: 40px;
  border: none; border-left: 1px solid var(--ab-hairline); border-right: 1px solid var(--ab-hairline);
  text-align: center; font-size: 14px; font-weight: 600;
}
.qty-input:focus { outline: none; }

/* Delivery info box */
.prod-delivery-box {
  background: var(--ab-surface-soft);
  border: 1px solid var(--ab-hairline-soft);
  border-radius: 12px;
  padding: 16px;
}
.prod-delivery-row { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.prod-delivery-row:last-child { margin-bottom: 0; }

/* Reviews */
.review-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 9999px;
  background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--ab-ink); flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--ab-muted); }
.review-stars { color: var(--ab-ink); font-size: 12px; }
.review-body { font-size: 14px; color: var(--ab-body); margin: 0; line-height: 1.5; }

/* ============================================================
   PANIER
   ============================================================ */
.cart-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--ab-hairline-soft);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: 12px;
  background: var(--ab-surface-soft);
  border: 1px solid var(--ab-hairline-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: rgba(34,34,34,.25); flex-shrink: 0;
}
.cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 13px; color: var(--ab-muted); margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 700; white-space: nowrap; min-width: 90px; flex-shrink: 0; text-align: right; }
.cart-qty-ctrl { border: 1px solid var(--ab-hairline); border-radius: 9999px; overflow: hidden; display: flex; align-items: center; }
.cart-qty-btn { width: 30px; height: 30px; border: none; background: var(--ab-surface-soft); font-size: 14px; cursor: pointer; transition: background .15s; }
.cart-qty-btn:hover { background: var(--ab-surface-strong); }
.cart-qty-val { width: 34px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-remove-btn { border: none; background: none; color: var(--ab-muted); font-size: 13px; cursor: pointer; text-decoration: underline; }
.cart-vendor-group { border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 0 20px; margin-bottom: 16px; }
.cart-vendor-header {
  padding: 14px 0 12px; border-bottom: 1px solid var(--ab-hairline-soft);
  font-size: 14px; font-weight: 600; color: var(--ab-ink);
  display: flex; align-items: center; gap: 8px;
}
.cart-vendor-icon {
  width: 26px; height: 26px;
  background: var(--ab-surface-soft); color: var(--ab-ink);
  border-radius: 9999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  border: 1px solid var(--ab-hairline);
}
.cart-vendor-link { color: var(--ab-ink); text-decoration: none; }
.cart-vendor-link:hover { text-decoration: underline; }
.cart-vendor-delivery { color: var(--ab-muted); font-size: 12px; font-weight: 400; }
.cart-promo-box { border: 1px solid var(--ab-hairline); border-radius: 12px; padding: 16px; margin-top: 4px; }
.cart-promo-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.cart-summary { background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 24px; }
.cart-summary-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.cart-summary-line { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding: 16px 0 0; margin-top: 8px; border-top: 1px solid var(--ab-hairline); }
.cart-summary-free { color: var(--ab-success); }
.cart-summary-discount { color: var(--ab-primary); }
.cart-checkout-btn { padding: 16px; font-size: 16px; }
.cart-secure-note { font-size: 13px; color: var(--ab-muted); text-align: center; margin-top: 12px; }
.cart-summary-info { font-size: 13px; color: var(--ab-muted); }
.cart-continue-btn { font-size: 14px; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-steps { background: var(--ab-surface-soft); border-bottom: 1px solid var(--ab-hairline-soft); padding: 14px 0; }
.checkout-steps-inner { font-size: 14px; }
.checkout-step-done { color: var(--ab-muted); }
.checkout-step-current { font-weight: 600; color: var(--ab-ink); }
.checkout-step-pending { color: var(--ab-muted); }
.checkout-step-sep { color: var(--ab-hairline); font-size: 12px; }
.checkout-section { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 28px; margin-bottom: 20px; }
.checkout-section-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.2px; }
.checkout-icon { color: var(--ab-primary); }
.delivery-option { display: flex; align-items: center; justify-content: space-between; padding: 16px; border: 1px solid var(--ab-hairline); border-radius: 12px; cursor: pointer; }
.delivery-option.selected { border-color: var(--ab-ink); border-width: 2px; background: var(--ab-surface-soft); }
.delivery-option-name { font-size: 14px; font-weight: 600; }
.delivery-option-sub { font-size: 13px; color: var(--ab-muted); }
.delivery-option-free { font-weight: 700; color: var(--ab-success); font-size: 14px; }
.delivery-option-price { font-weight: 700; font-size: 14px; }
.checkout-ssl { font-size: 13px; color: var(--ab-muted); }
.checkout-summary-sticky { position: sticky; top: 96px; }
.checkout-item-thumb { width: 48px; height: 48px; background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline-soft); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.checkout-item-name { font-size: 14px; font-weight: 500; }
.checkout-item-meta { font-size: 12px; color: var(--ab-muted); }
.checkout-item-price { font-size: 14px; font-weight: 600; }
.checkout-btn-confirm { padding: 16px; font-size: 16px; }
.checkout-back-btn { font-size: 14px; }
.checkout-card-input { letter-spacing: 1px; }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-section { min-height: 70vh; display: flex; align-items: center; }
.auth-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline); border-radius: 14px; padding: 40px; }
.auth-icon {
  width: 52px; height: 52px;
  background: var(--ab-surface-soft);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.auth-icon i { font-size: 22px; color: var(--ab-ink); }
.auth-title { font-size: 22px; font-weight: 700; color: var(--ab-ink); margin-bottom: 4px; letter-spacing: -0.2px; }
.auth-subtitle { font-size: 14px; color: var(--ab-muted); }
.auth-forgot { font-size: 13px; color: var(--ab-ink); text-decoration: underline; }
.auth-remember { font-size: 14px; color: var(--ab-muted); }
.auth-submit { padding: 14px; font-size: 15px; }
.auth-hr { border-color: var(--ab-hairline-soft); margin: 24px 0; }
.auth-footer-text { font-size: 14px; color: var(--ab-muted); text-align: center; }
.auth-link { color: var(--ab-ink); font-weight: 600; text-decoration: underline; }
.auth-cgu-label { font-size: 13px; color: var(--ab-muted); }
.auth-cgu-link { color: var(--ab-ink); text-decoration: underline; }

/* Password visibility toggle */
.pwd-wrap { position: relative; }
.pwd-wrap .form-control { padding-right: 44px; }
.pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ab-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.pwd-toggle:hover { color: var(--ab-ink); }

/* ============================================================
   ABOUT & CONTACT
   ============================================================ */
.about-hero { background: var(--ab-ink); color: #fff; padding: 110px 0 90px; text-align: center; }
.about-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.about-hero--img .container { position: relative; z-index: 1; }
.about-hero-title { font-size: 36px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; }
.about-hero-sub { font-size: 17px; color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto; }
.about-body-text { font-size: 15px; line-height: 1.8; color: var(--ab-body); }
.about-cta-sub { font-size: 15px; color: var(--ab-muted); margin-bottom: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--ab-surface-soft); border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-icon i { color: var(--ab-ink); }
.contact-form-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline); border-radius: 14px; padding: 32px; }
.contact-section-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.2px; }
.contact-info-label { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: var(--ab-muted); }
.contact-info-note { font-size: 13px; color: var(--ab-muted); }
.contact-vendor-label { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.contact-vendor-desc { font-size: 14px; color: var(--ab-muted); margin-bottom: 16px; }

/* ============================================================
   ACCOUNT SIDEBAR
   ============================================================ */
.account-sidebar { background: var(--ab-canvas); border: 1px solid var(--ab-hairline); border-radius: 14px; overflow: hidden; }
.account-sidebar-top { padding: 20px; border-bottom: 1px solid var(--ab-hairline-soft); text-align: center; }
.account-avatar {
  width: 56px; height: 56px; border-radius: 9999px;
  background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--ab-ink); margin: 0 auto 10px;
}
.account-avatar-lg { width: 64px !important; height: 64px !important; font-size: 22px !important; }
.account-name { font-size: 15px; font-weight: 600; }
.account-email, .account-member { font-size: 13px; color: var(--ab-muted); }
.account-nav-body { padding: 10px 8px; }
.account-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  text-decoration: none; font-size: 14px; color: var(--ab-ink);
  transition: background .12s;
}
.account-nav-item:hover { background: var(--ab-surface-soft); color: var(--ab-ink); }
.account-nav-item.active { font-weight: 600; background: var(--ab-surface-soft); }
.account-nav-item.danger { color: var(--ab-error) !important; }
.account-nav-icon { color: var(--ab-muted); }
.account-nav-hr { border-color: var(--ab-hairline-soft); margin: 8px 14px; }

/* ============================================================
   ORDER CARDS
   ============================================================ */
.order-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; margin-bottom: 16px; overflow: hidden; }
.order-card-head { padding: 16px 20px; border-bottom: 1px solid var(--ab-hairline-soft); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; background: var(--ab-surface-soft); }
.order-card-meta { font-size: 13px; color: var(--ab-muted); }
.order-card-id { font-weight: 600; color: var(--ab-ink); }
.order-card-amount { font-weight: 700; color: var(--ab-ink); font-size: 14px; }
.order-badge-shipped, .order-badge-delivered { background: #e8f5e9; color: var(--ab-success); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 9999px; white-space: nowrap; }
.order-card-body { padding: 16px 20px; }
.order-item-thumb { width: 40px; height: 40px; background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline-soft); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.order-item-thumb i { color: var(--ab-muted); }
.order-item-name { font-size: 14px; font-weight: 500; }
.order-item-meta { font-size: 12px; color: var(--ab-muted); }
.order-item-price { font-size: 14px; font-weight: 600; }
.order-card-foot { padding: 12px 20px; border-top: 1px solid var(--ab-hairline-soft); display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   ORDER DETAIL
   ============================================================ */
.order-status-badge { background: #e8f5e9; color: var(--ab-success); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 9999px; }
.order-detail-section { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.order-detail-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.order-detail-icon { color: var(--ab-primary); }
.tracking-col { display: flex; flex-direction: column; align-items: center; }
.tracking-dot { width: 28px; height: 28px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.tracking-dot-done { background: var(--ab-success); color: #fff; }
.tracking-dot-current { background: var(--ab-ink); color: #fff; }
.tracking-dot-pending { background: var(--ab-surface-strong); color: var(--ab-muted); }
.tracking-line { width: 2px; height: 32px; background: var(--ab-hairline); margin: 4px 0; }
.tracking-line-faded { opacity: 0.4; }
.tracking-step-body { padding-top: 4px; }
.tracking-step-label { font-size: 14px; font-weight: 600; }
.tracking-step-done { color: var(--ab-success); }
.tracking-step-meta { font-size: 12px; color: var(--ab-muted); }
.order-vendor-label { font-size: 12px; font-weight: 700; color: var(--ab-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.order-detail-thumb { width: 52px; height: 52px; background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline-soft); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.order-detail-thumb i { color: var(--ab-muted); font-size: 20px; }
.order-detail-item-name { font-size: 14px; font-weight: 600; }
.order-detail-item-meta { font-size: 13px; color: var(--ab-muted); }
.order-detail-item-price { font-size: 15px; font-weight: 700; }
.order-vendor-divider { border-bottom: 1px solid var(--ab-hairline-soft); padding-bottom: 16px; margin-bottom: 16px; }
.order-address-text { font-size: 14px; color: var(--ab-muted); margin: 0; line-height: 1.8; }
.order-payment-note { font-size: 13px; color: var(--ab-muted); margin-top: 12px; }
.order-return-btn { border: 1px solid var(--ab-hairline) !important; font-size: 14px; color: var(--ab-error) !important; }

/* ============================================================
   ACCOUNT FORMS
   ============================================================ */
.account-form-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 28px; margin-bottom: 20px; }
.account-form-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.account-form-icon { color: var(--ab-primary); }

/* ============================================================
   VENDOR REGISTRATION — Wizard
   ============================================================ */
.vendor-form-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline); border-radius: 16px; padding: 40px; }
.vendor-form-footer { font-size: 13px; color: var(--ab-muted); text-align: center; margin-top: 20px; }
.vendor-link { color: var(--ab-ink); font-weight: 600; text-decoration: underline; }

/* Progress steps */
.wiz-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.wiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  gap: 8px;
  max-width: 140px;
}
.wiz-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--ab-hairline);
  transition: background .4s;
}
.wiz-step.done::after { background: var(--ab-primary); }
.wiz-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ab-hairline);
  background: var(--ab-canvas);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: var(--ab-muted);
  position: relative; z-index: 1;
  transition: all .3s;
}
.wiz-step.active .wiz-num  { background: var(--ab-primary); border-color: var(--ab-primary); color: #fff; box-shadow: 0 0 0 4px rgba(255,56,92,.15); }
.wiz-step.done  .wiz-num   { background: var(--ab-primary); border-color: var(--ab-primary); color: #fff; }
.wiz-lbl {
  font-size: 12px; font-weight: 600;
  color: var(--ab-muted);
  transition: color .3s;
  white-space: nowrap;
}
.wiz-step.active .wiz-lbl,
.wiz-step.done   .wiz-lbl { color: var(--ab-ink); }

/* Panels */
.wiz-panel { display: none; }
.wiz-panel.active { display: block; animation: wiz-in .28s ease; }
@keyframes wiz-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nav buttons */
.wiz-nav { display: flex; gap: 12px; margin-top: 28px; }
.btn-wiz-next { flex: 1; }
.btn-wiz-back {
  background: var(--ab-surface-soft);
  border: 1px solid var(--ab-hairline);
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.btn-wiz-back:hover { background: var(--ab-hairline-soft); }

/* Password strength */
.pwd-strength { margin-top: 8px; }
.pwd-strength-segs { display: flex; gap: 4px; height: 4px; border-radius: 2px; overflow: hidden; }
.pwd-strength-seg { flex: 1; background: var(--ab-hairline); border-radius: 2px; transition: background .3s; }
.pwd-s1 { background: var(--ab-primary) !important; }
.pwd-s2 { background: #ff8c00 !important; }
.pwd-s3 { background: #f5c518 !important; }
.pwd-s4 { background: #21c55d !important; }
.pwd-strength-txt { font-size: 11px; color: var(--ab-muted); margin-top: 4px; }

/* Live preview sidebar */
.preview-sidebar {
  position: sticky;
  top: 100px;
}
.preview-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ab-muted);
  margin-bottom: 12px;
}
.preview-vendor-card {
  background: var(--ab-canvas);
  border: 1px solid var(--ab-hairline);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}
.preview-cover {
  aspect-ratio: 16/7;
  background: linear-gradient(145deg, var(--ab-surface-soft), var(--ab-hairline-soft));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: rgba(34,34,34,.15);
}
.preview-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.preview-cover-gradient { position: absolute; inset: 0; }
.preview-body { padding: 16px; }
.preview-logo-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--ab-canvas);
  border: 2px solid var(--ab-canvas);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ab-muted);
  overflow: hidden;
  margin-top: -28px;
  margin-bottom: 10px;
  position: relative;
}
.preview-logo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.preview-shop-name { font-size: 15px; font-weight: 700; color: var(--ab-ink); margin-bottom: 4px; min-height: 20px; }
.preview-shop-cat  { font-size: 12px; color: var(--ab-muted); margin-bottom: 6px; min-height: 16px; }
.preview-shop-desc { font-size: 12px; color: var(--ab-body); line-height: 1.5; min-height: 36px; }
.preview-vendor-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--ab-canvas);
  border: 1px solid var(--ab-hairline);
  border-radius: 12px;
  padding: 12px 14px;
}
.preview-vendor-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ab-surface-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ab-muted);
  overflow: hidden;
  flex-shrink: 0;
}
.preview-vendor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.preview-vendor-name { font-size: 13px; font-weight: 600; color: var(--ab-ink); min-height: 16px; }
.preview-vendor-role { font-size: 11px; color: var(--ab-muted); }

/* Image pickers */
.avatar-picker {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  user-select: none;
}
.avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ab-surface-soft);
  border: 2px dashed var(--ab-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--ab-muted);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.avatar-picker:hover .avatar-circle,
.avatar-picker:focus .avatar-circle { border-color: var(--ab-primary); box-shadow: 0 0 0 3px rgba(255,56,92,.12); }
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  background: var(--ab-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  border: 2px solid var(--ab-canvas);
  pointer-events: none;
}

.logo-picker {
  position: relative;
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--ab-surface-soft);
  border: 2px dashed var(--ab-hairline);
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--ab-muted);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}
.logo-picker:hover,
.logo-picker:focus { border-color: var(--ab-primary); box-shadow: 0 0 0 3px rgba(255,56,92,.12); }
.logo-picker img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.logo-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--ab-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  border: 2px solid var(--ab-canvas);
  pointer-events: none;
}

.cover-upload-zone {
  border: 2px dashed var(--ab-hairline);
  border-radius: 12px;
  background: var(--ab-surface-soft);
  aspect-ratio: 16 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}
.cover-upload-zone:hover,
.cover-upload-zone:focus { border-color: var(--ab-primary); box-shadow: 0 0 0 3px rgba(255,56,92,.12); outline: none; }
.cover-upload-zone .cover-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-upload-hint { text-align: center; pointer-events: none; }
.cover-change-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
}
.cover-upload-zone:hover .cover-change-overlay { display: flex; }
.cover-upload-zone.drag-over { border-color: var(--ab-primary); background: rgba(255,56,92,.04); }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-input-full { max-width: 420px !important; }
.filter-sidebar { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 20px; }
.filter-sidebar-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.filter-checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; padding: 4px 0; }
.filter-price-sep { color: var(--ab-muted); font-size: 13px; }
.filter-price-input { font-size: 13px !important; border-color: var(--ab-hairline) !important; padding: 8px 10px !important; border-radius: 8px !important; }
.filter-star-btn { width: 32px; height: 32px; border: 1px solid var(--ab-hairline); border-radius: 8px; background: var(--ab-surface-soft); font-size: 12px; cursor: pointer; color: var(--ab-ink); transition: all .15s; }
.filter-star-btn:hover { background: var(--ab-ink); color: #fff; border-color: var(--ab-ink); }
.search-results-count { font-size: 14px; color: var(--ab-muted); }

/* ============================================================
   DASHBOARD VENDEUR
   ============================================================ */
.dashboard-layout { display: flex; min-height: calc(100vh - 80px); }
.dashboard-sidebar {
  width: 220px; min-width: 220px;
  background: var(--ab-ink);
  padding: 24px 0;
  position: sticky; top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
}
.sidebar-section { padding: 8px 16px 4px; }
.sidebar-section-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #666; padding: 0 8px; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; font-size: 14px; color: rgba(255,255,255,.6);
  text-decoration: none; border-radius: 9999px;
  margin: 2px 8px; transition: all .15s;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active { background: rgba(255,255,255,.1); color: #fff; }
.sidebar-nav-item i { font-size: 16px; }
.dashboard-main { flex: 1; padding: 32px; background: var(--ab-surface-soft); }
.dash-stat {
  background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft);
  border-radius: 14px; padding: 20px;
}
.dash-stat:hover { box-shadow: var(--shadow-card); }
.dash-stat-label { font-size: 13px; color: var(--ab-muted); margin-bottom: 6px; }
.dash-stat-value { font-size: 26px; font-weight: 700; color: var(--ab-ink); letter-spacing: -0.5px; }
.dash-stat-trend { font-size: 12px; margin-top: 4px; }
.dash-card { background: var(--ab-canvas); border: 1px solid var(--ab-hairline-soft); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.dash-card-title { font-size: 16px; font-weight: 600; color: var(--ab-ink); margin-bottom: 16px; }
.dash-table td, .dash-table th { font-size: 14px; padding: 10px 8px; vertical-align: middle; }
.dash-table th { font-weight: 600; color: var(--ab-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid var(--ab-hairline-soft); }
.dash-page-title { font-size: 22px; font-weight: 700; color: var(--ab-ink); margin-bottom: 2px; letter-spacing: -0.3px; }
.dash-page-sub { font-size: 14px; color: var(--ab-muted); margin: 0; }
.dash-trend-up { color: var(--ab-success); }
.dash-trend-neutral { color: var(--ab-muted); }
.dash-trend-accent { color: var(--ab-primary); }
.dash-order-id { font-weight: 600; }
.dash-order-amount { font-weight: 600; }
.dash-cell-muted { color: var(--ab-muted); }
.dash-badge-paid { background: #e8f5e9; color: var(--ab-success); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 9999px; display: inline-block; }
.dash-badge-shipped { background: #fff3e0; color: #e65100; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 9999px; display: inline-block; }
.dash-badge-delivered { background: #e8f5e9; color: var(--ab-success); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 9999px; display: inline-block; }
.dash-badge-return { background: #fce8e8; color: var(--ab-error); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 9999px; display: inline-block; }
.dash-badge-pending { background: #f3f4f6; color: #374151; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 9999px; display: inline-block; }
.dash-stock-ok { color: var(--ab-success); font-weight: 600; }
.dash-stock-low { color: #e65100; font-weight: 600; }
.dash-btn-danger { height: 30px; padding: 0 12px; font-size: 12px; background: none; border: 1px solid var(--ab-error); color: var(--ab-error); border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.dash-btn-danger:hover { background: var(--ab-error); color: #fff; }
.dash-stock-out { color: var(--ab-error); font-weight: 600; }
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding-top: 8px; }
.dash-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.dash-chart-bar { width: 100%; background: var(--ab-surface-strong); border-radius: 4px 4px 0 0; }
.dash-chart-bar.active { background: var(--ab-primary); }
.dash-chart-label { font-size: 10px; color: var(--ab-muted); }
.dash-chart-note { font-size: 13px; color: var(--ab-muted); margin-top: 12px; text-align: center; }
.dash-section-link { font-size: 14px; color: var(--ab-ink); text-decoration: underline; }
.dash-avatar { width: 32px; height: 32px; border-radius: 9999px; background: var(--ab-surface-soft); border: 1px solid var(--ab-hairline); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--ab-ink); flex-shrink: 0; overflow: hidden; }
.dash-vendor-label { font-size: 13px; color: var(--ab-muted); border-left: 1px solid var(--ab-hairline); padding-left: 12px; margin-left: 4px; }
.dash-vendor-name { font-size: 14px; font-weight: 500; }
.bar-h-50 { height: 50%; }
.bar-h-55 { height: 55%; }
.bar-h-65 { height: 65%; }
.bar-h-78 { height: 78%; }
.bar-h-100 { height: 100%; }

/* Topbar hidden */
.topbar { display: none; }

/* Hamburger dashboard — caché sur desktop */
.dash-menu-toggle { display: none; }

/* ============================================================
   MESSAGES DJANGO
   ============================================================ */
.lc-messages-bar { padding: 10px 0; }
.lc-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.lc-alert-success { background: #e8f5e9; color: var(--ab-success); border: 1px solid #c8e6c9; }
.lc-alert-error   { background: #fce8e8; color: var(--ab-error);   border: 1px solid #ffcdd2; }
.lc-alert-info    { background: #e3f2fd; color: #1565c0;           border: 1px solid #bbdefb; }
.lc-alert-warning { background: #fff3e0; color: #e65100;           border: 1px solid #ffe0b2; }
.lc-alert-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: inherit;
  opacity: .6;
  padding: 0;
  line-height: 1;
}
.lc-alert-close:hover { opacity: 1; }

/* User dropdown button — sans caret Bootstrap */
.lc-user-btn { border: none; background: transparent; }
.lc-user-btn::after { display: none; }

/* Logo sizes */
.lc-dash-logo { height: 32px; width: auto; }

/* ============================================================
   404
   ============================================================ */
.error-section { min-height: 65vh; display: flex; align-items: center; }
.error-code { font-size: 100px; font-weight: 900; color: var(--ab-hairline); line-height: 1; margin-bottom: 8px; }
.error-title { font-size: 26px; font-weight: 700; color: var(--ab-ink); margin-bottom: 10px; }
.error-desc { font-size: 15px; color: var(--ab-muted); max-width: 420px; margin: 0 auto 32px; }
.error-suggestion { font-size: 14px; color: var(--ab-muted); margin-bottom: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablette (≤ 991px) ---- */
@media (max-width: 991.98px) {
  .lc-hero-title { font-size: 44px; letter-spacing: -1px; }
  .lc-hero { min-height: 82vh; }

  /* Page hero padding réduit */
  .page-hero { padding: 64px 0 48px; }

  /* Navbar search moins large */
  .lc-search-input { width: 160px; }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 767.98px) {

  /* === HÉRO === */
  .lc-hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .lc-hero { min-height: 75vh; }
  .lc-hero-sub { font-size: 15px; }
  .hero-search-wrap { height: 56px; }
  .hero-search-segment { padding: 0 12px; }
  .hero-search-segment:nth-child(2) { display: none; }
  .hero-search-orb { width: 44px; height: 44px; font-size: 17px; }
  .hero-trust-strip { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .hero-trust-pill { font-size: 12px; padding: 6px 12px; }

  /* === PAGE HERO === */
  .page-hero { padding: 40px 0 28px; }
  .page-hero-title { font-size: 22px; }

  /* === NAVBAR === */
  .lc-navbar { height: auto; min-height: 64px; }
  .lc-navbar .container,
  .lc-navbar .container-fluid { height: auto; min-height: 64px; flex-wrap: wrap; padding: 10px 16px; }
  .lc-search-pill { width: 100%; order: 3; margin-top: 8px; }
  .lc-search-input { width: 100%; flex: 1; }
  .lc-navbar-logo { height: 28px; }

  /* === DASHBOARD SIDEBAR — tiroir masqué par défaut === */
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 260px;
    height: 100vh;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform .25s ease;
    overflow-y: auto;
    padding-top: 16px;
  }
  .dashboard-sidebar.open { transform: translateX(0); }
  .dashboard-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1040;
  }
  .dashboard-sidebar-backdrop.open { display: block; }
  .dashboard-main { padding: 16px; }
  .dash-page-title { font-size: 18px; }

  /* Bouton hamburger visible sur mobile seulement */
  .dash-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 9999px;
    border: 1px solid var(--ab-hairline);
    background: var(--ab-canvas);
    color: var(--ab-ink);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* === CHECKOUT === */
  .checkout-summary-sticky { position: static; }
  .checkout-section { padding: 18px; }

  /* === BOUTIQUE TABS === */
  .boutique-tabs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; }

  /* === TABLES DASHBOARD === */
  .dash-table { font-size: 13px; }
  .dash-table td, .dash-table th { padding: 8px 6px; font-size: 13px; }

  /* === CARTES STATS === */
  .dash-stat-value { font-size: 20px; }

  /* === FOOTER === */
  .footer-inner .row > [class*="col-"] { margin-bottom: 28px; }

  /* === AUTH === */
  .auth-card { padding: 24px 20px; }

  /* === FILTER BAR — alignée sur la navbar mobile === */
  .filter-bar { top: 64px; }

  /* === GÉNÉRAL === */
  .lc-section-title { font-size: 20px; }
  .lc-page-title { font-size: 22px; }
}

/* ---- Téléphone (≤ 575px) ---- */
@media (max-width: 575.98px) {
  /* Hero search : passage en colonne dès 575px */
  .hero-search-wrap {
    flex-direction: column;
    height: auto;
    border-radius: 16px;
    padding: 10px;
    gap: 0;
  }
  .hero-search-segment {
    flex: none;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--ab-hairline);
    padding: 10px 14px;
  }
  .hero-search-segment:nth-child(2) { display: flex; }
  .hero-search-segment:last-of-type { border-bottom: none; }
  .hero-search-orb {
    width: 100%;
    height: 44px;
    border-radius: 9999px;
    margin-top: 8px;
    flex-shrink: 0;
  }

  /* Bouton « Ajouter au panier » pleine largeur */
  .prod-add-row { flex-wrap: wrap; }
  .prod-add-row .qty-control { order: 1; }
  .prod-add-row .lc-icon-btn { order: 2; margin-left: auto; }
  .prod-add-row .btn-lc-primary { order: 3; width: 100%; flex-grow: 0; }
}

/* ============================================================
   ZANDO NA TSHOMBO — Luxury Override v3 (homepage only)
   Skill: ui-ux-pro-max · Pattern: Marketplace / Directory
   Typo: Cormorant Garamond 84px + Inter
   Accent: #ff385c (conservé intégralement via --ab-primary)
   ============================================================ */

:root {
  --lx-bg:       #FAF9F7;
  --lx-bg-2:     #F4F2EF;
  --lx-border:   #E8E4DF;
  --lx-muted:    #6B6660;
  --lx-ink:      #1A1814;
  --lx-shadow:   0 8px 32px rgba(0,0,0,.08);
  --lx-shadow-h: 0 16px 48px rgba(0,0,0,.12);
}

body { background: var(--lx-bg); }
.lc-bg-soft { background: var(--lx-bg-2) !important; }

section.py-5 {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.lc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
}
.lc-hero-title span { font-style: italic; color: var(--ab-primary); }
.lc-hero-sub { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.78); max-width: 500px; }

.hero-search-wrap { border-radius: 6px; height: 72px; max-width: 780px; box-shadow: 0 12px 48px rgba(0,0,0,.28); }
.hero-search-segment { padding: 0 28px; }
.hero-search-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #1A1A1A; }
.hero-search-placeholder { font-size: 15px; color: #666; }
.hero-search-orb { width: 58px; height: 58px; border-radius: 4px; background: var(--ab-primary); font-size: 22px; margin-right: 7px; flex-shrink: 0; transition: background .2s; }
.hero-search-orb:hover { background: var(--ab-primary-dark); }

.lc-stats-band { background: var(--lx-bg); border-top: 1px solid var(--lx-border); border-bottom: 1px solid var(--lx-border); padding: 64px 0; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; letter-spacing: -1px; line-height: 1; color: var(--lx-ink); }
.stat-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; color: var(--lx-muted); margin-top: 6px; }

.section-header > div { flex: 1; }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lx-muted); display: block; margin-bottom: 10px; text-align: center; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; letter-spacing: -0.5px; line-height: 1.1; margin: 0; text-align: center; }
.section-link { font-size: 13px; font-weight: 500; color: var(--lx-ink); text-decoration: underline; }
.section-link:hover { color: var(--ab-primary); }

.cat-card { background: #fff; border: 1px solid var(--lx-border); border-radius: 8px; min-height: 140px; transition: border-color .2s, transform .25s, box-shadow .25s; }
.cat-card:hover { border-color: var(--ab-primary); transform: translateY(-4px); box-shadow: var(--lx-shadow); }
.cat-icon-mode, .cat-icon-tech, .cat-icon-food, .cat-icon-services, .cat-icon-maison, .cat-icon-beaute, .cat-icon-agriculture, .cat-icon-auto-moto { background: var(--lx-bg-2); color: var(--ab-primary); border-radius: 12px; }
.cat-card:hover .cat-icon { background: var(--ab-primary); color: #fff; }
.cat-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; }
.cat-count { font-size: 11px; color: var(--lx-muted); margin-top: 4px; }

.shop-card { background: #fff; border: 1px solid var(--lx-border); border-radius: 10px; overflow: hidden; transition: border-color .2s, box-shadow .25s, transform .25s; cursor: pointer; }
.shop-card:hover { border-color: var(--ab-primary); box-shadow: var(--lx-shadow-h); transform: translateY(-4px); }
.shop-cover { width: 100%; height: 220px; aspect-ratio: unset; border-radius: 10px 10px 0 0; border: none; overflow: hidden; }
.shop-cover-badge { background: var(--ab-primary); color: #fff; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 3px; box-shadow: none; }
.shop-body { padding: 18px 18px 22px; }
.shop-name { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: -0.2px; margin-bottom: 6px; line-height: 1.3; }
.shop-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--lx-muted); line-height: 1.6; }
.shop-save-btn { opacity: 0; transition: opacity .2s, color .15s; }
.shop-card:hover .shop-save-btn { opacity: 1; }
.shop-save-btn:hover { color: var(--ab-primary); }
.badge-mode, .badge-tech, .badge-food, .badge-services, .badge-beaute, .badge-maison { background: var(--lx-bg-2); color: var(--lx-muted); border-color: var(--lx-border); }

.prod-card { background: #fff; border: 1px solid var(--lx-border); border-radius: 10px; overflow: hidden; transition: border-color .2s, box-shadow .25s, transform .25s; cursor: pointer; display: flex; flex-direction: column; }
.prod-card:hover { border-color: var(--ab-primary); box-shadow: var(--lx-shadow-h); transform: translateY(-4px); }
.prod-img-wrap { position: relative; height: 220px; overflow: hidden; border-radius: 0; flex-shrink: 0; }
.prod-img-wrap a.d-block { height: 100%; display: block; }
.prod-img-wrap img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important; }
.prod-img-placeholder { height: 100%; aspect-ratio: unset; }
.prod-body { padding: 14px 16px 18px; flex: 1; }
.prod-shop-name { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lx-muted); margin-bottom: 5px; }
.prod-name { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; line-height: 1.45; color: var(--lx-ink); margin-bottom: 10px; display: block; }
.prod-name:hover { color: var(--ab-primary); }
.prod-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--lx-ink); line-height: 1; }
.prod-price-old { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; color: #9E9E9E; text-decoration: line-through; margin-left: 6px; }
.prod-action-btn:hover { color: var(--ab-primary); }

.feature-item { border-color: var(--lx-border); border-radius: 8px; transition: box-shadow .25s, transform .25s; }
.feature-item:hover { box-shadow: var(--lx-shadow); transform: translateY(-4px); }
.feature-icon { background: var(--lx-bg-2); border-radius: 12px; color: var(--ab-primary); }
.feature-item:hover .feature-icon { background: var(--ab-primary); color: #fff; }
.feature-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; }
.feature-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--lx-muted); line-height: 1.65; }

.newsletter-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; letter-spacing: -0.5px; }

/* NE PAS TOUCHER : footer */

@media (max-width: 991.98px) {
  .lc-hero-title { font-size: 56px; letter-spacing: -1.5px; }
  .section-title  { font-size: 34px; }
  .stat-number    { font-size: 40px; }
  section.py-5    { padding-top: 64px !important; padding-bottom: 64px !important; }
}
@media (max-width: 767.98px) {
  .lc-hero-title { font-size: 40px; letter-spacing: -1px; }
  .section-title  { font-size: 30px; }
  .stat-number    { font-size: 34px; }
  section.py-5    { padding-top: 48px !important; padding-bottom: 48px !important; }
  .prod-img-wrap  { height: 180px; }
  .shop-cover     { height: 180px; }
}

/* ---- Petit mobile (≤ 480px) ---- */
@media (max-width: 479.98px) {
  .lc-hero-title { font-size: 26px; }
  .hero-search-wrap { flex-direction: column; height: auto; border-radius: 16px; padding: 10px; gap: 8px; }
  .hero-search-orb { width: 100%; height: 44px; border-radius: 9999px; font-size: 15px; }
  .checkout-section { padding: 14px 12px; }
  .dash-stat-value { font-size: 18px; }
  .paiement-card-art { font-size: 13px; }
}

/* ============================================================
   DASHBOARD — Luxury Override
   Typo: Cormorant Garamond (KPI, titres) + Inter (labels, nav)
   Accent: #ff385c conservé intégralement
   ============================================================ */

.dashboard-main { background: #FAF9F7; }

.sidebar-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,.35);
}
.sidebar-nav-item { font-family: 'Inter', sans-serif; font-size: 13px; }
.sidebar-nav-item:hover { color: var(--ab-primary); background: rgba(255,59,90,.08); }
.sidebar-nav-item.active { color: #fff; background: rgba(255,255,255,.1); }

.dash-stat { background: #FAF9F7; border: 1px solid #E8E6E1; }
.dash-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; letter-spacing: -1px; line-height: 1;
}
.dash-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: #6B6B6B;
}
.dash-stat-trend  { font-family: 'Inter', sans-serif; font-size: 12px; }
.dash-trend-up    { color: var(--ab-primary); }
.dash-trend-neutral { color: var(--ab-primary); }

.dash-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; letter-spacing: -0.5px; line-height: 1.1;
}

.dash-banner-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dash-table th {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.12em;
  color: #6B6B6B; text-transform: uppercase;
}
.dash-table td { border-bottom: 1px solid #E8E6E1; }

@media (max-width: 767.98px) {
  .dash-stat-value { font-size: 32px; }
  .dash-page-title { font-size: 28px; }
}
@media (max-width: 479.98px) {
  .dash-stat-value { font-size: 24px; }
}
