/* Floating WhatsApp Button — 16764 */

.fw16764-wrap {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.fw16764-wrap[style*="left:"] {
    flex-direction: row;
}

.fw16764-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fw16764-pulse 2.5s infinite;
    flex-shrink: 0;
}

.fw16764-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

.fw16764-btn svg {
    width: 36px;
    height: 36px;
    display: block;
}

.fw16764-tooltip {
    background-color: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.fw16764-wrap[style*="left:"] .fw16764-tooltip {
    transform: translateX(-8px);
}

.fw16764-wrap:hover .fw16764-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fw16764-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Editor preview — keep it visible in canvas */
.elementor-editor-active .fw16764-wrap {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    display: inline-flex;
    margin: 16px;
}
