/* ── Floating WhatsApp + back to top (all pages) ── */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.floating-actions__whatsapp,
.floating-actions__top {
  position: static;
  flex-shrink: 0;
  margin: 0;
}

.floating-actions__whatsapp {
  order: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-actions__whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-actions__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.floating-actions__top {
  order: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d5dbe3;
  background: #fff;
  color: #3d4a5c;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0;
}

.floating-actions__top.is-visible {
  display: flex;
}

.floating-actions__top:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.floating-actions__top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .floating-actions__whatsapp {
    width: 44px;
    height: 44px;
  }

  .floating-actions__whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .floating-actions__top,
  .floating-actions__top.is-visible {
    width: 40px;
    height: 40px;
  }
}

@media print {
  .floating-actions {
    display: none !important;
  }
}
