/* دکمه انتقال به بالا */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 20px;
  background: #635147;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 7px 15px;
  border-radius: 100%;
  box-shadow: 0 7 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #1e3523;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  #backToTop {
    font-size: 12px;
    padding: 6px 12px;
    bottom: 100px;
    right: 10px;
  }
}