.grid-fade-in > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.4s ease forwards;
}
.grid-fade-in > *:nth-child(1)  { animation-delay: 0.03s; }
.grid-fade-in > *:nth-child(2)  { animation-delay: 0.06s; }
.grid-fade-in > *:nth-child(3)  { animation-delay: 0.09s; }
.grid-fade-in > *:nth-child(4)  { animation-delay: 0.12s; }
.grid-fade-in > *:nth-child(5)  { animation-delay: 0.15s; }
.grid-fade-in > *:nth-child(6)  { animation-delay: 0.18s; }
.grid-fade-in > *:nth-child(7)  { animation-delay: 0.21s; }
.grid-fade-in > *:nth-child(8)  { animation-delay: 0.24s; }
.grid-fade-in > *:nth-child(9)  { animation-delay: 0.27s; }
.grid-fade-in > *:nth-child(10) { animation-delay: 0.30s; }
.grid-fade-in > *:nth-child(11) { animation-delay: 0.33s; }
.grid-fade-in > *:nth-child(12) { animation-delay: 0.36s; }

.size-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--bg-0);
  cursor: pointer;
  transition: all 0.15s;
}
.size-filter-btn:hover { border-color: var(--ink-500); color: var(--ink-700); }
.size-filter-btn.active { border-color: var(--brand-500); color: var(--brand-500); background: rgba(200,47,42,0.05); }

/* Hlášky filter – link varianta (server-side filtrování) */
a.hlasky-item {
  text-decoration: none;
}
a.hlasky-item.active {
  color: var(--brand-500);
  font-weight: 600;
}
a.hlasky-item.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  flex-shrink: 0;
}
.hlasky-item--reset {
  color: var(--ink-400, #888);
  font-size: 12px;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--line-200);
}
.hlasky-item--reset:hover { background: none; color: var(--brand-500); }
