.buxtons-subcategory-list { list-style-type: none; padding-left: 0; margin: 0; }
.buxtons-subcategory-item { margin-bottom: 8px; }

/* Link styling - matches theme anchor styles */
.buxtons-subcat-link { 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    text-decoration: none;
    color: #434343;
    font-size: 0.95em;
    transition: color 0.2s ease;
}
.buxtons-subcat-link:hover { 
    text-decoration: none;
    color: #648A44;
}

/* Checkbox-like icon for links - theme colors */
.buxtons-checkbox-icon { 
    display: inline-block;
    width: 16px; 
    height: 16px; 
    margin-right: 10px; 
    border: 1px solid #434343; 
    border-radius: 2px; 
    background-color: #fff; 
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.buxtons-subcat-link:hover .buxtons-checkbox-icon {
    border-color: #94BE58;
    background-color: rgba(148, 190, 88, 0.1);
}

.buxtons-subcat-link span { color: inherit; }
.buxtons-subcat-link span:hover { color: inherit; }

