.watchlist-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 16px;
  align-items: center;
  gap: 8px;
  background: var(--color-brand-primary);
  color: var(--color-neutral-950, #0a0a0a);
  padding: 12px 16px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  font-weight: 600;
  font-size: var(--font-size-sm);
  z-index: 50;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.watchlist-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.watchlist-fab:active {
  transform: translateY(0);
}

.watchlist-fab__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.watchlist-fab__count {
  font-family: var(--font-family-mono);
  font-feature-settings: "tnum" 1;
  min-width: 1.25em;
  text-align: center;
}

.watchlist-fab--empty {
  display: none !important;
}

@media (max-width: 768px) {
  .watchlist-fab:not(.watchlist-fab--empty) {
    display: flex;
  }
}
