.vzl-main-container {
    width: 100%;
    max-width: 1300px; 
    margin: 25px auto !important;
    position: relative;
    overflow: hidden; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    background: #fff;
}

.vzl-slider {
    position: relative;
    width: 100%;
    height: auto !important; 
}

.vzl-slides {
    display: flex;
    width: 100%;
    position: relative;
}

.vzl-slide {
    display: none;
    width: 100%;
}

.vzl-slide.active {
    display: block;
    animation: vzlFade 0.7s ease-in-out;
}


.vzl-slide img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain; 
    border-radius: 20px; 
}


.vzl-prev, .vzl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 22px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vzl-prev:hover, .vzl-next:hover {
    background: #f27a1a;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.vzl-prev { left: 20px; }
.vzl-next { right: 20px; }


.vzl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.vzl-dot {
    height: 8px;
    width: 8px;
    margin: 0 6px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s ease;
}

.vzl-dot.active {
    background-color: #f27a1a;
    width: 30px; 
    border-radius: 10px;
}


@keyframes vzlFade {
    from { opacity: 0.4; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}


@media (max-width: 768px) {
    .vzl-main-container {
        width: 95% !important; 
        max-width: 100% !important;
        margin: 15px auto !important; 
        display: block !important;
        padding: 0 !important; 
        left: 0 !important;
        right: 0 !important;
    }

    .vzl-slider, .vzl-slides, .vzl-slide {
        width: 100% !important;
    }

    .vzl-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 15px;
    }
}