.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;
}


.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; /* Altın sarısı */
    flex-shrink: 0;
}


.slider-banner-text h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


@media (max-width: 768px) {
    .slider-banner-text {
        width: 90%;
        padding: 10px 14px;
        font-size: 13px;
        white-space: normal;
        flex-wrap: wrap;
        gap: 6px;
    }

    .slider-banner-text h1 {
        font-size: 13px;
        text-align: center;
    }

    .slider-banner-text .fa-bolt {
        font-size: 17px;
    }
}
