.rootz-cta{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;
    display:flex;
    align-items:center;
    gap:15px;
    max-width:360px;
    padding:14px 18px;
    background:#ffffff;
    border-radius:16px;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(0,0,0,.20);
    border:1px solid rgba(0,0,0,.08);
    transition:all .25s ease;
    animation:rootzPulse 2.5s infinite;
    font-family:Arial, sans-serif;
}

.rootz-cta:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 32px rgba(0,0,0,.25);
    text-decoration:none;
}

.rootz-cta img{
    width:60px;
    height:auto;
    flex-shrink:0;
    display:block;
}

.rootz-title{
    color:#212529;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
}

.rootz-subtitle{
    color:#6c757d;
    font-size:13px;
    margin-top:2px;
    line-height:1.3;
}

.rootz-action{
    color:#198754;
    font-weight:700;
    font-size:14px;
    margin-top:6px;
}

@keyframes rootzPulse{
    0%{
        box-shadow:0 0 0 0 rgba(25,135,84,.35);
    }
    70%{
        box-shadow:0 0 0 18px rgba(25,135,84,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(25,135,84,0);
    }
}

@media(max-width:576px){
    .rootz-cta{
        right:10px;
        left:10px;
        bottom:10px;
        max-width:none;
        padding:12px;
    }

    .rootz-cta img{
        width:48px;
    }

    .rootz-title{
        font-size:15px;
    }

    .rootz-subtitle{
        font-size:12px;
    }

    .rootz-action{
        font-size:13px;
    }
}