.cart-link-wrapper {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: 25px;
  background: #df1010;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-badge.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.cart-badge.pulse {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 480px) {
  .cart-badge {
    top: -4px;
    right: 18px;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
  }
}
