Why do I need so many folders? Can't I put all styles in one file?
Putting all styles in one file makes it hard to find and fix things. The 7-1 pattern splits styles by purpose, so you can quickly locate and update code.
💡 Think of folders like drawers for different clothes types; it’s easier to find your socks if they’re in the sock drawer.
Why does the browser only see one CSS file if I have many Sass files?
Sass compiles all imported partials into one CSS file. The browser loads this single file, so it doesn’t need to load many files separately.
💡 Imagine mixing ingredients in a bowl before baking one cake, instead of baking many small cakes.
What happens if I forget to import a partial in main.scss?
The styles in that partial won’t be included in the compiled CSS, so the browser won’t apply them. Your page might look missing styles.
💡 If you forget to add a drawer’s contents to your suitcase, you won’t have those clothes on your trip.