.product-list_delete {
  margin: 0 2rem 0 0;
  cursor: pointer;
  color: gray;
}
.product-list_delete:hover {
  color: red;
}
.product-list_image {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  height: 100px;
  width: 100px;
}
.product-list_description {
  font-weight: 300;
  font-size: 0.7rem;
  margin: 0;
  max-height: 34px;
  overflow: hidden;
}
.product-list_title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}
input.product-list_quantity {
  width: 80px;
}
.product-list_sale {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #939393;
  margin-right: 6px;
}
#cart-info.fixed-cart {
  position: initial;
}
.empty-cart {
  padding: 5rem;
}

@media (min-width: 992px) {
  #cart-info.fixed-cart {
    position: fixed;
    top: var(--margin-top-header); /* Ajusta esto según tu diseño */
  }
}
@media (min-width: 1400px) {
  .product-list_description {
    max-height: 40px;
  }
}
