/* ============================================================
   GBI SCM — Design System "C bones + A skin"
   Fungsi SaaS bersih dalam branding sacred-minimal emas GBI SCM.
   ============================================================ */

:root {
  --gold: #C9A227;
  --gold-dark: #A98B2F;
  --gold-soft: #F0E6C8;
  --ink: #24201A;
  --ink-soft: #4A4335;
  --ivory: #FAF7F0;
  --stone: #EDE6D6;
  --muted: #6B6459;
  --teal: #1E3A4C;
  --white: #FFFFFF;
  --red: #B03A2E;
  --green: #2E7D5B;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 24px rgba(36, 32, 26, .08);
  --shadow-lg: 0 16px 40px rgba(36, 32, 26, .14);
  --hairline: 1px solid var(--stone);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }

/* ---------- Util ---------- */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 18px; }
.eyebrow {
  color: var(--gold-dark); letter-spacing: .2em; font-size: 11px;
  text-transform: uppercase; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.section { padding: 40px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold-dark); }

/* ---------- Banner prototipe ---------- */
  background: var(--teal); color: #fff; text-align: center;
  font-size: 10.5px; letter-spacing: .1em; padding: 5px 10px;
  text-transform: uppercase; font-weight: 600; position: sticky; top: 0; z-index: 60;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 15px;
  transition: transform .12s, background .15s, box-shadow .15s; text-align: center;
}
.btn:active { transform: scale(.97); }
.btn.gold { background: var(--gold); color: var(--white); box-shadow: 0 6px 16px rgba(201,162,39,.35); }
.btn.gold:hover { background: var(--gold-dark); }
.btn.outline { background: var(--white); color: var(--ink); border: 1.5px solid var(--stone); }
.btn.outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn.teal { background: var(--teal); color: var(--white); }
.btn.ghost { background: transparent; color: var(--teal); padding: 10px 14px; }
.btn.danger-outline { background: var(--white); color: var(--red); border: 1.5px solid #EBC7C2; }
.btn.block { width: 100%; }
.btn.sm { padding: 9px 14px; font-size: 13px; border-radius: 10px; }

/* ---------- Topbar situs publik ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: var(--hairline);
}
.site-header .bar { display: flex; align-items: center; gap: 12px; padding: 12px 18px; max-width: 960px; margin: 0 auto; }
.site-header .logo { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.site-header .brand b { font-family: var(--serif); font-size: 18px; display: block; line-height: 1; }
.site-header .brand span { font-size: 10px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-header nav a.navlink { padding: 8px 11px; font-size: 14px; font-weight: 600; color: var(--ink-soft); border-radius: 8px; }
.site-header nav a.navlink:hover { color: var(--gold-dark); background: var(--ivory); }
.site-header .menu-btn { margin-left: 6px; width: 42px; height: 42px; border-radius: 10px; font-size: 20px; display: none; place-items: center; border: var(--hairline); background: var(--white); }
@media (max-width: 760px) {
  .site-header nav a.navlink { display: none; }
  .site-header .menu-btn { display: grid; }
  .site-header nav { margin-left: auto; }
  .site-header .brand { margin-right: auto; }
}

/* Mobile menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 100; background: var(--ivory);
  display: flex; flex-direction: column; padding: 20px 24px 40px;
  transform: translateY(-100%); transition: transform .28s ease; overflow-y: auto;
}
.menu-overlay.open { transform: translateY(0); }
.menu-overlay .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.menu-overlay a.big { font-family: var(--serif); font-size: 30px; font-weight: 600; padding: 14px 0; border-bottom: var(--hairline); color: var(--ink); }
.menu-overlay a.big:hover { color: var(--gold-dark); }
.menu-overlay .close-x { width: 44px; height: 44px; border-radius: 50%; border: var(--hairline); background: var(--white); font-size: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 64px 0 52px; overflow: hidden;
  background: linear-gradient(180deg, #FDFBF5 0%, var(--ivory) 100%);
}
.hero .ornament { display: flex; justify-content: center; margin-bottom: 18px; }
.hero .ornament img { width: 92px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.12)); }
.hero h1 { font-size: clamp(34px, 7vw, 56px); text-align: center; }
.hero .lead { text-align: center; color: var(--muted); font-size: 17px; max-width: 44ch; margin: 14px auto 0; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.hero .rule { width: 60px; height: 2px; background: var(--gold); margin: 22px auto 0; }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(26px, 5vw, 38px); margin-top: 8px; }
.sec-head .sub { color: var(--muted); margin-top: 8px; max-width: 52ch; margin-inline: auto; }

/* ---------- Kartu jadwal ---------- */
.jadwal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.jadwal-card {
  background: var(--white); border: 1.5px solid var(--gold-soft); border-radius: var(--radius-lg);
  padding: 18px; position: relative; overflow: hidden; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.jadwal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.jadwal-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.jadwal-card .kat { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.jadwal-card h3 { font-size: 21px; margin: 6px 0 10px; }
.jadwal-card .waktu { display: flex; align-items: baseline; gap: 6px; font-weight: 700; color: var(--teal); font-size: 18px; }
.jadwal-card .waktu small { font-size: 12px; color: var(--muted); font-weight: 600; }
.jadwal-card .ket { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ---------- Kartu umum ---------- */
.card {
  background: var(--white); border: var(--hairline); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow);
}
.card.hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card.hover { transition: transform .15s, box-shadow .15s; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }

/* Berita/acara card */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .thumb { height: 130px; background: linear-gradient(135deg, var(--gold-soft), var(--stone)); display: grid; place-items: center; position: relative; }
.post-card .thumb .date-badge {
  position: absolute; top: 12px; left: 12px; background: var(--white); border-radius: 10px;
  padding: 6px 10px; text-align: center; box-shadow: var(--shadow); line-height: 1;
}
.post-card .thumb .date-badge b { display: block; font-size: 18px; font-family: var(--serif); color: var(--gold-dark); }
.post-card .thumb .date-badge span { font-size: 10px; text-transform: uppercase; color: var(--muted); letter-spacing: .08em; }
.post-card .thumb .kat-ic { font-size: 34px; opacity: .5; }
.post-card .body { padding: 16px 18px 18px; }
.post-card .chip { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); background: #EAF1F4; padding: 3px 9px; border-radius: 999px; font-weight: 700; }
.post-card h3 { font-size: 19px; margin: 10px 0 6px; }
.post-card p { font-size: 14px; color: var(--muted); }

/* ---------- Visi Misi ---------- */
.visi-box { text-align: center; padding: 34px 24px; background: var(--white); border: 1.5px solid var(--gold-soft); border-radius: var(--radius-lg); position: relative; }
.visi-box::before, .visi-box::after { content: "✦"; color: var(--gold); position: absolute; top: 14px; font-size: 14px; }
.visi-box::before { left: 16px; } .visi-box::after { right: 16px; }
.visi-box .visi { font-family: var(--serif); font-size: clamp(20px, 4vw, 28px); font-style: italic; color: var(--ink); max-width: 30ch; margin: 0 auto; }
.misi-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.misi-chips span { background: var(--ivory); border: 1px solid var(--stone); padding: 8px 15px; border-radius: 999px; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal); color: #DCE6EB; margin-top: 48px; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; padding: 40px 0 28px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer .logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.site-footer .logo-row img { width: 44px; border-radius: 50%; }
.site-footer .logo-row b { color: #fff; font-family: var(--serif); font-size: 18px; }
.site-footer p, .site-footer a { font-size: 14px; color: #B9C6CD; line-height: 1.7; }
.site-footer a:hover { color: var(--gold); }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0 26px; font-size: 12px; color: #8FA2AB; text-align: center; }
.wa-btn { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 11px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; margin-top: 10px; }

/* ============================================================
   APLIKASI STAF
   ============================================================ */
.staff-app { max-width: 560px; margin: 0 auto; min-height: 100dvh; background: var(--ivory); display: flex; flex-direction: column; box-shadow: 0 0 40px rgba(0,0,0,.06); }
@media (min-width: 600px) { body.staff-body { background: linear-gradient(160deg, var(--ivory), var(--stone)); display: grid; place-items: center; } .staff-app { min-height: 94dvh; border-radius: 24px; overflow: hidden; border: var(--hairline); } }

.staff-header {
  background: var(--white); border-bottom: var(--hairline); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; position: sticky; top: 0; z-index: 20;
}
.staff-header .logo { width: 36px; height: 36px; border-radius: 50%; }
.staff-header .ttl b { font-family: var(--serif); font-size: 17px; display: block; line-height: 1.05; }
.staff-header .ttl span { font-size: 10px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.staff-header .who { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.staff-header .role-pill { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; background: var(--gold-soft); color: var(--gold-dark); padding: 3px 9px; border-radius: 999px; font-weight: 700; }

.staff-main { flex: 1; overflow-y: auto; padding: 18px 16px 96px; }
.page-title { font-size: 28px; margin-bottom: 4px; }
.page-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.kpi { background: var(--white); border: var(--hairline); border-radius: var(--radius); padding: 14px 12px; text-align: center; box-shadow: var(--shadow); }
.kpi .num { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.kpi .lbl { font-size: 11px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* Widget ulang tahun */
.widget { background: var(--white); border: var(--hairline); border-radius: var(--radius-lg); padding: 16px 18px; margin-bottom: 18px; box-shadow: var(--shadow); }
.widget h3 { font-size: 18px; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.widget h3 .cake { font-size: 18px; }
.ultah-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid #F3EEE2; }
.ultah-row:last-child { border-bottom: none; }
.ultah-row .d { text-align: center; background: var(--ivory); border: 1px solid var(--stone); border-radius: 9px; padding: 5px 9px; line-height: 1; min-width: 44px; }
.ultah-row .d b { display: block; font-family: var(--serif); font-size: 17px; color: var(--gold-dark); }
.ultah-row .d span { font-size: 9px; text-transform: uppercase; color: var(--muted); }
.ultah-row .n { font-weight: 600; font-size: 14.5px; }
.ultah-row .age { margin-left: auto; font-size: 11px; color: var(--gold-dark); background: var(--gold-soft); padding: 3px 8px; border-radius: 999px; font-weight: 700; white-space: nowrap; }
.widget .empty { color: var(--muted); font-size: 13px; font-style: italic; padding: 8px 0; }

/* Search + filter chips */
.search-bar { position: sticky; top: 0; z-index: 10; background: var(--ivory); padding: 4px 0 12px; }
.search-box { position: relative; }
.search-box input {
  width: 100%; padding: 14px 16px 14px 44px; border: 1.5px solid var(--stone); border-radius: 12px;
  background: var(--white); outline: none; transition: border-color .15s;
}
.search-box input:focus { border-color: var(--gold); }
.search-box .s-ic { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 17px; }
.chip-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.fchip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 999px; border: 1.5px solid var(--stone); background: var(--white); color: var(--ink-soft); transition: all .13s; }
.fchip.on { background: var(--gold); border-color: var(--gold); color: #fff; }
.fchip .x { font-weight: 800; opacity: .7; }

/* Member list */
.member-row {
  display: flex; align-items: center; gap: 13px; background: var(--white); border: var(--hairline);
  border-radius: var(--radius); padding: 13px 14px; margin-bottom: 10px; box-shadow: var(--shadow);
  cursor: pointer; transition: transform .13s, box-shadow .13s; width: 100%; text-align: left;
}
.member-row:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0; }
.member-row .info { min-width: 0; }
.member-row .info b { display: block; font-size: 15.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.member-row .info span { font-size: 13px; color: var(--muted); }
.member-row .right { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.status-pill { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.status-pill.aktif { background: #E5F3EC; color: var(--green); }
.status-pill.arsip { background: #F1E9E7; color: var(--red); }
.status-pill.tamu { background: var(--gold-soft); color: var(--gold-dark); }
.chev { color: #C7BFAE; font-size: 20px; }
.member-row.arsip-row { opacity: .75; }

/* Bottom tab bar */
.tabbar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 560px;
  background: var(--white); border-top: var(--hairline); display: flex; z-index: 40;
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar a, .tabbar button { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 0 9px; font-size: 10.5px; color: var(--muted); font-weight: 600; }
.tabbar a .ic, .tabbar button .ic { font-size: 20px; }
.tabbar a.active { color: var(--gold-dark); }
.tabbar a.active .ic { transform: translateY(-1px); }

/* Detail profil */
.profile-hero { background: var(--white); border: var(--hairline); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; box-shadow: var(--shadow); margin-bottom: 16px; }
.profile-hero .avatar { width: 88px; height: 88px; font-size: 30px; margin: 0 auto 12px; }
.profile-hero h2 { font-size: 25px; }
.profile-hero .status-pill { margin-top: 8px; display: inline-block; }
.contact-strip { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.contact-strip a { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--stone); display: grid; place-items: center; font-size: 19px; background: var(--ivory); transition: all .13s; }
.contact-strip a:hover { border-color: var(--gold); background: var(--gold-soft); }

.detail-sec { background: var(--white); border: var(--hairline); border-radius: var(--radius-lg); padding: 6px 18px; margin-bottom: 14px; box-shadow: var(--shadow); }
.detail-sec .sec-head-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 8px; }
.detail-sec h3 { font-size: 16px; }
.detail-sec .edit-ic { color: var(--gold-dark); font-size: 14px; font-weight: 700; }
.dl-row { display: flex; padding: 11px 0; border-top: 1px solid #F3EEE2; font-size: 14.5px; }
.dl-row .k { color: var(--muted); width: 42%; flex-shrink: 0; }
.dl-row .v { font-weight: 600; }

/* Form (full-screen sheet style) */
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--white); border-bottom: var(--hairline); position: sticky; top: 0; z-index: 20; }
.sheet-head h2 { font-size: 19px; }
.sheet-head .btn-save { color: var(--gold-dark); font-weight: 800; font-size: 15px; }
.sheet-head .btn-cancel { color: var(--muted); font-size: 15px; }
.form-body { padding: 20px 16px 110px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--stone); border-radius: 12px;
  background: var(--white); outline: none; min-height: 50px; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field .help { font-size: 12px; color: var(--muted); margin-top: 5px; }
.field .err { font-size: 12px; color: var(--red); margin-top: 5px; font-weight: 600; display: none; }
.field.invalid input { border-color: var(--red); }
.field.invalid .err { display: block; }
.photo-upload { display: flex; align-items: center; gap: 14px; }
.photo-upload .avatar { width: 64px; height: 64px; font-size: 22px; cursor: pointer; }
.photo-upload .ph-btns { display: flex; flex-direction: column; gap: 6px; }
.link-btn { color: var(--teal); font-weight: 700; font-size: 14px; text-align: left; }
.form-actions { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 560px; padding: 14px 16px calc(16px + env(safe-area-inset-bottom)); background: var(--white); border-top: var(--hairline); }
.dup-warning { background: #FDF3E7; border: 1px solid #F0D9B8; color: #8A5A1E; padding: 11px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 16px; display: none; }
.dup-warning.show { display: block; }

/* Login */
.login-wrap { max-width: 560px; margin: 0 auto; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; padding: 28px 22px; background: var(--ivory); }
.login-card { background: var(--white); border: var(--hairline); border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-lg); text-align: center; }
.login-card .logo { width: 72px; margin: 0 auto 16px; }
.login-card h1 { font-size: 26px; }
.login-card .sub { color: var(--muted); font-size: 14px; margin: 8px 0 24px; }

/* Action sheet / dialog */
.overlay-bg { position: fixed; inset: 0; background: rgba(36,32,26,.45); z-index: 80; opacity: 0; pointer-events: none; transition: opacity .2s; }
.overlay-bg.open { opacity: 1; pointer-events: auto; }
.action-sheet {
  position: fixed; bottom: 0; left: 50%; transform: translate(-50%, 100%); width: 100%; max-width: 560px;
  background: var(--white); border-radius: 20px 20px 0 0; z-index: 90; padding: 12px 16px calc(20px + env(safe-area-inset-bottom));
  transition: transform .28s ease;
}
.action-sheet.open { transform: translate(-50%, 0); }
.action-sheet .grab { width: 40px; height: 4px; background: var(--stone); border-radius: 99px; margin: 4px auto 16px; }
.action-sheet h3 { font-size: 18px; margin-bottom: 4px; }
.action-sheet .sub { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.sheet-opt { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; padding: 15px 12px; border-radius: 12px; font-size: 15.5px; font-weight: 600; }
.sheet-opt:hover { background: var(--ivory); }
.sheet-opt.danger { color: var(--red); }
.sheet-opt .o-ic { font-size: 19px; }

/* Toast */
.toast {
  position: fixed; bottom: 86px; left: 50%; transform: translate(-50%, 20px); z-index: 120;
  background: var(--ink); color: #fff; padding: 13px 18px; border-radius: 12px; font-size: 14px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-lg); opacity: 0;
  pointer-events: none; transition: all .25s; max-width: calc(100% - 40px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast button { color: var(--gold); font-weight: 800; font-size: 14px; white-space: nowrap; }

/* Empty state */
.empty-state { text-align: center; padding: 44px 24px; }
.empty-state .e-ic { font-size: 46px; margin-bottom: 12px; }
.empty-state h3 { font-size: 20px; margin-bottom: 6px; }
.empty-state p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

/* Back row */
.back-row { display: flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: 14px; margin-bottom: 16px; background: none; }
.back-row .b-ic { font-size: 18px; }

/* Filter bottom sheet list */
.filter-group { margin-bottom: 18px; }
.filter-group h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
