/**
 * Hide header while scrolling down; slide it back in on any upward scroll.
 */
header.elementor-location-header.gta-smart-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
    will-change: transform;
    backface-visibility: hidden;
}

body.admin-bar header.elementor-location-header.gta-smart-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header.elementor-location-header.gta-smart-header {
        top: 46px;
    }
}

header.elementor-location-header.gta-smart-header.gta-header-hidden {
    transform: translate3d(0, calc(-100% - 12px), 0);
    box-shadow: none;
    pointer-events: none;
}

header.elementor-location-header.gta-smart-header.gta-header-pinned:not(.gta-header-hidden) {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    header.elementor-location-header.gta-smart-header {
        transition: none;
    }
}
