.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Bố cục: slider chính + slider nhỏ nằm bên phải */
.mySwiper2 {
  width: 80%;
  height: 500px;
  float: right; /* ✅ chuyển sang bên phải */
}

.mySwiper {
  width: 19%;
  height: 500px;
  box-sizing: border-box;
  padding: 10px 0;
  float: left; /* ✅ thumbnails nằm bên trái */
}

/* Thumbnails dọc */
.mySwiper .swiper-slide {
  height: 25%;
  opacity: 0.4;
  cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

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