.via-fcb-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    display: inline-flex;
    align-items: center;
    height: 56px;
    max-width: 56px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--via-fcb-bg, #2fb344);
    color: var(--via-fcb-color, #ffffff);
    box-shadow: var(--via-fcb-shadow, 0 4px 18px rgba(0, 0, 0, 0.3));
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.35s ease, padding 0.35s ease, box-shadow 0.2s ease;
}

.via-fcb-button:hover,
.via-fcb-button:focus-visible {
    max-width: 320px;
}

.via-fcb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.via-fcb-icon svg {
    width: 100%;
    height: 100%;
}

.via-fcb-text {
    margin-left: 12px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}

.via-fcb-button:hover .via-fcb-text,
.via-fcb-button:focus-visible .via-fcb-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .via-fcb-button {
        right: 16px;
        bottom: 16px;
    }
}
