@media (max-width: 768px) {

    .mobile-floating-buttons {
        position: fixed !important;
        bottom: 11px !important;
        right: 9px !important;
        display: flex !important;
        flex-direction: row !important;
        /* <<< AFFIANCATI */
        gap: 12px;
        z-index: 9999;
    }

    .mobile-floating-buttons a {
        width: 70px;
        height: 70px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none !important;
        color: #fff !important;
        font-size: 30px;
        line-height: 1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    }

    .mobile-floating-buttons .btn-call {
        background: #007bff;
    }

    .mobile-floating-buttons .btn-whatsapp {
        background: #25D366;
    }

    /* MOBILE: centro lo scroll-to-top quando ci sono i bottoni fissi */
    @media (max-width: 768px) {
        .scrollToTop2 {
            position: fixed !important;
            bottom: 1px !important;
            /* sopra i due bottoni WP + Tel */
            left: 50% !important;
            transform: translateX(-50%);
            right: auto !important;
            z-index: 9998;
        }
    }

    /* DESKTOP: torna normale */
    @media (min-width: 769px) {
        .scrollToTop2 {
            right: 192px !important;
            bottom: 2px !important;
            left: auto !important;
            transform: none !important;
        }
    }
}