/* Khung bao quanh Slider */
.showroom-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #1f2937;
}

/* Khung chứa các ảnh con */
.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ảnh con */
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

/* Hiển thị ảnh hiện tại */
.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Bộ đếm góc dưới */
.slider-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/* Reponsive */
@media (max-width: 768px) {
    .showroom-slider-container {
        height: 300px;
    }
}