@keyframes productCardFadeInUp {
  from {
      opacity: 0;
      transform: translateY(24px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes productCardShine {
  0% {
      background-position: -200% center;
  }
  100% {
      background-position: 200% center;
  }
}

.sky-productList .product-card:nth-child(1) { animation-delay: 0s; }
.sky-productList .product-card:nth-child(2) { animation-delay: 0.06s; }
.sky-productList .product-card:nth-child(3) { animation-delay: 0.12s; }
.sky-productList .product-card:nth-child(4) { animation-delay: 0.18s; }
.sky-productList .product-card:nth-child(5) { animation-delay: 0.24s; }
.sky-productList .product-card:nth-child(6) { animation-delay: 0.30s; }
.sky-productList .product-card:nth-child(7) { animation-delay: 0.36s; }
.sky-productList .product-card:nth-child(8) { animation-delay: 0.42s; }
.sky-productList .product-card:nth-child(9) { animation-delay: 0.48s; }
.sky-productList .product-card:nth-child(10) { animation-delay: 0.54s; }
.sky-productList .product-card:nth-child(n+11) { animation-delay: 0.60s; }

.product-card {
  border-radius: 16px;
  width: 100%;
  text-align: left;
  color: #262b38;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: productCardFadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
}

.product-card:hover {
  transform: none;
  border-color: var(--Original);
}

.product-card:hover .purchaseButton .buy-now-button {
  color: inherit;
}

.product-card * {
  font-family: codeB;
}

.product-card .product-card-header {
  display: flex;
  flex-direction: column;
  background: #f7f7f9;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  transition: background-color 0.3s ease;
}

.product-card:hover .product-card-header {
  background: #eef1f8;
}

.product-card .product-card-header .header-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.product-card .product-card-header .header-title .product-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card .product-card-header .header-title h5 {
  flex: 1;
  min-width: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-header .header-title h5 {
  color: var(--Original);
}

.product-card .product-card-header .header-title .stock-info {
  flex-shrink: 0;
  padding-left: 10px;
  color: var(--inventoryColor);
  font-size: 12px;
  position: relative;
}

.product-card .product-card-header .header-title .stock-info:after {
  position: absolute;
  content: "";
  background: #d4d6d9;
  width: 1px;
  height: 12px;
  top: 3px;
  left: 0px;
}

.product-card .product-card-header .header-desc {
  margin-top: 6px;
  color: #5c5f66;
  font-size: 12px;
  font-weight: 400;
}

.product-card .product-card-body {
  display: flex;
  align-items: stretch;
}

.product-card .product-card-body .product-description {
  padding: 12px 20px 0;
  margin-bottom: 0px;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-card-body .product-description {
  opacity: 0.75;
  transform: translateY(-2px);
}

.product-card .product-card-body .product-description * {
  color: #83838e;
  font-size: 13px;
  line-height: 26px;
}

.product-card .product-card-body .product-description .content-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.product-card .product-card-body .product-description .content-item .label-text {
  color: #212529;
  display: block;
  white-space: nowrap;
}

.product-card .product-card-body .product-description .content-item .value-text {
  color: #74788d;
}

.product-card .product-card-body .product-description .content-item .value-text a {
  color: var(--primary);
  text-decoration: none;
}

.product-card .product-card-body .product-description .content-item .value-text a:hover {
  color: var(--Original);
}

.product-card .product-Parameters {
  display: block;
}

.product-card .product-Parameters .pricing-info {
  text-align: left;
  padding: 2px 20px 0;
}

.product-card .product-Parameters .currency {
  color: var(--priceColor);
  font-size: 14px;
  vertical-align: super;
}

.product-card .product-Parameters .amount {
  font-size: 26px;
  font-weight: bold;
  color: var(--priceColor);
  transition: font-size 0.3s ease;
}

.product-card .product-Parameters .period {
  margin-left: 4px;
  font-size: 14px;
  color: #777;
}

.product-card .product-Parameters .starting-from {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.product-card .product-Parameters .trial-info {
  display: flex;
  gap: 1px;
  align-items: flex-end;
}

.product-card .product-Parameters .trial-info .currency {
  font-size: 12px;
  color: #333;
}

.product-card .product-Parameters .trial-info .amount {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.product-card .product-Parameters .trial-info .period {
  font-size: 12px;
  color: #333;
}

.product-card .product-Parameters .original-price {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
}

.product-card .product-Parameters .original-price .discount {
  color: #ff0003;
  font-weight: bold;
  padding-right: 4px;
  transition: none;
}

.product-card .product-Parameters .original-price .currency,
.product-card .product-Parameters .original-price .amount,
.product-card .product-Parameters .original-price .period {
  font-size: 12px;
  color: #777;
}

.product-card .product-Parameters .sale-price,
.product-card .product-Parameters .price {
  margin: 4px 0;
  display: flex;
  align-items: baseline;
}

.product-card .product-Parameters .buy-now-button {
  display: block;
  background: var(--buyButton);
  border: none;
  cursor: pointer;
  line-height: 46px;
  font-weight: 500;
  margin-top: 12px;
  font-size: 14px;
  color: #fff;
  width: 100%;
  text-align: center;
  border-radius: 0 0 16px 16px;
  position: relative;
  overflow: hidden;
  transition: none;
}

.product-card .product-Parameters .buy-now-button::before {
  display: none;
}

.product-card .product-Parameters .buy-now-button.SellOut {
  background: linear-gradient(45deg, #d8d8d8 0%, #d8d8d8 100%);
  color: #5a5a5a;
  text-shadow: 0 0.1em 0 #f0f0f0;
  cursor: not-allowed;
}

.product-card .sold-out-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #e64a19;
  font-size: 30px;
}