.badge-soon {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #BCFB6C;
  color: #000;
  font-weight: bold;
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  animation: pulseBadge 1.5s infinite;
  z-index: 2;
}

@keyframes pulseBadge {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
