/* Shared site utilities — sticky buy bar, nav social, external link helpers */
.nav-social { color: var(--text-muted, #3D4F62) !important; font-size: 0.8125rem !important; }
.nav-social:hover { color: var(--cyan, #00D4FF) !important; }

body.has-sticky-buy { padding-bottom: 4.25rem; }

.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 11, 15, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 229, 160, 0.22);
  padding: 0.75rem 1.5rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

.sticky-buy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-buy-label {
  font-family: 'League Spartan', 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-btn {
  background: #00D4FF;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-buy-btn:hover { opacity: 0.88; }

@media (max-width: 720px) {
  .sticky-buy-label { font-size: 0.78rem; max-width: 52%; }
}
