/* myfacefeed.com GoBlue 9.3 light theme — matches OSSN-91 */
:root {
  --nav-bg:       #0b769c;
  --nav-hover:    #0a6586;
  --nav-dark:     #0f3b4a;
  --sidebar-dark: #2B5470;
  --page-bg:      #F5F6F6;
  --card-bg:      #ffffff;
  --post-alt:     #E9EAED;
  --post-item:    #E4E4E3;
  --border:       #ccc;
  --border-light: #eee;
  --link:         #337ab7;
  --error:        #a94442;
  --text:         #333;
  --text-muted:   #999;
  --content-bg:   #f1f5f9;
  --radius:       4px;
  --nav-height:   50px;
  --sidenav-w:    240px;
  --sidenav-w-collapsed: 56px;
  --shadow:       0 1px 3px rgba(0,0,0,.1);
}

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

body {
  font-family: 'PT Sans', sans-serif;
  background: var(--page-bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: #286090; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  padding: calc(var(--nav-height) + 16px) 16px 40px calc(var(--sidenav-w) + 24px);
  max-width: calc(1200px + var(--sidenav-w));
  margin: 0 auto;
  transition: padding-left .25s;
}
body.sidenav-collapsed .layout {
  padding-left: calc(var(--sidenav-w-collapsed) + 24px);
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; padding-left: 16px !important; }
  .sidebar-right { display: none; }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-hover);
  display: flex;
  align-items: center;
  padding: 0 12px 0 8px;
  gap: 10px;
  z-index: 200;
}

/* Hamburger button */
.hamburger {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; border-radius: var(--radius); padding: 4px;
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.navbar-brand { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; white-space: nowrap; }
.navbar-brand:hover { color: rgba(255,255,255,0.9); }

.navbar-search { flex: 1; max-width: 300px; }
.navbar-search input {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; padding: 5px 14px;
  color: #fff; font-size: 14px; font-family: 'PT Sans', sans-serif;
}
.navbar-search input::placeholder { color: rgba(255,255,255,0.7); }
.navbar-search input:focus { outline: none; background: rgba(255,255,255,0.25); }

.navbar-right { margin-left: auto; display: flex; align-items: center; gap: 4px; }

.navbar-icon {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: #fff; border-radius: var(--radius); font-size: 15px;
}
.navbar-icon:hover { background: var(--nav-hover); color: #fff; }

.notif-badge {
  position: absolute; top: 2px; right: 2px;
  background: #d9534f; color: #fff;
  border-radius: 10px; font-size: 10px;
  padding: 1px 4px; min-width: 16px; text-align: center; line-height: 1.4;
}

.navbar-avatar-link { display: flex; align-items: center; margin-left: 2px; }
.navbar-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.5);
}

/* old .navbar-nav kept for compat */
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { color: #fff; padding: 6px 10px; border-radius: var(--radius); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.navbar-nav a:hover { background: var(--nav-hover); color: #fff; }
.navbar-nav .btn { color: #fff; }

/* ── Left Sidebar (sidenav) ── */
.sidenav {
  position: fixed;
  top: var(--nav-height); left: 0;
  width: var(--sidenav-w);
  height: calc(100vh - var(--nav-height));
  background: var(--sidebar-dark);
  overflow-y: auto; overflow-x: hidden;
  z-index: 150;
  transition: width .25s, transform .25s;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
  padding-bottom: 20px;
}
.sidenav::-webkit-scrollbar { width: 4px; }
.sidenav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }

/* Collapsed — icon-only rail */
body.sidenav-collapsed .sidenav { width: var(--sidenav-w-collapsed); }
body.sidenav-collapsed .sidenav-name,
body.sidenav-collapsed .sidenav-handle,
body.sidenav-collapsed .sidenav-profile-text,
body.sidenav-collapsed .sidenav-section-label,
body.sidenav-collapsed .sidenav-link span { display: none; }
body.sidenav-collapsed .sidenav-avatar { width: 36px; height: 36px; }
body.sidenav-collapsed .sidenav-profile { justify-content: center; padding: 12px 0; }
body.sidenav-collapsed .sidenav-link { justify-content: center; padding: 11px 0; }
body.sidenav-collapsed .sidenav-link i { font-size: 17px; }

/* Profile mini-card */
.sidenav-profile {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 4px;
}
.sidenav-avatar-link { flex-shrink: 0; }
.sidenav-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.4);
  transition: width .25s, height .25s;
}
.sidenav-profile-text { overflow: hidden; }
.sidenav-name { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidenav-handle { font-size: 11px; color: rgba(255,255,255,.55); white-space: nowrap; }

.sidenav-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  padding: 12px 16px 4px; white-space: nowrap; overflow: hidden;
}

.sidenav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  color: rgba(255,255,255,.82); font-size: 14px;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
  white-space: nowrap; overflow: hidden;
}
.sidenav-link i {
  font-size: 15px; width: 20px; text-align: center; flex-shrink: 0;
  color: rgba(255,255,255,.65); transition: color .12s;
}
.sidenav-link:hover { background: rgba(255,255,255,.1); color: #fff; border-left-color: rgba(255,255,255,.3); }
.sidenav-link:hover i { color: #fff; }
.sidenav-link.active { background: rgba(255,255,255,.15); color: #fff; border-left-color: #fff; font-weight: 600; }
.sidenav-link.active i { color: #fff; }
.sidenav-admin { border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; }
.sidenav-logout { color: rgba(255,255,255,.7); }
.sidenav-logout:hover { color: #f5a0a0; }

/* Mobile overlay */
.sidenav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 149; }
.sidenav-overlay.active { display: block; }

@media (max-width: 900px) {
  .sidenav { transform: translateX(-100%); width: var(--sidenav-w) !important; z-index: 300; }
  .sidenav.sidenav-open { transform: translateX(0); }
  body.sidenav-collapsed .sidenav { width: var(--sidenav-w) !important; }
  body.sidenav-collapsed .sidenav-name,
  body.sidenav-collapsed .sidenav-handle,
  body.sidenav-collapsed .sidenav-profile-text,
  body.sidenav-collapsed .sidenav-section-label,
  body.sidenav-collapsed .sidenav-link span { display: unset !important; }
  body.sidenav-collapsed .sidenav-link { justify-content: flex-start !important; padding: 9px 14px !important; }
}

/* ── Cards ── */
.card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.card-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--nav-bg); text-transform: uppercase; letter-spacing: .5px; }

/* ── Old sidebar-left (page templates) ── */
.sidebar-left { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; height: fit-content; }
.sidebar-left-header { background: var(--sidebar-dark); color: #fff; padding: 12px 16px; font-weight: 700; font-size: 15px; }
.sidebar-left .card-title { padding: 12px 16px; margin-bottom: 0; }
.sidebar-right { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px; height: fit-content; }
.sidebar-section { margin-bottom: 16px; }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-user:last-child { border-bottom: none; }
.sidebar-user-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: var(--border-light); border: 2px solid var(--border-light); }
.sidebar-user-name { font-size: 14px; font-weight: 500; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; font-size: 14px; font-weight: 500; font-family: 'PT Sans', sans-serif; transition: background .15s, opacity .15s; }
.btn-primary { background: var(--nav-bg); border-color: var(--nav-bg); color: #fff; }
.btn-primary:hover { background: var(--nav-hover); border-color: var(--nav-hover); color: #fff; }
.btn-secondary { background: #fff; border-color: var(--border); color: #555; }
.btn-secondary:hover { background: #f5f5f5; color: #333; }
.btn-danger { background: var(--error); border-color: var(--error); color: #fff; }
.btn-danger:hover { background: #922b2b; }
.btn-sm { padding: 4px 10px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Post composer ── */
.composer { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.composer-input { width: 100%; min-height: 80px; background: var(--content-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; color: var(--text); font-size: 15px; resize: vertical; font-family: 'PT Sans', sans-serif; }
.composer-input:focus { outline: none; border-color: var(--nav-bg); }
.composer-actions { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.composer-actions select { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 6px 10px; font-size: 13px; font-family: 'PT Sans', sans-serif; }

/* ── Post card ── */
.post { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.post-header { display: flex; align-items: center; gap: 10px; padding: 12px 16px; }
.post-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--border-light); border: 2px solid var(--border-light); }
.post-meta { flex: 1; }
.post-author { font-weight: 600; font-size: 14px; }
.post-author a { color: var(--text); }
.post-author a:hover { color: var(--nav-bg); }
.post-time { font-size: 12px; color: var(--text-muted); }
.post-body { padding: 0 16px 12px; font-size: 15px; line-height: 1.6; }
.post-bg { padding: 24px 16px; text-align: center; font-size: 18px; font-weight: 600; border-radius: var(--radius); margin: 0 16px 12px; background: var(--post-alt); color: var(--text); }
.post-media { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 4px; }
.post-media img { border-radius: 4px; max-height: 400px; object-fit: cover; flex: 1; min-width: 200px; }
.post-link-preview { margin: 0 16px 12px; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; display: flex; gap: 12px; background: var(--content-bg); }
.post-link-preview img { width: 100px; height: 100px; object-fit: cover; }
.post-link-preview-text { padding: 10px; flex: 1; }
.post-link-preview-title { font-weight: 600; font-size: 14px; }
.post-link-preview-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.post-actions { display: flex; align-items: center; gap: 4px; padding: 8px 16px; border-top: 1px solid var(--border-light); background: var(--post-item); }
.post-action-btn { display: flex; align-items: center; gap: 5px; padding: 6px 10px; border: none; background: none; color: var(--link); font-size: 13px; font-family: 'PT Sans', sans-serif; border-radius: var(--radius); cursor: pointer; transition: background .1s, color .1s; text-decoration: none; }
.post-action-btn:hover { background: var(--border-light); color: #286090; }
.post-action-btn.liked { color: #d9534f; }
.post-comments { border-top: 1px solid var(--border-light); background: var(--content-bg); }
.post-comment { display: flex; gap: 10px; padding: 10px 16px; }
.comment-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--border-light); border: 2px solid var(--border-light); }
.comment-body { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 8px 12px; flex: 1; }
.comment-author { font-weight: 600; font-size: 13px; }
.comment-text { font-size: 14px; margin-top: 2px; }
.comment-input-row { display: flex; gap: 8px; padding: 10px 16px 12px; }
.comment-input { flex: 1; background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; color: var(--text); font-size: 14px; font-family: 'PT Sans', sans-serif; }
.comment-input:focus { outline: none; border-color: var(--nav-bg); }

/* ── Profile ── */
.profile-cover { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; background: var(--border-light); }
.profile-header { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; }
.profile-info { padding: 0 20px 16px; position: relative; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--card-bg); margin-top: -50px; object-fit: cover; background: var(--border-light); box-shadow: 0 2px 4px rgba(0,0,0,.15); }
.profile-name { font-size: 20px; font-weight: 700; margin-top: 8px; color: var(--text); }
.profile-bio { color: var(--text-muted); margin-top: 4px; }
.profile-stats { display: flex; gap: 20px; margin-top: 12px; }
.profile-stat { text-align: center; }
.profile-stat-count { font-weight: 700; font-size: 16px; color: var(--nav-bg); }
.profile-stat-label { font-size: 12px; color: var(--text-muted); }
.profile-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ── Stories ── */
.stories-bar { display: flex; gap: 10px; overflow-x: auto; padding: 12px 0; margin-bottom: 16px; scrollbar-width: none; }
.stories-bar::-webkit-scrollbar { display: none; }
.story-item { flex-shrink: 0; width: 70px; cursor: pointer; text-align: center; }
.story-avatar-wrap { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--nav-bg); padding: 2px; margin: 0 auto 4px; }
.story-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--border-light); }
.story-username { font-size: 11px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 6px; }
.form-control { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 12px; color: var(--text); font-size: 14px; font-family: 'PT Sans', sans-serif; }
.form-control:focus { outline: none; border-color: var(--nav-bg); box-shadow: 0 0 0 2px rgba(11,118,156,.15); }
.form-control::placeholder { color: #aaa; }

/* ── Auth pages ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--page-bg); padding-top: 20px; }
.auth-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 32px; width: 100%; max-width: 420px; box-shadow: var(--shadow); }
.auth-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; text-align: center; color: var(--nav-bg); }
.auth-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 24px; }

/* ── Notifications ── */
.notif-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.notif-item.unread { background: rgba(11,118,156,.06); margin: 0 -16px; padding: 10px 16px; }
.notif-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: var(--border-light); }
.notif-text { font-size: 14px; flex: 1; }
.notif-time { font-size: 12px; color: var(--text-muted); }

/* ── Messages ── */
.messages-layout { display: grid; grid-template-columns: 280px 1fr; height: calc(100vh - var(--nav-height)); }
.thread-list { border-right: 1px solid var(--border-light); overflow-y: auto; background: var(--card-bg); }
.thread-item { display: flex; gap: 10px; padding: 12px 16px; cursor: pointer; border-bottom: 1px solid var(--border-light); }
.thread-item:hover, .thread-item.active { background: var(--content-bg); }
.thread-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--border-light); border: 2px solid var(--border-light); }
.thread-name { font-weight: 600; font-size: 14px; }
.thread-preview { font-size: 13px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.unread-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nav-bg); margin-top: 6px; }
.chat-area { display: flex; flex-direction: column; background: var(--page-bg); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.chat-message { display: flex; gap: 8px; }
.chat-message.me { flex-direction: row-reverse; }
.chat-bubble { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 12px; padding: 8px 12px; max-width: 70%; font-size: 14px; }
.chat-message.me .chat-bubble { background: var(--nav-bg); border-color: var(--nav-bg); color: #fff; }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border-light); background: var(--card-bg); }
.chat-input { flex: 1; background: var(--page-bg); border: 1px solid var(--border); border-radius: 20px; padding: 8px 16px; color: var(--text); font-size: 14px; font-family: 'PT Sans', sans-serif; }
.chat-input:focus { outline: none; border-color: var(--nav-bg); }

/* ── Admin ── */
.admin-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: calc(100vh - var(--nav-height));
  padding-left: var(--sidenav-w);
  transition: padding-left .25s;
}
body.sidenav-collapsed .admin-layout { padding-left: var(--sidenav-w-collapsed); }
.admin-nav { border-right: 1px solid var(--border-light); padding: 20px; background: var(--card-bg); }
.admin-nav a { display: block; padding: 8px 12px; border-radius: var(--radius); color: var(--text); font-size: 14px; margin-bottom: 2px; }
.admin-nav a:hover, .admin-nav a.active { background: var(--nav-bg); color: #fff; }
.admin-content { padding: 24px; background: var(--page-bg); }

/* ── Table ── */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border); color: var(--text); font-weight: 700; background: var(--content-bg); }
.table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); }
.table tr:hover td { background: var(--content-bg); }

/* ── Alerts ── */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #dff0d8; border: 1px solid #d6e9c6; color: #3c763d; }
.alert-danger  { background: #f2dede; border: 1px solid #ebccd1; color: #a94442; }
.alert-info    { background: #d9edf7; border: 1px solid #bce8f1; color: #31708f; }
.alert-warning { background: #fcf8e3; border: 1px solid #faebcc; color: #8a6d3b; }

/* ── Groups / Pages / Events ── */
.group-card, .page-card, .event-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.group-cover { width: 100%; height: 140px; object-fit: cover; background: var(--border-light); }
.group-info { padding: 12px 16px; }
.group-name { font-weight: 700; font-size: 16px; color: var(--text); }
.group-meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── Modal ── */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 400; display: flex; align-items: center; justify-content: center; }
.modal { background: var(--card-bg); border-radius: var(--radius); width: 100%; max-width: 500px; overflow: hidden; }
.modal-header { background: var(--nav-bg); color: #fff; padding: 14px 20px; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.modal-body { padding: 20px; }
.modal-footer { padding: 12px 20px; border-top: 1px solid var(--border-light); display: flex; gap: 8px; justify-content: flex-end; background: var(--content-bg); }

/* ── Utilities ── */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-teal { color: var(--nav-bg); }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; }
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 8px; }
.hidden { display: none; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border-light); margin: 12px 0; }

/* Spinner */
.spinner { width: 20px; height: 20px; border: 2px solid var(--border); border-top-color: var(--nav-bg); border-radius: 50%; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Floating chat widget ── */
.floating-chat { position: fixed; bottom: 20px; right: 20px; z-index: 150; }
.floating-chat-header { background: var(--nav-bg); color: #fff; padding: 10px 16px; border-radius: var(--radius) var(--radius) 0 0; cursor: pointer; font-weight: 600; }
.floating-chat-body { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0 0 var(--radius) var(--radius); max-height: 300px; overflow-y: auto; }

/* ── Marketplace ── */
.listing-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.listing-image { width: 100%; height: 180px; object-fit: cover; background: var(--border-light); }
.listing-info { padding: 12px 16px; }
.listing-price { font-weight: 700; font-size: 18px; color: var(--nav-bg); }
.listing-title { font-size: 15px; font-weight: 600; margin-top: 4px; }

/* ── Page header utility ── */
.page-header { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.page-header h1 { font-size: 20px; font-weight: 700; color: var(--text); }
