#custom-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#custom-sticky-cart .sticky-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  pointer-events: all;
}
.sticky-img {
  height: 60px;
  margin-right: 10px;
}
.sticky-info {
  flex-grow: 1;
}
.sticky-title {
  font-weight: bold;
  font-size: 16px;
}
.sticky-action button {
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}
.sticky-qty {
  color: #ff0085;
  font-weight: bold;
  cursor: pointer;
}
.sticky-qty:focus {
  outline: 2px solid #ff0085;
  outline-offset: 2px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.pulse-sticky {
  animation: pulse 0.4s ease-in-out;
}
@media (max-width: 479px) {
  #custom-sticky-cart .add-to-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #custom-sticky-cart .add-to-cart i {
    font-size: 22px;
	margin-right: 0px;
  }
}
@keyframes sticky-boom {
  0% {transform: translateY(100%) scale(0.8); opacity: 0;}
  50% {transform: translateY(-10%) scale(1.05); opacity: 1;}
  70% {transform: translateY(5%) scale(0.98);}
  100% {transform: translateY(0) scale(1);}
}
#custom-sticky-cart.show-bounce {
	animation: sticky-boom 0.4s cubic-bezier(0.25, 1.5, 0.5, 1) forwards;
}
@keyframes sticky-slide-out {
  0% {transform: translateY(0); opacity: 1;}
  100% {transform: translateY(100%); opacity: 0;}
}
#custom-sticky-cart.hide-sneaky {
  animation: sticky-slide-out 0.3s ease-out forwards;
}