.wfbp-whatsapp-link {
    text-decoration: none;
}

.wfbp-floating-button,
.wfbp-inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.wfbp-floating-button:hover,
.wfbp-inline-button:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: none !important;
}

.wfbp-floating-button {
    position: fixed;
}

.wfbp-inline-button {
    width: 60px;
    height: 60px;
    background: transparent !important;
}

.wfbp-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.wfbp-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.82);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.wfbp-floating-button:hover .wfbp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes wfbpPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes wfbpBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes wfbpWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-7deg); }
    50% { transform: rotate(7deg); }
    75% { transform: rotate(-4deg); }
}