.product-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.poduct-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.product-card {
  flex: 0 0 25%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.product-card p {
  font-size: 1rem;
  color: #22c55e;
  font-weight: bold;
}

.product-card:hover {
  transform: scale(1.05);
}

