/* --- FLOATING ACTIONS --- */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
  pointer-events: none;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll To Top */
.btn-top {
  background-color: var(--color-bg);
  color: var(--color-brown);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.btn-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background-color: var(--color-bg-2);
}

/* WhatsApp */
.btn-wa {
  background-color: #25D366; /* Official WhatsApp Green */
  color: white;
}

.btn-wa:hover {
  background-color: #128C7E;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 24px;
    right: 24px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}
