add_action('woocommerce_after_single_product_summary', 'eclix_auto_product_template', 12);

function eclix_auto_product_template() {
    if (!is_product()) return;
    ?>

    <div class="eclix-product-template">

      <div class="eclix-trust-row">
        <div>✅ Cash on Delivery</div>
        <div>🚚 Pakistan Wide Delivery</div>
        <div>🛡️ 7 Days Replacement</div>
      </div>

      <div class="eclix-highlight-box">
        <h2>Premium Protection for Your Device</h2>
        <p>
          Protect your mobile with high-quality ECLIX PROTECTORS accessories designed for daily use, smooth performance, and long-lasting protection.
        </p>
      </div>

      <div class="eclix-features">
        <div>
          <span>💎</span>
          <h3>HD Clarity</h3>
          <p>Crystal clear visibility with premium finish.</p>
        </div>

        <div>
          <span>🛡️</span>
          <h3>9H Hardness</h3>
          <p>Strong scratch resistance for everyday protection.</p>
        </div>

        <div>
          <span>✨</span>
          <h3>Bubble Free Install</h3>
          <p>Easy installation with smooth fitting.</p>
        </div>

        <div>
          <span>📱</span>
          <h3>Perfect Fit</h3>
          <p>Precise cutouts and full coverage design.</p>
        </div>
      </div>

      <div class="eclix-section">
        <h2>Why Choose ECLIX PROTECTORS?</h2>
        <ul>
          <li>Premium quality mobile protection accessory</li>
          <li>Scratch resistant and durable material</li>
          <li>Designed for daily protection and long-term use</li>
          <li>Easy to install and remove</li>
          <li>Clean professional look for your device</li>
        </ul>
      </div>

      <div class="eclix-warning">
        <strong>Note:</strong> Product images are for reference. Actual fitting depends on selected mobile model.
      </div>

    </div>

    <?php
}