diff --git a/src/art/genAI/pubicHairPromptPart.js b/src/art/genAI/pubicHairPromptPart.js
index c82b735f78e76ec3ec9fdfa9ff7c06ef12f0e536..272687e1eaec9e1a3dcfe77b24d80a20c05ac159 100644
--- a/src/art/genAI/pubicHairPromptPart.js
+++ b/src/art/genAI/pubicHairPromptPart.js
@@ -3,7 +3,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge
 	 * @returns {string}
 	 */
 	positive() {
-		if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless") {
+		if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless" || this.slave.physicalAge < Math.min(this.slave.pubertyAgeXX, this.slave.pubertyAgeXY)) {
 			return;
 		}
 		return `${this.slave.pubicHColor} ${this.slave.pubicHStyle} pubic hair`;
@@ -13,7 +13,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge
 	 * @returns {string}
 	 */
 	negative() {
-		if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless") {
+		if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless" || this.slave.physicalAge < Math.min(this.slave.pubertyAgeXX, this.slave.pubertyAgeXY)) {
 			return "pubic hair";
 		}
 		return;