/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 27 2026 | 02:07:38 */
/* ===== Hover Base ===== */
.hoverfx {
  display: inline-block;
  position: relative;
  transform: translateZ(0);
  will-change: transform, opacity;
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    opacity .35s ease,
    filter .35s ease;
}
.fx-lift:hover {
  transform: translateY(-6px) scale(1.02);
}
.fx-glow:hover {
  filter: drop-shadow(0 5px 5px rgba(0,0,0,.4));
}

.fx-press:active {
  transform: scale(.8);
}
.fx-press:hover {
  transform: translateY(-6px);
}