/* Floating WhatsApp CTA — left side (Tawk chat stays on the right) */
.floating-whatsapp {
    position: fixed;
    left: 18px;
    right: auto;
    bottom: 22px;
    z-index: 1040;
}

.floating-whatsapp__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #25d366;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.floating-whatsapp__btn:hover,
.floating-whatsapp__btn:focus {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp__btn .fa-whatsapp {
    font-size: 22px;
}

.floating-whatsapp__label {
    display: inline-block;
}

@media (max-width: 575.98px) {
    .floating-whatsapp {
        left: 14px;
        right: auto;
        bottom: 16px;
    }

    .floating-whatsapp__label {
        display: none;
    }

    .floating-whatsapp__btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}
