/* Кнопка "Наверх" */
.btn-back-to-top {
    position: fixed;
    /* ВИСИТ НАД ВИДЖЕТОМ */
    bottom: 110px !important; 
    right: 32px !important; /* Центруем относительно виджета (60px vs 50px) */
    
    display: none;
    z-index: 1099;
    
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: #0d6efd;
    color: white;
    border: none;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #0b5ed7;
}