/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #d4a066;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTopBtn:hover {
  background-color: #c08a4e;
  transform: translateY(-3px);
}
