.results {
  padding: 0 0 35px;
}

.product-item {
  border: 1px solid #ffffff;
  line-height: 1.36;
  font-size: 16px;
  display: flex;
}

.product-item__link {
  transition: background-color .35s cubic-bezier(.3, .86, .36, .95);
  color: #000000;
  background-color: #e6e6e6;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 35px 30px;
}

.product-item__link:hover {
  color: #000000;
}

.product-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  margin-bottom: 25px;
}

.product-item__image img {
    max-height: 400px;
}

.product-item img {
  transition: transform .35s cubic-bezier(.3, .86, .36, .95);
  flex-shrink: 0;
}

.product-item__title {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  margin-bottom: 10px;
}

.product-item__price {
  display: block;
  margin: 0 0 8px;
}

.product-item__qty {
  display: block;
}

@media (min-width: 640px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .product-item__image {
    margin-top: -35px;
    margin-bottom: 0;
    padding: 0 45px;
    min-height: 390px;
  }

  .product-item__description {
    padding: 0 25px;
  }

  .product-item__title {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .results {
    padding: 0 0 45px;
  }

  .product-item__link:hover {
    background-color: #cdcdcd;
  }

  .product-item__link:hover .product-item__image img {
    transform: scale(1.08, 1.08);
  }

  .product-item__image {
    margin-top: -13px;
    margin-bottom: 25px;
  }

  .product-item__info {
    display: flex;
    justify-content: space-between;
  }

  .product-item__price {
    margin: 0 10px 0 0;
  }
}

@media (min-width: 1024px) {
  .results {
    padding: 0 0 93px;
  }

  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-item {
    font-size: 16px;
  }

  .product-item__link {
    padding: 45px 0;
  }

  .product-item__image {
    min-height: 453px;
    padding: 0 55px;
  }

  .product-item__description {
    padding: 0 35px;
  }
}

@media (min-width: 1280px) {
  .product-item {
    font-size: 20px;
  }

  .product-item__description {
    padding: 0 50px;
  }

  .product-item__title {
    font-size: 24px;
  }
}

@media (min-width: 1366px) {
  .product-item__link {
    padding: 45px 0 71px;
  }

  .product-item__image {
    padding: 0 35px;
    min-height: 508px;
    margin-top: -22px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1600px) {
  .product-item__description {
    padding: 0 90px;
  }
}

@media (min-width: 1900px) {
  .product-item__description {
    padding: 0 142px 0 113px;
  }
}

