/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.navbar-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-search {
  flex: 1;
  max-width: 400px;
  margin: 0 24px;
  position: relative;
}

.navbar-search input {
  padding: 8px 40px 8px 14px;
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  border: 1px solid transparent;
  font-size: 14px;
}
.navbar-search input:focus {
  background: var(--clr-card);
  border-color: var(--clr-primary);
}

.navbar-search svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-light);
  width: 18px;
  height: 18px;
}

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

.navbar-actions .nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background 0.2s;
  color: var(--clr-text-muted);
}
.navbar-actions .nav-icon:hover {
  background: var(--clr-surface);
  color: var(--clr-primary);
}

.navbar-actions .nav-icon .badge-count {
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
}

.navbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.navbar-user:hover { background: var(--clr-surface); }

/* ===== SIDEBAR ===== */
.layout {
  display: flex;
  margin-top: 60px;
  min-height: calc(100vh - 60px);
}

.sidebar {
  width: 260px;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 20px;
  border-left: 1px solid var(--clr-border);
  background: var(--clr-card);
  flex-shrink: 0;
}

.sidebar-profile {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 16px;
}

.sidebar-profile .avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.sidebar-profile h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.sidebar-profile p {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.sidebar-nav {
  list-style: none;
  margin-bottom: 20px;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-main);
  font-weight: 500;
  transition: all 0.2s;
  font-size: 14px;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background: var(--clr-primary-bg);
  color: var(--clr-primary);
}

.sidebar-nav li a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.sidebar-stats .stat {
  padding: 8px;
  background: var(--clr-surface);
  border-radius: var(--radius-sm);
}

.sidebar-stats .stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-primary);
}

.sidebar-stats .stat-label {
  font-size: 11px;
  color: var(--clr-text-muted);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 20px;
}

/* ===== POST COMPOSER ===== */
.composer {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  padding: 16px;
  margin-bottom: 20px;
}

.composer-top {
  display: flex;
  gap: 12px;
}

.composer textarea {
  flex: 1;
  border: none;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.7;
  min-height: 44px;
  background: transparent;
}
.composer textarea:focus {
  box-shadow: none;
}

.composer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
}

/* ===== POST CARD ===== */
.post-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  padding: 20px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.35s ease forwards;
}

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

.post-header .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.post-header-info {
  flex: 1;
}

.post-header-info .post-author {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-header-info .post-time {
  font-size: 12px;
  color: var(--clr-text-light);
  cursor: help;
}

.post-header .post-menu {
  position: relative;
}

.post-content {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
  margin-bottom: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
}

.post-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.post-action-btn:hover {
  background: var(--clr-surface);
  color: var(--clr-primary);
}
.post-action-btn.active {
  color: var(--clr-primary);
}
.post-action-btn.liked {
  color: var(--clr-danger);
}
.post-action-btn.bookmarked {
  color: var(--clr-gold);
}

.post-action-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== COMMENTS ===== */
.comments-section {
  margin-top: 24px;
}

.comments-sort {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.sort-pill {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.sort-pill:hover { color: var(--clr-primary); }
.sort-pill.active {
  background: var(--clr-primary);
  color: #fff;
}

.comment-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.comment-card:hover { background: var(--clr-surface); }

.comment-body { flex: 1; }

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.comment-author {
  font-weight: 700;
  font-size: 14px;
}

.comment-time {
  font-size: 12px;
  color: var(--clr-text-light);
}

.comment-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 8px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--clr-text-light);
  transition: color 0.2s;
  cursor: pointer;
}
.comment-action-btn:hover { color: var(--clr-primary); }
.comment-action-btn.liked { color: var(--clr-danger); }

.comment-action-btn svg { width: 16px; height: 16px; }

/* Star Rating */
.star-rating {
  display: flex;
  gap: 2px;
  cursor: pointer;
}

.star-rating .star {
  color: var(--clr-border);
  transition: color 0.15s, transform 0.15s;
  width: 16px;
  height: 16px;
}
.star-rating .star.filled { color: var(--clr-gold); }
.star-rating .star:hover { transform: scale(1.2); }
.star-rating:hover .star { color: var(--clr-gold); }
.star-rating .star:hover ~ .star { color: var(--clr-border); }

.rating-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--clr-text-light);
}

.rating-display .star-mini {
  color: var(--clr-gold);
  width: 14px;
  height: 14px;
}

/* Comment Form */
.comment-form {
  display: flex;
  gap: 12px;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--clr-surface);
  border-radius: var(--radius-md);
}

.comment-form textarea {
  flex: 1;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  min-height: 44px;
  background: var(--clr-card);
}

.comment-form .btn {
  align-self: flex-end;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: backdropIn 0.2s ease;
}
.modal-overlay.closing { animation: backdropOut 0.2s ease forwards; }

.modal-box {
  background: var(--clr-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  font-size: 20px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--clr-text-muted);
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--clr-surface);
  color: var(--clr-text-main);
}

.modal-body {
  padding: 20px 24px;
}

.modal-footer {
  padding: 0 24px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ===== FORM GROUP ===== */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--clr-text-main);
}

.form-group .error-text {
  font-size: 12px;
  color: var(--clr-danger);
  margin-top: 4px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--clr-danger);
}

.form-group input.valid {
  border-color: var(--clr-success);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 72px;
  left: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--clr-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 280px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.toast-success { border-right: 4px solid var(--clr-success); }
.toast-error { border-right: 4px solid var(--clr-danger); }
.toast-info { border-right: 4px solid var(--clr-primary); }

.toast-progress {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--clr-primary);
  animation: toastProgress 4s linear forwards;
}

.toast-success .toast-progress { background: var(--clr-success); }
.toast-error .toast-progress { background: var(--clr-danger); }

.toast svg { width: 20px; height: 20px; flex-shrink: 0; }
.toast-success svg { color: var(--clr-success); }
.toast-error svg { color: var(--clr-danger); }
.toast-info svg { color: var(--clr-primary); }

/* ===== NOTIFICATION DROPDOWN ===== */
.notif-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 360px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--clr-border);
  z-index: 1500;
  max-height: 400px;
  overflow-y: auto;
}

.notif-dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  transition: background 0.2s;
  cursor: pointer;
}
.notif-item:hover { background: var(--clr-surface); }
.notif-item.unread { background: rgba(45,106,79,0.04); }

.notif-item .notif-text {
  font-size: 13px;
  line-height: 1.5;
}

.notif-item .notif-time {
  font-size: 11px;
  color: var(--clr-text-light);
  margin-top: 2px;
}

/* ===== PROFILE PAGE ===== */
.profile-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-lt));
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.profile-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
  animation: patternFloat 20s ease-in-out infinite;
}

.profile-header {
  text-align: center;
  margin-top: -50px;
  padding: 0 20px;
}

.profile-header .avatar-xl {
  border: 4px solid var(--clr-card);
  box-shadow: var(--shadow-card);
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.profile-stats .stat { text-align: center; }
.profile-stats .stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-primary);
}
.profile-stats .stat-label {
  font-size: 12px;
  color: var(--clr-text-muted);
}

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--clr-brown);
  color: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-sidebar-nav {
  list-style: none;
}

.admin-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.admin-sidebar-nav li a:hover,
.admin-sidebar-nav li a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-sidebar-nav li a svg { width: 20px; height: 20px; }

.admin-sidebar-nav li a .badge-count {
  margin-right: auto;
}

.admin-main {
  flex: 1;
  margin-right: 260px;
  padding: 24px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-card .stat-icon.green { background: var(--clr-primary-bg); color: var(--clr-primary); }
.stat-card .stat-icon.gold { background: var(--clr-gold-bg); color: var(--clr-gold); }
.stat-card .stat-icon.red { background: #fde8e8; color: var(--clr-danger); }

.stat-card .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-text-main);
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--clr-text-muted);
}

/* User request card */
.request-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}

.request-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.request-card-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.request-card-info .info-item {
  display: flex;
  gap: 8px;
}

.request-card-info .info-label {
  color: var(--clr-text-muted);
  min-width: 80px;
}

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

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: var(--clr-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--clr-border);
  z-index: 1500;
  padding: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--clr-text-main);
  transition: background 0.15s;
  width: 100%;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--clr-surface); }
.dropdown-item.danger { color: var(--clr-danger); }
.dropdown-item svg { width: 18px; height: 18px; }

/* ===== PILLS/TABS ===== */
.pills {
  display: flex;
  gap: 4px;
  background: var(--clr-surface);
  padding: 4px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.pill:hover { color: var(--clr-text-main); }
.pill.active {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45,106,79,0.25);
}

/* ===== LOAD MORE ===== */
.load-more {
  text-align: center;
  padding: 20px;
}

.load-more .btn {
  min-width: 200px;
}

/* ===== HERO (Landing) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4731 0%, var(--clr-primary) 50%, #52B788 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
  animation: patternFloat 25s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero .btn {
  font-size: 16px;
  padding: 14px 36px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 20px;
  background: var(--clr-card);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-bg);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-card .icon-box svg { width: 28px; height: 28px; }

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--clr-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--clr-surface);
}

.about-section h2 { margin-bottom: 16px; color: var(--clr-primary); }
.about-section p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-lt) 100%);
  color: #fff;
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p { opacity: 0.85; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-light);
  border-top: 1px solid var(--clr-border);
  background: var(--clr-card);
}

/* ===== LOGIN PAGE ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--clr-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  padding: 40px;
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 8px;
  color: var(--clr-primary);
  font-size: 24px;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.auth-card .form-group { margin-bottom: 20px; }

.auth-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

.remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.remember-row input[type="checkbox"] {
  width: auto;
}

/* ===== BOOKMARKS PAGE ===== */
.page-header {
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 24px;
  color: var(--clr-primary);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--clr-text-muted);
}

.empty-state svg {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 { margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ===== CONFIRM MODAL ===== */
.confirm-modal .modal-body {
  text-align: center;
  padding: 32px 24px;
}

.confirm-modal .modal-body svg {
  width: 48px;
  height: 48px;
  color: var(--clr-warning);
  margin-bottom: 12px;
}

.confirm-modal .modal-body p {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar { display: none; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-right: 220px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 12px; }
  .navbar-search { display: none; }
  .main-content { padding: 12px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .profile-cover { height: 140px; }
  .profile-stats { gap: 20px; }
  .request-card-info { grid-template-columns: 1fr; }

  .admin-sidebar {
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 2000;
    width: 260px;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-right: 0; }

  .notif-dropdown { width: calc(100vw - 40px); left: auto; right: -12px; }

  .modal-box { max-width: 100%; border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .post-actions { flex-wrap: wrap; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
