/* Spearmex WhatsApp floating button */
.spx-wa-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 18px 12px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.28);
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color .2s, transform .2s, box-shadow .2s;
    /* never let it stack behind page elements */
    will-change: transform;
}

.spx-wa-btn:hover,
.spx-wa-btn:focus {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.spx-wa-btn svg {
    flex-shrink: 0;
}

/* ── Mobile ──────────────────────────────────────────────────
   Move button higher so it doesn't sit on top of
   fixed "Book Now" bars that typically live at the very bottom.
   Also collapse the text label to save horizontal space.
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .spx-wa-btn {
        bottom: 25px;   /* clears most sticky CTA bars */
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }

    .spx-wa-label {
        display: none;
    }
}
