.etheme-product-list {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  grid-gap: var(--rows-gap, 20px) var(--cols-gap, 30px);
}
.etheme-product-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.etheme-product-list-item.has-divider:after {
  content: '';
  position: absolute;
  top: calc(100% + var(--rows-gap,20px) / 2 - var(--line-weight,1px)/ 2);
  width: 100%;
  left: 0;
  border-bottom: var(--line-weight, 1px) var(--line-style, solid) var(--line-color, #e1e1e1);
}
.etheme-product-list-item.has-divider:last-child:after {
  display: none;
}
.etheme-product-list-item .price {
  display: block;
  font-size: 1rem;
}
.etheme-product-list-item .star-rating {
  margin-bottom: 0;
}
.etheme-product-list-item .sku_wrapper {
  display: block;
  margin-bottom: 7px;
}
.etheme-product-list-image {
  position: relative;
}
.etheme-product-list-image:not(:only-child) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--image-width-proportion, 35%);
          flex: 0 0 var(--image-width-proportion, 35%);
}
.etheme-product-list-image:not(:only-child):first-child {
  margin: 0 var(--image-space, 20px) 0 0;
}
.etheme-product-list-image:not(:only-child):last-child {
  margin: 0 0 0 var(--image-space, 20px);
}
.etheme-product-list-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.etheme-product-list-content:not(:only-child) {
  max-width: calc(100% - var(--image-width, 35%));
}
.etheme-product-list-title {
  text-transform: none;
  font-size: 1.14rem;
  margin-bottom: 3px;
}
.etheme-product-list-title a {
  display: inline-block;
  color: currentColor;
}
.etheme-product-list-categories {
  font-size: 1rem;
  color: #888;
}
.etheme-product-list-categories a {
  color: currentColor;
}
.etheme-product-list-categories a:hover {
  color: #222;
}
.etheme-product-list-button {
  height: auto;
  background-color: #000;
  color: #fff;
  border: none;
}
.etheme-product-list-button:hover {
  background-color: #333;
  color: #fff;
}
