/* Basic clean styling for Custom Product Categories Menu */
.cpcm-wrapper { font-family: Arial, sans-serif; }
.cpcm-cat-list { list-style: none; margin: 0; padding: 0; }
.cpcm-cat-list li { padding: 6px 0; position: relative; }
.cpcm-term-link { text-decoration: none; color: #1e73be; display: inline-block; padding-right: 28px; }
.cpcm-term-link:hover { text-decoration: underline; }
.cpcm-cat-list li.has-children > .cpcm-toggle {
    position: absolute;
    right: 0;
    top: 6px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}
.cpcm-toggle .cpcm-arrow { display: inline-block; transition: transform 0.2s ease; }
.cpcm-cat-list ul.cpcm-cat-list { display: none; margin-left: 14px; padding-left: 6px; border-left: 1px solid rgba(0,0,0,0.03); }
.cpcm-cat-list li.is-active > .cpcm-toggle { /* if the active parent has toggle, set arrow down initially */ }
.cpcm-cat-list li.expanded > .cpcm-toggle .cpcm-arrow { transform: rotate(180deg); } /* arrow ▲ when expanded */
.cpcm-cat-list li.expanded > ul.cpcm-cat-list { display: block; }
.cpcm-cat-list li.is-active > .cpcm-term-link { font-weight: bold; color: #000; } /* active style */
