.leanpay-banner {
    background: #f5faff;
    border-top: 2px solid #3184ca;
    width: 100%;

    .leanpay-banner-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 6px 20px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .leanpay-banner-logo {
        height: 30px;
        width: auto;
        display: block;
        flex-shrink: 0;
    }

    .leanpay-banner-text {
        font-size: 15px;
        font-weight: 600;
        color: #1a5fa8;
        white-space: nowrap;
    }

    .leanpay-banner-btn {
        display: inline-block;
        padding: 7px 20px;
        background: #3184ca;
        color: #fff;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.18s ease;

        &:hover {
            background: #1f63a3;
            color: #fff;
            text-decoration: none;
        }
    }

    @media (max-width: 767px) {
        .leanpay-banner-inner {
            gap: 12px;
            padding: 6px 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .leanpay-banner-text {
            font-size: 13px;
        }

        .leanpay-banner-logo {
            height: 22px;
        }
    }
}
