/* Menu customizado dentro do drawer */
.custom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.custom-menu-list li {
    margin: 0;
    padding: 0;
}
.custom-menu-list li a {
    display: block;
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    color: var(--menu-text);
    background: transparent;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.custom-menu-list li a:hover,
.custom-menu-list li.current-menu-item a,
.custom-menu-list li.current_page_item a {
    background: var(--menu-hover);
    color: var(--menu-text);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
}
/* Drawer customizado para menu deslizante */
.custom-drawer {
    position: fixed;
    border-radius: 0 var(--corner-radius-xlarge) var(--corner-radius-xlarge) 0;
    top: 0;
    left: 0;
    right: auto;
    height: 100vh;
    width: 300px;
    max-width: 90vw;
    background: var(--menu-bg);
    box-shadow: 2px 0 24px rgba(0,0,0,0.12);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-right: 1px solid var(--menu-border);
}
.custom-drawer.open {
    transform: translateX(0);
}
.custom-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    border-radius: 0 var(--corner-radius-xlarge) 0 0;
}
.custom-drawer-title {
    font-size: 1.2rem;
    font-weight: 600;
}
.custom-drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.5rem;
}
.custom-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    border-radius: inherit;
}
@media (max-width: 600px) {
    .custom-drawer {
        width: 90vw;
        min-width: 0;
    }
}
