.ProductItem {
  background: var(--colorSecondaryBg);
  padding: var(--spaceRg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid var(--colorBodyBg);
}

@media (max-width: 48rem) {
  .ProductItem {
    padding: var(--spaceSm);
    border: 0;
    border-bottom: 1px solid var(--colorBodyBg);
  }
  .ProductItem:nth-child(odd) {
    border-right: 1px solid var(--colorBodyBg);
  }
}

.ProductItem-image {
  text-align: center;
  align-self: center;
  margin-bottom: var(--spaceSm);
  color: inherit;
}

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

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

.ProductItem-title {
  color: var(--colorText);
  font-size: var(--textRg);
  margin: 0 0 var(--spaceSm);
  font-weight: 400;
}

@media (max-width: 48rem) {
  .ProductItem-title {
    margin: 0 0 var(--spaceXs);
  }
}

.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: var(--textXs);
  margin-bottom: var(--spaceMd);
}

@media (max-width: 48rem) {
  .ProductItem-perex {
    margin-bottom: var(--spaceSm);
  }
}

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

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

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

.ProductItem-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

@media (max-width: 48rem) {
  .ProductItem-bottom {
    flex-flow: row wrap;
  }
}

.ProductItem-priceWrap {
  line-height: 1.2;
}

.ProductItem-priceStartingAt {
  font-weight: 400;
  color: var(--colorText);
  font-size: .7em;
}

.ProductItem-price {
  font-weight: 900;
}

.ProductItem-price:not(:last-child) {
  margin-bottom: var(--spaceXxxxs);
}

.ProductItem-price.is-highlighted {
  color: var(--colorHighlighted);
}

.ProductItem-priceNoVat, .ProductItem-originPrice {
  font-weight: 400;
  font-size: var(--textXxs);
  color: var(--colorTextSubtle);
}

.ProductItem-originPrice {
  text-decoration: line-through;
}

.ProductItem-btn {
  padding: .3em 1.7em;
}

@media (max-width: 48rem) {
  .ProductItem-btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--spaceSm);
  }
}

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