.whatsapp-floating-cta {
    position: fixed;
    right: 20px;
    bottom: 110px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.whatsapp-floating-cta__text {
    color: #f08a2e;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-floating-cta__icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex: 0 0 auto;
}

.whatsapp-floating-cta__icon i {
    font-size: 18px;
}

@media (max-width: 576px) {
    .whatsapp-floating-cta {
        right: 12px;
        bottom: 95px;
        padding: 8px 10px;
    }

    .whatsapp-floating-cta__text {
        display: none;
    }
}

