:host {
  display: block;
  width: 100%;
  gap: 0.5rem;
  overflow-x: scroll;
  position: relative;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-container {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  overflow-x: scroll;
  position: relative;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.scroll-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 2.5rem;
  border: none;
  height: 2.5rem;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.scroll-button svg {
  width: 1rem;
  height: 1rem;
}

.scroll-left {
  left: 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.scroll-right {
  right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}
