/* ========= CALL TO ACTION ========= */
/* Stato di default: desktop → NON mostrare i bottoni */
.mobile-floating-buttons {
    display: none;
}

/* Desktop: posizione standard dello scroll-to-top */
.scrollToTop2 {
    right: 192px !important;
    bottom: 2px !important;
    left: auto !important;
    transform: none !important;
}

/* Solo MOBILE: mostra i bottoni e centra lo scroll-to-top */
@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 */
    .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;
    }
}

.scrollToTop {
    bottom: 20px;
    right: 195px;
}

/* ========= CALL TO ACTION end ========= */