/* ═══════════════════════════════════════════════════════
   VARIANT J — Provider Marketplace / B2B2C
   Palette: Trust Blue #1e40af | Gold #d97706 | Green #059669
   Font: Heebo
═══════════════════════════════════════════════════════ */

:root {
  --blue: #1e40af;
  --blue-light: #3b82f6;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --gold: #d97706;
  --gold-light: #fbbf24;
  --gold-50: #fffbeb;
  --gold-border: #f59e0b;
  --green: #059669;
  --green-light: #10b981;
  --green-50: #ecfdf5;
  --white: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --red: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Heebo', sans-serif;
  background: #0f172a;
  min-height: 100vh;
  direction: rtl;
  overflow-x: hidden;
}

/* ══════════════════════════════
   LAYOUT: DESKTOP
══════════════════════════════ */
body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 32px 20px;
}

/* ══════════════════════════════
   SIDE PANEL
══════════════════════════════ */
.side-panel {
  width: 340px;
  flex-shrink: 0;
  order: 2;
}

.side-panel-inner {
  background: #1e293b;
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #f1f5f9;
  border: 1px solid #334155;
  position: sticky;
  top: 32px;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.side-app-name { font-size: 20px; font-weight: 800; color: #f1f5f9; }
.side-tagline { font-size: 12px; color: #94a3b8; }

.side-variant-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #7c2d12;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.side-intro { font-size: 13px; color: #cbd5e1; line-height: 1.6; margin-bottom: 20px; }

.side-section { margin-bottom: 20px; }
.side-section-title { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }

.monetization-grid { display: grid; gap: 8px; }
.mono-item {
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mono-item.mono-paid { border-color: var(--gold); }
.mono-item.mono-platform { border-color: var(--blue-light); }
.mono-icon { font-size: 18px; flex-shrink: 0; }
.mono-label { font-size: 12px; font-weight: 700; color: #f1f5f9; }
.mono-desc { font-size: 11px; color: #94a3b8; line-height: 1.5; }

.plan-mini-list { display: flex; flex-direction: column; gap: 6px; }
.plan-mini {
  background: #0f172a;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #1e293b;
}
.plan-mini.plan-mini-gold { border-color: var(--gold); }
.plan-mini.plan-mini-pro { border-color: var(--blue-light); }
.plan-mini-name { font-size: 12px; font-weight: 700; color: #f1f5f9; min-width: 70px; }
.plan-mini-price { font-size: 12px; font-weight: 700; color: var(--gold); min-width: 40px; }
.plan-mini-desc { font-size: 11px; color: #64748b; flex: 1; }

.three-sided { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ts-node {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.ts-consumer { background: var(--blue-50); color: var(--blue); }
.ts-platform { background: #1e293b; color: #94a3b8; border: 1px solid #334155; }
.ts-provider { background: var(--gold-50); color: var(--gold); }
.ts-arrow { color: #475569; font-size: 14px; }
.side-small { font-size: 11px; color: #64748b; line-height: 1.6; margin-top: 8px; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi-item {
  background: #0f172a;
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.kpi-val { font-size: 18px; font-weight: 800; color: var(--blue-light); display: block; }
.kpi-label { font-size: 10px; color: #64748b; display: block; margin-top: 2px; }

.side-cta-block { display: flex; flex-direction: column; gap: 8px; }
.side-cta-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: var(--blue);
  color: white;
  border: none;
  transition: background 0.2s;
}
.side-cta-btn:hover { background: var(--blue-light); }
.side-cta-outline {
  background: transparent;
  border: 1px solid #334155;
  color: #94a3b8;
}
.side-cta-outline:hover { background: #1e293b; border-color: #475569; }

/* ══════════════════════════════
   PHONE FRAME
══════════════════════════════ */
.phone-frame-wrapper {
  order: 1;
  flex-shrink: 0;
}

.phone-frame {
  width: 390px;
  height: 844px;
  background: var(--surface);
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 2px #334155,
    0 0 0 6px #0f172a,
    var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0f172a;
  border-radius: 0 0 16px 16px;
  z-index: 100;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface);
  flex-shrink: 0;
  z-index: 10;
}
.status-icons { display: flex; gap: 4px; }

/* ══════════════════════════════
   SCREENS
══════════════════════════════ */
.screen {
  display: none;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  background: var(--surface);
  scrollbar-width: none;
}
.screen::-webkit-scrollbar { display: none; }
.screen.active { display: flex; }

/* ══════════════════════════════
   BOTTOM NAV
══════════════════════════════ */
.bottom-nav {
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  flex-shrink: 0;
  z-index: 50;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.2s;
}
.nav-icon { font-size: 20px; }
.nav-label { font-size: 10px; font-weight: 500; color: var(--muted); }
.nav-item.active .nav-label { color: var(--blue); font-weight: 700; }
.nav-item.active .nav-icon { filter: none; }

/* FAB */
.fab {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 26px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30,64,175,0.4);
  z-index: 60;
  line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: translateX(-50%) scale(1.08); box-shadow: 0 6px 24px rgba(30,64,175,0.5); }

/* ══════════════════════════════
   COMMON COMPONENTS
══════════════════════════════ */
.screen-header-simple {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.back-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: none; cursor: pointer;
  font-size: 16px;
  color: var(--text-primary);
}
.screen-header-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }

.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #1d3a9e; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--border); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #7c2d12;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}
.btn-gold:hover { filter: brightness(1.05); }

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-full { width: 100%; }
.mt-8 { margin-top: 8px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blue); }
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: var(--blue); }

.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: none; cursor: pointer; font-size: 16px;
  position: relative;
}
.notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  border: 1.5px solid var(--white);
}

.hidden { display: none !important; }
.link-btn {
  background: none; border: none;
  color: var(--blue); font-family: 'Heebo', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: underline;
}

/* ══════════════════════════════
   LANDING SCREEN
══════════════════════════════ */
#screen-landing {
  background: var(--white);
  padding-bottom: 20px;
}

.landing-hero {
  background: linear-gradient(160deg, var(--blue) 0%, #1d4ed8 60%, #2563eb 100%);
  padding: 32px 20px 28px;
  text-align: center;
  color: white;
}
.landing-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.landing-logo-mark {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.landing-logo-text { font-size: 24px; font-weight: 800; }
.landing-headline { font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.landing-sub { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 16px; }
.landing-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.l-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.landing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
.ls-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.ls-card.ls-provider { border-color: var(--gold-border); background: var(--gold-50); }
.ls-icon { font-size: 28px; margin-bottom: 6px; }
.ls-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.ls-desc { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.ls-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
}
.ls-btn-blue { background: var(--blue); color: white; }
.ls-btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #7c2d12; }

.landing-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--blue-50);
  margin: 0 16px;
  border-radius: var(--radius-md);
}
.lt-item { text-align: center; }
.lt-num { display: block; font-size: 16px; font-weight: 800; color: var(--blue); }
.lt-lab { font-size: 10px; color: var(--muted); }
.lt-divider { width: 1px; height: 32px; background: var(--border); }

.landing-features { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.lf-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.lf-icon { color: var(--green); font-weight: 700; }

.landing-testimonials { padding: 0 16px 16px; }
.landing-section-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.testimonial-scroll { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 14px;
  border-right: 3px solid var(--blue);
}
.t-stars { color: var(--gold); font-size: 12px; margin-bottom: 6px; }
.t-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 6px; font-style: italic; }
.t-author { font-size: 11px; font-weight: 700; color: var(--muted); }

.landing-footer-nav { padding: 0 16px 16px; text-align: center; }

/* ══════════════════════════════
   LOGIN
══════════════════════════════ */
.login-content { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.login-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; justify-content: center; }
.login-logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: white;
}
.login-logo-name { font-size: 22px; font-weight: 800; color: var(--text-primary); }
.login-form { display: flex; flex-direction: column; gap: 0; }
.login-divider { text-align: center; color: var(--muted); font-size: 12px; margin: 12px 0; position: relative; }
.login-divider::before, .login-divider::after {
  content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border);
}
.login-divider::before { right: 0; }
.login-divider::after { left: 0; }
.btn-social {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Heebo', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.btn-social:hover { background: var(--surface-2); }
.login-switch { text-align: center; font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════
   ONBOARDING
══════════════════════════════ */
.onboarding-header { padding: 20px 20px 0; text-align: center; }
.ob-step-dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 16px; }
.ob-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.ob-dot.ob-dot-active { background: var(--blue); width: 24px; border-radius: 4px; }
.ob-title { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.ob-sub { font-size: 13px; color: var(--text-muted); }

.ob-role-section { padding: 20px; }
.ob-section-label { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.ob-role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ob-role-card {
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 4px;
}
.ob-role-card.ob-role-selected { border-color: var(--blue); background: var(--blue-50); }
.ob-role-icon { font-size: 28px; }
.ob-role-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.ob-role-desc { font-size: 11px; color: var(--text-muted); }

.ob-interests-section { padding: 0 20px; }
.ob-interests-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ob-interest {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  background: var(--white);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.ob-interest.ob-interest-selected { border-color: var(--blue); background: var(--blue-50); color: var(--blue); font-weight: 700; }

.ob-location { padding: 20px; }
.ob-location-pill {
  display: flex; align-items: center;
  background: var(--surface-2); border-radius: var(--radius-full);
  padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--text-primary);
  border: 1px solid var(--border);
  gap: 8px;
}
.ob-change { color: var(--blue); font-weight: 700; margin-right: auto; cursor: pointer; }
.ob-cta { margin: 0 20px 20px; }

/* ══════════════════════════════
   HOME SCREEN
══════════════════════════════ */
.home-header {
  background: var(--white);
  padding: 12px 16px 0;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.home-header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.home-greeting { display: flex; align-items: center; gap: 10px; }
.home-logo-small {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: white;
}
.home-hello { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.home-location { font-size: 11px; color: var(--text-muted); }
.home-header-actions { display: flex; gap: 8px; }

.search-bar-wrap {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 0 12px;
  margin-bottom: 12px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
  gap: 8px;
}
.search-bar-wrap:focus-within { border-color: var(--blue); background: var(--white); }
.search-icon { font-size: 16px; color: var(--muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  background: none;
  padding: 12px 0;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
}
.search-input::placeholder { color: var(--muted-light); }
.search-filter-btn {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: 'Heebo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.home-tabs {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.home-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2.5px solid transparent;
  transition: all 0.2s;
}
.home-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-count {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}
.home-tab.active .tab-count { background: var(--blue-100); color: var(--blue); }

.home-tab-content { padding: 12px; display: flex; flex-direction: column; gap: 12px; }

/* Filter chips */
.filter-chips-row { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.filter-chips-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip.filter-chip-active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.sort-btn {
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.sort-btn.sort-btn-active { background: var(--blue-50); border-color: var(--blue); color: var(--blue); }

/* Category section */
.category-section {}
.category-section-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.category-tile:hover { border-color: var(--blue); background: var(--blue-50); }
.category-tile.active { border-color: var(--blue); background: var(--blue-50); }
.cat-tile-icon { font-size: 20px; }
.cat-tile-name { font-size: 10px; font-weight: 600; color: var(--text-primary); text-align: center; }
.cat-tile-count { font-size: 9px; color: var(--muted-light); }

/* Provider cards grid */
.providers-grid { display: flex; flex-direction: column; gap: 12px; }

/* Provider Card */
.provider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.provider-card:hover { box-shadow: var(--shadow-md); }
.provider-card.premium { border-color: var(--gold-border); box-shadow: 0 2px 12px rgba(217,119,6,0.15); }

.provider-card-inner { padding: 14px; }

.provider-card-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }

.provider-avatar {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: white;
  flex-shrink: 0;
  position: relative;
}
.provider-avatar-initials { font-family: 'Heebo', sans-serif; }

.provider-card-info { flex: 1; min-width: 0; }
.provider-card-name { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.provider-card-cat { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }

.provider-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700;
}
.badge-verified { background: var(--green-50); color: var(--green); border: 1px solid #a7f3d0; }
.badge-premium { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #7c2d12; }
.badge-available { background: var(--green-50); color: var(--green); }
.badge-busy { background: #fff7ed; color: #c2410c; }
.badge-cat { background: var(--blue-50); color: var(--blue); border: 1px solid var(--blue-100); }

.provider-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating-val { font-weight: 700; color: var(--text-primary); }
.rating-count { color: var(--muted); }

.provider-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}
.meta-item { display: flex; align-items: center; gap: 3px; }

.provider-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.provider-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.provider-tag {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.provider-card-actions { display: flex; gap: 8px; }
.btn-message {
  flex: 1;
  padding: 10px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-message:hover { background: #1d3a9e; }
.btn-view-profile {
  flex: 1;
  padding: 10px;
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-view-profile:hover { background: var(--border); }

/* Premium banner on card */
.premium-card-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #7c2d12;
}

/* Community feed items */
.community-feed { display: flex; flex-direction: column; gap: 10px; }
.community-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.community-card:hover { box-shadow: var(--shadow-md); }
.community-card.urgent { border-color: var(--red); }
.community-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.community-type-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); }
.type-event { background: var(--blue-50); color: var(--blue); }
.type-help { background: #fff1f2; color: #be123c; }
.type-giveaway { background: var(--green-50); color: var(--green); }
.type-sale { background: var(--gold-50); color: var(--gold); }
.type-service-request { background: #f3f0ff; color: #7c3aed; }
.community-time { font-size: 11px; color: var(--muted); margin-right: auto; }
.community-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.community-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 8px; }
.community-footer { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--muted); }
.community-author { display: flex; align-items: center; gap: 4px; }
.community-dist { display: flex; align-items: center; gap: 3px; }
.urgent-badge {
  background: var(--red);
  color: white;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ══════════════════════════════
   HOT SCREEN
══════════════════════════════ */
.hot-feed { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.hot-section-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════
   MAP SCREEN
══════════════════════════════ */
.map-header {
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.map-header-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.map-legend { display: flex; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-blue { background: var(--blue); }
.legend-gold { background: var(--gold); }
.map-container { flex: 1; min-height: 0; }
.map-panel {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  flex-shrink: 0;
  min-height: 44px;
}

/* ══════════════════════════════
   LIST SCREEN
══════════════════════════════ */
.list-filters { display: flex; gap: 0; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.list-filter-btn {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.list-filter-btn:first-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.list-filter-btn:last-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.list-filter-btn.list-filter-active { background: var(--blue); border-color: var(--blue); color: white; }
.list-feed { padding: 12px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════
   ITEM DETAIL
══════════════════════════════ */
.item-detail-content { padding: 16px; }
.item-detail-type { margin-bottom: 8px; }
.item-detail-title { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; line-height: 1.3; }
.item-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; font-size: 12px; color: var(--text-muted); }
.item-detail-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.item-detail-author { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--surface-2); border-radius: var(--radius-md); margin-bottom: 16px; }
.item-author-avatar { width: 36px; height: 36px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; }
.item-author-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.item-author-verified { font-size: 11px; color: var(--green); }
.item-detail-actions { display: flex; gap: 8px; flex-direction: column; }

/* ══════════════════════════════
   PROVIDER PROFILE SCREEN
══════════════════════════════ */
.provider-profile-content { display: flex; flex-direction: column; }
.pp-header-back { position: absolute; top: 48px; right: 16px; z-index: 10; }
.pp-header {
  position: relative;
  padding: 0;
}
.pp-cover {
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 0 16px 12px;
}
.pp-avatar-wrap {
  position: absolute;
  bottom: -28px;
  right: 16px;
}
.pp-avatar {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: white;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}
.pp-back-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  backdrop-filter: blur(4px);
}
.pp-info { padding: 36px 16px 16px; border-bottom: 1px solid var(--border); background: var(--white); }
.pp-name-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
.pp-name { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.pp-save-btn { width: 36px; height: 36px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; }
.pp-cat-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.pp-cat { font-size: 13px; color: var(--text-muted); }
.pp-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pp-meta-row { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
.pp-meta-item { display: flex; align-items: center; gap: 4px; }
.pp-actions { display: flex; gap: 8px; }
.btn-pp-message { flex: 2; padding: 12px; background: var(--blue); color: white; border: none; border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; }
.btn-pp-contact { flex: 1; padding: 12px; background: var(--surface-2); color: var(--text-primary); border: 1px solid var(--border); border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; }

.pp-section { padding: 16px; border-bottom: 1px solid var(--border); background: var(--white); margin-top: 8px; }
.pp-section-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.pp-about { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.pp-tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.pp-tag { padding: 5px 10px; border-radius: var(--radius-full); background: var(--blue-50); color: var(--blue); font-size: 12px; font-weight: 600; border: 1px solid var(--blue-100); }

.pp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.pp-gallery-item { height: 80px; border-radius: var(--radius-sm); background: linear-gradient(135deg, #94a3b8, #64748b); }
.pp-gallery-item:nth-child(2) { background: linear-gradient(135deg, #93c5fd, #60a5fa); }
.pp-gallery-item:nth-child(3) { background: linear-gradient(135deg, #6ee7b7, #34d399); }

.review-card { background: var(--surface-2); border-radius: var(--radius-md); padding: 12px; margin-bottom: 8px; }
.review-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-author-avatar { width: 30px; height: 30px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: white; }
.review-author-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.review-date { font-size: 11px; color: var(--muted); margin-right: auto; }
.review-stars { color: var(--gold); font-size: 11px; margin-bottom: 4px; }
.review-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

.similar-providers { display: flex; flex-direction: column; gap: 8px; }
.similar-provider-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; background: var(--surface-2); border-radius: var(--radius-md);
  cursor: pointer;
}
.similar-avatar { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.similar-info { flex: 1; }
.similar-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.similar-cat { font-size: 11px; color: var(--muted); }
.similar-rating { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ══════════════════════════════
   CREATE SCREEN
══════════════════════════════ */
.create-tabs { display: flex; border-bottom: 1px solid var(--border); }
.create-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; color: var(--muted);
  transition: all 0.2s;
}
.create-tab.create-tab-active { color: var(--blue); border-bottom-color: var(--blue); }
.create-section { padding: 16px; }
.create-cat-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-pick-btn {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 12px; font-weight: 600;
  cursor: pointer; color: var(--text-secondary);
  transition: all 0.2s;
}
.cat-pick-btn.cat-pick-active { border-color: var(--blue); background: var(--blue-50); color: var(--blue); }

/* ══════════════════════════════
   RESPONDERS
══════════════════════════════ */
.responders-list { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.responder-card { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: var(--radius-md); padding: 12px; border: 1px solid var(--border); }
.responder-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.responder-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.responder-eta { font-size: 12px; color: var(--green); font-weight: 600; }
.responder-dist { font-size: 11px; color: var(--muted); }
.responders-footer { padding: 16px; }

/* ══════════════════════════════
   NOTIFICATIONS
══════════════════════════════ */
.notif-list { padding: 8px; }
.notif-item { display: flex; gap: 10px; padding: 12px; border-radius: var(--radius-md); margin-bottom: 4px; transition: background 0.2s; }
.notif-item:hover { background: var(--surface-2); }
.notif-item.unread { background: var(--blue-50); }
.notif-icon { font-size: 20px; flex-shrink: 0; }
.notif-body { flex: 1; }
.notif-text { font-size: 13px; color: var(--text-primary); line-height: 1.5; }
.notif-time { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ══════════════════════════════
   MY POSTS
══════════════════════════════ */
.my-posts-list { padding: 12px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════
   ANALYTICS DASHBOARD
══════════════════════════════ */
.analytics-dashboard { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.analytics-profile-header { display: flex; align-items: center; gap: 12px; }
.analytics-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: white; }
.analytics-name { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.analytics-cat { font-size: 12px; color: var(--muted); }
.analytics-plan-badge { margin-right: auto; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 4px 10px; font-size: 11px; font-weight: 700; color: var(--text-muted); }

.analytics-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.akpi-card { background: var(--white); border-radius: var(--radius-md); padding: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.akpi-val { font-size: 28px; font-weight: 800; color: var(--text-primary); }
.akpi-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.akpi-trend { font-size: 11px; font-weight: 700; margin-top: 4px; }
.akpi-up { color: var(--green); }
.akpi-good { color: var(--blue); }

.analytics-chart-placeholder { background: var(--white); border-radius: var(--radius-md); padding: 14px; border: 1px solid var(--border); }
.chart-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; justify-content: flex-end; }
.bar { width: 100%; background: var(--blue-100); border-radius: 4px 4px 0 0; min-height: 4px; transition: background 0.2s; }
.bar.bar-today { background: var(--blue); }
.bar-item span { font-size: 9px; color: var(--muted); }

.analytics-upgrade-prompt {
  background: linear-gradient(135deg, var(--gold-50), #fff8e1);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
}
.upgrade-crown { font-size: 28px; margin-bottom: 6px; }
.upgrade-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.upgrade-perks { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 14px; }
.upgrade-perks span { font-size: 11px; color: var(--text-secondary); background: var(--white); border-radius: var(--radius-full); padding: 3px 8px; border: 1px solid var(--border); }

.analytics-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qa-btn {
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s;
}
.qa-btn:hover { background: var(--border); }

/* ══════════════════════════════
   PRICING PAGE
══════════════════════════════ */
.pricing-page { padding: 16px; }
.pricing-hero { text-align: center; margin-bottom: 20px; }
.pricing-headline { font-size: 22px; font-weight: 800; color: var(--text-primary); line-height: 1.3; margin-bottom: 6px; }
.pricing-sub { font-size: 13px; color: var(--muted); }

.pricing-table { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.pricing-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pricing-card.popular { border-color: var(--gold-border); box-shadow: 0 4px 20px rgba(217,119,6,0.18); }
.pricing-card.pro { border-color: var(--blue); }
.pricing-card-header { padding: 16px; border-bottom: 1px solid var(--border); }
.pricing-card.popular .pricing-card-header { background: linear-gradient(135deg, var(--gold-50), #fef9c3); }
.pricing-card.pro .pricing-card-header { background: var(--blue-50); }
.pricing-plan-name { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; display: flex; align-items: center; gap: 8px; }
.plan-popular-tag { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #7c2d12; font-size: 10px; padding: 2px 8px; border-radius: var(--radius-full); }
.pricing-plan-sub { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.pricing-plan-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-size: 32px; font-weight: 900; color: var(--text-primary); }
.pricing-card.popular .price-amount { color: var(--gold); }
.pricing-card.pro .price-amount { color: var(--blue); }
.price-period { font-size: 13px; color: var(--muted); }
.pricing-card-body { padding: 14px; }
.pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.pricing-feature-check { color: var(--green); font-weight: 700; }
.pricing-feature-x { color: var(--muted-light); }
.pricing-cta { margin-top: 14px; }
.btn-plan-free { width: 100%; padding: 11px; border: 2px solid var(--border); border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; background: var(--white); color: var(--text-primary); transition: background 0.2s; }
.btn-plan-free:hover { background: var(--surface-2); }
.btn-plan-gold { width: 100%; padding: 11px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; color: #7c2d12; }
.btn-plan-pro { width: 100%; padding: 11px; background: var(--blue); border: none; border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; color: white; }

.pricing-compare { margin-bottom: 16px; }
.pricing-compare-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.pricing-compare-table { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-row.compare-header { background: var(--surface-2); }
.compare-cell { padding: 8px 6px; font-size: 11px; text-align: center; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); }
.compare-cell:first-child { text-align: right; justify-content: flex-start; padding-right: 10px; color: var(--text-primary); font-weight: 500; }
.compare-header .compare-cell { font-weight: 700; font-size: 12px; }
.compare-header .compare-cell:nth-child(3) { color: var(--gold); }
.compare-header .compare-cell:nth-child(4) { color: var(--blue); }

.pricing-testimonial { background: var(--blue-50); border-radius: var(--radius-lg); padding: 16px; text-align: center; margin-bottom: 12px; border-right: 4px solid var(--blue); }
.pricing-footer-note { text-align: center; font-size: 12px; color: var(--muted); }

/* ══════════════════════════════
   PROFILE
══════════════════════════════ */
.profile-content { padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.profile-avatar-big { width: 80px; height: 80px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; color: white; }
.profile-name { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.profile-location { font-size: 13px; color: var(--muted); }
.profile-stats { display: flex; gap: 24px; }
.pstat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pstat-val { font-size: 18px; font-weight: 800; color: var(--blue); }
.pstat-lab { font-size: 11px; color: var(--muted); }
.profile-menu { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.pmenu-item { width: 100%; padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-align: right; color: var(--text-primary); transition: background 0.2s; display: flex; align-items: center; gap: 10px; }
.pmenu-item:hover { background: var(--surface-2); }
.pmenu-danger { color: var(--red); }

/* ══════════════════════════════
   SETTINGS
══════════════════════════════ */
.settings-content { padding: 16px; }
.settings-section-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 12px 0 6px; }
.settings-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-primary); }
.settings-val { font-size: 13px; color: var(--muted); }
.settings-toggle { width: 44px; height: 24px; background: var(--border); border-radius: 12px; cursor: pointer; position: relative; transition: background 0.2s; }
.settings-toggle::after { content: ''; position: absolute; right: 3px; top: 3px; width: 18px; height: 18px; background: white; border-radius: 50%; transition: right 0.2s; box-shadow: var(--shadow-sm); }
.settings-toggle.on { background: var(--green); }
.settings-toggle.on::after { right: 23px; }

/* ══════════════════════════════
   BOTTOM SHEET
══════════════════════════════ */
.bottom-sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.bottom-sheet {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 95;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.bs-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 4px;
}
.bs-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px 12px; border-bottom: 1px solid var(--border); }
.bs-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.bs-close { background: var(--surface-2); border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.bs-body { padding: 16px; }
.bs-label { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.bs-quick-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.bs-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-primary); cursor: pointer; }
.bs-check input { accent-color: var(--blue); width: 16px; height: 16px; }

.bs-success { padding: 24px; text-align: center; }
.bs-success-icon { width: 56px; height: 56px; background: var(--green-50); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--green); margin: 0 auto 12px; }
.bs-success-title { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.bs-success-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ══════════════════════════════
   SEARCH ENHANCEMENTS
══════════════════════════════ */
.search-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.search-result-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  padding: 4px 16px 8px;
  animation: fadeSlideIn 0.2s ease-out;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   PROVIDER PROFILE IMPROVEMENTS
══════════════════════════════ */
.pp-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--green);
  background: var(--green-50);
  border-radius: 20px;
  padding: 3px 10px;
  margin: 6px 0 2px;
  font-weight: 600;
}

.pp-sticky-cta {
  position: sticky;
  bottom: 60px; /* above bottom nav */
  z-index: 50;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.pp-sticky-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  flex: 1;
}
.btn-pp-message-sticky {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.btn-pp-message-sticky:active { opacity: 0.85; }

/* ══════════════════════════════
   BOOKING FLOW IN BOTTOM SHEET
══════════════════════════════ */
.bs-booking-prompt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.bs-booking-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.bs-time-slots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}
.bs-time-slot {
  flex: 1;
  max-width: 90px;
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 12px;
  color: var(--text-primary);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.bs-time-slot:hover { border-color: var(--blue); background: var(--blue-50, #eff6ff); }
.bs-time-slot:active { transform: scale(0.95); }
.bs-skip-booking {
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  text-decoration: underline;
}

.bs-booking-confirmed {
  padding: 8px 0;
  animation: fadeSlideIn 0.3s ease-out;
}
.bs-confirmed-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.bs-confirmed-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.bs-confirmed-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}
.bs-confirmed-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════════════════════
   ANALYTICS — EARNINGS CHART
══════════════════════════════ */
.earnings-chart-svg {
  width: 100%;
  height: 120px;
  display: block;
  margin: 8px 0 4px;
}

/* ══════════════════════════════
   ANALYTICS — PENDING REQUESTS
══════════════════════════════ */
.analytics-pending-section {
  margin: 16px 0;
  background: var(--surface);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.analytics-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pending-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red, #dc2626);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.pending-request-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.pending-request-card:last-child { border-bottom: none; }
.pending-req-body { flex: 1; }
.pending-req-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.pending-req-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.btn-reply-pending {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.btn-reply-pending:active { transform: scale(0.95); opacity: 0.85; }

/* ══════════════════════════════
   CATEGORY TILE - updated (no count span)
══════════════════════════════ */
.cat-tile-name {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: var(--text-secondary);
  word-break: keep-all;
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 900px) {
  body { flex-direction: column; align-items: center; padding: 16px; gap: 24px; }
  .side-panel { width: 100%; max-width: 390px; order: 2; }
  .side-panel-inner { position: static; }
  .phone-frame-wrapper { order: 1; }
  .phone-frame { width: 100%; max-width: 390px; height: 780px; }
}

@media (max-width: 768px) {
  body { padding: 0; }
  .phone-frame { border-radius: 0; height: 100dvh; max-height: none; }
}

@media (max-width: 420px) {
  body { padding: 0; }
  .phone-frame { height: 100dvh; border-radius: 0; }
  .phone-notch { display: none; }
  .side-panel { display: none; }
}

/* ─── Tomorrow Availability Badge ─── */
.badge-tomorrow {
  background: #fef9c3;
  color: #854d0e;
}

/* ─── Voice Search Mic Button ─── */
.search-mic-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 15px;
  padding: 0 8px 0 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.search-mic-btn:hover,
.search-mic-btn.mic-listening {
  color: #ef4444;
}
@keyframes mic-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.mic-listening i { animation: mic-pulse 0.8s ease-in-out infinite; }

/* ─── Category Breadcrumb in List Screen ─── */
.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 13px;
  background: #f0f9ff;
  border-bottom: 1px solid var(--border);
  direction: rtl;
}
.cat-breadcrumb-all {
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
}
.cat-breadcrumb-all:hover { text-decoration: underline; }
.cat-breadcrumb-sep { color: var(--muted); }
.cat-breadcrumb-current {
  color: var(--ink);
  font-weight: 700;
}
.cat-breadcrumb-clear {
  margin-inline-start: auto;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  line-height: 1;
}
.cat-breadcrumb-clear:hover { background: var(--surface); color: var(--ink); }
