  #scrollToTopBtn {
    position: fixed;
    right: 10px; /* сдвиг левее виджета справа */
    bottom: 10px;
    width: 52px;
    height: 52px;
    background: #D7363B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }

  #scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #scrollToTopBtn:hover {
    transform: translateY(-2px);
  }

  #scrollToTopBtn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
  }

  /* планшеты */
  @media (max-width: 1200px) {
    #scrollToTopBtn {
      right: 85px;
      bottom: 25px;
    }
  }

  /* мобильные */
  @media (max-width: 640px) {
    #scrollToTopBtn {
      right: 15px;
      bottom: 20px; /* выше мобильных виджетов */
      width: 48px;
      height: 48px;
    }

    #scrollToTopBtn svg {
      width: 18px;
      height: 18px;
    }
  }


