/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
}

.badge--purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-400);
}

.badge--success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.badge--warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.badge--error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
}

/* === Empty State === */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  min-height: 300px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin-bottom: var(--space-5);
}

.empty-state-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.empty-state-text {
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: 320px;
  line-height: 1.6;
}

/* === Divider === */
.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-5) 0;
}

/* === Avatar === */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(76, 29, 149, 0.2));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: var(--purple-400);
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar--lg {
  width: 64px;
  height: 64px;
  font-size: var(--text-xl);
}

/* === Chip === */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.chip.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple-500);
  color: var(--purple-400);
}

/* === Responsive === */
@media (max-width: 640px) {
  .empty-state {
    min-height: 200px;
    padding: var(--space-6) var(--space-3);
  }
  .empty-state-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-3);
  }
  .avatar { width: 36px; height: 36px; }
  .avatar--lg { width: 52px; height: 52px; }
}
