Allowing for hairstyle changes

I am creating a choice in my story for the reader to choose to change hairstyles or lipstick. I wrote it out to be choices inside of choices which I know I can do. But it wont let me add a label inside of {} which I did not know. So now I’m a little confused as how to go about this. I’ll add a bit of my script if it helps. I don’t have a label in front of the beginning choice because I want them to choose between changing hair or lips but not to get to do both. Thanks for any advice.

PENELOPE (think_rubchin)
(I have enough time to change either my hair or my lipstick)

choice
“New day for a new do” {

label Hair_day2

NARRATOR
Hairstyles

choice
“Long Hairstyles” {

label Long_hair_day2

NARRATOR

choice
“Bouffant Wavy” {
@add Hairbrush Microphone Wooden Black to PENELOPE
&PENELOPE is primp_brushhair_happy
@PENELOPE changes hair into Bouffant Long Wavy
@remove Hairbrush Microphone Wooden Black from PENELOPE
goto Long_hair_day2
}

You can put a goto inside the brackets, and have the label outside.

PENELOPE (think_rubchin)
(I have enough time to change either my hair or my lipstick)

choice
“New day for a new do” {

goto Hair_day2
} “OTHER_CHOICE” {
goto Dont_Change_Hair
}

label Hair_day2
NARRATOR
Hairstyles

choice
“Long Hairstyles” {

label Long_hair_day2

NARRATOR

choice
“Bouffant Wavy” {
@add Hairbrush Microphone Wooden Black to PENELOPE
&PENELOPE is primp_brushhair_happy
@PENELOPE changes hair into Bouffant Long Wavy
@remove Hairbrush Microphone Wooden Black from PENELOPE
goto Long_hair_day2
}

label Dont_Change_Hair

Thank you. That’s a lot to wrap my head around with so many choice options but I got it.