.uncle-desc{ background:#000; color:#fff; padding:35px; border-radius:10px; font-family:Arial, sans-serif; line-height:1.7; max-width:1100px; margin:auto; } .uncle-desc h2{ color:#22c55e; margin-top:35px; margin-bottom:12px; font-size:24px; } .uncle-desc p{ color:#e5e5e5; margin-bottom:15px; } .benefits-list{ list-style:none; padding:0; margin:0; } .benefits-list li{ padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.08); } .benefits-list li:before{ content:"✔ "; color:#22c55e; font-weight:bold; margin-right:6px; } .steps{ counter-reset:step; list-style:none; padding:0; } .steps li{ margin-bottom:12px; padding-left:35px; position:relative; } .steps li:before{ counter-increment:step; content:counter(step); position:absolute; left:0; top:2px; background:#22c55e; color:#000; width:22px; height:22px; border-radius:50%; text-align:center; font-size:12px; line-height:22px; font-weight:bold; } /* FAQ */ .faq-item{ border-bottom:1px solid rgba(255,255,255,0.15); padding:14px 0; } .faq-question{ cursor:pointer; font-weight:bold; color:#22c55e; display:flex; justify-content:space-between; align-items:center; font-size:17px; } .faq-icon{ font-size:22px; transition:0.3s; } .faq-answer{ display:none; color:#ddd; padding-top:8px; } .fade{ animation:fadeIn .8s ease; } @keyframes fadeIn{ from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} } Short Description Built from decades behind the barber chair, Uncle Nick’s Pomade delivers dependable hold and clean styling control without stiffness or heavy buildup. Designed for everyday use, this unisex pomade helps shape classic and modern hairstyles while keeping your hair looking natural and polished. Key Benefits Strong, reliable hold Natural looking finish Smooth styling control Works for multiple hairstyles Easy to apply and style Product Story For more than 35 years, Uncle Nick has worked behind the barber chair helping clients achieve clean, confident styles. Through years of experience, he learned that the right styling product makes all the difference. Uncle Nick’s Pomade was created to deliver the kind of control and reliability barbers expect from professional grooming products. Designed for everyday styling, it provides hold, flexibility, and a polished look without feeling heavy. This is barber-built styling made simple. Who It’s For Classic hairstyles Textured styles Slick backs and side parts Daily hair styling routines Crafted in-house for consistent quality Carefully handmade for a premium finish Men and women who want dependable hold Carefully handmade and handcrafted for a premium finish How to Use Start with dry or slightly damp hair Take a small amount of pomade Work evenly through hair Style as desired Add more product if stronger hold is needed Why Uncle Nick’s Products Built from 35+ years of barber experience Small-batch grooming formulas Designed for real grooming routines Trusted by both professionals and everyday users FAQ Does it make hair stiff? + No. The formula provides hold while allowing natural movement. Is it suitable for daily use? + Yes. It’s designed for everyday styling. Can women use this pomade? + Absolutely. It works for anyone who wants styling control and a clean finish. document.addEventListener("DOMContentLoaded", function() { const faqItems = document.querySelectorAll(".faq-item"); faqItems.forEach(item => { const question = item.querySelector(".faq-question"); const answer = item.querySelector(".faq-answer"); const icon = item.querySelector(".faq-icon"); question.addEventListener("click", () => { const isOpen = answer.style.display === "block"; document.querySelectorAll(".faq-answer").forEach(a => a.style.display = "none"); document.querySelectorAll(".faq-icon").forEach(i => i.textContent = "+"); if (!isOpen) { answer.style.display = "block"; icon.textContent = "−"; } }); }); });