.bw4tec-float-wrap {
    position: fixed;
    bottom: 25px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bw4tec-float-wrap.bw4tec-pos-right {
    right: 25px;
    flex-direction: row;
}

.bw4tec-float-wrap.bw4tec-pos-left {
    left: 25px;
    flex-direction: row-reverse;
}

.bw4tec-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    box-sizing: border-box;
}

.bw4tec-wa-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    pointer-events: none;
}

.bw4tec-float-btn:hover,
.bw4tec-float-btn:focus-visible {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    outline: none;
}

.bw4tec-float-cta-bubble {
    background: #ffffff;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    position: relative;
    animation: bw4tecPulse 3s infinite ease-in-out;
}

@keyframes bw4tecPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
