diff --git a/src/art/genAI/prompts/stylePromptPart.js b/src/art/genAI/prompts/stylePromptPart.js
index 2949f729e73534a306c38c2e61751944cbc44b38..ef4c6d29b30fe5d4a63581a474c07dcc15ecd4da 100644
--- a/src/art/genAI/prompts/stylePromptPart.js
+++ b/src/art/genAI/prompts/stylePromptPart.js
@@ -32,13 +32,13 @@ App.Art.GenAI.StylePromptPart = class StylePromptPart extends App.Art.GenAI.Prom
 		switch (V.aiStyle) {
 			case 0: // custom
 			if (this.slave.visualAge < 18 && V.aiAgeFilter) {
-				return "(head out of frame), full shot, medium full shot, full body portrait, waist, hips, bottom, navel, legs, " + V.aiCustomStyleNeg;
+				return "full shot, medium full shot, full body portrait, waist, hips, bottom, navel, legs, " + V.aiCustomStyleNeg;
 			} else {
 				return V.aiCustomStyleNeg;
 			}
 			case 1: // photorealistic
 			if (this.slave.visualAge < 18 && V.aiAgeFilter) {
-				return "greyscale, monochrome, cg, render, unreal engine, (head out of frame), full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs";
+				return "greyscale, monochrome, cg, render, unreal engine, full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs";
 			} else {
 				return "greyscale, monochrome, cg, render, unreal engine, closeup, medium shot";
 			}
diff --git a/src/art/genAI/prompts/waistPromptPart.js b/src/art/genAI/prompts/waistPromptPart.js
index a5dbfe711c62601faaca5d340d9fb01e2418128e..fa68f8f768d67a9d4069c0f115f6db4d85489bf4 100644
--- a/src/art/genAI/prompts/waistPromptPart.js
+++ b/src/art/genAI/prompts/waistPromptPart.js
@@ -3,6 +3,9 @@ App.Art.GenAI.WaistPromptPart = class WaistPromptPart extends App.Art.GenAI.Prom
 	 * @override
 	 */
 	positive() {
+		if (this.slave.visualAge < 18 && V.aiAgeFilter) {
+			return undefined;
+		}
 		if (this.slave.waist > 95) {
 			return `very wide waist`;
 		} else if (this.slave.waist > 10) {