Why doesn't changing a SASS variable in one file update styles everywhere?
Because SASS variables only affect files that import or use them. You must import the file with the variable where you want to use it.
💡 Always import shared variables file in every SASS file that needs them.
Why does the hover color not change as expected?
The darken() function changes color during compilation. If the variable is not set or the function is misused, the color won't update correctly.
💡 Check variable values and function usage in render_steps 3.
Why do nested selectors sometimes produce unexpected CSS?
Nesting creates combined selectors. If nesting is too deep or incorrect, CSS selectors may not match intended elements.
💡 Keep nesting shallow and check compiled CSS output.