.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(180deg, rgba(10,10,12,0.95), rgba(10,10,12,0));
  pointer-events: none;
}

.site-nav > * {
  pointer-events: auto;
}

.nav-title {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-collection {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-collection:hover {
  background: var(--gold-glow);
  border-color: var(--gold-dim);
}

.nav-count {
  font-weight: bold;
}

.progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s ease;
  z-index: 100;
  box-shadow: 0 0 8px var(--gold-dim);
}
