/* Favorites link in dropdown */
#favorites-link {
  position: relative;
  display: flex;
  align-items: center;
}

#favorites-link .icon {
  color: #ff6b6b;
}

#favorites-link .count {
  background: #ffcc66;
  color: #1c0e04;
  font-size: 0.7rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}

/* Hover effect for favorites link */
#favorites-link:hover {
  background: rgba(255, 107, 107, 0.1);
}