Not to a single entity, you need essentially a matrix for you to process those. So in data terms, it would be a separate table. In NH/FNH terms, it means creating a StyleStatus class, or something like that.
StyleStatus will have a References() (or Many-To-One in NH terms) to Style, and also have a References() to the Store. Style and Store will have a HasMany() (one-to-many) to StyleStatus.
StyleStatus can contain various bits of information, one of which could be the boolean you've got on the Style class right now IsEntireStyleBanned. Style shouldn't need a reference to store, it's technically got a Many to Many association to Store, but because the MTM reference needs to store an additional attribute (IsEntireStyleBanned) it needs to be represented in NH as a class.
Let me know if that makes sense for you :)