/* ============================================================
   global.css — Chez-Nous Pro | Design System v3
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --rose:        #C2185B;
  --rose-c:      #F48FB1;
  --rose-p:      #FCE4EC;
  --or:          #B8973A;
  --noir:        #1A1018;
  --gris-f:      #3D3340;
  --gris-m:      #8C7F91;
  --gris-c:      #F2EEF4;
  --blanc:       #FFFFFF;

  /* Admin statuts */
  --greenbg:     #75ebb3; --greentxt:   #0c5532;
  --yellowbg:    #f8d796; --yellowtxt:  #b1790b;
  --redbg:       #f8a6a0; --redtxt:     #550c06;
  --bluebg:      #a5cffd; --bluetxt:    #035dbe;
  --graybg:      #d0d0d0; --graytxt:    #242424;
  --orangebg:    #ffd3a5; --orangetxt:  #8a4500;

  /* Compat admin legacy */
  --purple:      #ba2a7b;
  --pink:        #ff93c6;
  --white:       #ffffff;
  --black:       #000000;
  --light-white: rgba(255,255,255,.5);
  --light-black: rgba(0,0,0,.5);
  --light-gray:  rgba(0,0,0,.06);
  --box-shadow:  0 8px 24px rgba(0,0,0,.10);

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Jost', system-ui, sans-serif;
  --radius:    12px;
  --radius-sm: 6px;
  --t:         .26s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); font-size: 16px; line-height: 1.65; color: var(--noir); background: var(--blanc); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
select, textarea { font-family: var(--ff-b); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gris-c); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
.section { padding-block: 88px; }
.section-alt { background: var(--gris-c); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or); }
.display-xl { font-family: var(--ff-d); font-size: clamp(52px,8vw,92px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.display-lg { font-family: var(--ff-d); font-size: clamp(36px,5vw,62px); font-weight: 600; line-height: 1.1; }
.display-md { font-family: var(--ff-d); font-size: clamp(26px,4vw,42px); font-weight: 600; line-height: 1.2; }
.section-heading { margin-bottom: 56px; }
.section-heading .eyebrow { display: block; margin-bottom: 12px; }
.section-heading h2 { font-family: var(--ff-d); font-size: clamp(30px,4.5vw,50px); font-weight: 600; color: var(--noir); line-height: 1.15; }
.section-heading h2 em { font-style: italic; color: var(--rose); }
.section-heading p { margin-top: 14px; font-size: 16px; color: var(--gris-f); max-width: 520px; }
.section-heading.center { text-align: center; }
.section-heading.center p { margin-inline: auto; }

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: var(--ff-b); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--radius-sm); transition: var(--t); white-space: nowrap; }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: #A0154D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,24,91,.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: #fff; color: var(--rose); }
.btn-gold { background: var(--or); color: #fff; }
.btn-gold:hover { background: #9A7D2F; transform: translateY(-2px); }
.btn-ghost { background: var(--gris-c); color: var(--gris-f); }
.btn-ghost:hover { background: #E5DDE8; }
.btn-danger { background: #d32f2f; color: #fff; }
.btn-danger:hover { background: #b71c1c; }
/* Compat legacy admin */
.flexBtn { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.flexBtn .btn, .btn.btn1, .btn.btn2, .btn.btn3 { font-size: 14px; padding: 9px 18px; }
.btn.btn1, .flexBtn .btn1 { background: var(--rose); color: #fff; }
.btn.btn2, .flexBtn .btn2 { background: var(--rose-c); color: #fff; }
.btn.btn3, .flexBtn .btn3 { background: #fff; color: var(--noir); border: 1.5px solid var(--gris-c); }
.btn.btn1:hover, .flexBtn .btn1:hover { opacity: .9; }

/* ── FORMULAIRES ─────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--gris-f); letter-spacing: .05em; text-transform: uppercase; }
.form-input, .champ {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #E0D8E4; border-radius: var(--radius-sm);
  font-family: var(--ff-b); font-size: 15px; color: var(--noir);
  background: var(--blanc); transition: var(--t); margin-bottom: 6px;
}
.form-input:focus, .champ:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(194,24,91,.1); }
.form-input::placeholder, .champ::placeholder { color: var(--gris-m); }
select.champ { cursor: pointer; }
.flex_champ { display: flex; gap: 14px; }
.flex_champ > div { flex: 1; min-width: 0; }
.form_universel { max-width: 800px; margin-inline: auto; }
.titre_champ { font-size: 14px; font-weight: 600; color: var(--gris-f); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.titre_champ i { color: var(--rose); }
.textarea { height: 130px; resize: vertical; }
.customfile { width: 100%; border: 1.5px solid var(--rose); border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 6px; }
.customfile::-webkit-file-upload-button { padding: 10px 14px; background: var(--rose); color: #fff; border: none; cursor: pointer; font-size: 14px; }

/* ── TABLES (admin) ──────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; }
table thead tr { background: var(--gris-c); }
table th { padding: 12px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gris-f); text-align: left; white-space: nowrap; }
table td { padding: 11px 14px; font-size: 14px; color: var(--noir); border-bottom: 1px solid var(--gris-c); vertical-align: middle; }
table tbody tr:hover { background: rgba(194,24,91,.04); }
.scroll_table { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gris-c); }
.box_user_profile { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--gris-c); }

/* ── BADGES ──────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.badge-green  { background: var(--greenbg);  color: var(--greentxt); }
.badge-red    { background: var(--redbg);    color: var(--redtxt); }
.badge-yellow { background: var(--yellowbg); color: var(--yellowtxt); }
.badge-blue   { background: var(--bluebg);   color: var(--bluetxt); }
.badge-gray   { background: var(--graybg);   color: var(--graytxt); }
.badge-orange { background: var(--orangebg); color: var(--orangetxt); }

/* ── ACTIONS TABLE ───────────────────────────────────────── */
.actions-cell { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.btn_action { display: inline-flex; align-items: center; gap: 4px; padding: 5px 11px; font-size: 12px; font-weight: 600; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--t); }
.action1 { background: var(--bluebg); color: var(--bluetxt); }
.action1:hover { opacity: .8; }
.action2 { background: var(--redbg); color: var(--redtxt); }
.action2:hover { opacity: .8; }
.action3 { background: var(--greenbg); color: var(--greentxt); }
.action3:hover { opacity: .8; }

/* ── ADMIN LAYOUT ────────────────────────────────────────── */
body.admin-body { display: flex; min-height: 100dvh; background: #f8f5fa; }
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; overflow-x: hidden; }
.content_main { padding: 24px 28px; flex: 1; }
.titreBackend { font-family: var(--ff-d); font-size: 26px; font-weight: 600; color: var(--noir); margin-bottom: 22px; }

/* ── ADMIN ENTETE ─────────────────────────────────────────── */
.admin-entete { padding: 14px 28px; background: #fff; border-bottom: 1px solid var(--gris-c); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-entete .name_page p { font-size: 15px; font-weight: 600; color: var(--noir); }
.admin-entete .admin-user { display: flex; align-items: center; gap: 10px; }
.admin-entete .admin-user .av { width: 36px; height: 36px; border-radius: 50%; background: var(--rose-p); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--rose); font-size: 14px; }
.admin-entete .admin-user span { font-size: 13px; color: var(--gris-f); }
.admin-entete .admin-user strong { font-size: 14px; color: var(--noir); }

/* ── KPI CARDS ───────────────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 28px; }
.kpi-card { background: #fff; border-radius: var(--radius); padding: 20px 22px; border: 1px solid var(--gris-c); display: flex; align-items: center; gap: 16px; }
.kpi-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.kpi-icon.rose  { background: var(--rose-p);  color: var(--rose); }
.kpi-icon.or    { background: #FFF8E1;         color: var(--or); }
.kpi-icon.blue  { background: var(--bluebg);   color: var(--bluetxt); }
.kpi-icon.green { background: var(--greenbg);  color: var(--greentxt); }
.kpi-card h3 { font-size: 24px; font-weight: 700; color: var(--noir); }
.kpi-card p  { font-size: 12px; color: var(--gris-m); text-transform: uppercase; letter-spacing: .06em; }

/* ── MESSAGE FLASH ───────────────────────────────────────── */
.flash { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; font-weight: 500; }
.flash-success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid #43a047; }
.flash-error   { background: #ffebee; color: #b71c1c; border-left: 4px solid #e53935; }
.flash-warning { background: #fff8e1; color: #e65100; border-left: 4px solid #ffa726; }
.flash-info    { background: #e3f2fd; color: #0d47a1; border-left: 4px solid #1976d2; }

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; }
.header-top { background: var(--noir); padding: 8px 0; }
.header-top__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.header-top__msg { font-size: 12px; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.header-top__msg i { color: var(--rose-c); }
.header-top__actions { display: flex; align-items: center; gap: 16px; }
.ht-link { font-size: 12px; color: rgba(255,255,255,.75); transition: var(--t); letter-spacing: .04em; }
.ht-link:hover { color: #fff; }
.ht-cta { background: var(--rose); color: #fff; padding: 4px 12px; border-radius: 20px; }
.ht-logout { background: none; border: none; cursor: pointer; font-family: var(--ff-b); }
.ht-welcome { font-size: 12px; color: rgba(255,255,255,.6); }
.navbar { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(194,24,91,.12); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar__logo { display: flex; align-items: center; gap: 8px; font-family: var(--ff-d); font-size: 22px; font-weight: 700; color: var(--noir); }
.logo-star { color: var(--or); font-size: 18px; }
.logo-txt em { font-style: italic; color: var(--rose); }
.navbar__menu { display: flex; align-items: center; gap: 28px; }
.navbar__menu li a { font-size: 14px; font-weight: 500; color: var(--gris-f); transition: var(--t); position: relative; }
.navbar__menu li a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--rose); transition: var(--t); }
.navbar__menu li a:hover::after, .navbar__menu li.active a::after { width: 100%; }
.navbar__menu li a:hover, .navbar__menu li.active a { color: var(--rose); }
.navbar__right { display: flex; align-items: center; gap: 12px; }
.navbar__cta { padding: 9px 20px; font-size: 13px; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--noir); border-radius: 2px; transition: var(--t); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { min-height: 90vh; background: linear-gradient(135deg, var(--noir) 0%, #2D1B35 50%, #1A1018 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C2185B' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__inner { position: relative; z-index: 1; max-width: 680px; }
.hero__eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or); }
.hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--or); }
.hero h1 { font-family: var(--ff-d); font-size: clamp(48px,7vw,88px); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; color: #fff; }
.hero h1 em { font-style: italic; color: var(--rose-c); }
.hero p { margin-top: 22px; font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 500px; }
.hero__actions { margin-top: 36px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gris-c); overflow: hidden; transition: var(--t); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(194,24,91,.12); border-color: var(--rose-c); }
.service-card__img { width: 100%; height: 220px; object-fit: cover; background: var(--gris-c); display: flex; align-items: center; justify-content: center; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__img-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--gris-c) 0%, var(--rose-p) 100%); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--rose-c); }
.service-card__body { padding: 20px; }
.service-card__cat { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
.service-card__name { font-family: var(--ff-d); font-size: 20px; font-weight: 600; color: var(--noir); margin-bottom: 8px; line-height: 1.2; }
.service-card__desc { font-size: 14px; color: var(--gris-m); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-card__footer { display: flex; align-items: center; justify-content: space-between; }
.service-card__price { font-family: var(--ff-d); font-size: 22px; font-weight: 700; color: var(--rose); }
.service-card__price span { font-size: 13px; font-weight: 400; color: var(--gris-m); font-family: var(--ff-b); }
.service-card__duration { font-size: 12px; color: var(--gris-m); display: flex; align-items: center; gap: 4px; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step__num { width: 56px; height: 56px; border-radius: 50%; background: var(--rose-p); color: var(--rose); font-family: var(--ff-d); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2px solid var(--rose-c); }
.step h3 { font-family: var(--ff-d); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gris-m); line-height: 1.6; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: center; padding: 28px 20px; background: rgba(255,255,255,.08); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); }
.stat__num { font-family: var(--ff-d); font-size: 48px; font-weight: 700; color: #fff; line-height: 1; }
.stat__num em { font-style: normal; color: var(--rose-c); }
.stat__label { font-size: 13px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--gris-c); }
.testimonial__stars { color: var(--or); font-size: 14px; margin-bottom: 12px; }
.testimonial__text { font-size: 15px; color: var(--gris-f); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__av { width: 40px; height: 40px; border-radius: 50%; background: var(--rose-p); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--rose); font-size: 14px; }
.testimonial__name { font-size: 14px; font-weight: 600; color: var(--noir); }
.testimonial__date { font-size: 12px; color: var(--gris-m); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--rose) 0%, #8B0045 100%); color: #fff; text-align: center; padding-block: 80px; }
.cta-section h2 { font-family: var(--ff-d); font-size: clamp(28px,4vw,46px); font-weight: 700; margin-bottom: 14px; }
.cta-section p { font-size: 16px; opacity: .85; max-width: 500px; margin: 0 auto 32px; }

/* ── BREADCRUMB / ENTETE PAGE ────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--noir) 0%, #2D1B35 100%); padding: 56px 0 48px; }
.page-hero h1 { font-family: var(--ff-d); font-size: clamp(32px,5vw,56px); font-weight: 700; color: #fff; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); margin-top: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── AUTH PAGES ──────────────────────────────────────────── */
.auth-page { min-height: 100dvh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { background: linear-gradient(160deg, var(--noir) 0%, #2D1B35 60%, #8B0045 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px; }
.auth-visual .av-logo { font-family: var(--ff-d); font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 32px; }
.auth-visual .av-logo em { font-style: italic; color: var(--rose-c); }
.auth-visual h2 { font-family: var(--ff-d); font-size: 36px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 16px; text-align: center; }
.auth-visual p { font-size: 15px; color: rgba(255,255,255,.65); text-align: center; max-width: 320px; }
.auth-form-wrap { display: flex; flex-direction: column; justify-content: center; padding: 48px clamp(24px,5vw,72px); }
.auth-form-wrap h1 { font-family: var(--ff-d); font-size: 32px; font-weight: 600; color: var(--noir); margin-bottom: 6px; }
.auth-form-wrap .sub { font-size: 14px; color: var(--gris-m); margin-bottom: 32px; }
.auth-form-wrap .sub a { color: var(--rose); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider span { font-size: 12px; color: var(--gris-m); white-space: nowrap; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gris-c); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--noir); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 8px; font-family: var(--ff-d); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.7); transition: var(--t); }
.footer__social a:hover { background: var(--rose); color: #fff; }
.footer__ttl { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer__links li { margin-bottom: 8px; }
.footer__links li a { font-size: 13px; color: rgba(255,255,255,.55); transition: var(--t); }
.footer__links li a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.footer__contact li i { color: var(--rose-c); margin-top: 2px; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── ADMIN SIDEBAR ───────────────────────────────────────── */
.admin-nav { width: 72px; flex-shrink: 0; height: 100dvh; position: sticky; top: 0; background: var(--purple); display: flex; flex-direction: column; align-items: center; padding: 14px 10px; overflow-y: auto; overflow-x: hidden; }
.admin-nav__logo { font-family: var(--ff-d); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.admin-nav__menu, .admin-nav__bottom { list-style: none; display: flex; flex-direction: column; gap: 4px; width: 100%; }
.admin-nav__bottom { margin-top: auto; border-top: 1px solid var(--light-white); padding-top: 10px; }
.admin-nav__menu li a, .admin-nav__bottom li a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 10px; transition: var(--t); cursor: pointer; }
.admin-nav__menu li a i, .admin-nav__bottom li a i { font-size: 20px; color: rgba(255,255,255,.7); }
.admin-nav__menu li a span, .admin-nav__bottom li a span { font-size: 10px; color: rgba(255,255,255,.6); text-align: center; }
.admin-nav__menu li:hover a, .admin-nav__menu li.active a { background: var(--light-white); }
.admin-nav__menu li:hover a i, .admin-nav__menu li.active a i,
.admin-nav__menu li:hover a span, .admin-nav__menu li.active a span { color: #fff; }
.admin-nav__bottom li a:hover { background: rgba(255,255,255,.1); }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; margin-top: 20px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; transition: var(--t); }
.pagination a { color: var(--gris-f); background: #fff; border: 1px solid var(--gris-c); }
.pagination a:hover { border-color: var(--rose); color: var(--rose); }
.pagination .active { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ── FILTRES / TAGS ──────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-tag { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--gris-c); background: #fff; color: var(--gris-f); transition: var(--t); }
.filter-tag.active, .filter-tag:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ── MON COMPTE ──────────────────────────────────────────── */
.account-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.account-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--gris-c); }
.account-card h2 { font-family: var(--ff-d); font-size: 22px; font-weight: 600; margin-bottom: 20px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar__menu { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 12px 0; border-bottom: 1px solid var(--gris-c); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 100; }
  .navbar__menu.open { display: flex; }
  .navbar__menu li a { padding: 12px 24px; }
  .navbar__burger { display: flex; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .content_main { padding: 16px; }
}

/* ── Rapports ─────────────────────────────────────────── */
.charts-row          { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.chart-card          { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:1.5rem; }
.chart-card h3       { font-family:var(--font-display); font-size:1.1rem; margin-bottom:1rem; color:var(--text); }
.table-card          { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:1.5rem; }
.table-card h3       { font-family:var(--font-display); font-size:1.1rem; margin-bottom:1rem; }
.kpi-icon.red        { background:rgba(211,47,47,.1); color:#D32F2F; }
@media(max-width:768px){ .charts-row { grid-template-columns:1fr; } }

/* ── Frais inline select ──────────────────────────────── */
.select-inline       { padding:.25rem .5rem; border-radius:6px; border:1px solid var(--border); font-size:.85rem; background:var(--card); color:var(--text); }
.info-note           { font-size:.85rem; color:var(--muted); margin-top:1rem; }
.kpi-mini            { background:var(--surface); padding:.4rem .9rem; border-radius:20px; font-size:.85rem; color:var(--muted); }
.alert-info          { background:rgba(25,118,210,.08); border-left:4px solid #1976D2; color:#1565C0; padding:1rem 1.25rem; border-radius:8px; margin-bottom:1.5rem; }
