.ProductItemRecommended {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  grid-column-gap: var(--spaceSm);
  grid-template-rows: auto 1fr;
  row-gap: 8px;
  grid-template-areas: "recImage recTitle recSleva recPrice" "recImage recPerex recSleva recPrice";
  margin-bottom: var(--spaceSm);
}

.ProductItemRecommended:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 36rem) {
  .ProductItemRecommended {
    grid-template-areas: "recImage recTitle recPrice" "recImage recTitle recPrice" "recImage recTitle recPrice";
  }
  .ProductItemRecommended-perex {
    display: none;
  }
}

.ProductItemRecommended-image {
  grid-area: recImage;
}

.ProductItemRecommended-title {
  grid-area: recTitle;
  color: var(--colorText);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.5em;
}

@media (max-width: 36rem) {
  .ProductItemRecommended-title {
    margin: 0;
    align-self: center;
  }
}

.ProductItemRecommended-title h3 {
  display: inline;
  margin: 0 var(--spaceSm) 0 0;
  padding: 0;
  color: inherit;
  font-size: clamp(13px, calc(12.08163px + 0.2449vw), 16px);
  font-weight: 700;
  letter-spacing: 0.8px;
}

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

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

.ProductItemRecommended-stock {
  font-size: var(--textXs);
  font-weight: 400;
  margin: .25em 0;
}

.ProductItemRecommended-stock.is-in {
  color: var(--colorStockIn);
  opacity: 0.7;
}

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

.ProductItemRecommended-perex {
  grid-area: recPerex;
}

.ProductItemRecommended-perexText {
  max-width: 40rem;
  font-size: 14px;
  letter-spacing: 0.7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 23.4375rem) {
  .ProductItemRecommended-title + .ProductItemRecommended-priceWrap {
    margin-top: calc(var(--spaceSm) * -1);
  }
}

.ProductItemRecommended-priceWrap {
  grid-area: recPrice;
  align-self: center;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ProductItemRecommended-price {
  text-align: right;
  font-size: clamp(13px, calc(12.08163px + 0.2449vw), 16px);
  font-weight: 700;
  letter-spacing: 0.8px;
}

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

.ProductItemRecommended-sleva {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 2px 11px;
  letter-spacing: 2.1px;
  color: var(--colorBrandSecondary);
  border: 2px solid #C6BAAC;
  background: white !important;
  height: fit-content;
  margin: auto;
  grid-row: 1 / 3;
}

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