.banner-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-out;
    width: 100%;
}

.banner-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.banner-slide img,
.banner-slide video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-slider-dot {
    width: 10px;
    height: 10px;
    background: var(--gray);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-slider-dot.active {
    background: var(--secondary);
}
