/* Căn giữa slide ảnh nhỏ */
.swiper-container {
  width: 100%;
  max-width: 450px;
  padding-top: 10px;
}

/* Chỉnh kích thước ảnh nhỏ */
.sub-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Hover ảnh nhỏ: phóng to nhẹ + viền xanh */
.sub-thumbnail:hover {
  transform: scale(1.1);
  border-color: #007bff;
}

/* Ảnh nhỏ đang được chọn có viền nổi bật */
.sub-thumbnail.active {
  border-color: #ff5722;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
  transform: scale(1.1);
}

/* Nút điều hướng Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff5722;
}

.single-portfolio {
  text-align: center;
  position: relative;
}

#main-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin-bottom: 15px;
}

.related-products {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.related-slider {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.related-product-item {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  cursor: pointer;
}

.related-product-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.related-product-item img:hover {
  transform: scale(1.1);
}

.related-product-item p {
  font-size: 14px;
  margin-top: 5px;
}
