/* Mobile sidebar nav polish — the real .ul-header-nav markup gets moved into
   .ul-sidebar on small screens by main.js; these rules only target it there,
   desktop nav is untouched. */

.ul-sidebar .ul-header-nav-wrapper,
.ul-sidebar .to-go-to-sidebar-in-mobile {
    width: 100%;
}

.ul-sidebar .ul-header-nav {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.ul-sidebar .ul-header-nav > * {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    transition: background-color 0.2s ease;
}

.ul-sidebar .ul-header-nav > *:last-child {
    border-bottom: 0;
}

.ul-sidebar .ul-header-nav > *:hover {
    background-color: rgba(235, 83, 16, 0.06);
}

.ul-sidebar .ul-header-nav > a {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    font-size: 15px;
}

.ul-sidebar .ul-header-nav > a::after {
    margin-left: auto;
    content: "\f104";
    font-family: flaticon_charitics !important;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.25);
}

.ul-sidebar .ul-header-nav .has-sub-menu {
    padding-right: 0;
}

.ul-sidebar .ul-header-nav .has-sub-menu > a {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
}

.ul-sidebar .ul-header-nav .has-sub-menu > a::after {
    right: 18px;
    color: rgba(0, 0, 0, 0.35);
}

.ul-sidebar .ul-header-submenu {
    background: rgba(0, 0, 0, 0.02);
}

.ul-sidebar .ul-header-submenu ul {
    padding: 4px 0 8px;
}

.ul-sidebar .ul-header-submenu li a {
    display: flex;
    align-items: center;
    padding: 10px 18px 10px 32px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.3;
}

.ul-sidebar .ul-header-submenu li a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ul-primary);
    margin-right: 10px;
    flex-shrink: 0;
    opacity: 0.6;
}

.ul-sidebar .ul-header-submenu li a:hover {
    color: var(--ul-primary);
}

/* donate CTA pinned under the nav in the mobile sidebar */
.ul-sidebar-donate-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--ul-primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.ul-sidebar-donate-btn:hover {
    opacity: 0.92;
    color: #fff;
}

@media (max-width: 991px) {
    .ul-sidebar-donate-btn {
        display: inline-flex;
    }
}
