.products-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: space-between;
}
.products-img {
  display: block;
  height: 312px;
  line-height: 167px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 0;
}
.products-details .products-img img {
  border-radius: 10px;
}
.product-first-column {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-last-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price__price {
  display: flex;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.product-price__old {
  color: #838383;
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
}
.product-first-column .products__badge {
  position: static;
  font-size: 8px;
  font-weight: 600 !important;
}
.products__row .price-product {
  height: auto;
  line-height: auto;
}
.products__bottom-line .products__title { margin: 0;}
.products__button-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(142,142,142,.1);
  border-radius: 10px;
  height: 40px;
  width: 40px;
  transition: 0.5s;
}
.products__button-right svg {
  fill: #6c6c6c;
  opacity: 70%;
}
.products__button-right:hover {
  background-color: #3e64ff;  
}
.products__button-right:hover svg {
  fill: #fff; 
}

.filter-products {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  background: #fff;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 10px 0;
  margin-bottom: 20px;
  min-width: 250px;
  width: 20%;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}

.filter-products:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.filter-products option {
  background-color: #fff;
  color: #333;
  padding: 10px;
  border-radius: 10px;
}
@media (max-width: 604px) {
  .filter-order-form{
    display: flex;
    justify-content: center;
  }
}