/* product sub-nav bar — sits below ODD header, above product content */
.psn {
  background:#0a0a0a; border-bottom:1px solid #222;
  padding:10px 24px; display:flex; gap:8px; align-items:center; flex-wrap:wrap;
  font-family:'IBM Plex Mono',monospace; font-size:12px;
  position:sticky; top:50px; z-index:50;
}
.psn .psn-prod {
  color:#f4c645; font-weight:600; text-decoration:none;
  font-family:'Cormorant Garamond',serif; font-style:italic; font-size:18px;
  margin-right:14px; padding-right:14px; border-right:1px solid #333;
}
.psn a {
  color:#aaa; text-decoration:none; padding:6px 14px; border-radius:5px;
  border:1px solid transparent; transition:all .15s;
}
.psn a:hover { color:#f4c645; border-color:#333 }
.psn a.active { color:#f4c645; border-color:#f4c645; background:rgba(244,198,69,.1) }
.psn .spacer { flex:1 }
.psn .back { color:#666; font-size:11px }
.psn .back:hover { color:#aaa }
