/* ========== VIRTUAL SCROLL ========== */
.product-list {
  flex: 1;
  position: relative;
}

.virtual-scroll-container {
  width: 100%;
}

.vs-viewport {
  width: 100%;
  height: calc(100vh - var(--header-height) - 200px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.vs-content {
  position: relative;
  width: 100%;
}
