@keyframes zoomEffect {
  0%, 100% {
    opacity: 1;
  }
  50% {
   opacity: 0.8;
  }
}

#floating-cart.zoom-animation {
  animation: zoomEffect 0.5s ease-in-out;
  animation-iteration-count: 2;
}

#floating-cart {
    transition: background-color 0.3s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}