/**
 * Mobile bottom toolbar: hide on scroll down, show on scroll up (Facebook-style).
 *
 * Do NOT set transform on the visible bar. Any transform (even translateY(0)) on
 * .after-append-footer traps position:fixed search panel/overlay inside the footer.
 */
@media (max-width: 767px) {
	.after-append-footer.awtar-bottom-bar-scroll-ready {
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
		will-change: transform;
	}

	.after-append-footer.awtar-bottom-bar-scroll-ready.awtar-bottom-bar-scroll-hidden {
		transform: translateY(100%);
		pointer-events: none;
	}

	/* Search fullscreen must use the viewport, not the footer box. */
	body.awwtar-search-open .after-append-footer.awtar-bottom-bar-scroll-ready,
	body.awwtar-search-open .after-append-footer.awtar-bottom-bar-scroll-ready.awtar-bottom-bar-scroll-hidden {
		transform: none !important;
		pointer-events: auto !important;
	}
}
