/* ============================================================
   BABY OKAZ — Feuille de style
   Palette issue du logo : corail #EF6363 / bleu #54A8DC /
   jaune #F5B82E / vert #6FBF73
   ============================================================ */

:root {
  --coral: #EF6363;
  --coral-dark: #D94F4F;
  --coral-light: #FDECEC;
  --blue: #54A8DC;
  --blue-dark: #3D8CBE;
  --blue-light: #E8F4FB;
  --yellow: #F5B82E;
  --green: #6FBF73;
  --ink: #2D3142;
  --ink-soft: #6B7280;
  --bg: #F7F8FA;
  --card: #FFFFFF;
  --line: #ECEDF1;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(45, 49, 66, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 49, 66, 0.16);
  --nav-h: 64px;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html, body { height: 100%; }

body {
  font-family: var(--font);
  background: #E9EBF0;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}

/* ---------- Boot loader ---------- */
.boot-loader {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 100dvh;
}
.boot-logo { font-size: 44px; font-weight: 900; position: relative; }
.boot-baby { color: var(--coral); }
.boot-okaz { color: var(--blue); }
.boot-heart { text-align: center; color: var(--coral); font-size: 22px; }
.boot-sub { color: var(--ink-soft); font-size: 15px; }
.spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--coral-light);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Bannière mode démo ---------- */
.demo-banner {
  background: linear-gradient(90deg, var(--yellow), #F9CD60);
  color: #5C4400;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  text-align: center;
  cursor: pointer;
  position: sticky;
  top: 0;
  z-index: 50;
}
.live-banner {
  background: linear-gradient(90deg, var(--green), #8BD18F);
  color: #1d4d20;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  text-align: center;
}

/* ---------- En-tête ---------- */
.app-header {
  background: var(--card);
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.app-header .brand {
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand .b1 { color: var(--coral); }
.brand .b2 { color: var(--blue); }
.brand .flag { font-size: 18px; }
.brand-logo { height: 48px; width: auto; object-fit: contain; display: block; }
.brand-name { font-size: 22px; font-weight: 900; line-height: 1; }
.brand-name .b1 { color: var(--coral); }
.brand-name .b2 { color: var(--blue); }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.screen-header {
  background: var(--card);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.screen-header h1 { font-size: 19px; font-weight: 800; flex: 1; }
.back-btn {
  border: none;
  background: var(--bg);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}

/* ---------- Recherche & filtres ---------- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 12px;
}
.search-bar input {
  border: none; background: transparent; outline: none;
  font-size: 15px; flex: 1; font-family: var(--font);
  color: var(--ink);
}
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 4px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
}
.chip.active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.filter-row {
  display: flex;
  gap: 8px;
  padding: 8px 0 2px;
}
.filter-row select {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--card);
}

/* ---------- Contenu scrollable ---------- */
.content {
  flex: 1;
  padding-bottom: calc(var(--nav-h) + 24px);
}
.content.no-nav { padding-bottom: 24px; }

/* ---------- Grille d'annonces ---------- */
.listing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
}
.listing-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  transition: transform 0.15s;
}
.listing-card:active { transform: scale(0.97); }
.listing-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  display: block;
  background: var(--blue-light);
}
.listing-card .fav-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.listing-card .info { padding: 10px 12px 12px; }
.listing-card .title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 35px;
}
.listing-card .price {
  font-size: 16px;
  font-weight: 900;
  color: var(--coral);
  margin-top: 4px;
}
.listing-card .meta {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-sold {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-premium {
  background: linear-gradient(90deg, var(--yellow), #FFD76E);
  color: #5C4400;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

/* ---------- Détail annonce ---------- */
.photo-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--blue-light);
}
.photo-carousel::-webkit-scrollbar { display: none; }
.photo-carousel img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  scroll-snap-align: center;
}
.detail-body { padding: 18px 16px; }
.detail-title { font-size: 21px; font-weight: 800; line-height: 1.25; }
.detail-price { font-size: 26px; font-weight: 900; color: var(--coral); margin: 8px 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.tag {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.detail-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  white-space: pre-wrap;
  margin: 14px 0;
}
.seller-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 14px 0;
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.seller-card .name { font-weight: 800; font-size: 15px; }
.seller-card .rating { font-size: 12.5px; color: var(--ink-soft); }
.detail-actions {
  position: sticky;
  bottom: 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}

/* ---------- Boutons ---------- */
.btn {
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.15s, transform 0.1s;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: default; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost { background: transparent; color: var(--coral); }
.btn-block { width: 100%; display: block; }
.btn-ai {
  background: linear-gradient(135deg, #8E6FE8, var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-danger { background: #fff; color: #E03131; border: 1.5px solid #FFD3D3; }

/* ---------- Formulaires ---------- */
.form-section { padding: 16px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font);
  background: var(--card);
  color: var(--ink);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }

/* ---------- Upload photos ---------- */
.photo-upload-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.photo-slot {
  width: 92px; height: 92px;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot .del {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}
.photo-add {
  width: 92px; height: 92px;
  border: 2px dashed #C9CDD6;
  border-radius: 12px;
  background: var(--card);
  font-size: 26px;
  color: #9AA0AC;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--font);
}
.photo-add small { font-size: 10px; font-weight: 700; }

/* ---------- Info / bannières ---------- */
.info-box {
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
}
.info-box.warn { background: #FFF6E0; color: #7A5B00; }
.info-box.ok { background: #E9F7EA; color: #2B6B2F; }
.info-box.coral { background: var(--coral-light); color: var(--coral-dark); }

/* ---------- Navigation basse ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  background: var(--card);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 8px;
  z-index: 60;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  color: #9AA0AC;
  font-size: 10.5px;
  font-weight: 800;
  border: none;
  background: none;
  font-family: var(--font);
  width: 64px;
  position: relative;
}
.nav-item .ico { font-size: 22px; }
.nav-item.active { color: var(--coral); }
.nav-item .dot {
  position: absolute;
  top: -2px; right: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--coral);
  border: 2px solid #fff;
}
.nav-publish .ico {
  background: var(--coral);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: -16px;
  box-shadow: 0 4px 12px rgba(239, 99, 99, 0.4);
}

/* ---------- Auth ---------- */
.auth-screen {
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-mark { display: flex; justify-content: center; margin-bottom: 8px; }
.auth-logo .logo-mark svg { filter: drop-shadow(0 4px 12px rgba(232,120,74,0.18)); }
.auth-logo .name { font-size: 36px; font-weight: 900; }
.auth-logo .sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.auth-links { text-align: center; margin-top: 18px; font-size: 14px; color: var(--ink-soft); }
.auth-links a { color: var(--blue-dark); font-weight: 800; cursor: pointer; text-decoration: none; }

/* ---------- Chat ---------- */
.conv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.conv-item .conv-body { flex: 1; min-width: 0; }
.conv-item .conv-top { display: flex; justify-content: space-between; gap: 8px; }
.conv-item .who { font-weight: 800; font-size: 15px; }
.conv-item .when { font-size: 11.5px; color: var(--ink-soft); flex-shrink: 0; }
.conv-item .last {
  font-size: 13.5px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.conv-thumb {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-screen {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}
.bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.bubble.me {
  align-self: flex-end;
  background: var(--coral);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.bubble.them {
  align-self: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}
.bubble .time { display: block; font-size: 10px; opacity: 0.7; margin-top: 3px; text-align: right; }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--card);
  border-top: 1px solid var(--line);
}
.chat-input-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
}
.chat-input-row button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--coral);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- Profil ---------- */
.profile-head {
  background: var(--card);
  padding: 26px 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.profile-head .avatar { width: 76px; height: 76px; font-size: 30px; margin: 0 auto 12px; }
.profile-head h2 { font-size: 20px; font-weight: 900; }
.profile-head .email { color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }
.profile-head .stats {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 14px;
}
.profile-head .stat { text-align: center; }
.profile-head .stat .n { font-weight: 900; font-size: 17px; }
.profile-head .stat .l { font-size: 11.5px; color: var(--ink-soft); }
.menu-list { background: var(--card); margin-top: 12px; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
.menu-item .mi-ico { font-size: 19px; width: 26px; text-align: center; }
.menu-item .arrow { margin-left: auto; color: #C2C6CF; }
.menu-item.danger { color: #E03131; }

/* ---------- Premium ---------- */
.premium-card {
  margin: 14px 16px;
  background: linear-gradient(135deg, #FFF4D6, #FFE9A8);
  border-radius: var(--radius);
  padding: 18px;
  border: 1.5px solid #F2D98A;
}
.premium-card h3 { font-size: 17px; margin-bottom: 8px; }
.premium-card ul { list-style: none; font-size: 13.5px; line-height: 1.9; color: #5C4400; }

/* ---------- Comptes / connexions ---------- */
.service-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.service-card .svc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.service-card .svc-head .svc-ico { font-size: 22px; }
.service-card .svc-head h3 { font-size: 16px; flex: 1; }
.status-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.status-pill.on { background: #E9F7EA; color: #2B6B2F; }
.status-pill.off { background: #FFEAEA; color: #C92A2A; }
.status-pill.opt { background: var(--blue-light); color: var(--blue-dark); }
.service-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 10px; }

/* ---------- Checkout ---------- */
.price-table {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin: 14px 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 6px 0;
  color: var(--ink-soft);
}
.price-row.total {
  border-top: 1.5px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
}

/* --- Paiement fractionné --- */
.payment-mode-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.pay-mode-btn {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: border-color 0.15s, background 0.15s;
}
.pay-mode-btn.active {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-light);
}
.price-hint {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 8px;
}
.card-brand {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---------- État vide ---------- */
.empty-state {
  text-align: center;
  padding: 60px 30px;
  color: var(--ink-soft);
}
.empty-state .big { font-size: 52px; margin-bottom: 12px; }
.empty-state h3 { color: var(--ink); margin-bottom: 6px; font-size: 17px; }
.empty-state p { font-size: 14px; line-height: 1.5; }

/* ---------- Toasts ---------- */
#toast-container {
  position: fixed;
  bottom: calc(var(--nav-h) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(420px, calc(100vw - 32px));
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.25s ease;
  text-align: center;
}
.toast.success { background: var(--green); }
.toast.error { background: #E03131; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Bandeaux publicitaires / AdSense ---------- */
.ad-slot {
  width: 100%;
  min-height: 60px;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  overflow: hidden;
}
.ad-slot ins.adsbygoogle { display: block; }
.ad-placeholder {
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ---------- Bandeau consentement cookies (RGPD) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border-top: 2px solid var(--coral);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideUp 0.3s ease;
}
.cookie-text {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.cookie-text i { font-size: 18px; color: var(--coral); flex-shrink: 0; margin-top: 1px; }
.cookie-text a { color: var(--blue); text-decoration: underline; cursor: pointer; }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }
.btn-sm { padding: 7px 18px !important; font-size: 13px !important; }

/* ---------- Divers ---------- */
.section-title {
  font-size: 16px;
  font-weight: 900;
  padding: 18px 16px 6px;
}
.legal-body { padding: 18px; font-size: 14px; line-height: 1.65; color: #444; }
.legal-body h2 { font-size: 17px; margin: 18px 0 8px; color: var(--ink); }
.legal-body p { margin-bottom: 10px; }
hr.sep { border: none; border-top: 1px solid var(--line); margin: 14px 0; }
