.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #1c2fd3;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover {
  background-color: #4053dc;
}

@media (max-width: 767px) {
  .scroll-top {
    right: 16px;
    bottom: 84px;
    width: 44px;
    height: 44px;
  }
}
