/* Cookie button - mirrored to BackToTop button */
#prive-settings-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 79;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #70d43c;
  color: white;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  height: 3.5rem;
  width: 3.5rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 1;
}
#prive-settings-trigger.hidden-at-bottom {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
#prive-settings-trigger svg {
  width: 24px;
  height: 24px;
}
/* Desktop (lg): mirrored from lg:right-[106px] */
@media (min-width: 1024px) {
  #prive-settings-trigger {
    left: 106px;
  }
}
