/* ── HEADER ───────────────────────────────────────── */
#snax-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 45; height: 44px;
  background: rgba(8,8,15,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 12px; display: flex; align-items: center; justify-content: space-between;
  transform: translateY(-100%); transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
#snax-header.visible { transform: translateY(0); }
.snax-logo-link { display: flex; align-items: center; text-decoration: none; }
.snax-logo-img  { height: 28px; display: block; }
.snax-hdr-links { display: flex; gap: 16px; }
.snax-hdr-links a { font-size: 12px; color: var(--muted); text-decoration: none; font-weight: 600; }
.snax-hdr-links a:hover { color: var(--text); }
