/* components/slider/slider.css */
.custom-slider {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.main-image-wrapper {
  width: 1000px;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.active-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.15);
  transition: opacity 0.5s ease, transform 0.5s ease;
  border-radius: 8px;
}

.active-image.show {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail {
  width: 150px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease;
}

.thumbnail.active-thumb {
  border-color: #C2A86C; /* Gold color */;
  border-width: 4px;
}
