.product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border: 0.5px solid var(--color-borders);
}

.product-list > * {
  flex: 1;
  flex-basis: 100%;
}

@media screen and (min-width: 580px) and (max-width: 960px) {
  .product-list--desktop > * {
    flex-basis: 50%;
  }
}

@media screen and (min-width: 960px) {
  .product-list--desktop > * {
    flex-basis: 25%;
  }
}
