.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 3.5rem;
  height: 3.5rem;
  background: #ef4444;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none !important;
}

.floating-cart-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  background-color: #dc2626;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.5);
}

.floating-cart-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2px;
}

.floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ffffff;
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .floating-cart-btn {
    bottom: 20px;
    left: 20px;
    width: 3.2rem;
    height: 3.2rem;
  }
}
