.wa-bubble-wrapper-6964e92f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.admin-bar .wa-bubble-wrapper-6964e92f {
    bottom: 30px;
}

.wa-bubble-6964e92f {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
    cursor: pointer;
}

.wa-bubble-6964e92f:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.wa-icon-6964e92f {
    width: 36px;
    height: 36px;
    display: block;
    z-index: 2;
}

.wa-pulse-6964e92f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: #25d366;
    opacity: 0.4;
    z-index: 1;
    animation: wa-pulse-anim-6964e92f 2s infinite;
}

@keyframes wa-pulse-anim-6964e92f {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.wa-tooltip-6964e92f {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #1f2937;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
}

.wa-tooltip-6964e92f::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1f2937;
}

.wa-bubble-6964e92f:hover .wa-tooltip-6964e92f {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .wa-bubble-wrapper-6964e92f {
        bottom: 20px;
        right: 20px;
    }
    .wa-bubble-6964e92f {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    .wa-icon-6964e92f {
        width: 30px;
        height: 30px;
    }
    .wa-pulse-6964e92f {
        border-radius: 10px;
    }
    .wa-tooltip-6964e92f {
        display: none;
    }
}
