/* Mind Store Categories Sidebar — frontend.css */

.mind-sc-wrap {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    font-family: inherit;
}

.mind-sc-header {
    background: #1a6b3c;
    padding: 14px 18px;
}

.mind-sc-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mind-sc-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.mind-sc-parent {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mind-sc-parent:last-child {
    border-bottom: none;
}

.mind-sc-parent > a {
    display: block;
    padding: 11px 18px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color .15s, background .15s;
    position: relative;
}

.mind-sc-parent > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: #1a6b3c;
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity .2s ease;
}

.mind-sc-parent > a:hover::before,
.mind-sc-parent.is-active > a::before {
    opacity: 1;
}

.mind-sc-parent > a:hover {
    color: #1a6b3c;
    background: #f7fdf9;
}

.mind-sc-parent.is-active > a {
    color: #1a6b3c;
    background: #f0faf4;
    font-weight: 600;
}

/* Subcategorias */
.mind-sc-children {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.mind-sc-child {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mind-sc-child a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 28px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color .15s, background .15s;
    line-height: 1.4;
}

.mind-sc-child a:hover {
    color: #1a6b3c;
    background: #f0faf4;
}

.mind-sc-child.is-active a {
    color: #1a6b3c;
    font-weight: 600;
}

.mind-sc-child-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    transition: background .15s;
}

.mind-sc-child a:hover .mind-sc-child-dot,
.mind-sc-child.is-active .mind-sc-child-dot {
    background: #1a6b3c;
}

.mind-sc-empty {
    padding: 1rem;
    color: #aaa;
    font-size: 13px;
    text-align: center;
}
