/* BLS — кнопка «Наверх», общая для всех страниц сайта (кнопка в
   parts/common/footer.php, логика в inc/js/bls-scroll-top.js). */

.bls-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border-radius: 0;
    border: none;
    background: #271b19;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
    z-index: 90;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s, transform .2s, background .2s;
}

.bls-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bls-scroll-top:hover {
    background: #eb732d;
}
