/* Site-specific overrides (contact / WhatsApp widget) */

.abSocial a.abSocial-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.abSocial a.abSocial-svg svg {
    display: block;
    width: 14px;
    height: 14px;
}


.whatsapp-chat-widget {
    position: fixed;
    bottom: 22px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(18, 90, 48, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-chat-widget.is-right {
    right: 22px;
    left: auto;
}

.whatsapp-chat-widget.is-left {
    left: 22px;
    right: auto;
}

.whatsapp-chat-widget:hover,
.whatsapp-chat-widget:focus {
    color: #fff;
    background: #1ebe57;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(18, 90, 48, 0.42);
}

.whatsapp-chat-widget svg {
    flex-shrink: 0;
    display: block;
}

.whatsapp-chat-label {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .whatsapp-chat-widget {
        bottom: 16px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-chat-widget.is-right {
        right: 16px;
    }

    .whatsapp-chat-widget.is-left {
        left: 16px;
    }

    .whatsapp-chat-label {
        display: none;
    }
}
