.demos-hero .demos-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(255, 77, 157, 0.18), transparent 60%),
    radial-gradient(500px 260px at 90% 100%, rgba(124, 92, 255, 0.18), transparent 60%);
}

.tabs-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem; overflow-x: auto;
  border-radius: var(--radius-xl);
}
.tab-btn {
  padding: 0.55rem 0.95rem; white-space: nowrap;
  background: transparent; color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 10px; cursor: pointer;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s ease;
}
.tab-btn:hover { color: var(--text); background: var(--bg-secondary); }
.tab-btn.active {
  color: white;
  background: linear-gradient(135deg, rgba(255, 77, 157, 0.22), rgba(124, 92, 255, 0.22));
  border-color: rgba(255, 77, 157, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.filter-bar { padding: 0.85rem 1rem; border-radius: var(--radius-xl); }
.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)) auto;
  gap: 0.6rem; align-items: center;
}
@media (max-width: 820px) {
  .filter-row { grid-template-columns: 1fr 1fr; }
  .filter-row .f-search { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .filter-row { grid-template-columns: 1fr; }
}
.filter-field {
  position: relative; display: flex; align-items: center;
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  height: 42px; padding: 0 0.8rem;
  color: var(--text); gap: 0.5rem;
  transition: border-color 0.2s;
}
.filter-field:focus-within { border-color: var(--accent-pink); }
.filter-field svg { opacity: 0.7; flex-shrink: 0; color: var(--text-muted); }
.filter-field input, .filter-field select {
  all: unset; flex: 1; width: 100%; color: var(--text); font-size: 0.9rem;
}
.filter-field select { cursor: pointer; }
.filter-actions { display: flex; justify-content: flex-end; }

.filter-info {
  margin-top: 0.6rem 0 0; font-size: 0.8rem; color: var(--text-muted);
  padding-top: 0.6rem; border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
}
@media (max-width: 520px) { .filter-info { flex-direction: column; align-items: flex-start; } }

.grid-slots {
  animation: fadeIn 0.35s ease both;
}
