.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.floating-buttons.visible {
    opacity: 1;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button.whatsapp:hover {
    background-color: #fff;
}

.floating-button.whatsapp i {
    color: white;
}

.floating-button.go-up {
    background-color: #333;
}

.floating-button.go-up:hover {
    background-color: #fff;
}

.floating-button.go-up i {
    color: white;
}

.floating-button i {
    font-size: 24px;
}

[dir="rtl"] .floating-buttons {
    right: auto;
    left: 20px;
}

@media (max-width: 767px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    [dir="rtl"] .floating-buttons {
        right: auto;
        left: 15px;
    }

    .floating-button {
        width: 40px;
        height: 40px;
    }

    .floating-button i {
        font-size: 20px;
    }
}