/* Floating Button - compatibile anche su mobile */

.floating-group {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #091550;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  flex-wrap: wrap;
}

/* Link all'interno del bottone flottante */
.floating-group a {
  color: #ffffff !important;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Effetto hover */
.floating-group a:hover {
  color: #D3B574 !important;
  transform: scale(1.1);
}

/* Responsive fix per schermi piccoli */
@media (max-width: 480px) {
  .floating-group {
    bottom: 15px;
    padding: 8px 10px;
    gap: 15px;
  }

  .floating-group a {
    font-size: 16px;
    color: #ffffff !important;
  }
}
