/* Native Houzez sticky is off (data-sticky="0"), so we drive this ourselves. */
#header-hz-elementor {
    position: fixed;
    top: var(--bb-height, 0px); /* sit below the beta banner instead of under it */
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease, top 0.2s ease;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12); /* separates it from the property nav bar below when both show */
}

#header-hz-elementor.header-hide {
    transform: translateY(-100%);
}

/* Sit below the WP admin bar instead of under it. */
body.admin-bar #header-hz-elementor {
    top: calc(32px + var(--bb-height, 0px));
}

@media screen and (max-width: 782px) {
    body.admin-bar #header-hz-elementor {
        top: calc(46px + var(--bb-height, 0px));
    }
}
