{# Widget « Bouton de contact flottant » — appel, WhatsApp ou email, toujours
visible en bas de l'écran. Conçu pour la conversion mobile des TPE. #}
{% set href = null %}
{% set icon = 'fa-solid fa-phone' %}
{% if channel == 'phone' and phone %}
{% set href = 'tel:' ~ phone|replace({' ': '', '.': ''}) %}
{% elseif channel == 'whatsapp' and phone %}
{# wa.me exige le numéro international sans « + » ni séparateurs #}
{% set waNumber = phone|replace({' ': '', '.': '', '-': '', '(': '', ')': ''}) %}
{% if waNumber starts with '+' %}{% set waNumber = waNumber[1:] %}{% endif %}
{% if waNumber starts with '00' %}{% set waNumber = waNumber[2:] %}{% endif %}
{% set href = 'https://wa.me/' ~ waNumber %}
{% set icon = 'fa-brands fa-whatsapp' %}
{% elseif channel == 'email' and email %}
{% set href = 'mailto:' ~ email %}
{% set icon = 'fa-solid fa-envelope' %}
{% endif %}
{% if href %}
{% if showLabel and label %}{{ label }}{% endif %}
{% else %}
{% endif %}