-
- Brand{product.brand}
- Line{product.line_name ?? '—'}
- Time{product.recommended_time}
- Leave-on{product.leave_on ? 'Yes' : 'No'}
- Texture{product.texture ?? '—'}
- pH
-
- {#if product.ph_min != null && product.ph_max != null}
- {product.ph_min}–{product.ph_max}
- {:else}
- —
- {/if}
-
-
- {#if product.targets.length}
-
- Targets:
- {#each product.targets as t}
- {t.replace(/_/g, ' ')}
- {/each}
-
- {/if}
- {#if product.actives?.length}
-
-
Actives:
-
- {#each product.actives as a}
- - {a.name}{a.percent != null ? ` ${a.percent}%` : ''}
- {/each}
-
-
- {/if}
- {#if product.usage_notes}
- {product.usage_notes}
- {/if}
-
-