/* Кнопка «наверх» (FINISHER-198 / FINISHER-TC-6, 13.08.2026).
   Появляется после двух экранов прокрутки на длинных страницах. Оформление —
   круг цвета акцента сайта (#040404), радиус как у остальных элементов Тильды. */
.fin-totop {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--fin-totop-offset, 0px));
  z-index: 100000;              /* ниже cookie-баннера (100001) и попапов Тильды */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: #040404;
  color: #fff;
  box-shadow: 0 4px 16px rgba(4, 4, 4, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
}
.fin-totop_visible { opacity: 1; visibility: visible; transform: none; }
.fin-totop:hover, .fin-totop:focus-visible { background: #6d687f; }
.fin-totop:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.fin-totop svg { width: 20px; height: 20px; display: block; }

@media screen and (max-width: 640px) {
  .fin-totop { right: 14px; width: 44px; height: 44px; }
}
@media print { .fin-totop { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .fin-totop { transition: none; }
}
