/* Extracted inline CSS from block widget ID 21 */

/* style block 1 */
:root {
        --clr-cta-bg: #0A1F33;
        --clr-cta-text: #ffffff;
        --clr-btn-call: #B71C1C;
        --clr-btn-call-hover: #9a1717;
        --clr-btn-wp: #0B5E3C;
        --clr-btn-wp-hover: #084b31;
    }

    .cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        display: flex;
        height: 56px;
        background-color: var(--clr-cta-bg);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        will-change: transform;
        transform: translateZ(0);
        -webkit-font-smoothing: antialiased;
    }

    .cta-bar__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--clr-cta-text) !important; /* Tema ezmesin diye koruma eklendi */
        text-decoration: none !important; /* Tema ezmesin diye koruma eklendi */
        font-size: 15px;
        font-weight: 600;
        transition: background-color 0.2s ease-in-out;
        white-space: nowrap;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        outline: none;
    }

    .cta-bar__icon {
        width: 20px;
        height: 20px;
        transform: translateZ(0); 
    }

    .cta-bar__btn--call { background-color: var(--clr-btn-call) !important; }
    .cta-bar__btn--call:hover { background-color: var(--clr-btn-call-hover) !important; }

    .cta-bar__btn--wp {
        background-color: var(--clr-btn-wp) !important;
        border-left: 1px solid rgba(10, 31, 51, 0.5);
    }
    .cta-bar__btn--wp:hover { background-color: var(--clr-btn-wp-hover) !important; }

    .cta-bar__btn:focus-visible {
        outline: 2px dashed #ffffff !important;
        outline-offset: -4px !important;
        border-radius: 4px;
    }

    @media (min-width: 1024px) {
        .cta-bar {
            width: 260px;
            left: auto;
            right: 18px;
            bottom: 25px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
        }

        .cta-bar:hover {
            transform: translateY(-5px) translateZ(0);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-bar__btn { font-size: 14px; }
        .cta-bar__icon { width: 18px; height: 18px; }
    }

    /* a11y: prefers-reduced-motion Desteği */
    @media (prefers-reduced-motion: reduce) {
        .cta-bar {
            transition: none !important;
            transform: none !important;
        }
        .cta-bar:hover {
            transform: none !important;
        }
    }

