/* ── STATS ROW (listings.php) ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.stat-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.stat-card-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
}
.stat-card-lbl { font-size: .75rem; color: var(--muted); }

/* ── BROWSE category count badge ── */
.cat-count-badge {
  margin-left: auto; font-size: .72rem;
  background: var(--teal-light); color: var(--teal);
  padding: .1rem .5rem; border-radius: 50px; font-weight: 600;
}

/* ── Date label in modal ── */
.date-label {
  font-size: .82rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: .05em;
  display: block; margin-bottom: .5rem;
}

/* ── Skeleton loaders ── */
.gear-card-skeleton {
  background: var(--border); border-radius: 18px;
  height: 82px; animation: shimmer 1.4s infinite;
}
.cat-skeleton {
  background: var(--border); border-radius: var(--radius-md);
  height: 110px; animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%,100% { opacity: 1; } 50% { opacity: .45; }
}

/* ── Auth modal sub-text ── */
.modal-sub {
  color: var(--muted); margin-bottom: 1.5rem; font-size: .9rem;
}
.auth-switch {
  text-align: center; margin-top: 1rem;
  font-size: .85rem; color: var(--muted);
}
.auth-switch a { color: var(--teal); font-weight: 600; }
