/* Base sticky header setup */
.digi-header.is-fixed {
    transition: all 0.3s ease;
    z-index: 999;
}
/* Sticky state styles */
.digi-header.is-fixed.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* WordPress admin bar adjustments */
body.admin-bar .digi-header.is-fixed.is-sticky {
    top: 32px;
}
/* Mobile admin bar */
@media screen and (max-width: 782px) {
    body.admin-bar .digi-header.is-fixed.is-sticky {
        top: 46px;
    }
}
/* Placeholder to prevent content jump */
.digi-header-placeholder {
    display: none;
    width: 100%;
}
.digi-header-placeholder.active {
    display: block;
}
