.fast-product-card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fast-product-card .product-image {
  display: flex;
  flex-direction: column;
}
.fast-product-card .product-image img {
  border-radius: 10px;
}
.fast-product-card .product-details {
  padding: 0 0.5rem !important;
  margin-top: 1rem;
  position: relative;
}
.fast-product-card .product-details > * {
  margin: 0;
}
.fast-product-card .product-details h3 {
  font-weight: bold;
  font-size: clamp(16px, 4dvw, 18px) !important;
  margin-bottom: 0.25rem;
  max-width: 72%;
  color: #2d2d2d;
}
.fast-product-card .product-details .product-like {
  position: absolute;
  right: 0.5rem;
  top: 0;
  font-size: clamp(14px, 2dvw, 16px) !important;
}
.fast-product-card .product-details .buttons {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.fast-product-card .product-details .buttons a {
  box-sizing: border-box;
  background: linear-gradient(-45deg, #be0b0b, #ff8c00, #c30000);
  color: #fff;
  border: 0;
  padding: 1rem;
  width: 100%;
  margin-top: 1rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: bold;
  display: flex;
  text-align: center;
  background-size: 400% 400%;
  animation: gradient 8s ease infinite;
  align-items: center;
  justify-content: center;
}
.fast-product-card .product-details .buttons a.add-to-cart-btn {
  animation: textDance 0.4s alternate infinite;
}
.fast-product-card .product-details .buttons a[href*=shopee] {
  border: 1px solid;
  background: #fff;
  border-color: #e25210;
  color: #e25210;
  max-width: fit-content;
}
.fast-product-card .product-details .buttons a[href*=laz] {
  border: 1px solid;
  background: #fff;
  border-color: #0203b6;
  color: #0203b6;
  max-width: fit-content;
}
.fast-product-card :is(button, a) {
  cursor: pointer;
  font-family: inherit;
}
.fast-product-card .product-price .amount {
  font-size: clamp(16px, 4dvw, 18px) !important;
  font-family: inherit;
}
.fast-product-card .product-price ins, .fast-product-card .product-price ins .amount {
  color: #c00202;
  font-weight: bold;
  text-decoration: none;
}
.fast-product-card .product-price del, .fast-product-card .product-price del .amount {
  color: #727272;
  font-size: 0.85em;
  text-decoration: line-through;
}
.fast-product-card .progress-bar {
  display: flex;
  height: 1rem;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
  margin-top: 1rem;
  position: relative;
}
.fast-product-card .progress-bar .progress {
  background: rgb(189, 0, 0);
  position: relative;
  border-radius: 0.5rem;
}
.fast-product-card .progress-bar .progress img {
  position: absolute;
  right: -8px;
  bottom: 0;
  animation: fire-intense 0.6s ease-in-out infinite;
  transform-origin: bottom center;
}
.fast-product-card .progress-bar .progress-text {
  float: right;
  color: rgba(255, 255, 255, 0.7019607843);
  margin-right: 25px;
  font-family: inherit;
}

@keyframes textDance {
  100% {
    transform: translateY(-6%);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fire-intense {
  0% {
    transform: rotate(-1deg) scale(0.98);
    opacity: 0.9;
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    transform: rotate(1deg) scale(1.02);
    opacity: 1;
    filter: brightness(1.1) hue-rotate(5deg);
  }
  50% {
    transform: rotate(-2deg) scale(1.05);
    opacity: 0.95;
    filter: brightness(1.2) hue-rotate(-5deg);
  }
  75% {
    transform: rotate(1deg) scale(1.01);
    opacity: 1;
    filter: brightness(1.1) hue-rotate(3deg);
  }
  100% {
    transform: rotate(-1deg) scale(0.98);
    opacity: 0.9;
    filter: brightness(1) hue-rotate(0deg);
  }
}

/*# sourceMappingURL=product-card.css.map */
