.ProductItem {
  position: relative;
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  width: 100%;
  transition-property: transform;
  overflow: hidden;
  box-sizing: border-box;
}

.ProductItem-image {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  margin-bottom: var(--spaceSm);
  overflow: hidden;
}

.ProductItem-image:hover, .ProductItem-image:active, .ProductItem-image:focus {
  text-decoration: none;
}

.ProductItem-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(153, 136, 120, 0.2) 0%, rgba(227, 222, 218, 0.2) 31.25%, rgba(255, 255, 255, 0) 90.87%);
}

.ProductItem-image img {
  padding: clamp(1.5rem, calc(1.34694rem + 0.65306vw), 2rem);
}

.ProductItem-imageLogo {
  display: none;
  position: absolute;
  top: calc(100% - 134px);
  right: 47px;
  transform: rotate(270deg);
  transform-origin: top right;
}

@media (min-width: 36.01rem) {
  .ProductItem-imageLogo {
    display: block;
  }
}

.ProductItem-imageLogo img {
  width: 134px;
  height: auto;
  padding: 0;
}

.ProductItem .ProductItem-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  pointer-events: none;
}

@media (min-width: 36.01rem) {
  .ProductItem .ProductItem-tags {
    top: 30px;
  }
}

.ProductItem .ProductItemFavorite {
  top: 8px;
  right: 8px;
}

@media (min-width: 36.01rem) {
  .ProductItem .ProductItemFavorite {
    top: 30px;
  }
}

.ProductItem-stock {
  color: var(--colorStockIn);
  font-size: var(--textXs);
  font-weight: 400;
  margin: 0 0 var(--spaceXs);
}

.ProductItem-stock.is-in {
  color: var(--colorStockIn);
}

.ProductItem-stock.is-out {
  color: var(--colorStockOut);
}

.ProductItem-title {
  color: var(--colorText);
  font-size: clamp(12px, calc(10.77551px + 0.32653vw), 16px);
  margin: 0 0 clamp(0px, calc(-2.44898px + 0.65306vw), 8px);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ProductItem-title a {
  color: inherit;
  text-decoration: none;
}

.ProductItem-title a:hover, .ProductItem-title a:active, .ProductItem-title a:focus {
  text-decoration: underline;
}

.ProductItem-perex {
  font-size: clamp(12px, calc(11.38776px + 0.16327vw), 14px);
  margin-bottom: var(--spaceMd);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ProductItem-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 1rem;
}

.ProductItem-priceWrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  white-space: nowrap;
  text-align: right;
}

.ProductItem-price {
  text-align: right;
  font-size: clamp(12px, calc(10.77551px + 0.32653vw), 16px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

.ProductItem-originPrice {
  color: var(--colorBrandSecondary);
  text-align: right;
  font-size: clamp(12px, calc(10.77551px + 0.32653vw), 16px);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration-line: line-through;
}

.ProductItem-code {
  font-size: clamp(12px, calc(10.77551px + 0.32653vw), 16px);
  font-weight: 400;
  white-space: nowrap;
  color: #888888;
}

/*# sourceMappingURL=product-item.min.css.map */
