.product-scroll-container {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  direction: rtl;
}

.product-scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for cleaner look */
}

.product-item {
  flex: 0 0 auto;
  width: 75px;
  text-align: center;
  scroll-snap-align: end;
  /* background-color: beige; */
}

.product-item img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px 6px 0px 0px;
  display: block;
  background-color: var(--light2);
}

.product-item p {
  margin: 0px 0 0;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: var(--dark2);
  color: var(--light1);
  margin-top: 3px;
  height: 20px;
  line-height: 20px;
  border-radius: 0px 0px 3px 3px;
}
