.floating-action {
    position: fixed;
    bottom: 116px;
    z-index: 10;
    right: max(16px, calc((100vw - 1168px) / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    gap: 12px;
    background: linear-gradient(90deg, #F12B9E 0%, #9C26F4 100%);
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-action.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-action-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .floating-action {
        right: 4px;
        bottom: 83px;
        width: 40px;
        height: 40px;
    }

    .floating-action-icon {
        width: 16px;
        height: 16px;
    }
}

