/* TNF Floating Action Buttons */
.tnf-fab-wrap {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.tnf-fab {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.22);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.tnf-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

/* Icon circle */
.tnf-fab__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Label pill */
.tnf-fab__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 0 14px 0 4px;
    color: #fff;
}

/* ---- Call button (left) ---- */
.tnf-fab--call .tnf-fab__icon {
    background: #e02020;
    color: #fff;
}

.tnf-fab--call .tnf-fab__label {
    background: #2b2b2b;
    border-radius: 0 999px 999px 0;
    margin-left: -24px;
    padding-left: 28px;
    height: 36px;
    line-height: 36px;
    padding-right: 16px;
}

/* ---- WhatsApp button (right) ---- */
.tnf-fab--whatsapp .tnf-fab__icon {
    background: #25d366;
    color: #fff;
    order: 2;
}

.tnf-fab--whatsapp .tnf-fab__label {
    order: 1;
    background: #2b2b2b;
    border-radius: 999px 0 0 999px;
    margin-right: -24px;
    padding-right: 28px;
    padding-left: 16px;
    height: 36px;
    line-height: 36px;
}

/* Mobile: hide labels, show only icons */
@media (max-width: 480px) {
    .tnf-fab__label {
        display: none;
    }

    .tnf-fab--call .tnf-fab__icon,
    .tnf-fab--whatsapp .tnf-fab__icon {
        margin: 0;
    }
}
