#custom-phone-icon,
#custom-phone-popup {
    display: none !important;
}

#bmc-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    animation: bmc-whatsapp-pulse 0.8s ease-in-out 5;
}

#bmc-whatsapp-float a {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#bmc-whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

@keyframes bmc-whatsapp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@media (max-width: 767px) {
    #bmc-whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
    }
}
