.ProductItem {
  position: relative;
  display: flex;
  flex-flow: column;
  border: 1px solid var(--colorOutlines);
  border-top: none;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  transition: var(--animationBase);
}

.ProductItem:hover, .ProductItem:active, .ProductItem:focus {
  box-shadow: 0 0 0.875rem 0 var(--colorBrand);
}

@media (max-width: 32rem) {
  .ProductItem {
    font-size: var(--textSm);
    padding: var(--spaceMd) var(--spaceSm) var(--spaceRg);
  }
}

.ProductItem-image {
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  order: 1;
  position: relative;
}

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

.ProductItem .ProductItem-tags {
  display: none;
  gap: 0.25rem;
  position: absolute;
  left: calc(((-1) * clamp(1.5rem, 5vw, 2.5rem)) + 0.125rem);
  bottom: 0.125rem;
  pointer-events: none;
}

.ProductItem-stock {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  order: 5;
  padding-top: clamp(0.75rem, 1vw, 1.25rem);
  border-top: 1px solid var(--colorOutlines);
  margin-bottom: 0.375rem;
  margin-top: auto;
}

.ProductItem-stock::before {
  content: '';
  width: 1rem;
  height: 0.875rem;
  display: inline-block;
  border-radius: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath d='M3.07195 5.61145C3.71527 5.61145 4.32166 5.36212 4.77722 4.90656L7.72913 1.95466C7.90458 1.77921 8 1.54835 8 1.3021C8 1.05585 7.90458 0.824993 7.72913 0.649541C7.3813 0.301715 6.77183 0.301715 6.42401 0.649541L3.47211 3.60145C3.37053 3.70302 3.22586 3.76151 3.07503 3.76151C2.9242 3.76151 2.77953 3.70302 2.67795 3.59837L1.57599 2.49333C1.22816 2.1455 0.6187 2.1455 0.270874 2.49333C0.0954216 2.66878 0 2.89964 0 3.14589C0 3.39213 0.0954216 3.62299 0.270874 3.79844L1.37284 4.90349C1.8284 5.35905 2.43478 5.60837 3.07811 5.60837L3.07195 5.61145Z' fill='%23F9F9F9'/%3E%3C/svg%3E");
  background-color: var(--colorStockIn);
  background-position: center;
  background-repeat: no-repeat;
}

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

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

.ProductItem-title {
  font-family: var(--font-primary);
  color: var(--colorText);
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0 0 0.675rem;
  order: 2;
  font-weight: 600;
}

.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: 0.875rem;
  line-height: 1.4;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  order: 4;
}

.ProductItem-box {
  display: flex;
  flex-flow: column;
  order: 6;
  margin-top: auto;
  padding-top: clamp(0.75rem, 1vw, 1.25rem);
  border-top: 1px solid var(--colorOutlines);
}

@media (max-width: 32rem) {
  .ProductItem-box {
    flex-direction: column;
    align-items: unset;
  }
}

.ProductItem-priceWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 1rem;
  align-items: baseline;
  width: 100%;
  line-height: 1.24;
  white-space: nowrap;
  margin-bottom: clamp(0.75rem, 1vw, 1.25rem);
}

.ProductItem-price {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.45;
  order: 1;
}

.ProductItem-originPrice, .ProductItem-noVatPrice {
  color: var(--colorTextSubtle);
  font-size: var(--textXs);
}

.ProductItem-originPrice {
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: line-through;
  order: 2;
}

.ProductItem-noVatPrice {
  display: none;
}

.ProductItem .ProductRatingInline {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  order: 3;
}

.ProductItem .ButtonBase {
  font-size: clamp(1rem, 3vw, 1.125rem);
  padding: var(--sizeButtonPaddingVertical);
  text-transform: unset;
}

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