/* ================================================================
   GulshanSync Social Network — Clean LinkedIn-Style Design
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #16a34a;
  --primary-hover: #15803d;
  --primary-light: #dcfce7;
  --primary-bg: #f0fdf4;
  --bg: #f3f2ef;
  --white: #ffffff;
  --text-1: #191919;
  --text-2: #666666;
  --text-3: #999999;
  --border: #e0e0e0;
  --border-light: #efefef;
  --shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-hover: 0 0 0 1px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --navbar-h: 52px;
  --bottomnav-h: 52px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width:992px) { body { padding-top: var(--navbar-h); } }
@media (max-width:991px) { body { padding-top: var(--navbar-h); padding-bottom: var(--bottomnav-h); } }

/* Mobile Search Bar */
.mobile-search-bar {
  display: none;
  position: fixed; top: var(--navbar-h); left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 8px 16px;
}
.mobile-search-bar.show { display: block; }
.mobile-search-bar .input-icon { position: relative; }
.mobile-search-bar .input-icon .icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 14px; pointer-events: none;
}
.mobile-search-bar input {
  width: 100%; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); padding: 0 12px 0 36px;
  font-size: 14px; background: var(--bg);
  font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.mobile-search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.15);
  background: var(--white);
}
@media (min-width:992px) { .mobile-search-bar { display: none !important; } }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ================================================================
   NAVBAR
   ================================================================ */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.top-nav .inner {
  max-width: 1128px; width: 100%; margin: 0 auto;
  padding: 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.brand {
  font-weight: 800; font-size: 1.2rem; color: var(--primary);
  letter-spacing: -0.5px; white-space: nowrap;
}
.search-box {
  flex: 1; max-width: 360px; position: relative;
}
.search-box input {
  width: 100%; height: 36px; border-radius: 4px;
  border: 1px solid var(--border); padding: 0 12px 0 36px;
  font-size: 14px; background: var(--bg);
  font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.15);
  background: var(--white);
}
.search-box .search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 14px; pointer-events: none;
}
.nav-icons { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; color: var(--text-3); font-size: 18px;
  position: relative; transition: color .15s, background .15s; border: none; background: none; cursor: pointer;
}
.nav-icon:hover, .nav-icon.active { color: var(--text-1); background: var(--bg); }
.nav-icon.active { color: var(--primary); }
.nav-icon .badge-dot {
  position: absolute; top: 8px; right: 8px;
  width: 7px; height: 7px; background: #ef4444;
  border-radius: 50%; border: 1.5px solid var(--white);
}
.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
}
.nav-divider { width: 1px; height: 24px; background: var(--border); margin: 0 6px; }
.dropdown-menu {
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hover); padding: 4px; min-width: 180px;
  font-size: 14px;
}
.dropdown-item { border-radius: 4px; padding: 8px 12px; }
.dropdown-item:hover { background: var(--bg); }
.dropdown-item i { margin-right: 8px; color: var(--text-3); }

/* ================================================================
   BOTTOM NAV (Mobile)
   ================================================================ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--bottomnav-h); background: var(--white);
  border-top: 1px solid var(--border);
  display: none; align-items: center; justify-content: space-around;
}
@media (max-width:991px) { .bottom-nav { display: flex; } }
.bnav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 1px; font-size: 10px; font-weight: 600; color: var(--text-3);
  padding: 4px 0; border: none; background: none; cursor: pointer;
  transition: color .15s; text-decoration: none;
}
.bnav-item i { font-size: 20px; }
.bnav-item.active { color: var(--primary); }
.bnav-post {
  background: var(--primary); color: var(--white) !important;
  border-radius: 4px; padding: 6px 16px;
  font-size: 11px; gap: 3px;
}
.bnav-post i { font-size: 16px; }

/* ================================================================
   LAYOUT
   ================================================================ */
.layout {
  max-width: 1128px; margin: 0 auto;
  padding: 24px 16px 0;
  display: grid; gap: 24px;
}
@media (min-width:992px) {
  .layout-3 { grid-template-columns: 225px 1fr 300px; }
  .layout-2 { grid-template-columns: 1fr 300px; }
  .layout-1 { grid-template-columns: 1fr; max-width: 680px; margin-left: auto; margin-right: auto; }
}
@media (max-width:991px) {
  .layout { padding: 12px 12px 0; gap: 12px; }
  .layout-3, .layout-2 { grid-template-columns: 1fr; }
  .sidebar-left, .sidebar-right { display: none; }
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow); overflow: hidden;
}
.card + .card { margin-top: 8px; }
.card-body { padding: 16px; }
.card-header {
  padding: 12px 16px; font-weight: 700; font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}
.card-footer {
  padding: 8px 16px; border-top: 1px solid var(--border-light);
  background: var(--white);
}

/* ================================================================
   SIDEBAR PROFILE
   ================================================================ */
.profile-banner {
  height: 56px; background: var(--primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.profile-banner img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.sidebar-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--white);
  position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
  background: var(--bg);
}
.profile-info { text-align: center; padding: 40px 16px 16px; }
.profile-info h6 { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.profile-info p { font-size: 12px; color: var(--text-2); }
.profile-stats {
  display: flex; justify-content: center; gap: 16px;
  padding: 12px 16px; border-top: 1px solid var(--border-light);
  font-size: 12px; color: var(--text-2);
}
.profile-stats strong { color: var(--primary); }

/* Sidebar Nav */
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: var(--text-2); transition: background .15s, color .15s;
  border-radius: 0;
}
.sidebar-nav a:hover { background: var(--bg); color: var(--text-1); }
.sidebar-nav a i { width: 20px; text-align: center; color: var(--text-3); font-size: 16px; }
.sidebar-nav a:hover i { color: var(--primary); }

/* Sidebar Suggest */
.suggest-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px; transition: background .15s;
}
.suggest-item:hover { background: var(--bg); }
.suggest-item img { width: 40px; height: 40px; border-radius: 50%; }
.suggest-item .info { flex: 1; }
.suggest-item .info h6 { font-size: 13px; font-weight: 600; margin: 0; }
.suggest-item .info p { font-size: 11px; color: var(--text-3); margin: 0; }

/* Trending */
.trend-item { display: block; padding: 8px 16px; transition: background .15s; }
.trend-item:hover { background: var(--bg); }
.trend-item .label { font-size: 11px; color: var(--text-3); }
.trend-item .tag { font-size: 13px; font-weight: 700; color: var(--text-1); }
.trend-item .count { font-size: 11px; color: var(--text-3); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary-gs {
  background: var(--primary); color: var(--white); border: none;
  border-radius: var(--radius); padding: 6px 20px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.btn-primary-gs:hover { background: var(--primary-hover); color: var(--white); }

.btn-outline-gs {
  background: transparent; color: var(--primary); border: 1px solid var(--primary);
  border-radius: var(--radius); padding: 5px 20px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.btn-outline-gs:hover { background: var(--primary-light); }

.btn-ghost {
  background: transparent; color: var(--text-2); border: none;
  border-radius: 4px; padding: 6px 12px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.btn-ghost:hover { background: var(--bg); color: var(--text-1); }

.btn-sm-gs { padding: 4px 14px; font-size: 13px; }
.btn-lg-gs { padding: 10px 28px; font-size: 15px; }

/* ================================================================
   POST CARD
   ================================================================ */
.post-card .post-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 0;
}
.post-card .post-head img { width: 44px; height: 44px; border-radius: 50%; }
.post-card .post-head .meta { flex: 1; }
.post-card .post-head .meta h6 { font-size: 14px; font-weight: 600; margin: 0; }
.post-card .post-head .meta span { font-size: 12px; color: var(--text-3); }
.post-card .post-head .meta .verified { color: var(--primary); font-size: 13px; margin-left: 2px; }
.post-card .post-head .more-btn {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: none; cursor: pointer; color: var(--text-3); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.post-card .post-head .more-btn:hover { background: var(--bg); }

.post-card .post-content { padding: 8px 16px 12px; font-size: 14px; line-height: 1.6; }
.post-card .post-content img {
  width: 100%; border-radius: var(--radius); margin-top: 8px;
}

.post-card .post-actions {
  display: flex; gap: 0; padding: 4px 8px 8px;
}
.post-card .post-actions button,
.post-card .post-actions a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 4px; border: none; background: none; cursor: pointer;
  padding: 8px 4px; border-radius: 4px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  font-family: inherit; transition: background .15s, color .15s;
  text-decoration: none;
}
.post-card .post-actions button:hover,
.post-card .post-actions a:hover {
  background: var(--bg); color: var(--primary);
}
.post-card .post-actions button i,
.post-card .post-actions a i { font-size: 16px; }

/* ================================================================
   COMPOSER
   ================================================================ */
.composer { display: flex; align-items: center; gap: 10px; padding: 12px 16px; }
.composer img { width: 44px; height: 44px; border-radius: 50%; }
.composer a {
  flex: 1; height: 40px; border: 1px solid var(--border);
  border-radius: 40px; display: flex; align-items: center; padding: 0 16px;
  font-size: 14px; color: var(--text-3); transition: background .15s;
}
.composer a:hover { background: var(--bg); }
.composer-actions {
  display: flex; gap: 0; border-top: 1px solid var(--border-light);
}
.composer-actions a,
.composer-actions button {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 8px; border: none; background: none;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  font-family: inherit; cursor: pointer; transition: background .15s;
}
.composer-actions a:hover,
.composer-actions button:hover { background: var(--bg); }

/* ================================================================
   FORMS
   ================================================================ */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-1); margin-bottom: 4px;
}
.form-input {
  width: 100%; height: 40px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 14px; font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: var(--white); color: var(--text-1);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.12);
}
select.form-input { appearance: auto; }
textarea.form-input { height: auto; padding: 10px 12px; resize: vertical; min-height: 80px; }

.input-icon {
  position: relative;
}
.input-icon .icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 15px; pointer-events: none; z-index: 1;
}
.input-icon .form-input { padding-left: 36px; }

/* ================================================================
   AUTH PAGES
   ================================================================ */
.auth-page {
  background: var(--white); min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  width: 100%; max-width: 400px; padding: 32px;
}
.auth-card .logo {
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  text-align: center; margin-bottom: 4px;
}
.auth-card .logo i { margin-right: 4px; }
.auth-card .subtitle {
  text-align: center; font-size: 14px; color: var(--text-2);
  margin-bottom: 28px;
}
.auth-card .divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
  font-size: 12px; color: var(--text-3);
}
.auth-card .divider::before, .auth-card .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-card .link { color: var(--primary); font-weight: 600; }
.auth-card .link:hover { text-decoration: underline; }

/* ================================================================
   NOTIFICATIONS
   ================================================================ */
.notif-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--border-light);
  transition: background .15s; cursor: pointer; text-decoration: none; color: inherit;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--bg); }
.notif-item.unread { background: var(--primary-bg); }
.notif-item.unread:hover { background: var(--primary-light); }
.notif-item img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.notif-item .body { flex: 1; font-size: 13px; line-height: 1.5; }
.notif-item .body strong { font-weight: 600; }
.notif-item .time { font-size: 11px; color: var(--text-3); white-space: nowrap; margin-top: 2px; }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; }

/* ================================================================
   SETTINGS
   ================================================================ */
.settings-section {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow);
  padding: 20px; margin-bottom: 12px;
}
.settings-section h6 { font-weight: 700; font-size: 15px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.settings-section h6 i { color: var(--primary); }
.settings-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
}
.settings-row:last-child { border-bottom: none; }
.settings-row .label { font-size: 14px; font-weight: 600; }
.settings-row .desc { font-size: 12px; color: var(--text-3); }

/* Toggle */
.form-switch .form-check-input { width: 40px; height: 22px; cursor: pointer; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-check-input:focus { box-shadow: 0 0 0 2px rgba(22,163,74,0.15); border-color: var(--primary); }

/* ================================================================
   MODERATION
   ================================================================ */
.mod-table { font-size: 13px; }
.mod-table thead th {
  background: var(--bg); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .3px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.mod-table td { vertical-align: middle; }
.mod-table tbody tr:hover { background: var(--primary-bg); }
.badge-status {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 12px; letter-spacing: .2px;
}
.badge-active { background: #dcfce7; color: #15803d; }
.badge-suspended { background: #fef2f2; color: #dc2626; }

.candidate-verify-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  transition: box-shadow .2s;
}
.candidate-verify-card:hover { box-shadow: var(--shadow-hover); }
.candidate-verify-card img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 8px; }
.candidate-verify-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.candidate-verify-card .party {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 12px;
  margin: 4px 0; text-transform: uppercase;
}
.candidate-verify-card .area { font-size: 12px; color: var(--text-3); }

/* ================================================================
   CANVASSING — Rectangular App-Style (no radius)
   ================================================================ */
.canvas-header { margin-bottom: 12px; }
.canvas-header h4 {
  font-size: 18px; font-weight: 800; color: var(--text-1);
  display: flex; align-items: center; gap: 8px;
}
.canvas-header h4 i { color: var(--primary); }
.canvas-header p { font-size: 13px; color: var(--text-2); margin-top: 2px; }

/* Canvasser info bar */
.canvasser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--primary); color: #fff;
  border-radius: 0; margin-bottom: 12px;
}
.canvasser-bar img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; }
.canvasser-bar .info { flex: 1; }
.canvasser-bar .info h6 { font-size: 13px; font-weight: 700; margin: 0; color: #fff; }
.canvasser-bar .info span { font-size: 11px; opacity: 0.85; }
.canvasser-bar .status { font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.2); padding: 3px 10px; border-radius: 0; }

/* Step Progress — rectangular steps */
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 16px; padding: 8px 0;
  background: var(--bg);
}
.step-dot {
  width: 28px; height: 28px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--white); color: var(--text-3);
  border: 2px solid var(--border); flex-shrink: 0;
  transition: all .2s;
}
.step-dot.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.step-dot.done { background: var(--primary); color: #fff; border-color: var(--primary); }
.step-line {
  height: 2px; flex: 1; max-width: 20px;
  background: var(--border); transition: background .2s;
}
.step-line.done { background: var(--primary); }

/* Canvas Section — rectangular, no radius */
.c-section {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 0; box-shadow: none;
  padding: 14px; margin-bottom: 8px;
}
.c-section h6 {
  font-size: 13px; font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.3px;
  color: var(--text-2);
}
.c-section h6 i { color: var(--primary); font-size: 14px; }

/* Voter Card — rectangular */
.voter-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0; padding: 10px 12px;
  transition: border-color .15s; cursor: pointer;
}
.voter-card:hover { border-color: #86efac; }
.voter-card.selected { border-color: var(--primary); border-width: 2px; background: var(--primary-bg); }
.voter-card img { width: 40px; height: 40px; border-radius: 0; }
.voter-card .name { font-size: 13px; font-weight: 700; }
.voter-card .detail { font-size: 11px; color: var(--text-3); }
.tag-visited { font-size: 10px; background: #dcfce7; color: #15803d; padding: 1px 6px; border-radius: 0; font-weight: 700; }
.tag-not { font-size: 10px; background: #fef9c3; color: #a16207; padding: 1px 6px; border-radius: 0; font-weight: 700; }

/* Photo capture — rectangular */
.photo-area {
  border: 2px dashed var(--border); border-radius: 0;
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.photo-area:hover { border-color: var(--primary); background: var(--primary-bg); }
.photo-area i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 4px; }
.photo-area span { font-size: 13px; font-weight: 600; color: var(--primary); }

/* GPS — rectangular */
.gps-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); padding: 8px 12px; border-radius: 0;
  font-family: 'SF Mono', monospace; font-size: 12px; font-weight: 600;
  color: var(--text-1); border: 1px solid var(--border);
}
.gps-box i { color: var(--primary); }

/* Map — rectangular */
.map-area {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 0; padding: 40px; text-align: center;
  color: var(--text-3); font-size: 13px;
}

/* Nav buttons */
.canvas-nav {
  display: flex; justify-content: space-between; margin-top: 16px;
  padding-top: 12px; border-top: 1px solid var(--border-light);
}

/* Canvassing form inputs — no radius */
.c-section .form-input {
  border-radius: 0;
}

/* Canvassing radio/checkbox */
.c-section .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Voter search bar */
.voter-search {
  display: flex; gap: 0;
}
.voter-search input {
  border-radius: 0; border-right: 0;
}
.voter-search button {
  border-radius: 0;
}

/* Filter toggle */
.filter-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 0; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--text-2); transition: background .15s;
}
.filter-toggle:hover { background: var(--primary-bg); color: var(--primary); }
.filter-toggle i { font-size: 14px; }

/* ================================================================
   CANDIDATE / USER CARDS
   ================================================================ */
.person-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; gap: 12px; transition: box-shadow .2s;
}
.person-card:hover { box-shadow: var(--shadow-hover); }
.person-card img { width: 56px; height: 56px; border-radius: 50%; }
.person-card .info { flex: 1; }
.person-card .info h6 { font-size: 14px; font-weight: 700; margin-bottom: 1px; }
.person-card .info .verified { color: var(--primary); font-size: 13px; margin-left: 2px; }
.person-card .info p { font-size: 12px; color: var(--text-3); margin: 0; }
.person-card .info .party-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 10px;
  text-transform: uppercase;
}
.person-card .actions { display: flex; align-items: center; gap: 6px; }

/* ================================================================
   TABS
   ================================================================ */
.tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow); overflow: hidden;
}
.tab-item {
  flex: 1; text-align: center; padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  cursor: pointer; text-decoration: none; background: none; border-top: none; border-left: none; border-right: none;
  font-family: inherit;
}
.tab-item:hover { color: var(--text-1); background: var(--bg); }
.tab-item.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
  display: flex; gap: 8px; padding: 12px 16px; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.filter-bar select {
  height: 34px; border: 1px solid var(--border); border-radius: 4px;
  padding: 0 28px 0 10px; font-size: 13px; font-family: inherit;
  outline: none; background: var(--white); cursor: pointer;
}
.filter-bar select:focus { border-color: var(--primary); }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination-wrap { display: flex; justify-content: center; gap: 4px; margin-top: 16px; }
.page-btn {
  width: 32px; height: 32px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ================================================================
   PROFILE PAGE
   ================================================================ */
.profile-page-banner {
  height: 120px; background: var(--primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.profile-page-banner img { width: 100%; height: 100%; object-fit: cover; }
.profile-page-header {
  background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--border-light); border-top: none;
  box-shadow: var(--shadow); padding: 0 24px 20px; position: relative;
  padding-top: 56px;
}
.profile-page-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  border: 4px solid var(--white); position: absolute; top: -48px;
  left: 24px; background: var(--bg);
}
.profile-page-name {
  margin-top: 0; font-size: 22px; font-weight: 800;
}
.profile-page-name .verified { color: var(--primary); font-size: 18px; margin-left: 4px; }
.profile-page-bio { font-size: 14px; color: var(--text-2); margin-top: 2px; }
.profile-page-meta { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.profile-page-meta i { margin-right: 2px; }
.profile-page-actions { margin-top: 12px; display: flex; gap: 8px; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-primary-gs { color: var(--primary) !important; }
.bg-primary-gs { background: var(--primary) !important; }
.fw-800 { font-weight: 800; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }

/* GPS Row */
.gps-row { display: flex; gap: 12px; }
.gps-label { font-size: 11px; color: var(--text-3); display: block; }
.gps-value { font-size: 14px; font-weight: 700; color: var(--text-1); font-family: 'SF Mono', 'Fira Code', monospace; }

/* Success modal */
.modal-content { border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.modal-content-gs { border: none; border-radius: var(--radius-lg); }
.modal-icon { font-size: 56px; color: var(--primary); }
.success-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 40px;
}

/* Post link */
.post-card .post-content a { color: inherit; }
.post-card .post-content a:hover { color: var(--primary); }

/* Comment form */
.comment-form textarea { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
