✦ Verified product
Tattoo Balm 2 oz.
USD 22.00
Hattaché Beauty & Lifestyle Goods
Verified independent store
→
/* Main container */ .product-container { max-width: 900px; margin: 0 auto; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #222; line-height: 1.6; padding: 0 2
0px; background-color: #fff; } /* Description paragraph */ .product-container p { font-size: 15px; color: #333; margin-bottom: 18px; } /* Info box (KEY BENEFITS only) */ .product-extra-info { display: flex; justify-content: flex-start; margin: 25px 0; } .prod-info-info span { font-size: 13px; letter-spacing: 1px; font-weight: 600; color: #7b6149; display: block; text-transform: uppercase; } .prod-info-info ul { margin: 5px 0 0 0; padding-left: 18px; color: #333; font-size: 15px; line-height: 1.8; list-style: disc; } /* Accordion styling */ .accordion_container { border-top: 1px solid #e0e0e0; } .accordion_head { font-size: 16px; font-weight: 600; color: #7b6149; cursor: pointer; padding: 18px 0; border-bottom: 1px solid #e0e0e0; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; } .accordion_head:hover { background-color: #faf8f6; } .plusminus { font-weight: 400; font-size: 18px; transition: transform 0.3s ease; } .accordion_body { display: none; padding: 15px 0; color: #333; font-size: 15px; line-height: 1.8; } .accordion_body.show { display: block; } /* Social links */ .product-social { margin-top: 15px; font-size: 15px; display: flex; flex-wrap: wrap; gap: 20px; color: #7b6149; } .product-social a { text-decoration: none; color: #7b6149; } .product-social a:hover { text-decoration: underline; } /* Footer */ .product-after { border-top: 1px solid #e0e0e0; margin-top: 30px; padding-top: 20px; font-size: 14px; color: #555; } .product-after a { color: #7b6149; font-weight: 600; text-decoration: none; } .product-after a:hover { text-decoration: underline; } Our all-natural Tattoo Balm helps your skin heal beautifully—without petroleum or fillers. When your skin is newly inked, it needs gentle, breathable care. This nourishing balm soothes irritation, eases redness, and supports recovery while allowing your skin to breathe naturally. Formulated with organic plant oils and rich butters, it locks in moisture, protects against dryness, and doubles as a healing salve for any dry or sensitive skin. KEY BENEFITS Encourages natural healing and hydration Calms irritation and redness Free from petroleum and synthetic fillers Safe for sensitive and newly tattooed skin WHAT IT SMELLS LIKE+ Completely unscented — just the soft, natural aroma of botanical oils and waxes. INGREDIENTS+ *Sesamum Indicum (Sesame) Seed Oil, *Cannabis Sativa (Hemp) Seed Oil, *Butyrospermum Parkii (Shea Butter), *Unrefined Cera Alba (Beeswax), **Tocopherol (Vitamin E). *= organic | **Vitamin E from non-GMO soy sources SHARE+ 📘 Facebook 🐦 Twitter 📸 Instagram 📌 Pinterest This product is 100% natural. Batch variations may occur due to the inherent qualities of natural ingredients. During temperature changes, the balm may develop a light grainy texture — this is normal and easily fixed by following this simple method. Questions? [email protected] const accordions = document.querySelectorAll(".accordion_head"); accordions.forEach(head => { head.addEventListener("click", function() { const body = this.nextElementSibling; const plusminus = this.querySelector(".plusminus"); body.classList.toggle("show"); plusminus.textContent = body.classList.contains("show") ? "–" : "+"; }); });