/* ================================================================
   Lend-In — My Account sidebar (nested submenu styling)
================================================================ */

/* Parent items get a caret and a hand cursor */
.woocommerce-MyAccount-navigation-link.llo-mam-parent > a {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    padding-right: 28px;
}
.woocommerce-MyAccount-navigation-link.llo-mam-parent > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.6;
}
.woocommerce-MyAccount-navigation-link.llo-mam-parent.llo-collapsed > a::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* Child items — indented with a thin guide */
.woocommerce-MyAccount-navigation-link.llo-mam-child > a {
    padding-left: 28px;
    font-size: 0.95em;
    position: relative;
}
.woocommerce-MyAccount-navigation-link.llo-mam-child > a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
}

/* Active child highlight stays consistent with theme orange */
.woocommerce-MyAccount-navigation-link.llo-mam-child.is-active > a {
    font-weight: 600;
}

/* Hidden (collapsed) state */
.woocommerce-MyAccount-navigation-link.llo-mam-hidden {
    display: none !important;
}

