.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: none; /* Only show on mobile */
}

.floating-trigger {
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(232, 160, 32, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.floating-trigger:active {
  transform: scale(0.9);
}

.floating-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-item {
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.floating-item--whatsapp { color: #25d366; }
.floating-item--phone { color: #3b82f6; }
.floating-item--email { color: #ea4335; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .floating-btn {
    display: block;
  }
}

/* LTR override — flip to right side */
[dir="ltr"] .floating-btn {
  right: 2rem;
  left: auto;
}

[dir="ltr"] .floating-menu {
  right: 0;
  left: auto;
}
