.prenota-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #B77A59;
  color: #FFFFFF;
  font-size: 17px;
  font-family: cursive;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prenota-btn:hover {
  background-color: #a86d4e;
  transform: scale(1.05);
}

/* Icona nascosta su desktop */
.mobile-icon {
  display: none;
}

/* Solo testo su desktop */
.desktop-text {
  display: inline;
}

/* Versione mobile */
@media (max-width: 768px) {
  .prenota-btn {
    width: 55px;
    height: 55px;
    padding: 0;
    border-radius: 50%;
    font-size: 0; /* nasconde testo mantenendo accessibilità */
  }
  .desktop-text {
    display: none;
  }
  .mobile-icon {
    display: inline-flex;
  }
  .prenota-btn svg {
    width: 26px;
    height: 26px;
  }
}