.product-slider-section {
  text-align: center;
  padding: 60px 20px;
  background: #fffaf2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e09b33;
  margin-bottom: 20px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 20px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.slide:hover {
  transform: scale(1.05);
}

.slide img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
  background: #fff;
  padding: 15px;
}

.slide h3 {
  margin: 15px 0 20px;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .slide {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}
