/* ─── Topbar Component ───────────────────────────────────────────────────── */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background-color: var(--color-bg-surface);
  color: var(--color-text-muted);
}

.topbar-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

.topbar-site-title { display: flex; flex-direction: column; }
.topbar-title-main { font-size: 16px; font-weight: 500; color: var(--color-text-faint); }
.topbar-title-sub  { font-size: 16px; color: var(--color-text-faint); }

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

.topbar-streak {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-streak-hot);
}

.topbar-notif-btn {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-disabled);
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-notif-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 6px; height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.topbar-divider { height: 24px; width: 1px; background: var(--color-border); }

.topbar-avatar {
  width: 35px;
  height: 35px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-disabled);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
