···9999 'A common hormonal disorder where the body cannot regulate blood sugar effectively. Most frequently seen in overweight, older, or inactive cats.',
100100 recommended:
101101 'All Purrform products are suitable — naturally high in protein and low in carbohydrates, helping to support stable blood glucose levels and healthy weight management.',
102102+ readMoreUrl: 'https://www.purrform.co.uk/blog/feline-diabetes/',
102103 },
103104 'Chin Acne': {
104105 explanation:
105106 'A skin condition characterised by blackheads, pimples, or inflamed sores on the chin and lips, often linked to overactive sebaceous glands, stress, allergies, or contact irritation.',
106107 recommended:
107108 'We recommend plain rabbit, turkey, or quail. These proteins are less likely to trigger food sensitivities. Chicken and beef are more commonly linked to feline food allergies.',
109109+ readMoreUrl: 'https://www.purrform.co.uk/blog/chin-acne-in-cats/',
108110 },
109111 'Inflammatory Bowel Disease (IBD)': {
110112 explanation:
···117119 'A gradual decline in kidney function, most commonly diagnosed in older cats. Early management can help slow progression and support overall kidney health.',
118120 recommended:
119121 'Choose products with low phosphorus levels, such as the venison pouches. Adding a couple of spoons of water to meals can further support kidney function.',
122122+ readMoreUrl:
123123+ 'https://www.purrform.co.uk/blog/benefits-of-raw-food-for-cats-in-relation-to-kidney-disease/',
120124 },
121125 'Urinary Tract Conditions': {
122126 explanation:
···129133 'Includes conditions such as gingivitis, tooth decay, and oral pain, affecting a significant proportion of cats. If left unmanaged, it can impact overall health and wellbeing.',
130134 recommended:
131135 'We recommend the 5 Days Fresh range — this complete range does not contain bone and is suitable for cats with dental sensitivities or existing oral discomfort.',
136136+ readMoreUrl:
137137+ 'https://www.purrform.co.uk/blog/understanding-your-cats-teeth/',
132138 },
133139 Hyperthyroidism: {
134140 explanation:
135141 'Caused by an overactive thyroid gland, commonly resulting in weight loss despite an increased appetite. Most frequently diagnosed in middle-aged to older cats.',
136142 recommended:
137143 'A low-iodine diet can help support thyroid management. Chicken and turkey are naturally low in iodine, with rabbit and beef also being suitable protein sources.',
144144+ readMoreUrl: 'https://www.purrform.co.uk/blog/hyperthyroidism-in-cats/',
138145 },
139146 Obesity: {
140147 explanation:
141148 'A growing health concern that increases the risk of diabetes, arthritis, and liver disease. Often linked to overfeeding and insufficient activity.',
142149 recommended:
143150 'Feeding lean, high-quality proteins can help promote healthy weight loss while maintaining muscle mass and supporting overall metabolic health.',
151151+ readMoreUrl:
152152+ 'https://www.purrform.co.uk/blog/just-what-is-the-raw-meat-diet-anyway/',
144153 },
145154};
146155···999100810001009 const limitMsg = el(
10011010 'p',
10021002- { className: 'diet-builder-health__limit-msg diet-builder-inline-error' },
10111011+ {
10121012+ className:
10131013+ 'diet-builder-health__limit-msg diet-builder-inline-error',
10141014+ },
10031015 'You can select a maximum of 2 health conditions. Deselect one to choose another.',
10041016 );
10051017···11251137 recommendedEl.append(recommendedLabel, info.recommended);
1126113811271139 body.append(explanationEl, recommendedEl);
11401140+11411141+ if (info.readMoreUrl) {
11421142+ const readMoreEl = el(
11431143+ 'a',
11441144+ {
11451145+ className: 'diet-builder-health__info-read-more',
11461146+ href: info.readMoreUrl,
11471147+ target: '_blank',
11481148+ rel: 'noopener noreferrer',
11491149+ },
11501150+ 'Read our blog post about this',
11511151+ );
11521152+ body.appendChild(readMoreEl);
11531153+ }
11541154+11281155 item.append(header, body);
11291156 infoSection.appendChild(item);
11301157 });