.ProductItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: var(--colorSecondaryBg);
  border: 1px solid var(--colorOutlines);
  border-radius: 0.75rem;
  transition: var(--animationBase);
  overflow: hidden;
}

.ProductItem:hover {
  border-color: #fad6d3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ProductItem:hover .ProductItem-image img {
  transform: scale(1.05);
}

.ProductItem:hover .ProductItem-title a {
  color: var(--colorBrand);
}

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

.ProductItem-image {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: var(--spaceRg);
  padding-bottom: 0;
  color: inherit;
  text-align: center;
  overflow: hidden;
}

.ProductItem-image img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
  object-fit: contain;
}

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

.ProductItem-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  padding: var(--spaceSm) var(--spaceRg) var(--spaceRg);
}

@media (max-width: 48rem) {
  .ProductItem-content {
    padding: var(--spaceXs) var(--spaceSm) var(--spaceSm);
  }
}

.ProductItem-title {
  display: -webkit-box;
  height: 2.6em;
  margin: 0 0 var(--spaceXs);
  color: #1d212b;
  font-size: var(--textSm);
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ProductItem-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--animationBase);
}

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

.ProductItem-perex {
  display: -webkit-box;
  margin-bottom: var(--spaceMd);
  color: var(--colorTextSubtle);
  font-size: var(--textXs);
  line-height: 1.5;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.ProductItem-stock {
  display: flex;
  flex: 1;
  gap: 0.375rem;
  align-items: center;
  margin: 0 0 var(--spaceSm);
  color: var(--colorTextSubtle);
  font-size: var(--textXs);
  font-weight: 500;
}

.ProductItem-stock::before {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  content: '';
}

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

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

.ProductItem-stock.is-inquirable::before {
  background: #F29C32;
}

.ProductItem-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-top: var(--spaceSm);
  border-top: 1px solid var(--colorOutlines);
}

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

.ProductItem-priceWrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-secondary);
  line-height: 1;
}

.ProductItem-priceTop {
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
}

.ProductItem-priceStartingAt {
  color: var(--colorTextSubtle);
  font-size: 0.75rem;
  font-weight: 400;
}

.ProductItem-price {
  color: #1d212b;
  font-size: var(--textRg);
  font-weight: 600;
}

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

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

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

.ProductItem-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
}

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

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