/* Start custom CSS for page-settings */a.back-top-button {
  background-color: #5fcf85 !important; /* vert Greenvaya */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: bounceUp 2s infinite;
  overflow: hidden;
}

a.back-top-button:hover {
  background-color: #c2a95c !important; /* or doré chic */
  transform: scale(1.1);
}

a.back-top-button::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E") no-repeat center;
  background-color: white;
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* Animation de rebond */
@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

a.back-top-button > * {
  display: none !important;
}/* End custom CSS */