/* Your original CSS with modifications for dynamic positioning */
.jts-call-button .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    background: #210D94;
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: flex;
    justify-items: center;
    align-items: center;
    text-decoration: none;
}

.jts-call-button .cc-calto-action-ripple i {
    transition: 0.3s ease;
    font-size: 2.2rem;
}

.jts-call-button .cc-calto-action-ripple:hover i {
    transform: rotate(135deg);
}

@keyframes cc-calto-action-ripple {
    0% {
        box-shadow: 0 4px 10px rgba(33, 13, 148, 0.1), 0 0 0 0 rgba(33, 13, 148, 0.1), 0 0 0 5px rgba(33, 13, 148, 0.1), 0 0 0 10px rgba(33, 13, 148, 0.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(33, 13, 148, 0.1), 0 0 0 5px rgba(33, 13, 148, 0.1), 0 0 0 10px rgba(33, 13, 148, 0.1), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

.jts-whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #25D366;
    z-index: 100;
    text-decoration: none;
}

.jts-whatsapp-button .my-float {
    margin-top: 16px;
}

.jts-whatsapp-button:hover {
    color: #fff;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-12px);
    }
}

/* Ensure compatibility with all themes */
.jts-call-button *,
.jts-whatsapp-button * {
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .jts-call-button .cc-calto-action-ripple {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0.8rem;
    }
    
    .jts-call-button .cc-calto-action-ripple i {
        font-size: 1.8rem;
    }
    
    .jts-whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .jts-whatsapp-button .my-float {
        margin-top: 13px;
    }
}