/* ═══ STICKY TOKEN PILL - BULLETPROOF VERSION ═══
 * Works whether pill is relocated to nav or stays in original position
 */

/* REGARDLESS OF POSITION: Always make pill sticky, not fixed */
body.twerkhub-ph-theme .twerkhub-tokens-hud {
  position: sticky !important;
  top: 10px !important;
  right: 14px !important;
  transform: none !important;
  will-change: auto !important;
  z-index: 99 !important;
}

/* Make nav sticky as well for proper stacking */
.twk-nav-v1 {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

/* If pill is IN nav, adjust positioning */
body.twerkhub-ph-theme .twerkhub-tokens-hud.twk-tk-hud--in-nav {
  top: 10px !important;
  position: sticky !important;
}

/* Mobile: keep fixed at bottom */
@media (max-width: 768px) {
  body.twerkhub-ph-theme .twerkhub-tokens-hud {
    position: fixed !important;
    top: 20px !important;
    bottom: auto !important;
    right: 20px !important;
    transform: none !important;
  }
}
