.profile-topbar {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.profile-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-btn {
  padding: 10px 18px;
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: var(--fs-sm);
  color: var(--text-light);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.action-btn.primary {
  background: var(--yellow-dark);
  border-color: transparent;
  color: var(--bg-900);
  font-weight: 700;
}

.action-btn.primary:hover {
  background: var(--yellow);
}

.action-btn.primary.is-active {
  background: #c9971f;
  color: var(--bg-900);
  cursor: default;
  pointer-events: none;
  opacity: .9;
}

.action-btn.sm { padding: 6px 10px; font-size: var(--fs-xs); }

.shop-coins {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-800);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.coin-icon {
  font-size: 18px;
}

.shop-header { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; border-bottom:1px solid var(--border); }
.shop-header-right { display:flex; align-items:center; gap:10px; }
.shop-header-left { display:flex; align-items:center; gap:10px; }
.shop-title { font-size: var(--fs-xl); font-weight: 800; }
