/* Last update: 2025-07-07T04:30:44+00:00 */

.wa-product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: var(--space-xs);
  padding: var(--space-m);
  border: 1px solid var(--white);
  position: relative;
  z-index: 2;
  background-color: var(--white);
}
.wa-product-card:after {
  transition: 0.2s all ease-in-out;
  position: absolute;
  content: "";
  inset: 0;
  border: 1px solid var(--white);
}
.wa-product-card__img {
  width: 30rem !important;
  position: relative;
}
.wa-product-card__img img {
  object-fit: contain;
  width: 30rem !important;
  transition: 0.3s all ease-in-out;
}
.wa-product-card__img--main {
  opacity: 1;
}
.wa-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.wa-product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}
.wa-product-card__title {
  color: var(--base) !important;
  text-align: center;
  z-index: 3;
}
.wa-product-card__title:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.wa-product-card__price {
  font-size: var(--text-l);
  color: var(--action);
  font-weight: 700;
  line-height: 1;
}
.wa-product-card__price .woocommerce-price-suffix {
  display: none;
}
.wa-product-card__price del span {
  color: var(--base);
  font-size: calc(var(--text-s) * 1.2);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: -6px;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--base);
  text-decoration-thickness: 1px;
}
.wa-product-card__price del {
  text-decoration: none;
}
.wa-product-card__price ins {
  text-decoration: none;
}
.wa-product-card__price ins span {
  text-decoration: none;
}
.wa-product-card-labels {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(var(--space-xs) * .5);
}
.wa-product-card-labels__new {
  background-color: var(--primary-ultra-light);
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-s);
  line-height: 1;
  text-transform: uppercase;
  padding: calc(var(--space-xs) * .5);
  width: fit-content;
}
.wa-product-card-labels__dicount {
  background-color: var(--danger-ultra-light);
  color: var(--danger);
  font-weight: 700;
  font-size: var(--text-s);
  line-height: 1;
  padding: calc(var(--space-xs) * .5);
  width: fit-content;
}
@media (min-width: 1281px) {
  .wa-product-card:hover:after {
    border-color: var(--secondary-light);
  }
  .wa-product-card:hover .wa-product-card__img:has(.wa-product-card__img--hover) .wa-product-card__img--main {
    opacity: 0;
  }
  .wa-product-card:hover .wa-product-card__img:has(.wa-product-card__img--hover) .wa-product-card__img--hover {
    opacity: 1;
  }
}
.wa-product-card[data-stock-status="outofstock"] .wa-product-card__title, .wa-product-card[data-stock-status="outofstock"] .wa-product-card__price, .wa-product-card[data-stock-status="outofstock"] .wa-product-card__price del span {
  color: var(--base-medium) !important;
}
.wa-product-card[data-stock-status="outofstock"]:after {
  backdrop-filter: grayscale(1);
}
@media (min-width: 1281px) {
  .wa-product-card[data-stock-status="outofstock"]:hover:after {
    border-color: var(--secondary-ultra-light);
  }
}
@media (max-width: 1280px) {
  .wa-product-card:after {
    border-color: var(--secondary-light);
  }
  .wa-product-card[data-stock-status="outofstock"]:after {
    border-color: var(--secondary-ultra-light);
  }
}
