/* =====================================================================
   Teaspoon Honey — Lightweight scroll reveal (ADDITIVE)
   Premium on-scroll fade/slide-up for browse pages (shop, product, archives).
   Progressive enhancement: elements are only hidden AFTER the JS marks the
   document ready (html.lux-reveal-ready), so with no JS nothing is hidden.
   No library; matches the site's easing. Never applied to forms/checkout.
   ===================================================================== */
html.lux-reveal-ready .lux-reveal-t {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
html.lux-reveal-ready .lux-reveal-t.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.lux-reveal-ready .lux-reveal-t { opacity: 1 !important; transform: none !important; transition: none !important; }
}
