/* Fixed WhatsApp + Go to Top actions */

.floating-actions {
    position: fixed;
    right: 10px;
    bottom: 22px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.25s;
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.float-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-actions .go-top {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    background: var(--red);
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(200, 25, 58, 0.28);
}

.floating-actions .go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-actions .go-top:hover {
    background: var(--red-dark);
}

@media (max-width: 768px) {
    .floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
    }

    .float-whatsapp svg {
        width: 22px;
        height: 22px;
    }
}
