/* DesEncombrants — Design System Dark Futuriste */

/* ═══════════════════════════════════════════
   VARIABLES CSS
═══════════════════════════════════════════ */
:root {
  --bg-primary:     #0a0f1e;
  --bg-secondary:   #0d1526;
  --bg-card:        #111827;
  --bg-elevated:    #1a2236;
  --bg-input:       #0f172a;

  --accent-cyan:    #00d4ff;
  --accent-violet:  #7c3aed;
  --accent-teal:    #0891b2;
  --accent-glow:    rgba(0, 212, 255, 0.15);

  --success:        #10b981;
  --warning:        #f59e0b;
  --danger:         #ef4444;
  --muted:          #475569;

  --text-primary:   #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;

  --border:         #1e293b;
  --border-accent:  rgba(0, 212, 255, 0.3);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);

  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.2s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.main-content { flex: 1; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent-cyan); }
.logo-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 6px var(--accent-cyan));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-elevated); }

.nav-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border);
}

.nav-pseudo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.nav-admin { color: var(--accent-violet) !important; }
.nav-logout { color: var(--text-muted) !important; }
.nav-logout:hover { color: var(--danger) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm   { font-size: 0.82rem; padding: 0.4rem 0.9rem; }
.btn-md   { font-size: 0.9rem;  padding: 0.6rem 1.25rem; }
.btn-lg   { font-size: 1rem;    padding: 0.8rem 1.75rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
  color: #000;
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
  color: #000;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
  color: var(--text-primary);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover { opacity: 0.85; transform: translateY(-1px); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-accent); }

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card);
}

.card-body   { padding: 1.5rem; }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   FORMULAIRES
═══════════════════════════════════════════ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 100px; }

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════ */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  border: 1px solid transparent;
  margin-bottom: 1.25rem;
}
.alert-danger  { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.3);  color: #fca5a5; }
.alert-success { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #6ee7b7; }
.alert-info    { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.25); color: #67e8f9; }
.alert-warning { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #fcd34d; }

.alert ul { margin: 0.4rem 0 0 1.2rem; }

/* ═══════════════════════════════════════════
   BADGES
═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-success { background: rgba(16,185,129,0.15); color: var(--success); }
.badge-warning { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-danger  { background: rgba(239,68,68,0.15);  color: var(--danger); }
.badge-muted   { background: rgba(71,85,105,0.3);   color: var(--text-muted); }
.badge-cyan    { background: rgba(0,212,255,0.12);  color: var(--accent-cyan); }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.page-hero h1 .highlight {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0,212,255,0.4);
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CARTE LEAFLET
═══════════════════════════════════════════ */
#map {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.leaflet-container { background: #0d1526; }

.leaflet-popup-content-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
}
.leaflet-popup-tip { background: var(--bg-card); }
.leaflet-popup-content { margin: 1rem; font-family: var(--font); }

.popup-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-primary); }
.popup-ville { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.popup-img   { width: 100%; height: 110px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 0.6rem; }
.popup-link  { font-size: 0.82rem; color: var(--accent-cyan); }

/* ═══════════════════════════════════════════
   ANNONCE CARD (listing)
═══════════════════════════════════════════ */
.annonces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  padding: 2rem 0;
}

.annonce-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.annonce-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.annonce-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-elevated);
}
.annonce-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}

.annonce-body { padding: 1.1rem 1.25rem; }
.annonce-titre { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-primary); }
.annonce-desc  { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.annonce-meta  { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); }
.annonce-ville { display: flex; align-items: center; gap: 0.25rem; }

/* ═══════════════════════════════════════════
   PAGE DÉTAIL ANNONCE
═══════════════════════════════════════════ */
.annonce-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  padding: 2rem 0;
  align-items: start;
}

.annonce-detail-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.annonce-detail-map { height: 250px; border-radius: var(--radius-md); border: 1px solid var(--border); }

.annonce-sidebar { display: flex; flex-direction: column; gap: 1rem; }

/* ═══════════════════════════════════════════
   FORMULAIRE PUBLICATION
═══════════════════════════════════════════ */
.publish-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  align-items: start;
}

.drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-input);
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--accent-cyan);
  background: var(--accent-glow);
}
.drop-zone-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.drop-zone-text { color: var(--text-secondary); font-size: 0.9rem; }
.drop-zone-sub  { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

#photo-preview {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  display: none;
  margin-top: 1rem;
}

.gps-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color var(--transition);
}
.gps-box:hover { border-color: var(--border-accent); }
.gps-icon { font-size: 1.5rem; }
.gps-status { font-size: 0.85rem; color: var(--text-secondary); }
.gps-coords { font-size: 0.78rem; color: var(--accent-cyan); margin-top: 0.15rem; }

#publish-map { height: 220px; border-radius: var(--radius-md); margin-top: 0.75rem; }

/* ═══════════════════════════════════════════
   AUTH (login / register)
═══════════════════════════════════════════ */
.auth-wrapper {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .logo-icon { font-size: 2.5rem; display: block; }
.auth-logo .logo-text { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }

.auth-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.25rem; }
.auth-sub   { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 2rem; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 1.25rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.88rem; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-cyan); }

/* ═══════════════════════════════════════════
   ADMIN
═══════════════════════════════════════════ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
}

.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
}

.admin-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}
.admin-nav-title:first-child { margin-top: 0; }

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  margin-bottom: 0.2rem;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.admin-nav-link.active { color: var(--accent-cyan); }

.admin-main { padding: 2rem; }

.admin-header { margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.admin-header p  { color: var(--text-secondary); font-size: 0.9rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--border-accent); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--accent-cyan); line-height: 1; }
.stat-sub   { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ═══════════════════════════════════════════
   TABLE
═══════════════════════════════════════════ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }

table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
thead th {
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg-elevated); }
tbody td { padding: 0.9rem 1.1rem; color: var(--text-primary); vertical-align: middle; }

/* ═══════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 0;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--border-accent); color: var(--text-primary); }
.page-btn.active { background: var(--accent-cyan); color: #000; border-color: var(--accent-cyan); font-weight: 700; }

/* ═══════════════════════════════════════════
   SECTION FILTRES
═══════════════════════════════════════════ */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
}
.filter-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.filter-input:focus { border-color: var(--accent-cyan); }

/* ═══════════════════════════════════════════
   FLAG BUTTON
═══════════════════════════════════════════ */
.flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.flag-btn:hover { color: var(--warning); border-color: var(--warning); }
.flag-btn.flagged { color: var(--warning); border-color: var(--warning); background: rgba(245,158,11,0.08); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: auto;
}
.footer-inner { text-align: center; }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--accent-cyan); margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-nav { display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 0.75rem; }
.footer-nav a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-nav a:hover { color: var(--accent-cyan); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-cyan   { color: var(--accent-cyan); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .annonce-detail-grid { grid-template-columns: 1fr; }
  .publish-layout      { grid-template-columns: 1fr; }
  .admin-layout        { grid-template-columns: 1fr; }
  .admin-sidebar       { display: none; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.5rem;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  #map { height: 400px; }
  .annonces-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
}
