/* Đặt chiều cao cho các slide */
.swiper-slide-inner {
    height: 100vh;
}

/* Các kiểu object-fit */
.object-fit-cover .swiper-slide-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.object-fit-fill .swiper-slide-image {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.object-fit-contain .swiper-slide-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.object-fit-scale-down .swiper-slide-image {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

/* Khi chọn "none", không áp dụng object-fit */
