/* Sticky Header Base Styling */
header, 
.site-header, 
.elementor-location-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Scroll Active State (Shrinking) */
header.is-scrolled,
.site-header.is-scrolled,
.elementor-location-header.is-scrolled {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Handle shrinking elements inside (logos, menus) */
header.is-scrolled img,
.site-header.is-scrolled img,
.elementor-location-header.is-scrolled img {
    max-height: 45px !important;
    width: auto !important;
    transition: max-height 0.3s ease;
}

/* WordPress Admin Bar Alignment */
body.admin-bar header,
body.admin-bar .site-header,
body.admin-bar .elementor-location-header {
    top: var(--wp-admin--admin-bar--height, 32px) !important;
}

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