Render Flow - Combining & with pseudo-classes
Read .button selector
Create .button node
Parse & in nested selector
Combine & with :hover
Create .button:hover rule
Apply styles on hover
Render visual changes on hover
The browser reads the base selector .button, then combines it with the pseudo-class :hover using the & symbol in Sass. This creates a new CSS rule .button:hover that applies styles when the user hovers over the button.