.wp-call-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    /* Remove any transition for appearance */
    transition: none !important;
}

.wp-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 28px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    /* Aggressive hover/transition removal */
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

/* Explicitly kill all hover/active/focus states */
.wp-call-btn:hover, 
.wp-call-btn:focus, 
.wp-call-btn:active,
.wp-call-btn:visited {
    transform: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    outline: none !important;
    opacity: 1 !important;
    background-image: none !important;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    color: #ffffff !important;
}

/* Call Button */
.call-btn {
    background-color: #F5B800 !important;
    color: #000000 !important;
}

/* Hide Call Button on Desktop */
@media (min-width: 1025px) {
    .call-btn {
        display: none !important;
    }
}

/* Hide State - used by JS for scroll effect */
.wp-call-buttons-container.hidden {
    display: none !important;
}

/* Tablet Settings */
@media (max-width: 1024px) {
    .wp-call-buttons-container {
        bottom: 25px;
        right: 25px;
    }
    .wp-call-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
    }
}

/* Mobile Settings */
@media (max-width: 768px) {
    .wp-call-buttons-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .wp-call-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
}
