/** Shopify CDN: Minification failed

Line 15:44 Unexpected "-->"
Line 85:35 Comments in CSS use "/* ... */" instead of "//"
Line 87:418 Unterminated string token
Line 92:35 Comments in CSS use "/* ... */" instead of "//"
Line 105:12 Expected ":"
Line 106:12 Expected ":"
Line 107:12 Expected ":"
Line 109:11 Unexpected "closeLabAnalysisPanel("
Line 110:12 Expected ":"
Line 112:0 Unexpected "<"

**/
<!-- DAF_PRODUCTION_MOLECULAR_LAB_MATRIX_V1 -->
<div class="apothecary-lab-viewport">
  
  <!-- Section Title Structure: Clinical Sourcing Header Block -->
  <div style="max-width: 650px; margin-bottom: 4rem;">
    <span class="lab-meta-tag">CELLULAR RESTORATION REVOLUTION</span>
    <h2 style="font-size: 3.5rem; font-weight: 900; text-transform: uppercase; color: #FFFFFF; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 1.5rem 0;">BIOLOGICAL<br>REALITY<span>.</span></h2>
    <p style="font-size: 1.2rem; font-weight: 300; line-height: 1.6; color: #CCCCCC; margin: 0;">We reject standard holistic compromise. Built on a legacy of complete biological reversal, our dual-stage 20-botanical protocols target deep tissue toxicity pathways directly.</p>
  </div>

  <!-- The Interlocking Product Wireframe Grid -->
  <div class="apothecary-product-matrix">
    
    <!-- PRODUCT CELL 01: THE DAY FORMULATION -->
    <div class="apothecary-product-card">
      <div>
        <!-- Humanistic Exhibit Image Frame 01 -->
        <div class="lab-image-container">
          <img src="https://unsplash.com" alt="Microscopic leaf vein plant structures">
        </div>
        <span class="lab-meta-tag">STAGE 1 CELLULAR ACTIVATION</span>
        <h3 class="lab-product-title">THE DAY PROTOCOL</h3>
        <span class="lab-product-price">$39.99</span>
        <p class="lab-product-desc">A concentrated morning infusion engineered to sweep deep metabolic tracks. This active botanical complex drives essential alkalinity straight into fluid tracks, maximizing intracellular hydration, clearing systemic fog, and sustaining raw physical stamina.</p>
      </div>
      <div>
        <!-- Interactive Information Reveal Trigger Icon Button -->
        <div class="lab-scan-trigger" onclick="openLabAnalysisPanel('data-day-moss')">
          <span>+</span> Unpack Sourcing Blueprints
        </div>
        <form method="post" action="/cart/add">
          <input type="hidden" name="id" value="YOUR_LIVE_DAY_TEA_VARIANT_ID_HERE" />
          <button type="submit" class="lab-atc-key">ADD TO PROTOCOL</button>
        </form>
      </div>
    </div>

    <!-- PRODUCT CELL 02: THE NIGHT FORMULATION -->
    <div class="apothecary-product-card">
      <div>
        <!-- Humanistic Exhibit Image Frame 02 -->
        <div class="lab-image-container">
          <img src="https://unsplash.com" alt="Stark dramatic human breath lighting">
        </div>
        <span class="lab-meta-tag">STAGE 2 MOLECULAR RESTORATION</span>
        <h3 class="lab-product-title">THE NIGHT PROTOCOL</h3>
        <span class="lab-product-price">$39.99</span>
        <p class="lab-product-desc">An advanced overnight adaptogenic shield engineered to down-regulate internal inflammation paths. This blend targets deep cellular defense zones as your body rests, actively filtering tissue impurities and optimizing complete structural recovery before sunrise.</p>
      </div>
      <div>
        <!-- Interactive Information Reveal Trigger Icon Button -->
        <div class="lab-scan-trigger" onclick="openLabAnalysisPanel('data-night-roots')">
          <span>+</span> Unpack Sourcing Blueprints
        </div>
        <form method="post" action="/cart/add">
          <input type="hidden" name="id" value="YOUR_LIVE_NIGHT_TEA_VARIANT_ID_HERE" />
          <button type="submit" class="lab-atc-key">ADD TO PROTOCOL</button>
        </form>
      </div>
    </div>

  </div>

  <!-- CENTRALIZED LAB ANALYSIS MODAL INTERFACE (RENDERS INSTANTLY OVER PORT ON ENGINE TRIGGER) -->
  <div id="apothecary-central-overlay" class="lab-modal-shield">
    <div class="lab-modal-box">
      <span class="lab-modal-close" onclick="closeLabAnalysisPanel()">✕</span>
      
      <!-- Ingredient Analysis Data Card: Day Protocol Content -->
      <div id="data-day-moss" class="molecular-info-node" style="display: none;">
        <span class="lab-meta-tag">// EXTRACTION METRICS: CHONDRUS CRISPUS</span>
        <h4 style="font-size: 2.25rem; font-weight: 900; text-transform: uppercase; color: #FFFFFF; margin: 0 0 1.5rem 0; letter-spacing: -0.01em;">THE 20-BOTANICAL MORNING SYNC</h4>
        <p style="font-size: 1.15rem; color: #CCCCCC; line-height: 1.7; font-weight: 300; margin: 0;">Our morning core isolates deliver 92 of the body's 102 essential inorganic minerals. This high-concentration organic plant iron and wildcrafted marine structure network completely bypasses common digestive speed blocks, providing direct metabolic activation and optimizing cognitive focus parameters immediately.</p>
      </div>
      
      <!-- Ingredient Analysis Data Card: Night Protocol Content -->
      <div id="data-night-roots" class="molecular-info-node" style="display: none;">
        <span class="lab-meta-tag">// EXTRACTION METRICS: INTRACELLULAR RESTORATIVES</span>
        <h4 style="font-size: 2.25rem; font-weight: 900; text-transform: uppercase; color: #FFFFFF; margin: 0 0 1.5rem 0; letter-spacing: -0.01em;">NEURO-PROTECTIVE ADAPTOGENS</h4>
        <p style="font-size: 1.15rem; color: #CCCCCC; line-height: 1.7; font-weight: 300; margin: 0;">Our evening restorative compound blends pure root elements engineered to calm central stress neural paths. By removing chronic systemic cortisol spikes while you rest, this formula supports standard immune cell synthesis and cellular adaptation timeline fields before sunrise.</p>
      </div>
      
    </div>
  </div>

</div>

<!-- DATA MATRIX INTERACTION ACCELERATOR SCRIPT TOOL -->
<script>
  function openLabAnalysisPanel(targetContentId) {
    document.getElementById('apothecary-central-overlay').style.display = 'flex';
    document.querySelectorAll('.molecular-info-node').forEach(node => node.style.display = 'none');
    document.getElementById(targetContentId).style.display = 'block';
  }
  function closeLabAnalysisPanel() {
    document.getElementById('apothecary-central-overlay').style.display = 'none';
  }
</script>