/* =========================================================
   Les Enfants Monique - les Fous de Coeur
   Feuille de style principale
   ========================================================= */

:root{
  --gold: #f7c452;
  --gold-dark: #e0a828;
  --green: #239946;
  --green-dark: #1a7536;
  --navy: #031223;
  --navy-soft: #0c2138;
  --white: #ffffff;
  --off-white: #fbf8f1;
  --grey: #6b7280;
  --grey-light: #e7e9ec;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(3,18,35,0.10);
  --shadow-strong: 0 18px 45px rgba(3,18,35,0.18);
  --container: 1180px;
  --ff: "Poppins", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0 0 .6em; line-height:1.2; font-weight:700; }
p{ margin:0 0 1em; }
.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
section{ padding: 72px 0; }
.section-alt{ background: var(--off-white); }
.section-navy{ background: var(--navy); color: var(--white); }
.section-navy .eyebrow{ color: var(--gold); }
.section-navy p{ color: #c9d3dd; }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-block; font-size:.8rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color: var(--green); margin-bottom:.6em;
}
.section-head{ max-width: 720px; margin:0 auto 44px; text-align:center; }
.section-head h2{ font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.center{ text-align:center; }
.mt-lg{ margin-top: 40px; }
.icon{ width:26px; height:26px; stroke: var(--green); flex-shrink:0; }
.icon-lg{ width:44px; height:44px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.55em; justify-content:center;
  padding: 13px 26px; border-radius: 999px; font-weight:600; font-size:.96rem;
  border: 2px solid transparent; cursor:pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background: var(--green); color:var(--white); }
.btn-primary:hover{ background: var(--green-dark); transform: translateY(-1px); }
.btn-gold{ background: var(--gold); color: var(--navy); }
.btn-gold:hover{ background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-navy{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; }

/* ---------- Top utility bar ---------- */
.topbar{ background: var(--navy); color:#cfd8e2; font-size:.82rem; }
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:8px; padding-bottom:8px; gap:16px; flex-wrap:wrap; }
.topbar-contacts{ display:flex; gap:22px; flex-wrap:wrap; align-items:center; }
.topbar-contacts a{ display:inline-flex; align-items:center; gap:6px; color:#cfd8e2; }
.topbar-contacts a:hover{ color: var(--gold); }
.topbar-contacts svg{ width:14px; height:14px; stroke:var(--gold); }
.topbar-right{ display:flex; align-items:center; gap:16px; }
.topbar-social{ display:flex; gap:10px; align-items:center; }
.topbar-social a{ width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; }
.topbar-social svg{ width:14px; height:14px; stroke:var(--white); fill:none; }
.topbar-social a:hover{ background: var(--gold); }
.topbar-social a:hover svg{ stroke: var(--navy); }

/* ---------- Header / nav ---------- */
header.site-header{
  position: sticky; top:0; z-index: 500; background: var(--white);
  box-shadow: 0 2px 14px rgba(3,18,35,.06);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding: 9px 0; gap: 10px; flex-wrap:nowrap; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height:40px; width:auto; }

nav.main-nav{ display:flex; align-items:center; gap: 0; flex-wrap:nowrap; flex:1; justify-content:center; }
nav.main-nav a{
  padding:8px 9px; border-radius:8px; font-size:.79rem; font-weight:600; color: var(--navy-soft);
  transition: color .15s ease, background .15s ease; white-space:nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--green); background: rgba(35,153,70,.08); }

.header-actions{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.lang-switch{
  display:flex; background: var(--white); border:1.5px solid rgba(255,255,255,.25); border-radius:999px; overflow:hidden; font-size:.76rem; font-weight:700;
}
.lang-switch button{
  border:none; background:transparent; padding:6px 12px; cursor:pointer; color: var(--grey); letter-spacing:.03em;
}
.lang-switch button.active{ background: var(--navy); color: var(--white); }

.btn-report{
  display:inline-flex; align-items:center; gap:5px; background:#fdece7; color:#c23b1c; padding:6px 11px;
  border-radius:999px; font-weight:700; font-size:.72rem; border:1.5px solid #f6c3b3; white-space:nowrap;
}
.btn-report:hover{ background:#c23b1c; color:#fff; border-color:#c23b1c; }
.btn-report svg{ width:13px; height:13px; }

.btn-donate{
  background: var(--gold); color: var(--navy); padding:7px 14px; border-radius:999px; font-weight:700; font-size:.75rem; white-space:nowrap;
}
.btn-donate:hover{ background: var(--gold-dark); }

.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; flex-shrink:0; }
.nav-toggle svg{ width:24px; height:24px; stroke: var(--navy); }

/* ---------- Hero ---------- */
.hero{
  position:relative; background: linear-gradient(120deg, var(--navy) 45%, var(--navy-soft));
  color:var(--white); overflow:hidden;
}
.hero .container{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items:center; padding-top:70px; padding-bottom:70px; }
.hero h1{ font-size: clamp(2rem, 4vw, 3.1rem); }
.hero h1 em{ font-style:normal; color: var(--gold); }
.hero p.lead{ font-size:1.08rem; color:#d3dbe4; max-width: 540px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }
.hero-figure{ position:relative; border-radius: 22px; overflow:hidden; box-shadow: var(--shadow-strong); }
.hero-figure img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3.1; }
.stat-row{ display:flex; gap: 30px; flex-wrap:wrap; margin-top: 46px; border-top:1px solid rgba(255,255,255,.14); padding-top:32px; align-items:flex-start; }
.stat-row .stat strong{ display:block; font-size:1.9rem; color: var(--gold); }
.stat-row .stat span{ font-size:.82rem; color:#c9d3dd; }

/* ---------- Cards ---------- */
.card{
  background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow);
  border: 1px solid rgba(3,18,35,.05);
}
.card .icon-badge{
  width:52px; height:52px; border-radius:14px; background: rgba(35,153,70,.1); display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card h3{ font-size:1.1rem; }
.card p{ color: var(--grey); font-size:.94rem; margin-bottom:0; }

.value-card{ text-align:center; }
.value-card .icon-badge{ margin-left:auto; margin-right:auto; background: rgba(247,196,82,.18); }
.value-card .icon-badge svg{ stroke: var(--gold-dark); }

/* ---------- Split content (image + text) ---------- */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.split.reverse .split-media{ order:2; }
.split-media img{ border-radius: 20px; box-shadow: var(--shadow); width:100%; aspect-ratio: 4/3; object-fit:cover; }
.split-text h2{ font-size: clamp(1.5rem, 2.4vw, 2rem); }
.split-text .lead{ color:var(--grey); }
.check-list li{ display:flex; gap:12px; margin-bottom:14px; align-items:flex-start; }
.check-list svg{ width:20px; height:20px; stroke: var(--green); flex-shrink:0; margin-top:2px; }

/* ---------- Stats strip ---------- */
.stats-strip{ background: var(--green); color:var(--white); }
.stats-strip .grid-4{ text-align:center; }
.stats-strip strong{ display:block; font-size:2.2rem; color: var(--white); }
.stats-strip span{ font-size:.85rem; color:#d9f0e0; }

/* ---------- Team ---------- */
.team-card{ text-align:center; }
.team-card img{ width:120px; height:120px; object-fit:cover; border-radius:50%; margin:0 auto 14px; border:4px solid var(--off-white); box-shadow: var(--shadow); }
.team-card h4{ margin-bottom:2px; font-size:1rem; }
.team-card span{ font-size:.82rem; color: var(--green); font-weight:600; }
.team-group{ display:grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px 20px; }
.team-block-title{ font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; color: var(--green); font-weight:700; margin: 42px 0 22px; }
.team-block-title:first-of-type{ margin-top:0; }

/* ---------- Partners ---------- */
.partner-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 22px; align-items:center; }
.partner-grid .partner-item{
  background:var(--white); border:1px solid var(--grey-light); border-radius:14px; padding:18px; display:flex; align-items:center; justify-content:center; height:96px;
}
.partner-grid img{ max-height:56px; width:auto; filter:grayscale(20%); }
.partner-address{ background: var(--off-white); border-radius:14px; padding:22px; }
.partner-address h4{ font-size:.98rem; margin-bottom:4px; }
.partner-address p{ font-size:.86rem; color:var(--grey); margin-bottom:0; }

/* ---------- Report / transparency ---------- */
.report-list{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:20px; }
.report-item{
  display:flex; align-items:center; gap:16px; background: var(--white); border-radius:14px; padding:18px 20px; box-shadow: var(--shadow);
  border:1px solid rgba(3,18,35,.05);
}
.report-item .icon-badge{ background: rgba(247,196,82,.22); width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.report-item .icon-badge svg{ stroke: var(--gold-dark); width:22px; height:22px; }
.report-item .grow{ flex:1; }
.report-item h4{ margin:0 0 2px; font-size:.96rem; }
.report-item span{ font-size:.78rem; color: var(--grey); }
.report-item a.dl{ display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background: var(--off-white); flex-shrink:0; }
.report-item a.dl svg{ width:17px; height:17px; stroke: var(--green); }
.report-item a.dl:hover{ background: var(--green); }
.report-item a.dl:hover svg{ stroke:#fff; }

/* ---------- Video grid ---------- */
.video-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.video-card{ background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.video-frame{ position:relative; width:100%; aspect-ratio:16/9; background:#000; }
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-card .video-caption{ padding:16px 18px; }
.video-card .video-caption p{ margin:0; font-size:.92rem; font-weight:600; }

/* ---------- Forms ---------- */
.form-card{ background: var(--white); border-radius: 20px; box-shadow: var(--shadow-strong); padding: 40px; border:1px solid rgba(3,18,35,.05); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:7px; color: var(--navy-soft); }
.field .hint{ font-weight:400; color: var(--grey); font-size:.78rem; }
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; border:1.5px solid var(--grey-light); border-radius:10px; font-family: var(--ff); font-size:.94rem;
  background:var(--off-white); transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--green); background:var(--white); }
.field textarea{ resize:vertical; min-height:110px; }
.radio-cards{ display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.radio-card{ position:relative; }
.radio-card input{ position:absolute; opacity:0; inset:0; width:100%; height:100%; margin:0; cursor:pointer; }
.radio-card .box{ border:1.6px solid var(--grey-light); border-radius:12px; padding:16px; height:100%; }
.radio-card input:checked + .box{ border-color: var(--green); background: rgba(35,153,70,.06); }
.radio-card .box strong{ display:block; font-size:.92rem; margin-bottom:4px; }
.radio-card .box span{ font-size:.8rem; color: var(--grey); }
.checkbox-row{ display:flex; gap:10px; align-items:flex-start; font-size:.86rem; color: var(--grey); }
.checkbox-row input{ margin-top:3px; }
.form-note{ font-size:.82rem; color: var(--grey); margin-top:-6px; margin-bottom:18px; }
.form-msg{ display:none; padding:14px 16px; border-radius:10px; font-size:.9rem; margin-top:16px; }
.form-msg.success{ display:block; background:#e8f7ec; color:#1a7536; }
.form-msg.error{ display:block; background:#fdecec; color:#c0392b; }

/* ---------- Donation blocks ---------- */
.donate-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.donate-card{ border-radius: 20px; padding: 34px; }
.donate-card.money{ background: linear-gradient(160deg, var(--navy), var(--navy-soft)); color:var(--white); }
.donate-card.money p{ color:#c9d3dd; }
.donate-card.goods{ background: var(--off-white); border:1px solid var(--grey-light); }
.donate-card h3{ font-size:1.3rem; }
.donate-card .icon-badge{ width:56px; height:56px; border-radius:14px; background: rgba(247,196,82,.18); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.donate-card .icon-badge svg{ stroke: var(--gold); width:26px; height:26px; }
.donate-card.goods .icon-badge{ background: rgba(35,153,70,.12); }
.donate-card.goods .icon-badge svg{ stroke: var(--green); }
.tax-banner{
  display:flex; gap:18px; align-items:flex-start; background: rgba(247,196,82,.14); border:1.5px solid var(--gold);
  border-radius:16px; padding:22px 26px; margin-top: 34px;
}
.tax-banner svg{ width:32px; height:32px; stroke: var(--gold-dark); flex-shrink:0; }
.tax-banner h4{ margin-bottom:6px; font-size:1rem; }
.tax-banner p{ margin:0; font-size:.9rem; color: var(--navy-soft); }

/* ---------- Widget de don en ligne (Stripe Payment Links) ---------- */
.donate-widget{ max-width:560px; margin:0 auto; background: var(--white); border-radius:24px; box-shadow: var(--shadow-strong); padding:44px; border:1px solid rgba(3,18,35,.05); text-align:center; }
.donate-widget-head{ margin-bottom:28px; }
.donate-heart{ font-size:2rem; color: var(--gold-dark); display:block; margin-bottom:8px; }
.donate-widget-head h2{ margin:0; }
.donate-widget .field{ text-align:left; margin-bottom:26px; }
.amount-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin-top:10px; }
.amount-btn{ padding:14px 8px; border-radius:12px; border:1.5px solid var(--grey-light); background: var(--off-white); font-family: var(--ff); font-weight:700; font-size:1rem; color: var(--navy); cursor:pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.amount-btn:hover{ border-color: var(--gold); }
.amount-btn.active{ background: var(--gold); border-color: var(--gold); color: var(--navy); }
.amount-custom{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.amount-custom span{ font-weight:600; color: var(--grey); }
.amount-custom input{ flex:1; padding:12px 14px; border-radius:10px; border:1.5px solid var(--grey-light); font-family: var(--ff); font-size:1rem; }
.amount-custom input:focus{ outline:none; border-color: var(--gold); }
#donate-submit:disabled{ opacity:.5; cursor:not-allowed; }
.donate-widget .form-hint{ margin-top:16px; font-size:.8rem; color: var(--grey); }

/* ---------- Condition banner (signaler un cas) ---------- */
.condition-banner{ background: var(--navy); color:var(--white); border-radius:20px; padding:36px; }
.condition-banner .grid-2{ gap: 40px; }
.condition-banner h3{ color: var(--gold); font-size:1.05rem; }
.condition-banner ul li{ display:flex; gap:10px; margin-bottom:12px; font-size:.92rem; color:#dbe3ea; }
.condition-banner svg{ width:18px; height:18px; stroke: var(--gold); flex-shrink:0; margin-top:3px; }

/* ---------- CTA band ---------- */
.cta-band{ background: linear-gradient(120deg, var(--green), var(--green-dark)); color:var(--white); border-radius: 24px; padding: 50px; text-align:center; }
.cta-band h2{ font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cta-band p{ color:#e3f4e8; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-band .hero-actions{ justify-content:center; }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--navy); color:#c9d3dd; padding-top: 60px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand img{ height:46px; margin-bottom:16px; }
.footer-brand p{ font-size:.86rem; color:#a9b6c3; }
footer h5{ color: var(--white); font-size:.86rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
.footer-grid a{ display:block; margin-bottom:10px; font-size:.9rem; color:#c9d3dd; }
.footer-grid a:hover{ color: var(--gold); }
.footer-contact li{ display:flex; gap:10px; margin-bottom:12px; font-size:.88rem; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; stroke: var(--gold); flex-shrink:0; margin-top:2px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; stroke:var(--white); }
.footer-social a:hover{ background: var(--gold); }
.footer-social a:hover svg{ stroke: var(--navy); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-size:.8rem; color:#8fa0af; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#8fa0af; }
.footer-bottom a:hover{ color: var(--gold); }

/* ---------- Language visibility ---------- */
[data-lang="en"]{ display:none; }
html[lang="en"] [data-lang="fr"]{ display:none; }
html[lang="en"] [data-lang="en"]{ display:revert; }
html[lang="en"] [data-lang="en"].inline{ display:inline; }
html[lang="en"] [data-lang="en"].flex{ display:flex; }
html[lang="en"] [data-lang="en"].grid{ display:grid; }
html[lang="en"] [data-lang="en"].block{ display:block; }

/* ---------- Page header (inner pages) ---------- */
.page-header{ background: var(--navy); color:var(--white); padding: 58px 0 50px; }
.page-header .eyebrow{ color: var(--gold); }
.page-header h1{ font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom:.3em; }
.page-header p{ color:#c9d3dd; max-width:640px; margin-bottom:0; }
.breadcrumb{ font-size:.8rem; color:#93a3b2; margin-bottom:14px; }
.breadcrumb a{ color:#93a3b2; }
.breadcrumb a:hover{ color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-figure{ order:-1; }
  .split, .split.reverse{ grid-template-columns: 1fr; }
  .split.reverse .split-media{ order:0; }
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .donate-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 1200px){
  nav.main-nav{
    position:fixed; inset: 64px 0 0 0; background: var(--white); flex-direction:column; align-items:stretch;
    padding: 18px 24px; gap:2px; transform: translateX(100%); transition: transform .25s ease; overflow-y:auto;
    justify-content:flex-start; z-index:400;
  }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav a{ padding:14px 8px; border-bottom:1px solid var(--grey-light); border-radius:0; font-size:.98rem; }
  .nav-toggle{ display:block; }
  .btn-donate{ padding:6px 10px; font-size:.68rem; }
  .btn-report{ padding:6px 9px; font-size:.66rem; }
  .topbar-contacts a:first-child span{ display:none; }
}
@media (max-width: 560px){
  .topbar .container{ justify-content:center; }
  .topbar-contacts{ display:none; }
}
@media (max-width: 640px){
  section{ padding: 52px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .form-card{ padding:26px 20px; }
  .cta-band{ padding: 36px 22px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .stat-row{ gap:20px; }
  .condition-banner{ padding:26px 20px; }
  .donate-widget{ padding:30px 22px; }
  .amount-grid{ grid-template-columns: repeat(2,1fr); }
}

/* ---------- Administration videos ---------- */
.admin-shell{ min-height:100vh; background: var(--off-white); }
.admin-topbar{ background: var(--navy); padding:16px 0; }
.admin-topbar .container{ display:flex; align-items:center; justify-content:space-between; }
.admin-topbar img{ height:34px; }
.admin-topbar .badge{ color:#c9d3dd; font-size:.8rem; }
.admin-gate{ max-width:380px; margin:12vh auto; background:var(--white); border-radius:16px; box-shadow:var(--shadow-strong); padding:36px; text-align:center; }
.admin-gate h1{ font-size:1.3rem; }
.admin-gate p{ color:var(--grey); font-size:.9rem; }
.admin-gate input{ width:100%; padding:12px 14px; border:1.5px solid var(--grey-light); border-radius:10px; margin:14px 0; font-size:.95rem; }
.admin-error{ display:none; background:#fdecec; color:#c0392b; padding:10px 12px; border-radius:8px; font-size:.85rem; margin-bottom:10px; }
.admin-main{ max-width:1000px; margin:0 auto; padding:40px 24px 80px; }
.admin-card{ background:var(--white); border-radius:16px; box-shadow:var(--shadow); padding:28px; margin-bottom:28px; border:1px solid rgba(3,18,35,.05); }
.admin-card h2{ font-size:1.15rem; margin-bottom:6px; }
.admin-card .sub{ color:var(--grey); font-size:.88rem; margin-bottom:20px; }
.admin-steps{ counter-reset:step; padding:0; margin:0; }
.admin-steps li{ list-style:none; counter-increment:step; position:relative; padding-left:34px; margin-bottom:12px; font-size:.9rem; color:var(--navy-soft); }
.admin-steps li::before{ content:counter(step); position:absolute; left:0; top:0; width:24px; height:24px; border-radius:50%; background:var(--green); color:#fff; font-size:.75rem; font-weight:700; display:flex; align-items:center; justify-content:center; }
.admin-row{ display:flex; align-items:center; gap:14px; padding:12px; border:1px solid var(--grey-light); border-radius:12px; margin-bottom:10px; }
.admin-thumb{ width:88px; height:50px; object-fit:cover; border-radius:8px; flex-shrink:0; background:#000; }
.admin-row-info{ flex:1; display:flex; flex-direction:column; gap:2px; min-width:0; }
.admin-row-info strong{ font-size:.9rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.admin-row-info span{ font-size:.76rem; color:var(--grey); }
.admin-row-actions{ display:flex; gap:6px; flex-shrink:0; flex-wrap:wrap; }
.admin-row-actions button{
  border:1.5px solid var(--grey-light); background:var(--white); border-radius:8px; padding:6px 10px; font-size:.78rem; cursor:pointer; font-weight:600; color:var(--navy-soft);
}
.admin-row-actions button:hover{ border-color: var(--green); color: var(--green); }
.admin-row-actions button.danger:hover{ border-color:#c0392b; color:#c0392b; }
.admin-actions-bar{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
#draft-status{ font-size:.82rem; color:var(--grey); margin-top:10px; }

.admin-tabs{ display:flex; align-items:center; gap:8px; margin-bottom:22px; flex-wrap:wrap; }
.admin-tab{
  border:1.5px solid var(--grey-light); background:var(--white); border-radius:999px; padding:9px 18px;
  font-size:.85rem; font-weight:700; color:var(--navy-soft); cursor:pointer;
}
.admin-tab.active{ background:var(--navy); border-color:var(--navy); color:#fff; }
.admin-tabs .btn{ margin-left:auto; }

.admin-filter-bar{ display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap; margin-bottom:18px; }
.admin-filter-bar .field{ margin-bottom:0; }
.admin-filter-bar input[type="date"]{ padding:10px 12px; border:1.5px solid var(--grey-light); border-radius:10px; font-family:var(--ff); font-size:.85rem; }

.admin-table-wrap{ overflow-x:auto; border:1px solid var(--grey-light); border-radius:12px; }
.admin-table{ width:100%; border-collapse:collapse; font-size:.82rem; min-width:900px; }
.admin-table th, .admin-table td{ padding:10px 12px; text-align:left; border-bottom:1px solid var(--grey-light); white-space:nowrap; max-width:220px; overflow:hidden; text-overflow:ellipsis; }
.admin-table th{ background:var(--off-white); font-weight:700; color:var(--navy-soft); position:sticky; top:0; }
.admin-table tbody tr:hover{ background:rgba(35,153,70,.05); }
.admin-table td.wrap{ white-space:normal; }
