/* Phần khung */
.gallery-slider, .gallery-thumbs {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Ảnh lớn */
.gallery-slider img {
min-height: 350px;
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
  margin: 0 !important;
}

/* Thumbnail */
.gallery-thumbs {
  margin-top: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.gallery-thumbs .slick-slide {
  margin: 0 5px;
  opacity: 0.6;
}
.gallery-thumbs .slick-current {
  opacity: 1;
}
.gallery-thumbs img {
  width: 100%;
  height: 100px!important;
  display: block;
  object-fit: cover;
  margin: 0 !important;
}

/* Nút điều hướng */
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

/* Ẩn khoảng trắng nếu có br thừa */
.carousel br {
  display: none !important;
}
