/* Floating quick contact — ported from OpenCart floating_contact_menu */

.wfcb-float {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.wfcb-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

.wfcb-btn svg {
  display: block;
  width: 22px;
  height: 22px;
}

.wfcb-btn:hover,
.wfcb-btn:focus,
.wfcb-btn:focus-visible {
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
}

.wfcb-btn-email {
  background-color: #ff4b5c;
  box-shadow: 0 4px 14px rgba(255, 75, 92, 0.45);
}

.wfcb-btn-email:hover,
.wfcb-btn-email:focus-visible {
  box-shadow: 0 6px 20px rgba(255, 75, 92, 0.55);
}

.wfcb-btn-whatsapp {
  background-color: #4caf50;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.45);
}

.wfcb-btn-whatsapp:hover,
.wfcb-btn-whatsapp:focus-visible {
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.55);
}

.wfcb-btn-messenger {
  background-color: #4169e1;
  box-shadow: 0 4px 14px rgba(65, 105, 225, 0.45);
}

.wfcb-btn-messenger:hover,
.wfcb-btn-messenger:focus-visible {
  box-shadow: 0 6px 20px rgba(65, 105, 225, 0.55);
}

@media (max-width: 767px) {
  .wfcb-btn {
    width: 48px;
    height: 48px;
  }

  .wfcb-btn svg {
    width: 20px;
    height: 20px;
  }

  .wfcb-float {
    gap: 12px;
  }
}
