:root {
  --navy: #1F3A5F;
  --navy-dark: #142943;
  --gold: #B08D57;
  --grey: #595959;
  --light: #F2F2F2;
  --red: #8C2F2F;
  --green: #2F6B3F;
  --radius: 10px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #262626;
  background: #fafafa;
}
header {
  background: var(--navy);
  color: #fff;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
header .brand { display: flex; align-items: center; gap: 10px; }
header .brand .brand-logo { height: 30px; width: auto; display: block; }
header .brand span.name { font-weight: 700; font-size: 20px; letter-spacing: 0.5px; }
header .brand span.admin-suffix { font-weight: 600; font-size: 14px; color: #cfd9e6; letter-spacing: 0.3px; }
header .tagline { font-size: 12px; color: #cfd9e6; margin-left: 8px; }
.lang-switch { display: flex; gap: 6px; }
.lang-switch select {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.4); color: #fff;
  padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 12px; max-width: 140px;
}
.lang-switch select option { color: #111; background: #fff; }

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; padding: 48px 28px; text-align: center;
}
.hero > * { position: relative; z-index: 2; }
.hero h1 { font-size: 32px; margin: 0 0 10px; }
.hero p.sub { color: #cfd9e6; max-width: 720px; margin: 0 auto 20px; font-size: 15px; line-height: 1.6; }

.platforms-section { text-align: center; }
.platforms-section h2 { margin: 0 0 6px; font-size: 22px; color: var(--navy); }
.platforms-section .small-note { font-size: 14px; max-width: 620px; margin: 0 auto 24px; }
.platform-strip { margin-top: 0; }
.platforms-section .brand-grid-panel { background: #F7F9FC; box-shadow: none; padding: 20px; }

/* ---- Grille de cartes colorees "sites reconnus" (logos stylises par marque) ---- */
.brand-grid-panel {
  background: #fff; border-radius: 20px; padding: 22px;
  box-shadow: 0 12px 30px rgba(11,31,61,0.18);
  max-width: 980px; margin: 0 auto;
}
.brand-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px 12px;
}
.brand-card-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; cursor: pointer;
}
.brand-card-wrap.brand-card-message { cursor: default; }
.brand-card-message .brand-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.brand-card-message .brand-card-logo {
  color: #fff; font-size: 14px;
}
.brand-card-message .brand-card-label { visibility: hidden; }
.brand-card {
  width: 100%; aspect-ratio: 5 / 3; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background: #f4f6f9; overflow: hidden;
}
.brand-card-wrap:hover .brand-card { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.18); }
/* object-fit: contain (et non cover) pour ne jamais rogner un logo dont le
   ratio ne correspond pas exactement a la carte (5:3) — tout le logo reste
   visible, quitte a laisser un petit espace sur les bords les plus courts. */
.brand-card-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-card-logo {
  font-weight: 800; text-align: center; line-height: 1.15;
  max-width: 100%; overflow-wrap: break-word;
  font-size: 13px; letter-spacing: 0.2px;
  padding: 10px; box-sizing: border-box;
}
.brand-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--navy); text-align: center;
}
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 10px 8px; }
  .brand-grid-panel { padding: 16px; border-radius: 16px; }
  .brand-card-logo { font-size: 11px; }
  .brand-card-label { font-size: 9px; }
}

/* ---- Fond anime (blobs degrades) sur les sections hero ---- */
.hero-blob {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(55px);
  opacity: 0.4; pointer-events: none; animation: heroFloat 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 320px; height: 320px; background: var(--gold); top: -90px; left: -60px; animation-delay: 0s; }
.hero-blob.b2 { width: 280px; height: 280px; background: #3d6ea5; bottom: -110px; right: 6%; animation-delay: -5s; }
.hero-blob.b3 { width: 190px; height: 190px; background: #7a9cc6; top: 10%; right: 22%; animation-delay: -10s; }
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(26px, -18px) scale(1.08); }
  66% { transform: translate(-18px, 14px) scale(0.94); }
}
.hero-illustration { position: absolute; z-index: 1; opacity: 0.16; pointer-events: none; }
.hero-illustration.hi-index { right: -30px; bottom: -20px; width: 260px; height: auto; }

/* ---- Micro-interactions ---- */
.card { transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.07); }
.btn { transition: background 0.18s, transform 0.12s, box-shadow 0.18s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(31,58,95,0.25); }
.btn:active { transform: translateY(0); }
.btn.secondary:hover { background: rgba(31,58,95,0.06); }

/* ---- Spinner (calcul en cours) ---- */
.spinner-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 0; }
.spinner-gear { animation: spinGear 1.1s linear infinite; }
@keyframes spinGear { to { transform: rotate(360deg); } }
.spinner-label { font-size: 12px; color: var(--grey); }

@media (prefers-reduced-motion: reduce) {
  .hero-blob, .spinner-gear, .card, .btn { animation: none !important; transition: none !important; }
}

main { max-width: 980px; margin: 0 auto; padding: 32px 20px 80px; }
main.has-sidebar { max-width: 1180px; }
.card {
  background: #fff; border: 1px solid #e6e6e6; border-radius: var(--radius);
  padding: 24px; margin-bottom: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ---- Colonne "mon espace" (navigation compte, partagee sur les pages connectees) ---- */
.account-layout { display: flex; gap: 28px; align-items: flex-start; }
.account-sidebar { flex: 0 0 230px; }
.account-sidebar.hidden { display: none; }
.account-sidebar-group { margin-bottom: 22px; }
.account-sidebar-group-title {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.4px; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 8px; margin-bottom: 6px;
}
.account-sidebar-link {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 9px 10px; border-radius: 6px; font-size: 13.5px; color: #333; text-decoration: none;
}
.account-sidebar-link:hover { background: var(--light); }
.account-sidebar-link.active {
  background: #FBF3E7; color: var(--navy); font-weight: 700;
  border-left: 3px solid var(--gold); padding-left: 7px;
}
.account-sidebar-badge {
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 999px; flex: 0 0 auto;
}
.account-main { flex: 1; min-width: 0; }
@media (max-width: 780px) {
  .account-layout { flex-direction: column; }
  .account-sidebar { flex-basis: auto; width: 100%; }
}
.card h2 { margin-top: 0; color: var(--navy); font-size: 19px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.step-label { display: inline-block; background: var(--gold); color: var(--navy-dark); font-weight: 700; font-size: 12px; padding: 2px 9px; border-radius: 999px; margin-bottom: 8px; }

label { display: block; font-size: 13px; font-weight: 600; margin: 14px 0 6px; color: var(--navy); }
select, input[type=text], input[type=number], input[type=url], input[type=password], input[type=email], input[type=tel], textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 14px;
  font-family: inherit; background: #fff;
}
select:focus, input:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31,58,95,0.12); }
textarea { min-height: 80px; resize: vertical; }

/* ---- Formulaire de connexion / inscription / reinitialisation ---- */
.auth-card { max-width: 440px; margin-left: auto; margin-right: auto; border-top: 4px solid var(--gold); }
.auth-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.auth-card-icon {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.auth-card h2 { border: none; padding: 0; margin: 0; font-size: 18px; }
.auth-card-tagline { margin: 2px 0 0; font-size: 12.5px; color: var(--grey); }
.auth-card .btn { width: 100%; }

.pw-strength { margin-top: 8px; }
.pw-strength-bar { height: 6px; border-radius: 999px; background: #e6e6e6; overflow: hidden; }
.pw-strength-fill { display: block; height: 100%; width: 0%; border-radius: 999px; transition: width 0.2s, background 0.2s; }
.pw-strength-fill.pw-level-weak { background: var(--red); }
.pw-strength-fill.pw-level-passable { background: var(--gold); }
.pw-strength-fill.pw-level-good { background: #3d7a4d; }
.pw-strength-fill.pw-level-strong { background: var(--green); }
.pw-strength-label { font-size: 12px; font-weight: 700; margin-top: 4px; }
.pw-strength-label.pw-level-weak { color: var(--red); }
.pw-strength-label.pw-level-passable { color: #8a6a3d; }
.pw-strength-label.pw-level-good { color: #3d7a4d; }
.pw-strength-label.pw-level-strong { color: var(--green); }
.pw-strength-hint { font-size: 11.5px; color: var(--grey); margin-top: 4px; }

.legal-consent { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.legal-consent-line {
  display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 12.5px;
  margin: 0; color: #444;
}
.legal-consent-line a { font-size: 11.5px; white-space: nowrap; }
.row { display: flex; gap: 14px; flex-wrap: wrap; }
.row > div { flex: 1; min-width: 180px; }

.btn {
  background: var(--navy); color: #fff; border: none; padding: 11px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 16px;
}
.btn:hover { background: var(--navy-dark); }
.btn.secondary { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.notice {
  background: #FBF3E7; border: 1px solid var(--gold); border-radius: 8px;
  padding: 12px 14px; font-size: 13px; color: #6b4f22; margin: 14px 0;
}
.notice.china { background: #FDECEC; border-color: var(--red); color: var(--red); }
.notice.ok { background: #EAF5EC; border-color: var(--green); color: var(--green); }

.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin: 14px 0; }
.category-chip {
  border: 1px solid #ddd; border-radius: 8px; padding: 10px 12px; font-size: 13px; cursor: pointer;
  background: #fff; transition: all 0.15s;
}
.category-chip:hover { border-color: var(--navy); }
.category-chip.selected { border-color: var(--gold); background: #FBF3E7; font-weight: 600; }

.exclusion-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.exclusion-list span {
  background: #FDECEC; color: var(--red); font-size: 11px; padding: 3px 9px; border-radius: 999px; border: 1px solid #f0c7c7;
}

.variant-fields { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

/* ---- Messagerie (chat client <-> admin) ---- */
.chat-thread {
  display: flex; flex-direction: column; gap: 10px; max-height: 480px; overflow-y: auto;
  padding: 6px 4px; margin-bottom: 14px;
}
.chat-bubble { max-width: 75%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.chat-bubble .chat-meta { font-size: 10.5px; opacity: 0.65; margin-top: 4px; }
.chat-bubble.from-client { align-self: flex-end; background: var(--navy); color: #fff; border-bottom-right-radius: 3px; }
.chat-bubble.from-admin { align-self: flex-start; background: var(--light); color: #222; border-bottom-left-radius: 3px; }
.chat-empty { text-align: center; color: var(--grey); font-size: 13px; padding: 30px 0; }
.chat-input-row { display: flex; gap: 10px; align-items: flex-end; }
.chat-input-row textarea { flex: 1; min-height: 46px; margin: 0; }
.chat-input-row button { margin-top: 0; white-space: nowrap; }

.admin-chat-layout { display: flex; gap: 18px; align-items: flex-start; }
.admin-chat-userlist { flex: 0 0 260px; max-height: 560px; overflow-y: auto; border: 1px solid #e6e6e6; border-radius: 8px; }
.admin-chat-user { display: block; padding: 12px 14px; border-bottom: 1px solid #eee; cursor: pointer; text-decoration: none; color: #222; }
.admin-chat-user:hover { background: var(--light); }
.admin-chat-user.selected { background: #FBF3E7; border-left: 3px solid var(--gold); }
.admin-chat-user .email-line { font-weight: 700; font-size: 13px; display: flex; justify-content: space-between; gap: 6px; }
.admin-chat-user .preview-line { font-size: 11.5px; color: var(--grey); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-chat-conversation { flex: 1; min-width: 0; }
@media (max-width: 780px) {
  .admin-chat-layout { flex-direction: column; }
  .admin-chat-userlist { flex-basis: auto; width: 100%; max-height: 240px; }
}
.variant-fields > div { flex: 1; min-width: 180px; }
.variant-fields label { margin-top: 0; }

.preview-box { display: flex; gap: 14px; align-items: flex-start; margin-top: 14px; padding: 14px; border: 1px dashed #ccc; border-radius: 8px; }
.preview-box img { width: 90px; height: 90px; object-fit: cover; border-radius: 6px; background: #eee; }
.preview-box .ph { width: 90px; height: 90px; border-radius: 6px; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #999; text-align:center; }

.quote-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 14px; }
.quote-table td { padding: 8px 4px; border-bottom: 1px solid #eee; }
.quote-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.quote-table tr.total td { font-weight: 700; color: var(--navy); border-top: 2px solid var(--navy); border-bottom: none; }

.nav-link { color: #fff; font-size: 13px; text-decoration: underline; }

.header-auth-btns { display: flex; gap: 8px; align-items: center; }
.header-btn {
  padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: background 0.18s, transform 0.12s;
}
.header-btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.header-btn.ghost:hover { background: rgba(255,255,255,0.18); }
.header-btn.primary { color: var(--navy-dark); background: var(--gold); border: 1px solid var(--gold); }
.header-btn.primary:hover { background: #c49f6b; transform: translateY(-1px); }

.account-dropdown { position: relative; }
.account-toggle {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.35); color: #fff;
  padding: 7px 12px; border-radius: 8px; cursor: pointer; font-size: 13px; font-family: inherit;
}
.account-toggle:hover { background: rgba(255,255,255,0.18); }
.account-toggle .caret { font-size: 10px; margin-left: 2px; }
.account-dropdown-menu {
  position: absolute; top: calc(100% + 6px); right: 0; background: #fff; color: #262626;
  border: 1px solid #e0e0e0; border-radius: 8px; min-width: 190px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15); z-index: 20;
}
.account-dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 13px; color: #262626; text-decoration: none;
}
.account-dropdown-menu a:hover { background: var(--light); }
.account-dropdown-menu a + a { border-top: 1px solid #eee; }
.account-dropdown-menu a { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.menu-badge {
  display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 999px; background: var(--gold); color: var(--navy-dark);
  font-size: 11px; font-weight: 700; line-height: 1;
}

.main-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.main-tabs button {
  background: #fff; border: 1px solid #ddd; color: var(--navy);
  padding: 10px 20px; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; font-family: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.main-tabs button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.period-switch { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.period-switch button {
  background: transparent; border: 1px solid var(--navy); color: var(--navy);
  padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 12px; font-family: inherit;
}
.period-switch button.active { background: var(--navy); color: #fff; font-weight: 700; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-box { background: var(--light); border-radius: 8px; padding: 14px; }
.stat-box.highlight { background: #FBF3E7; border: 1px solid var(--gold); }
.stat-box .value { font-size: 26px; font-weight: 800; color: var(--navy); }
.stat-box .label { font-size: 12px; color: var(--grey); margin-top: 4px; }

.carrier-bar-row { margin-top: 10px; }
.carrier-bar-row .bar-track { background: #eee; border-radius: 6px; height: 8px; overflow: hidden; margin-top: 4px; }
.carrier-bar-row .bar-fill { background: var(--gold); height: 100%; }

.client-group { margin-bottom: 22px; }
.client-group:last-child { margin-bottom: 0; }
.client-group-header {
  display: flex; align-items: center; gap: 8px; background: var(--navy); color: #fff;
  padding: 8px 14px; border-radius: 8px 8px 0 0; font-weight: 700; font-size: 13px;
}
.count-badge { background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 999px; }
.client-group .card { border-top-left-radius: 0; border-top-right-radius: 0; margin-bottom: 10px; }
.client-group .card:first-of-type { border-top: none; }
.item-ref { font-size: 11px; color: var(--grey); white-space: nowrap; font-family: monospace; }

.section-subtitle { font-size: 13px; font-weight: 700; color: var(--navy); margin: 18px 0 10px; padding-top: 14px; border-top: 1px solid #eee; }
.section-subtitle:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.steps-list { display: flex; flex-direction: column; gap: 22px; }
.step-row { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.step-row h3 { margin: 2px 0 6px; color: var(--navy); font-size: 15px; }
.step-row p { margin: 0; font-size: 13px; color: #444; line-height: 1.6; }

footer { text-align: center; padding: 26px; color: var(--grey); font-size: 12px; }
footer .footer-legal-links { margin-top: 8px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
footer .footer-legal-links a { color: var(--grey); }

/* ---- Footer structure (liens, moyens de paiement, transporteurs) ---- */
.site-footer { background: var(--light); border-top: 1px solid #e3e1d9; padding: 32px 20px 0; margin-top: 44px; text-align: left; }
.footer-inner { max-width: 980px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer-col { flex: 1 1 220px; min-width: 200px; }
.footer-brand .footer-logo-row { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; color: var(--grey); margin: 0; line-height: 1.6; }
.footer-col-title { font-size: 11.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.footer-legal { display: flex; flex-direction: column; }
.footer-legal a { color: var(--grey); font-size: 12.5px; text-decoration: none; margin-bottom: 9px; }
.footer-legal a:hover { color: var(--navy); text-decoration: underline; }
.footer-partners { max-width: 980px; margin: 26px auto 0; border-top: 1px solid #e3e1d9; padding: 20px 0; display: flex; flex-direction: column; gap: 16px; }
.footer-partners-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-partners-label { font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; flex: 0 0 auto; min-width: 150px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-badges svg { display: block; }
.footer-payment-more { flex-basis: 100%; font-size: 11px; color: var(--grey); margin: 2px 0 0 164px; }
.footer-bottom { max-width: 980px; margin: 0 auto; padding: 16px 0 22px; border-top: 1px solid #e3e1d9; text-align: center; font-size: 11px; color: var(--grey); }
@media (max-width: 640px) {
  .footer-partners-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-payment-more { margin-left: 0; }
}

/* ---- Pages legales (mentions, CGV, mandat, confidentialite) ---- */
.legal-page main { max-width: 840px; }
.legal-draft-notice {
  background: #FDECEC; border: 1px solid var(--red); border-radius: 8px;
  padding: 14px 16px; font-size: 13px; color: var(--red); margin-bottom: 20px; line-height: 1.6;
}
.legal-updated { font-size: 12px; color: var(--grey); margin: -8px 0 18px; }
.legal-content h3 { color: var(--navy); font-size: 15px; margin: 24px 0 8px; border-bottom: 1px solid #eee; padding-bottom: 6px; }
.legal-content p, .legal-content li { font-size: 13.5px; line-height: 1.75; color: #333; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 8px 0; }
.legal-content strong { color: var(--navy); }
.legal-placeholder { background: #FBF3E7; padding: 1px 5px; border-radius: 4px; color: #8a6a3d; font-weight: 600; }

/* ---- Bandeau d'information cookies (pas un bandeau de consentement : cookies essentiels uniquement) ---- */
.cookie-notice {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--navy-dark); color: #fff; padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.cookie-notice a { color: #fff; text-decoration: underline; }
.cookie-notice button {
  background: var(--gold); color: var(--navy-dark); border: none; padding: 6px 16px;
  border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; flex: 0 0 auto;
}
.cookie-notice button:hover { background: #c49f6b; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-around; padding: 20px 24px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; flex: 1 1 160px; min-width: 150px; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.trust-value { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.trust-value.trust-value-text { font-size: 15px; }
.trust-label { font-size: 12px; color: var(--grey); margin-top: 4px; max-width: 180px; }
@media (max-width: 640px) {
  .trust-bar { gap: 18px; padding: 18px 14px; }
}
/* ---- FAQ (accordeon) ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: #fff; border: none; padding: 16px 18px;
  font-size: 14.5px; font-weight: 700; color: var(--navy); cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-question:hover { background: var(--light); }
.faq-caret { font-size: 11px; color: var(--gold); transition: transform 0.2s; flex: 0 0 auto; }
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer-inner { margin: 0; padding: 0 18px 16px; font-size: 13.5px; color: #444; line-height: 1.7; }
.warehouse-showcase { padding: 0; overflow: hidden; }
.warehouse-showcase .warehouse-photo { display: block; width: 100%; height: auto; max-height: 380px; object-fit: cover; }
.warehouse-showcase .warehouse-caption { text-align: center; margin: 14px 20px 18px; }
.mode-badge { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.mode-badge.live { background: #EAF5EC; color: var(--green); }
.mode-badge.demo { background: #eee; color: var(--grey); }

/* ---- Annonce "bientot disponible" (ex: personal shopper) ---- */
.soon-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  padding: 3px 10px; border-radius: 999px; background: #FBF3E7; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff;
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; margin-top: 6px;
}
.whatsapp-btn:hover { background: #1EBE5A; }
.hidden { display: none !important; }
.small-note { font-size: 11px; color: var(--grey); margin-top: 6px; }
