.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #ffffff2b;
  border-radius: 50%;
  background: #ff5e15;
  color: #fff;
  box-shadow: 0 12px 30px #0713233d;
  font: 700 24px/1 Manrope, sans-serif;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}

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

.scroll-to-top:hover {
  background: #071323;
  transform: translateY(-3px);
}

.scroll-to-top:focus-visible {
  outline: 3px solid #ff5e1566;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top { transition: none; }
}

.profile-menu .profile-menu-action {
  margin: 0;
  padding: 0;
  border: 0;
}

.profile-menu .profile-menu-action button {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #071323;
  text-align: left;
}

.profile-menu .profile-menu-action button:hover {
  background: #f4f6f8;
}

.profile-menu .profile-menu-action strong,
.profile-menu .profile-menu-action small {
  display: block;
}
