.cart-count-badge {
  transition: all 0.3s ease;
}

.cart-count-badge.count-updated {
  animation: pulse 0.5s ease-in-out;
  transform: scale(1.1);
}

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

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .cart-count-badge {
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    top: -6px !important;
    right: -6px !important;
  }
  
  .cart-count-badge[data-count="99+"] {
    width: 22px !important;
    height: 18px !important;
    font-size: 9px !important;
  }
}