/* =======================================
   FLOATING ACTION BUTTONS (Brand Unified)
   ======================================= */
@import "themes.css";

#wa-fab, #instagram-fab {
  position: fixed !important;
  right: 20px !important;
  z-index: 1 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

#wa-fab svg, #instagram-fab svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
  fill: none !important;
}

#wa-fab svg {
  fill: currentColor !important;
  stroke: none !important;
}

/* Mobile Positions */
#wa-fab {
  bottom: calc(var(--bottom-nav-height, 56px) + var(--safe-bottom, 0px) + 12px) !important;
}

#instagram-fab {
  bottom: calc(var(--bottom-nav-height, 56px) + var(--safe-bottom, 0px) + 72px) !important;
}

/* Desktop Positions */
@media (min-width: 768px) {
  #wa-fab { bottom: 20px !important; }
  #instagram-fab { bottom: 80px !important; }
}

#wa-fab:hover, #instagram-fab:hover {
  transform: scale(1.08) !important;
}
