/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* Affichage en liste verticale */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.product-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.product-list-item img {
  width: 180px;
  border-radius: 6px;
}
.product-list-item .product-description {
  flex: 1;
}
