.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--stone);
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone-light);
  border-radius: var(--radius-xl);
  color: var(--text-tertiary);
}

.empty-state h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.loading {
  text-align: center;
  padding: 64px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--stone);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}
