    /* sticky bar for snippets (adjust --menu-sticky-top if theme header overlaps) */
    .sticky-menu-wrap {
        --menu-sticky-top: 0px;
        position: relative;
        z-index: 40;
        padding: 0;
        margin: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }

    @media (min-width: 768px) {
        .sticky-menu-wrap {
            position: sticky;
            top: var(--menu-sticky-top);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
    }