Render Flow - Including mixins with @include
Parse SCSS file
Find @mixin definitions
Store mixin code
Find @include statements
Insert mixin code at include points
Compile to CSS
Browser applies CSS styles
The SCSS compiler reads the file, stores mixin code, then replaces @include lines with the mixin's CSS code before outputting CSS for the browser to render.