/* Stile del pulsante Torna Su */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001; /* Sopra tutto, anche l'header */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0; /* Invisibile all'inizio */
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

/* Quando il pulsante è visibile */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px; /* Sale leggermente quando appare */
}

/* La Freccia (creata con i bordi) */
.arrow-up {
    width: 10px;
    height: 10px;
    border-top: 2px solid #333333;
    border-left: 2px solid #333333;
    transform: rotate(45deg);
    margin-top: 5px;
}

.back-to-top:hover {
    background-color: #f8f8f8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile: lo rendiamo un po' più piccolo per non disturbare */
@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
