.floating-wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-button {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 50px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    transition: all .2s ease;
    min-width: 55px;
    max-width: 55px;
    overflow: hidden;
    white-space: nowrap;
}

.wa-button svg {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
}

.wa-text {
    margin-left: 8px;
    font-size: 14px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    max-width: 200px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.4s ease, margin-left 0.4s ease;
}

@media (min-width: 768px) {

    .wa-button:hover {
        max-width: 180px;
    }
    .wa-button .wa-text {
        opacity: 0;
        margin-left: 0;
        transition: opacity .2s ease;
    }
    .wa-button:hover .wa-text {
        opacity: 1;
        margin-left: 8px;
    }
}

@media (max-width: 767px) {
    .wa-button {
        max-width: 180px;
    }
    .wa-button .wa-text {
        opacity: 1;
        margin-left: 8px;
    }
}