.product-slider {
  position: relative;
}

.product-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  transition: transform 0.4s ease-in-out;
}

.product {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

@media only screen and (max-width: 600px) {
  .product {
    width: 250px;
  }
}

.product-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */

.product-list::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */

.product-list {
  scrollbar-width: none;
}

/* Hide scrollbar for Internet Explorer and Edge */

.product-list {
  overflow: -moz-scrollbars-none;
}

