.fab-wrapper {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
  pointer-events: none;
}
.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #ffd600;
  color: #111;
  box-shadow: 0 8px 24px #ffd60055, 0 2px 8px #0002;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  pointer-events: auto;
  position: relative;
}
.fab-btn:active {
  transform: scale(0.95);
}
.fab-btn:hover {
  background: #111;
  color: #ffd600;
  box-shadow: 0 8px 30px #111c, 0 2px 8px #ffd60044;
}
/* WhatsApp FAB */
.fab-btn.fab-whatsapp {
  background: #25d366;
  color: #fff;
}
.fab-btn.fab-whatsapp:hover {
  background: #111;
  color: #25d366;
}
/* Call FAB */
.fab-btn.fab-call {
  background: #111;
  color: #ffd600;
  border: 2px solid #ffd600;
}
.fab-btn.fab-call:hover {
  background: #ffd600;
  color: #111;
}
/* Booking FAB */
.fab-btn.fab-booking {
  background: #fff;
  color: #111;
  border: 2px solid #ffd600;
}
.fab-btn.fab-booking:hover {
  background: #ffd600;
  color: #111;
}
.fab-btn i {
  pointer-events: none;
}
.fab-label {
  background: #111;
  color: #ffd600;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 7px 18px;
  position: absolute;
  right: 70px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px #ffd60033;
  z-index: 12;
}
.fab-btn:hover .fab-label,
.fab-btn:focus .fab-label {
  opacity: 1;
}
.fab-btn.fab-whatsapp .fab-label {
  background: #25d366;
  color: #fff;
}
.fab-btn.fab-whatsapp:hover .fab-label {
  background: #111;
  color: #25d366;
}
.fab-btn.fab-booking .fab-label {
  background: #ffd600;
  color: #111;
}
.fab-btn.fab-call .fab-label {
  background: #111;
  color: #ffd600;
}

/* Responsive */
@media (max-width: 600px) {
  .fab-wrapper { bottom: 14px; right: 7px; gap: 9px; }
  .fab-btn { width: 42px; height: 42px; font-size: 1.3rem; }
  .fab-label { font-size: 0.83rem; padding: 6px 10px; right: 48px; }
}