.angie-floating-buttons-6dea9e01 {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
}

.angie-fab-btn-6dea9e01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.angie-fab-btn-6dea9e01:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.angie-fab-btn-6dea9e01:active {
    transform: scale(0.95);
}

.angie-fab-whatsapp-6dea9e01 {
    background-color: #25D366;
}

.angie-fab-whatsapp-6dea9e01:hover {
    background-color: #1ebe5d;
}

.angie-fab-call-6dea9e01 {
    background-color: #0078FF;
}

.angie-fab-call-6dea9e01:hover {
    background-color: #0063d1;
}

/* Pulse animation on load */
.angie-fab-btn-6dea9e01.angie-fab-pulse-6dea9e01 {
    animation: angie-pulse-6dea9e01 1.5s ease-out;
}

@keyframes angie-pulse-6dea9e01 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .angie-floating-buttons-6dea9e01 {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .angie-fab-btn-6dea9e01 {
        width: 50px;
        height: 50px;
    }
}
