/* CTA RETOUR EN HAUT */

.cta__scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #8ab752;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(138, 183, 82, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.cta__scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta__scroll-top:hover {
  background: #7aa642;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(138, 183, 82, 0.6);
}

.cta__scroll-top:active {
  transform: translateY(-2px);
}

.cta__scroll-top svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* Responsive Desktop */
@media (min-width: 768px) {
  .cta__scroll-top {
    width: 56px;
    height: 56px;
    bottom: 30px;
    right: 30px;
  }

  .cta__scroll-top svg {
    width: 28px;
    height: 28px;
  }
}
