/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 08 2025 | 16:09:30 */
/* Bottom Navigation Sticky Functionality with Scroll Behavior */
.bottom-nav-sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Safe Area Support for Newer iPhones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .bottom-nav-sticky {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Hidden state - when scrolling down */
.bottom-nav-sticky.hidden {
  transform: translateY(100%);
}