#site-sidebar-root {
    position: fixed;
    inset: 0;
    z-index: 60;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.32s;
}

#site-sidebar-root.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

#site-sidebar-root.is-open #site-sidebar-overlay {
    opacity: 1;
}

#site-sidebar-root.is-open #site-sidebar-panel {
    transform: translateX(0);
}

#site-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    opacity: 0;
    transition: opacity 0.18s ease;
}

#site-sidebar-panel {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 767px) {
    #site-sidebar-panel {
        width: 100vw;
        max-width: none;
    }
}
