.shop-container {
  display: flex;
}
.shop-container-left {
  flex-basis: 200px;
}
.shop-container-right {
  flex: 1;
  padding-left: 20px;
}

@media (max-width: 921px) {
  .woocommerce.home-bestsellers-wrapper ul.products {
    display: flex;
    flex-wrap: nowrap;
    clear: both;
    zoom: 1;
    overflow-y: scroll;
    align-items: stretch;
    justify-content: space-between;
  }
  .home-bestsellers-wrapper ul.products .wg-product-card.custom-product-card {
    background: #fff;
    padding: 10px;
    border-radius: 24px;
    text-align: center;
    flex: 1 1 300px;
    border: 1px solid var(--kava-grey-light);
    margin-bottom: 10px;
    margin-left: 10px;
    min-width: 300px;
  }

  .shop-container {
    flex-direction: column;
  }
  .shop-container-left {
    flex-basis: auto;
  }
  .shop-container-right {
    padding-left: 0;
  }
}
