#netcom-scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: none;
  background-color: #F96156;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, visibility 0.3s ease;
}

#netcom-scroll-top-btn i {
  pointer-events: none;
}

#netcom-scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#netcom-scroll-top-btn:hover {
  background-color: #e0483d;
}

@media (max-width: 600px) {
  #netcom-scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
