/* ═══════════════════════════════════════════════════════════
   סביבי — Variant C: Fast Action / Urgency-First
   Hebrew RTL · Heebo · Light Theme
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --white:   #ffffff;
  --blue:    #2563eb;
  --blue-lt: #dbeafe;
  --blue-dk: #1d4ed8;
  --red:     #dc2626;
  --red-lt:  #fee2e2;
  --green:   #16a34a;
  --green-lt:#dcfce7;
  --gold:    #d97706;
  --gold-lt: #fef3c7;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-400:#94a3b8;
  --gray-500:#64748b;
  --gray-700:#334155;
  --text:    #0f172a;
  --text-sm: #475569;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);

  --nav-height: 60px;
  --header-height: 96px;

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 350ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  direction: rtl;
  font-size: 16px;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--gray-100);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
}

button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { color: var(--blue); text-decoration: none; }
input, textarea, select { font-family: inherit; direction: rtl; }

/* ══════════════════════════════════════════════════════════
   LAYOUT: Mobile-first phone frame + desktop side panel
══════════════════════════════════════════════════════════ */

.phone-frame {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

/* Desktop: centered phone + side panel */
@media (min-width: 769px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #e2e8f0;
    gap: 0;
  }

  .phone-frame {
    width: 390px;
    height: 844px;
    min-height: unset;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.1);
    overflow: hidden;
    flex-shrink: 0;
    order: 2;
  }

  .phone-screen {
    height: 844px;
    border-radius: 40px;
  }

  .desktop-panel {
    display: flex !important;
    order: 1;
    margin-left: 32px;
  }
}

/* ── Desktop Side Panel ────────────────────────────────── */
.desktop-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
  width: 320px;
  max-height: 844px;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}

.dp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}

.dp-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.dp-variant-badge {
  margin-right: auto;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.dp-section {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.dp-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.4;
}

.dp-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-body {
  font-size: 12.5px;
  color: var(--text-sm);
  line-height: 1.6;
}

.dp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dp-list li {
  font-size: 12px;
  color: var(--text-sm);
  padding-right: 10px;
  position: relative;
  line-height: 1.5;
}

.dp-list li::before {
  content: '•';
  color: var(--blue);
  position: absolute;
  right: 0;
}

.dp-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dp-cat {
  background: var(--gray-100);
  color: var(--text-sm);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dp-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   SCREENS — Base
══════════════════════════════════════════════════════════ */

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-16px);
  pointer-events: none;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  z-index: 0;
}

.screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  z-index: 1;
}

/* Screens that push the nav down */
#screen-home.active,
#screen-hot.active,
#screen-map.active,
#screen-list.active {
  padding-bottom: var(--nav-height);
}

/* ── Bottom Nav ────────────────────────────────────────── */
.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  z-index: 50;
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 600;
  transition: color var(--transition);
  padding: 8px 4px;
}

.nav-btn i {
  font-size: 18px;
  transition: color var(--transition), transform var(--transition);
}

.nav-btn.active {
  color: var(--blue);
}

.nav-btn.active i {
  transform: translateY(-1px);
}

/* ── FAB ───────────────────────────────────────────────── */
.fab-wrap {
  position: absolute;
  bottom: calc(var(--nav-height) + 14px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

.fab {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab:active {
  transform: scale(.94);
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: absolute;
  bottom: calc(var(--nav-height) + 16px);
  left: 16px;
  right: 16px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  z-index: 200;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 250ms, transform 250ms;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   SCREEN: LANDING
══════════════════════════════════════════════════════════ */

#screen-landing {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 60%, #2563eb 100%);
  overflow-y: auto;
}

.landing-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 24px 40px;
  min-height: 100%;
  gap: 28px;
}

.landing-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .5px;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-logo-mark {
  width: 52px;
  height: 52px;
  background: var(--white);
  color: var(--blue);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.landing-logo-name {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}

.landing-headline {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.landing-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

.landing-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-stats {
  display: flex;
  gap: 10px;
}

.stat-pill {
  flex: 1;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-align: center;
}

.urgent-pulse .stat-num {
  color: #fca5a5;
}

.landing-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lcat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  flex: 1;
  min-width: 54px;
  cursor: pointer;
}

.lcat i {
  font-size: 16px;
  color: rgba(255,255,255,.85);
}

.lcat span {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  white-space: nowrap;
}

.landing-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.landing-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ── CTA Button (shared) ───────────────────────────────── */
.btn-cta {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  min-height: 52px;
}

.btn-cta:active {
  background: var(--blue-dk);
  transform: scale(.98);
}

#screen-landing .btn-cta {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

/* ══════════════════════════════════════════════════════════
   SCREEN: LOGIN
══════════════════════════════════════════════════════════ */

#screen-login {
  background: var(--gray-50);
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.login-wrap {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.login-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.landing-logo-mark.sm {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
}

.login-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}

.login-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.login-sub {
  font-size: 13px;
  color: var(--text-sm);
}

.login-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-google {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.btn-google:active {
  background: var(--gray-50);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 12px;
}

.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.btn-phone {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  transition: background var(--transition);
}

.btn-phone:active {
  background: var(--blue-dk);
}

.login-legal {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}

.btn-back {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 8px;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: ONBOARDING
══════════════════════════════════════════════════════════ */

#screen-onboarding {
  background: var(--white);
}

.onb-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 28px;
  overflow-y: auto;
}

.onb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onb-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.onb-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition);
}

.onb-step.active {
  background: var(--blue);
  color: var(--white);
}

.onb-step.done {
  background: var(--green);
  color: var(--white);
}

.onb-line {
  width: 24px;
  height: 2px;
  background: var(--gray-200);
}

.btn-skip {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.onb-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.onb-page.hidden {
  display: none;
}

.onb-icon-big {
  width: 72px;
  height: 72px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 32px;
}

.onb-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.onb-body {
  font-size: 14px;
  color: var(--text-sm);
  line-height: 1.6;
}

.onb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-sel {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.chip-sel.active {
  background: var(--blue-lt);
  border-color: var(--blue);
  color: var(--blue);
}

.onb-location-mock {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.onb-loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.onb-loc-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.onb-loc-check {
  width: 24px;
  height: 24px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.onb-radius {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onb-radius-label {
  font-size: 14px;
  color: var(--text-sm);
}

.radius-slider {
  width: 100%;
  accent-color: var(--blue);
  height: 4px;
}

/* ══════════════════════════════════════════════════════════
   HOME / LIST headers
══════════════════════════════════════════════════════════ */

.home-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0 0;
  flex-shrink: 0;
}

.home-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 10px;
}

.home-area {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.home-area i {
  color: var(--red);
  font-size: 14px;
}

.home-now-badge {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.home-header-actions {
  display: flex;
  gap: 4px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 16px;
  position: relative;
  transition: background var(--transition);
}

.icon-btn:active {
  background: var(--gray-100);
}

.notif-dot {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

/* ── Filter Chips Row ──────────────────────────────────── */
.filter-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 16px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-scroll::-webkit-scrollbar { display: none; }

.filter-chip {
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  flex-shrink: 0;
  min-height: 32px;
}

.filter-chip.active {
  background: var(--blue-lt);
  color: var(--blue);
  border-color: var(--blue);
}

.filter-chip.urgent-chip.active {
  background: var(--red-lt);
  color: var(--red);
  border-color: var(--red);
}

/* ══════════════════════════════════════════════════════════
   ITEM LIST — Shared
══════════════════════════════════════════════════════════ */

.item-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}

/* ── Item Card ─────────────────────────────────────────── */
.item-card {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 76px;
}

.item-card:active {
  background: var(--gray-50);
}

/* Urgency border — RTL: right side is visual left */
.item-card::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
}

.item-card.urgency-urgent::before  { background: var(--red); }
.item-card.urgency-high::before    { background: var(--gold); }
.item-card.urgency-normal::before  { background: var(--blue); }
.item-card.urgency-low::before     { background: var(--gray-300); }

/* Sponsored gold border */
.item-card.sponsored {
  background: linear-gradient(to left, #fffbeb, var(--white));
  border-right: 3px solid var(--gold);
}

.item-card.sponsored::before { display: none; }

/* Card icon column */
.card-icon-col {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 12px 8px;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.icon-event   { background: #eff6ff; color: var(--blue); }
.icon-help    { background: #fef2f2; color: var(--red); }
.icon-service { background: #f0fdf4; color: var(--green); }
.icon-give    { background: #fef3c7; color: var(--gold); }
.icon-sale    { background: #faf5ff; color: #7c3aed; }

/* Card body */
.card-body {
  flex: 1;
  padding: 10px 8px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.dot-urgent { background: var(--red); animation: pulse-dot 1.2s infinite; }
.dot-high   { background: var(--gold); }
.dot-normal { background: var(--blue); }
.dot-low    { background: var(--gray-300); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.card-meta-item {
  font-size: 11px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
}

.card-meta-item i {
  font-size: 9px;
}

.card-meta-sep {
  width: 2px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
}

.source-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.src-whatsapp { background: #dcfce7; color: #15803d; }
.src-facebook { background: #dbeafe; color: #1d4ed8; }
.src-events   { background: #ede9fe; color: #6d28d9; }
.src-sponsored { background: var(--gold-lt); color: var(--gold); }

.verified-badge {
  font-size: 10px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

/* Card action column */
.card-action-col {
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 0;
  flex-shrink: 0;
}

.btn-card-action {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 32px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-action-blue {
  background: var(--blue-lt);
  color: var(--blue);
}

.btn-action-blue:active {
  background: var(--blue);
  color: var(--white);
}

.btn-action-red {
  background: var(--red-lt);
  color: var(--red);
}

.btn-action-red:active {
  background: var(--red);
  color: var(--white);
}

.btn-action-green {
  background: var(--green-lt);
  color: var(--green);
}

.btn-action-green:active {
  background: var(--green);
  color: var(--white);
}

.btn-action-gold {
  background: var(--gold-lt);
  color: var(--gold);
}

/* Rank badge (hot screen) */
.rank-badge {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  z-index: 2;
}

.rank-badge.rank-1 { background: #f59e0b; }
.rank-badge.rank-2 { background: #94a3b8; }
.rank-badge.rank-3 { background: #b45309; }

.score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.score-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  flex: 1;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(to left, var(--blue), #60a5fa);
  border-radius: 2px;
  transition: width .5s ease;
}

.score-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: HOT
══════════════════════════════════════════════════════════ */

.hot-header {
  padding: 16px 16px 10px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(to bottom, #fff7ed, var(--white));
  flex-shrink: 0;
}

.hot-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hot-title i {
  color: #f97316;
}

.hot-sub {
  font-size: 12px;
  color: var(--text-sm);
  margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: MAP
══════════════════════════════════════════════════════════ */

#screen-map {
  background: var(--gray-100);
}

.map-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 10px 0;
  flex-shrink: 0;
  z-index: 5;
}

#leafletMap {
  z-index: 1;
  position: relative;
}

/* Map bottom sheet */
.map-bottom-sheet {
  position: absolute;
  bottom: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  z-index: 20;
  transition: transform var(--transition-slow);
  transform: translateY(0);
  max-height: 280px;
}

.map-bottom-sheet.hidden {
  transform: translateY(100%);
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 10px auto 4px;
}

.sheet-content {
  padding: 8px 16px 16px;
}

/* ══════════════════════════════════════════════════════════
   URGENCY LABEL PILL (inline badge on cards)
══════════════════════════════════════════════════════════ */

.urgency-label {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
   GLOBAL BOTTOM SHEET (action sheets, confirmations)
══════════════════════════════════════════════════════════ */

.global-bottom-sheet {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.global-bottom-sheet.hidden {
  display: none;
}

.global-sheet-body {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 12px 20px 28px;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 80%;
  overflow-y: auto;
}

.global-bottom-sheet.open .global-sheet-body {
  transform: translateY(0);
}

.global-sheet-body .sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: LIST
══════════════════════════════════════════════════════════ */

.list-header {
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

/* ── Search bar ──────────────────────────────────────────── */
.list-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 6px;
}

.list-search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.list-search-wrap i {
  position: absolute;
  right: 10px;
  color: var(--gray-400);
  font-size: 13px;
  pointer-events: none;
}

.list-search-input {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 8px 32px 8px 14px;
  font-size: 13px;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), background var(--transition);
}

.list-search-input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

.list-result-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.list-controls {
  padding-top: 10px;
}

.list-sort-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 10px;
}

.sort-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  flex-shrink: 0;
}

.sort-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  transition: all var(--transition);
}

.sort-btn.active {
  background: var(--blue-lt);
  color: var(--blue);
}

.share-btn {
  margin-right: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--blue-lt);
  border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════════════════
   SCREEN: ITEM DETAIL
══════════════════════════════════════════════════════════ */

#screen-item {
  overflow-y: auto;
}

.item-detail-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.item-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 5;
}

.back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 16px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.back-btn:active {
  background: var(--gray-100);
}

.item-detail-cat-chip {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-lt);
  color: var(--blue);
  text-align: center;
}

.item-detail-body {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.detail-urgency-bar {
  height: 5px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.detail-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}

.detail-desc {
  font-size: 14px;
  color: var(--text-sm);
  line-height: 1.65;
}

.detail-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 80px;
}

.detail-stat i {
  font-size: 14px;
  color: var(--blue);
}

.detail-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.detail-stat-lbl {
  font-size: 10px;
  color: var(--gray-400);
}

.detail-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.author-meta {
  font-size: 11px;
  color: var(--gray-400);
}

.trust-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-verified { background: var(--blue-lt); color: var(--blue); }
.trust-source   { background: var(--gray-100); color: var(--gray-500); }
.trust-badge    { background: var(--gold-lt); color: var(--gold); }

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.detail-actions .btn-cta {
  font-size: 15px;
}

.btn-secondary {
  width: 100%;
  background: var(--gray-100);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  transition: background var(--transition);
}

.btn-secondary:active {
  background: var(--gray-200);
}

.detail-responders {
  background: var(--red-lt);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background var(--transition);
}

.detail-responders:active {
  background: #fecaca;
}

.resp-count-big {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}

.resp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

.resp-arrow {
  margin-right: auto;
  color: var(--red);
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: RESPONDERS
══════════════════════════════════════════════════════════ */

#screen-responders {
  background: var(--gray-50);
}

.resp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
}

.resp-title {
  font-size: 16px;
  font-weight: 800;
}

.resp-item-info {
  background: var(--white);
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}

.resp-list {
  flex: 1;
  overflow-y: auto;
}

.resp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.resp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.resp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.resp-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.resp-meta {
  font-size: 11px;
  color: var(--gray-400);
}

.verified-chip {
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.verified-chip.large {
  font-size: 11px;
  padding: 4px 10px;
}

.resp-cta-wrap {
  padding: 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: CREATE
══════════════════════════════════════════════════════════ */

#screen-create {
  background: var(--white);
}

.create-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.create-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.create-title {
  font-size: 16px;
  font-weight: 800;
}

.create-step {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.create-step.hidden {
  display: none;
}

.create-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.create-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.create-cat-btn {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sm);
  transition: all var(--transition);
  padding: 12px;
}

.create-cat-btn i {
  font-size: 22px;
  color: var(--blue);
}

.create-cat-btn:active,
.create-cat-btn.selected {
  background: var(--blue-lt);
  border-color: var(--blue);
  color: var(--blue);
}

.create-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.form-label .req {
  color: var(--red);
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  resize: none;
  text-align: right;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
}

.urgency-select {
  display: flex;
  gap: 8px;
}

.urgency-opt {
  flex: 1;
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  transition: all var(--transition);
}

.urgency-opt.active {
  background: var(--blue-lt);
  border-color: var(--blue);
  color: var(--blue);
}

.urgency-opt.urgent-opt {
  border-color: var(--gray-200);
}

.urgency-opt.urgent-opt.active {
  background: var(--red-lt);
  border-color: var(--red);
  color: var(--red);
}

.publish-btn {
  margin-top: auto;
  font-size: 16px;
  padding: 16px;
}

/* ══════════════════════════════════════════════════════════
   SCREEN: NOTIFICATIONS / SETTINGS / MY-POSTS / PROFILE
══════════════════════════════════════════════════════════ */

#screen-notifications,
#screen-my-posts,
#screen-settings {
  background: var(--gray-50);
  overflow-y: auto;
}

.settings-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.settings-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
}

.settings-header h3 {
  font-size: 16px;
  font-weight: 800;
}

.settings-section {
  background: var(--white);
  margin-top: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  min-height: 44px;
  gap: 8px;
}

/* CSS Toggle Switch */
.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.slider-tog {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.slider-tog::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.toggle input:checked + .slider-tog {
  background: var(--blue);
}

.toggle input:checked + .slider-tog::before {
  transform: translateX(20px);
}

.source-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 6px;
}

.source-dot.whatsapp { background: #22c55e; }
.source-dot.facebook { background: #3b82f6; }
.source-dot.events   { background: #8b5cf6; }

/* ── Tabs ──────────────────────────────────────────────── */
.tabs-row {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.tab-content {
  flex: 1;
  overflow-y: auto;
}

.tab-content.hidden {
  display: none;
}

/* My post rows */
.my-post-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.my-post-row.expired {
  opacity: .6;
}

.my-post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.my-post-cat {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.event-dot { background: var(--blue-lt); color: var(--blue); }
.help-dot  { background: var(--red-lt); color: var(--red); }

.my-post-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-post-meta {
  font-size: 11px;
  color: var(--gray-400);
}

.my-post-meta i {
  font-size: 10px;
  margin-left: 4px;
}

.my-post-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ── Profile ───────────────────────────────────────────── */
#screen-profile {
  background: var(--gray-50);
  overflow-y: auto;
}

.profile-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.profile-top {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.profile-area {
  font-size: 12px;
  color: var(--text-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-area i {
  color: var(--red);
  font-size: 11px;
}

.profile-stats {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.pstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border-left: 1px solid var(--gray-100);
}

.pstat:last-child { border-left: none; }

.pstat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
}

.pstat-lbl {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.profile-links {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.profile-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  text-align: right;
  transition: background var(--transition);
  min-height: 52px;
}

.profile-link-btn:last-child {
  border-bottom: none;
}

.profile-link-btn i {
  font-size: 16px;
  color: var(--gray-400);
  width: 20px;
  text-align: center;
}

.profile-link-btn:active {
  background: var(--gray-50);
}

.profile-link-btn.danger {
  color: var(--red);
}

.profile-link-btn.danger i {
  color: var(--red);
}

/* ── Small Buttons ─────────────────────────────────────── */
.btn-sm-blue {
  padding: 7px 12px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 34px;
  transition: all var(--transition);
}

.btn-sm-blue:active {
  background: var(--blue);
  color: var(--white);
}

.btn-sm-ghost {
  padding: 7px 12px;
  background: var(--gray-100);
  color: var(--text-sm);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 34px;
}

.btn-sm-red {
  padding: 7px 12px;
  background: var(--red-lt);
  color: var(--red);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 34px;
}

/* ══════════════════════════════════════════════════════════
   LEAFLET OVERRIDES
══════════════════════════════════════════════════════════ */

.leaflet-container {
  font-family: 'Heebo', sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  direction: rtl;
}

.leaflet-popup-content {
  margin: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Custom map marker dots */
.map-marker-urgent { background: var(--red); }
.map-marker-high   { background: var(--gold); }
.map-marker-normal { background: var(--blue); }
.map-marker-low    { background: var(--gray-400); }

/* ══════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════ */

.hidden { display: none !important; }

/* Sheet card for map popup */
.sheet-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.sheet-card-meta {
  font-size: 12px;
  color: var(--text-sm);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}

.sheet-card-actions {
  display: flex;
  gap: 8px;
}

.sheet-card-actions button {
  flex: 1;
}
