/* ==========================================================================
   BISUN POWER — ANIMATION FOUNDATION
   Subtle only: fade/slide-in on scroll, hover lift. No looping motion.
   ========================================================================== */

.bp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--bp-transition-base), transform var(--bp-transition-base);
}
.bp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bp-btn, .wp-block-button__link, .bp-card, .bp-product {
    transition: none !important;
  }
}
