
/* OVVO Camping - pulsanti flottanti */
.booking-call-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 760;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: #0b8f3d;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.booking-call-float::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.18);
}
.booking-call-float:hover {
  background: #087936;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0,0,0,.3);
}
.booking-call-float:focus-visible {
  outline: 3px solid #68c98c;
  outline-offset: 4px;
}
/* WhatsApp a sinistra per evitare sovrapposizioni */
a.whatsapp-float,
.whatsapp-float {
  left: 20px !important;
  right: auto !important;
  bottom: 20px !important;
}
@media (max-width: 700px) {
  .booking-call-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 12px 15px;
    font-size: 13px;
  }
  a.whatsapp-float,
  .whatsapp-float {
    left: 12px !important;
    bottom: 12px !important;
  }
}
@media (max-width: 420px) {
  .booking-call-float {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    font-size: 0;
  }
  .booking-call-float::before {
    width: 22px;
    height: 22px;
    box-shadow: none;
    background: currentColor;
    clip-path: polygon(0 0,100% 0,100% 68%,62% 68%,38% 100%,38% 68%,0 68%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .booking-call-float { transition: none; }
}
