.slider-banner-text {
    background: linear-gradient(135deg, #ffb066 0%, #ff8a2e 45%, #e56a00 100%);
    color: white;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(229, 106, 0, 0.35);
    width: fit-content;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    gap: 8px;
    transition: all .2s ease;
    box-sizing: border-box;
}

.slider-banner-text:hover {
    background: linear-gradient(135deg, #ffc07e 0%, #ff9b40 45%, #f07500 100%);
    box-shadow: 0 6px 18px rgba(229, 106, 0, 0.55);
    transform: translateY(-1px);
}

.slider-banner-text .fa-bolt {
    font-size: 18px;
    color: #FFD700;
    flex-shrink: 0;
}

.slider-banner-text h1 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

/* MOBİL */
@media (max-width: 768px) {
    .slider-banner-text {
        width: 90%;
        padding: 8px 12px;
        font-size: 13px;
        white-space: normal;
        flex-wrap: wrap;
        gap: 4px;
        overflow: visible;
    }

    .slider-banner-text h1 {
        font-size: 13px;
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }

    /* Yüksekliği büyütmesin diye mobilde ikonu gizle */
    .slider-banner-text .fa-bolt {
        display: none;
    }
}


.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; }

/* Alt Noktalar (Dots) */
.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;
    }
}
