/* NEOpromos — public + merchant + light admin */
:root {
  --bg: #0c0c0b;
  --bg-elev: #161614;
  --bg-card: #1c1c19;
  --text: #f3f2eb;
  --muted: #9a9a8e;
  --line: #2a2a26;
  --accent: #c8f06c;
  --accent-dim: #9bbf3a;
  --danger: #ff6b5a;
  --radius: 18px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", var(--font);
  --shadow: 0 20px 50px rgba(0,0,0,.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.top, main, .foot, .flashes { position: relative; z-index: 1; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  background: rgba(12,12,11,.85);
  z-index: 50;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand-mark { color: var(--accent); }
.top-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-nav a { color: var(--muted); font-size: .92rem; text-decoration: none; }
.top-nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  text-decoration: none !important;
  transition: transform .15s, background .15s;
}
.btn:hover { background: #d8ff7a; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); background: transparent; color: var(--accent); }
.btn-lg { padding: .85rem 1.5rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem .9rem; font-size: .85rem; }
.btn-danger { background: var(--danger); color: #fff; }

main { max-width: 1120px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }

.flashes { max-width: 1120px; margin: .75rem auto 0; padding: 0 1.25rem; }
.flash {
  padding: .75rem 1rem;
  border-radius: 12px;
  margin-bottom: .5rem;
  font-size: .95rem;
}
.flash-ok { background: rgba(200,240,108,.12); border: 1px solid rgba(200,240,108,.35); }
.flash-error { background: rgba(255,107,90,.12); border: 1px solid rgba(255,107,90,.35); }

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
  max-width: 720px;
}
.hero-eyebrow, .eyebrow {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: .75rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.accent { color: var(--accent); }
.hero-lead { color: var(--muted); font-size: 1.1rem; max-width: 36rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
}
.stat-label { color: var(--muted); font-size: .85rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.filters input, .filters select,
label input, label textarea, label select {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .85rem;
  width: 100%;
}
.filters input[type="search"] { flex: 1; min-width: 160px; }
.filters select { width: auto; min-width: 140px; }
label { display: block; margin-bottom: 1rem; font-size: .9rem; color: var(--muted); }
label input, label textarea { margin-top: .35rem; }

/* Cards grid */
.grid-promos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card-promo {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  box-shadow: var(--shadow);
}
.card-promo:hover {
  border-color: rgba(200,240,108,.35);
  transform: translateY(-3px);
}
.card-promo.is-featured { border-color: rgba(200,240,108,.5); }
.ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: #111;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a2a12, #121210);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-dim);
}
.card-media-placeholder.large { min-height: 320px; }
.price-stack {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: right;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  padding: .4rem .65rem;
  border-radius: 12px;
  line-height: 1.2;
}
.price-stack.large {
  position: static;
  display: inline-block;
  margin: 1rem 0;
  text-align: left;
  background: rgba(200,240,108,.08);
  border: 1px solid rgba(200,240,108,.25);
  padding: .75rem 1rem;
}
.price-stack.inline { position: static; display: inline-flex; gap: .5rem; align-items: baseline; background: transparent; padding: 0; }
.price-was {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}
.price-stack.large .price-now { font-size: 1.75rem; }
.card-body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .5rem; }
.tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(200,240,108,.1);
  color: var(--accent-dim);
}
.place { font-size: .8rem; color: var(--muted); }
.card-body h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.card-body h2 a { color: var(--text); text-decoration: none; }
.commerce-name { color: var(--muted); font-size: .9rem; margin: 0 0 .5rem; }
.commerce-name.big { font-size: 1.05rem; color: var(--text); }
.card-desc { color: var(--muted); font-size: .9rem; flex: 1; }
.card-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }

.empty, .empty-mini {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}
.cta-band {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(200,240,108,.12), rgba(200,240,108,.03));
  border: 1px solid rgba(200,240,108,.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-band h2 { font-family: var(--display); margin: 0 0 .35rem; }
.cta-band p { margin: 0; color: var(--muted); }

/* Detail */
.detail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .detail-grid { grid-template-columns: 1.1fr 1fr; }
}
.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.detail-media img { width: 100%; height: auto; object-fit: cover; max-height: 480px; }





.back { color: var(--muted); font-size: .9rem; }

/* Auth / forms */
.page-auth main { max-width: 440px; }
.auth-card, .form-wrap, .panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1rem;
}
.stack label { margin-bottom: 1.1rem; }
.hint { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.row-2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.form-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.thumb-preview { margin-top: .5rem; max-width: 180px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }

.merchant-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.merchant-head h1 { font-family: var(--display); margin: 0; }
.current-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 12px;
}

.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { text-align: left; padding: .65rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--muted); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.table-actions { display: flex; flex-wrap: wrap; gap: .35rem; }
.table-actions form { display: inline; }
.linkish {
  background: none; border: none; color: var(--accent); cursor: pointer; font: inherit; padding: 0; text-decoration: underline;
}
.linkish.danger { color: var(--danger); }
.badge {
  font-size: .75rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: var(--line);
}
.badge-published { background: rgba(200,240,108,.15); color: var(--accent); }
.badge-hidden { background: rgba(255,107,90,.15); color: var(--danger); }
.badge-draft { background: #333; color: var(--muted); }

.admin-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.admin-bar nav { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}
.muted { color: var(--muted); }

.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .85rem;
  max-width: 1120px;
  margin: 0 auto;
}
.foot-links { display: flex; gap: 1rem; }

@media (max-width: 640px) {
  .top-nav a:not(.btn) { display: none; }
  .hero { padding-top: 1.5rem; }
}

/* --- v2 slots commerçant --- */
.lead-slots { margin: 0 0 1.25rem; color: var(--muted, #666); }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.slot-card {
  background: #fff;
  border: 1px solid #e2e8e4;
  border-radius: 14px;
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.slot-card.slot-current { border-color: #3d9b7a; box-shadow: 0 0 0 2px rgba(61,155,122,.2); }
.slot-card header { display: flex; flex-direction: column; gap: .15rem; }
.slot-label { font-weight: 700; font-size: .95rem; }
.slot-dates { font-size: .8rem; color: #64748b; }
.slot-thumb img { width: 100%; max-height: 120px; object-fit: cover; border-radius: 8px; }
.empty-slot { color: #94a3b8; font-size: .9rem; flex: 1; }
.reject-note { color: #b91c1c; font-size: .85rem; }
.badge-pending_moderation { background: #fef3c7; color: #92400e; }
.badge-scheduled { background: #dbeafe; color: #1e40af; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-published { background: #d1fae5; color: #065f46; }
.mod-card { margin-bottom: 1.25rem; }
.mod-grid { display: grid; grid-template-columns: 1fr auto; gap: 1rem; }
.mod-imgs { display: flex; gap: .75rem; }
.mod-imgs img { width: 120px; height: 90px; object-fit: cover; border-radius: 8px; }
.mod-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-end; margin-top: 1rem; }
.reject-field { flex: 1; min-width: 200px; font-size: .85rem; }
.reject-field input { width: 100%; margin-top: .25rem; }
@media (max-width: 700px) {
  .mod-grid { grid-template-columns: 1fr; }
}


/* --- slot-card contrast (fond clair) --- */
.slot-card {
  color: #0f172a;
}
.slot-card h3,
.slot-card .slot-label {
  color: #0f172a !important;
}
.slot-card .slot-dates {
  color: #475569 !important;
}
.slot-card .empty-slot {
  color: #64748b !important;
}
.slot-card .price-was {
  color: #94a3b8 !important;
  text-decoration: line-through;
}
.slot-card .price-now {
  color: #15803d !important;
  font-weight: 800;
  font-size: 1.15rem;
}
.slot-card .badge {
  color: #0f172a;
}
.slot-card .badge-published {
  background: #dcfce7;
  color: #166534;
}
.slot-card .badge-scheduled {
  background: #e0e7ff;
  color: #3730a3;
}
.slot-card .badge-pending_moderation {
  background: #fef3c7;
  color: #92400e;
}
.slot-card .badge-rejected {
  background: #fee2e2;
  color: #991b1b;
}
.slot-card .slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .75rem;
}
.slot-card .btn-dup {
  background: transparent;
  border: 1px solid #94a3b8;
  color: #334155;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .85rem;
  text-decoration: none;
  cursor: pointer;
}
.slot-card .btn-dup:hover {
  border-color: #3d9b7a;
  color: #166534;
}

/* Pays sous logo */
.top-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.market-name-nav {
  display: block !important;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #c8f06c;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media (min-width: 901px) {
  .market-name-nav {
    font-size: 1.9rem;
  }
}

/* ---------- Ajustements design demandés (juillet 2026) ---------- */
.stat-count-hidden{display:none}

@media (max-width: 767px){
  .filters-desktop-only{display:none}
}

/* ---------- Refonte précise mobile (juillet 2026) ---------- */

/* Tagline "Nouvelle-Calédonie !" — police display, gras, italique */
.market-name-nav{
  font-family: var(--display) !important;
  font-style: italic;
  font-weight: 800 !important;
  color: var(--accent) !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (min-width: 901px){
  .market-name-nav{ font-size: 1.5rem !important; }
}

@media (max-width: 640px){
  /* Header : boutons empilés à droite, compacts */
  .top-nav{
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
  }
  .top-nav .btn{
    padding: .5rem .9rem;
    font-size: .8rem;
    white-space: nowrap;
  }

  /* CTA : tout centré, empilé, bouton compact */
  .cta-band{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-band h2{ font-size: 1.3rem; }
  .cta-band .btn-lg{
    padding: .55rem 1.3rem;
    font-size: .92rem;
    white-space: nowrap;
  }
}

/* ---------- Corrections précises v2 (comparaison maquette) ---------- */
.hero-eyebrow{ display:none; }
.hero-stats{ display:none; }
.hero{ padding-top: .75rem; }

/* Tagline : blanc/écru + soulignement vert dessous, pas de texte vert */
.market-name-nav{
  color: var(--text) !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .25rem;
  display: inline-block !important;
  width: fit-content;
}

/* Empêche tout débordement horizontal du header sur mobile */
.top{
  overflow: hidden;
}
.top-brand-block{
  min-width: 0;
  flex-shrink: 1;
}
@media (max-width: 640px){
  .top{
    align-items: flex-start;
  }
  .top-nav{
    flex-shrink: 0;
    max-width: 45%;
  }
  .top-nav .btn{
    width: 100%;
    box-sizing: border-box;
  }
}

/* ---------- Corrections précises v3 ---------- */
@media (max-width: 640px){
  /* Logo réduit pour gagner de la place */
  .brand{ font-size: 1.05rem; }

  /* Nouvelle-Calédonie ! sur une seule ligne : police réduite */
  .market-name-nav{
    font-size: .8rem !important;
    white-space: nowrap;
  }

  /* Marge réduite au-dessus du titre */
  .hero{ padding-top: .5rem; }

  /* CTA plus compact */
  .cta-band{ padding: 1.25rem; }
  .cta-band h2{ font-size: 1.15rem; }
  .cta-band p{ font-size: .85rem; }
}

/* ---------- Bannière lancement (temporaire) ---------- */
.launch-banner{
  background: linear-gradient(120deg, var(--accent), #d8ff7a);
  color: #111;
  padding: 1.5rem 1rem;
}
.launch-banner-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.launch-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 0 .3rem;
}
.launch-sub{
  margin: 0 0 .75rem;
  font-size: .95rem;
  font-weight: 500;
}
.launch-contacts{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
}
.launch-contacts a{
  color: #111;
  font-weight: 700;
  text-decoration: none;
  background: rgba(17,17,17,.1);
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(17,17,17,.25);
  white-space: nowrap;
}
.launch-contacts a:hover{ background: rgba(17,17,17,.18); }
@media (max-width: 640px){
  .launch-title{ font-size: 1.25rem; }
  .launch-contacts{ flex-direction: column; align-items: center; }
}

/* ---------- Corrections desktop v4 ---------- */
@media (min-width: 901px){
  .brand{ font-size: 2.2rem; }
}

/* Couleurs distinctes des boutons header : vert pomme = commerçant, bleu = plan */
.top-nav a[href*="commercant"]{
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
.top-nav a[href*="commercant"]:hover{
  background: var(--accent) !important;
  color: #111 !important;
}
.top-nav a[href*="plan.neologis"], .top-nav a[href*="Le Plan"]{
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}
.top-nav a[target="_blank"].btn-ghost{
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}
.top-nav a[target="_blank"].btn-ghost:hover{
  background: #3b82f6 !important;
  color: #fff !important;
}

/* ---------- Page /commercant/login — ajustements mobile ---------- */
@media (max-width: 640px) {
  /* 1. Masquer la bannière de lancement (prenait toute la place) */


  /* 3. Fond lagon (même image que plan.neologis.com/ajouter) */
  body.page-auth {
    background-image: url('/static/img/bg-lagon-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
  }

  /* 4. Bloc "Espace commerçant" à 75% de transparence */
  body.page-auth .auth-card {
    background: color-mix(in srgb, var(--bg-elev) 75%, transparent);
    backdrop-filter: blur(3px);
  }
}

/* 2. Champ email : fond blanc, texte noir (sur cette page uniquement) */
body.page-auth .auth-card input {
  background: #ffffff !important;
  color: #111111 !important;
}
body.page-auth .auth-card input::placeholder {
  color: #777777;
}

.launch-arrow {
  width: 32px;
  height: 40px;
  margin: 0 auto;
  background: #111;
  clip-path: polygon(35% 0%, 65% 0%, 65% 55%, 100% 55%, 50% 100%, 0% 55%, 35% 55%);
  animation: launch-arrow-bounce 1.5s ease-in-out infinite;
}
@keyframes launch-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.launch-banner-contact {
  background: linear-gradient(120deg, var(--accent), #d8ff7a);
  color: #111;
  padding: .6rem 1rem;
  margin-top: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.launch-banner-contact .launch-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem 1.5rem;
}
.launch-banner-contact .launch-sub {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
}
.launch-banner-contact .launch-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
}
.launch-banner-contact .launch-contacts a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  font-size: .85rem;
  white-space: nowrap;
}


.detail-desc-full {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
.detail-desc {
  color: #e6e6dc;
  font-size: 1.05rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}
.detail-facts { list-style: none; padding: 0; margin: 1rem 0; color: #d8d8ce; }
.detail-facts li { margin-bottom: .45rem; }
.detail-facts strong { color: #f0f0e8; }

/* bandeau lancement : login commerçant UNIQUEMENT */
.launch-banner { display: none !important; }
body.page-auth .launch-banner { display: block !important; }

