/* Gynsyng homepage: Sticky "Shop Now" floating control
   Reuses the site's own .btn.btn-primary CTA styling (bundle.min.css) so it matches every other button on the site.
   Mobile-only by design (per client direction) — hidden entirely on desktop. */
#gyn-sticky-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 24px;
    z-index: 1040;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    pointer-events: none;
}
#gyn-sticky-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
#gyn-sticky-bar.hidden-footer { transform: translateY(120%); opacity: 0; pointer-events: none; }
#gyn-sticky-bar .btn {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
    #gyn-sticky-bar { display: block; left: 15px; right: 15px; bottom: 15px; }
    #gyn-sticky-bar .btn { display: block; width: 100%; text-align: center; }
}
