﻿
/* ========== PARLAMA (SHEEN) ANIMASYONU ========== */
.btn-animated {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-animated::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.1) 100% );
        transform: skewX(-20deg);
        z-index: 1;
    }
.btn-animated:hover::after {
        animation: sheen 1.3s forwards;
    }

@keyframes sheen {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* ========== GLOW HOVER EFEKTİ ========== */
.btn-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-glow:hover:not(:disabled) {
        transform: translateY(-2px) scale(1.03);
    }
.btn-glow:active:not(:disabled) {
        transform: translateY(0) scale(0.98);
    }


/* ========== ANIMATIONS ========== */
.btn-animated_ {
    position: relative;
    overflow: hidden;
}
.btn-animated_::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }
.btn-animated_:hover::after {
        left: 100%;
    }


/* ========== SHADOW (Premium neutral) ========== */
.bx-shdw {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}
