/* ── Meine Sammlung Page ── */
#page-collection .collection-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.collection-stat {
  background: #fff;
  border: 1px solid var(--whic-border);
  border-radius: var(--whic-radius);
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
}
.collection-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--whic-green);
  font-family: Georgia, serif;
}
.collection-stat-label { font-size: 12px; color: var(--whic-text-light); }
.collection-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--whic-border);
}
.collection-item:last-child { border-bottom: none; }
.collection-img {
  width: 48px; height: 48px;
  border-radius: 6px;
  background: var(--whic-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.collection-info { flex: 1; }
.collection-name { font-weight: 600; font-size: 14px; }
.collection-detail { font-size: 12px; color: var(--whic-text-light); }
.collection-badge {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 10px;
  font-weight: 500;
  white-space: nowrap;
}
.collection-badge.purchase { background: var(--whic-green-pale); color: var(--whic-green); }
.collection-badge.custom { background: var(--whic-green-pale); color: var(--whic-dark2); }
.collection-badge.unrated { background: rgba(255,193,7,0.12); color: #e65100; }
.collection-actions { display: flex; gap: 8px; align-items: center; }
.collection-actions button {
  background: none; border: none; color: #ccc; cursor: pointer;
  font-size: 14px; padding: 2px; transition: color .2s;
}
.collection-actions button:hover { color: var(--whic-red); }
.collection-actions .btn-rate {
  font-size: 12px; padding: 4px 12px; border-radius: 12px;
  border: 1px solid var(--whic-green); color: var(--whic-green);
  background: #fff; cursor: pointer; transition: all .15s;
}
.collection-actions .btn-rate:hover { background: var(--whic-green); color: #fff; }
