.s-product-card-image img.loaded {

.slider-container {
  margin: 20px auto;
  max-width: 100%;
}

.slider {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slides {
  width: 300%;
  height: 100%;
  display: flex;
  animation: slide 15s infinite;
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 10px;
  text-align: center;
}

@keyframes slide {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(-33.333%); }
  66%, 96% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .slider {
    height: 300px;
  }
}
}