/* THIS FILE IS GENERATED AUTOMATICALLY, DO NOT MODIFY IT DIRECTLY, ANY DIRECT CHANGES WILL BE LOST */
/* Last update: 2025-12-13T16:24:12+00:00 */

.wa-product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--wa-radius);
  background-color: var(--secondary);
  overflow: hidden;
  gap: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.wa-product-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary-light-trans-30);
  padding: var(--space-s) var(--space-m);
  flex: 1;
  gap: 0;
}
.wa-product-card-top img {
  height: 5.8rem;
  min-height: 5.8rem;
  width: 5.8rem;
  min-width: 5.8rem;
  object-fit: contain;
}
.wa-product-card-top span {
  color: var(--base);
  font-size: calc(var(--text-xl)* .9);
  font-weight: 700;
  line-height: 1.2;
}
.wa-product-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-s) var(--space-m);
}
.wa-product-card-bottom img {
  max-height: 26rem;
  height: 26rem;
  object-fit: contain;
  width: fit-content;
  transition: 0.2s all ease-in-out;
  mix-blend-mode: multiply;
}
.wa-product-card:hover .wa-product-card-bottom img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .wa-product-card-top img {
    height: 4.4rem;
    min-height: 4.4rem;
    width: 4.4rem;
    min-width: 4.4rem;
  }
  .wa-product-card-bottom img {
    max-height: 20rem;
  }
}
