@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fade-in 1s ease forwards;
}
.animate-fade-in.delay-300 {
  animation-delay: 0.3s;
}
.animate-fade-in.delay-500 {
  animation-delay: 0.5s;
}
.animate-fade-in.delay-700 {
  animation-delay: 0.7s;
}

@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.animate-bounce-slow {
  animation: bounce-slow 6s infinite ease-in-out;
}
.animate-bounce-slow.delay-200 {
  animation-delay: 0.2s;
}

@keyframes pulse-slow {
  0%,
  100% {
    transform: translateX(-100%) rotate(12deg);
  }
  50% {
    transform: translateX(100%) rotate(12deg);
  }
}
.animate-pulse-slow {
  animation: pulse-slow 8s linear infinite;
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  Featured Products Loader Animation */
.cart-loader .dot {
  width: 4px;
  height: 4px;
  margin: 0 2px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.9s infinite ease-in-out both;
}

.cart-loader .dot1 {
  animation-delay: -0.32s;
}
.cart-loader .dot2 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/*  WooCommerce "View cart" link below button  */
#featured-products a.added_to_cart.wc-forward {
  display: block !important;
  margin-top: 0.35rem;
  font-size: 12px !important;
  text-decoration: underline !important;
  color: #444 !important;
  text-align: right;
  transition: color 0.2s ease-in-out;
}
#featured-products a.added_to_cart.wc-forward:hover {
  color: #f0b60b !important;
}


