/* Product Showcase Styles */
.product-container {
  position: relative;
  width: 100%;
  height: 450px;
}

.product-scroll-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: hidden;
  position: relative;
  margin: 0;
}


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

.product-scroll-wrapper .card-wrapper {
  flex-shrink: 0;
  width: 285px;
  height: auto;
}

.product-scroll-wrapper {
  gap: 10px;
  height: auto;
  position: absolute;
  left: 0;
  user-select: none;
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10px;
  margin-right: -10px;
}

.product-scroll-wrapper>* {
  margin-right: 0;
}

.product-scroll-wrapper>*:last-child {
  margin-right: 0;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  touch-action: manipulation;
}


.nav-button:hover {
  background-color: #f8f9fa;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.nav-button.prev {
  left: -0px;
}

.nav-button.next {
  right: 0px;
}

.nav-button:disabled {
  background: #ccc;
  touch-action: manipulation;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-button {
    width: 40px;
    height: 40px;
  }

  .nav-button i {
    font-size: 1rem;
  }
}
