<style>.tab-container {
    font-family: sans-serif;
    max-width: 1362px;
    margin: auto;
    padding: 20px;
  }

  .tab-header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    gap: 450px;
    margin-bottom: 20px;
  }

  .tab-btn {
    position: relative;
    padding: 12px 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 500;
  }

  .tab-btn.active {
    color: #0e5a0a;
    font-weight: 500;
  }

  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0e5a0a;
    width: 100%;
  }

  .tab-content {
    display: none;
    color: #000;
    font-size: 15px;
  }

  .tab-content.active {
    display: block;
  }

  .tab-content p {
    margin: 0 0 10px;
  }

  .tab-content strong {
    font-weight: 700;
  }

  .read-more {
    color: #007b8f;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
  }

  .tab-content ul li {
    list-style: disc;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    .tab-header {
      gap: 20px;
      flex-wrap: wrap;
    }

    .tab-btn {
      font-size: 15px;
    }
  }</style><div class="tab-container">
  
  <div class="tab-header">
    <div class="tab-btn active" data-tab="desc">Description</div>
    <div class="tab-btn" data-tab="use">How to use</div>
  </div>

  
  <div class="tab-content active" id="desc">
    <ul>
      <li>
        <p>{{ product.description }}</p>
      </li>
    </ul>
  </div>

  
  <div class="tab-content" id="use">
    <p><strong>How to use:</strong></p>
    <p>
      1. Apply a small amount to dry or slightly damp hair before bed.<br>
      2. Gently massage through lengths and ends — no need to rinse.<br>
      3. Leave overnight to let it work its magic.<br>
      4. Wake up, style as usual, and enjoy soft, shiny, frizz-free hair.
    </p>
  </div>
</div> <script type="litespeed/javascript">const tabs=document.querySelectorAll('.tab-btn');const contents=document.querySelectorAll('.tab-content');tabs.forEach(tab=>{tab.addEventListener('click',()=>{tabs.forEach(t=>t.classList.remove('active'));contents.forEach(c=>c.classList.remove('active'));tab.classList.add('active');document.getElementById(tab.dataset.tab).classList.add('active')})})</script> 
				
			
Scroll to Top