/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 20 2025 | 21:14:38 */
/* Slide the bar in from the left, balanced with cart on the right */
#ef-added-bar{
  left:16px; right:16px; /* desktop/tablet */
  transform: translate(-18px, 20px);  /* start slightly left & down */
  opacity: 0;
}
#ef-added-bar.ef-show{
  transform: translate(0, 0);
  opacity: 1;
}

/* Avoid overlapping the cart button on narrow screens */
@media (max-width: 767px){
  #ef-added-bar{ right: calc(var(--fab-size) + var(--fab-gap) + 20px); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  #ef-added-bar, #ef-cart-btn{
    transition: none !important;
    transform: none !important;
  }
}
