.product-item {
  background: #ffffff;
  padding: 20px 20px 33px;
  position: relative;
  transition: all 0.1s linear;
}
.product-item:hover {
  box-shadow: 0 4px 18px rgba(187, 193, 204, 0.5);
}
.product-item__title {
  font-size: 14px;
  line-height: 20px;
  color: #111111;
  opacity: 0.9;
}
.product-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}
.product-item__price {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}
.product-item__price .price {
  font-size: 20px;
  line-height: 24px;
  color: #111111;
  font-weight: 700;
}
.product-item__price .old-price {
  color: #8F96A2;
  text-decoration: line-through;
  font-size: 14px;
  line-height: 17px;
}
.product-item__add-to-cart {
  padding: 7px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 74, 65, 0.08);
  border-radius: 10px;
  transition: all 0.1s linear;
  border: 0;
}
.product-item__add-to-cart:hover {
  background: #E74A41;
  cursor: pointer;
}
.product-item__add-to-cart:hover svg path {
  fill: #ffffff;
}
.product-item__add-to-cart svg path {
  transition: all 0.1s linear;
}
.product-item__stock-status {
  position: absolute;
  bottom: 10px;
  left: 20px;
}
.product-item__image {
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 15px;
}
.product-item__image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
.product-item__icons {
  position: absolute;
  top: 14px;
  right: 12px;
  display: flex;
  column-gap: 5px;
}

.product-custom-thumbs-list {
  display: flex;
  padding: 0px;
  margin: 0px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.product-custom-thumbs-list li {
  width: 100%;
  max-width: 100px;
  height: 100px;
  list-style: none;
  margin: 3px;
}

.product-custom-thumbs-list li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}