Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the amazon-auto-links domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/drkunj.com/wp-includes/functions.php on line 6121
myproducts.php

myproducts.php

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Dr. Kunj's Reviewed Longevity Products</title>

    <!-- Bootstrap CSS -->
    <link
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
      rel="stylesheet"
    />
    <!-- Font Awesome for icons -->
    <link
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
      rel="stylesheet"
    />
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
    <!-- Google Fonts -->
    <link
      href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
      rel="stylesheet"
    />

    <style>
      :root {
        --primary-color: #1e40af;
        --secondary-color: #3b82f6;
        --success-color: #10b981;
        --light-bg: #f8fafc;
        --border-color: #e2e8f0;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
        color: #334155;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container-fluid {
        padding: 0;
      }

      
     

      /* Main Content Container */
      .main-content {
        max-width: full-width;
        margin: 0 auto;
        padding: 2rem;
      }

      /* Filter Section */
      .filter-section {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .filter-btn {
        border: 2px solid var(--border-color);
        background: white;
        color: #64748b;
        border-radius: 25px;
        padding: 10px 20px;
        margin: 0.25rem;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .filter-btn:hover,
      .filter-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
      }

      /* Sidebar */
      .sidebar {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        height: fit-content;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 2rem;
      }

      .sidebar-section {
        margin-bottom: 2rem;
      }

      .sidebar-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--border-color);
      }

      .sidebar-item {
        padding: 0.75rem 0;
        color: #64748b;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
      }

      .sidebar-item:hover {
        color: var(--secondary-color);
        padding-left: 0.5rem;
      }

      .sidebar-item:last-child {
        border-bottom: none;
      }

      /* Product Cards */
      .product-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
      }

      .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      }

      .product-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        background: #f1f5f9;
      }

      .product-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
      }

      .product-subtitle {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .evidence-badge {
        background: var(--success-color);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        display: inline-block;
      }

      .rating-stars {
        color: #fbbf24;
        margin-right: 0.5rem;
      }

      .rating-text {
        color: #64748b;
        font-size: 0.9rem;
      }

      .benefit-list {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
      }

      .benefit-list li {
        padding: 0.25rem 0;
        color: #64748b;
        font-size: 0.9rem;
        position: relative;
        padding-left: 1rem;
      }

      .benefit-list li:before {
        content: "•";
        color: var(--secondary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      .price {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--primary-color);
      }

      .buy-btn {
        background: var(--primary-color);
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
      }

      .buy-btn:hover {
        background: #1e3a8a;
        transform: translateY(-1px);
      }

      .see-more-btn {
        background: transparent;
        color: var(--secondary-color);
        border: 2px solid var(--secondary-color);
        padding: 15px 40px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .see-more-btn:hover {
        background: var(--secondary-color);
        color: white;
      }

      /* Footer Disclaimer */
      .disclaimer {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        margin-top: 3rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .disclaimer-text {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.6;
      }

      /* Responsive Design */
      @media (max-width: 1200px) {
        .main-content {
          padding: 1.5rem;
        }
      }

      @media (max-width: 992px) {
        .hero-title {
          font-size: 2.5rem;
        }

        .hero-section {
          padding: 1.5rem;
        }

        .main-content {
          padding: 1rem;
        }

        .sidebar {
          margin-bottom: 2rem;
          position: static;
        }
      }

      @media (max-width: 768px) {
        .hero-title {
          font-size: 2rem;
          text-align: center;
        }

        .hero-subtitle {
          text-align: center;
          font-size: 1.1rem;
        }

        .hero-section {
          min-height: 70vh;
          text-align: center;
        }

        .doctor-image {
          width: 120px;
          height: 120px;
          margin: 1rem auto;
        }

        .product-card .row {
          text-align: center;
        }

        .product-image {
          margin: 0 auto 1rem;
        }

        .filter-section .row {
          flex-direction: column;
          gap: 1rem;
        }

        .filter-section .col-lg-4 {
          display: flex;
          justify-content: center;
        }
      }

      @media (max-width: 576px) {
        .hero-title {
          font-size: 1.75rem;
        }

        .hero-section {
          min-height: 60vh;
          padding: 1rem;
        }

        .main-content {
          padding: 0.5rem;
        }

        .product-card {
          padding: 1rem;
        }

        .filter-btn {
          font-size: 0.85rem;
          padding: 8px 16px;
        }
      }
    </style>
  </head>
  <body>
    <div class="">
      <!-- Hero Section -->
      <style>
        .hero-section {
          background-image: url("https://res.cloudinary.com/de4ks8mkh/image/upload/v1751344553/kunj_kuze0w.svg");
          background-size: cover;
          background-position: center;
          color: #fff; /* ensure text contrast */
          padding: 100px 0;
          position: relative;
        }

        .hero-title {
          font-size: 5rem;
          font-weight: bold;
          color: black;
        }

        .hero-subtitle {
          font-size: 2.5rem;
          margin-bottom: 30px;
          color: #007986;
        }
      </style>

     
          
      <!-- Main Content -->
      <div class="main-content">
        <!-- Filter Section -->
        <div class="filter-section">
          <div class="row align-items-center">
            <div class="col-lg-8">
              <div class="d-flex flex-wrap align-items-center">
                <span class="me-3 fw-semibold">Evidence Grading:</span>
                <div class="dropdown">
                  <button
  class="btn dropdown-toggle filter-btn active text-white"
  type="button"
  data-bs-toggle="dropdown"
  aria-expanded="false"
  style="background-color: #007986; border-color: #007986;"
>
  All Categories
</button>

                  <ul class="dropdown-menu " style="background-color:rgba(61, 230, 145, 0.49);  font-family: 'Poppins', sans-serif; font-size: 1rem; color: black;">
                    <li>
                      <button class="dropdown-item" data-filter="all">
                        Nutrition
                      </button>
                    </li>
                    <li>
                      <button class="dropdown-item" data-filter="tech">
                        Heart Health
                      </button>
                    </li>
                    <li>
                      <button class="dropdown-item" data-filter="fashion">
                        Gut Health
                      </button>
                    </li>

                    <!-- Add more categories -->
                  </ul>
                </div>
                <button
                  class="btn d-flex align-items-center"
                  data-filter="evidence"
                >
                 <button class="btn filter-btn d-flex align-items-center">
  <input
    type="checkbox"
    class="form-check-input m-0"
    style="width: 18px; height: 16px;"
  />
  <span class="ms-2">Highest evidence first</span>
</button>


               <style>
 .compare-btn{
  color:black;
  font-family: 'Poppins', sans-serif;
 }

  .compare-btn:hover {
    background-color: #02A3B41A; /* solid teal on hover */
    
  }
</style>

<button class="btn gap-4 compare-btn" data-filter="compare">
  Compare
</button>
              </div>
            </div>
            <div class="col-lg-4">
              <div class="d-flex align-items-center justify-content-end">
                <span class="me-2">Sort by:</span>
                <select class="form-select" style="width: auto">
                  <option>Relevance</option>
                  <option>Price: Low to High</option>
                  <option>Price: High to Low</option>
                  <option>Rating</option>
                </select>
              </div>
            </div>
          </div>
        </div>

        <!-- Products and Sidebar -->
        <div class="row fixed-row">
          <!-- Sidebar -->

          <div class="col-lg-3">
            <div class="sidebar">
              <div class="sidebar-section p-3 rounded" style="width: 250px">
                <h6 class="sidebar-title fw-bold mb-3" style="color:black;">Evidence Grading</h6>

                <style>
  .evidence-grading {
    list-style: none;
    padding-left: 0;
    font-family: Arial, sans-serif;
  }

  .evidence-grading li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .evidence-grading input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
  }

  .evidence-label {
    font-weight: bold;
    background-color: #EAF6F6;
    border-radius: 4px;
    padding: 4px 8px;
    margin-right: 10px;
  }

  .evidence-content {
    flex-grow: 1;
  }
</style>

<ul class="evidence-grading">
  <li>
   
    <label class="evidence-content" for="grade-a">
      <span class="evidence-label">A</span>
      ≥2 well-designed Randomized Controlled Trials (RCTs) in humans with relevant clinical end-points
    </label>
  </li>
  <li>
   
    <label class="evidence-content" for="grade-b">
      <span class="evidence-label">B</span>
      1 RCT or multiple phase-1/2 human studies
    </label>
  </li>
  <li>
   
    <label class="evidence-content" for="grade-c">
      <span class="evidence-label">C</span>
      Robust animal studies ± exploratory human data
    </label>
  </li>
  <li>
  
    <label class="evidence-content" for="grade-d">
      <span class="evidence-label">D</span>
      Early animal/cell or theoretical
    </label>
  </li>
</ul>

              </div>
              <div class="sidebar-section p-3 rounded" style="width: 250px">
                <h6 class="sidebar-title fw-bold mb-3" style="color:black;">Evidence Grading</h6>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="grade-a"
                  />
                  <label class="form-check-label" for="grade-a">Grade A</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="grade-b"
                  />
                  <label class="form-check-label" for="grade-b">Grade B</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="grade-c"
                  />
                  <label class="form-check-label" for="grade-c">Grade C</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="grade-d"
                  />
                  <label class="form-check-label" for="grade-d">Grade D</label>
                </div>
              </div>

              <div class="sidebar-section p-3 rounded" style="width: 250px">
                <h6 class="sidebar-title fw-bold mb-3" style="color:black;">Organ System</h6>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="blood" />
                  <label class="form-check-label" for="blood">Blood</label>
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="skin" />
                  <label class="form-check-label" for="skin">Skin</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="hair-nails"
                  />
                  <label class="form-check-label" for="hair-nails"
                    >Hair & Nails</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="gut" />
                  <label class="form-check-label" for="gut">Gut</label>
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="bones" />
                  <label class="form-check-label" for="bones">Bones</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="muscles-tendons"
                  />
                  <label class="form-check-label" for="muscles-tendons"
                    >Muscles & Tendons</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="reproductive"
                  />
                  <label class="form-check-label" for="reproductive"
                    >Reproductive System</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="kidneys"
                  />
                  <label class="form-check-label" for="kidneys">Kidneys</label>
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="immune" />
                  <label class="form-check-label" for="immune"
                    >Immune System</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="liver" />
                  <label class="form-check-label" for="liver">Liver</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="digestive"
                  />
                  <label class="form-check-label" for="digestive"
                    >Digestive Tract/Gastro</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="joints-ligaments"
                  />
                  <label class="form-check-label" for="joints-ligaments"
                    >Joints & Ligaments</label
                  >
                </div>
              </div>

              <div class="sidebar-section p-3 rounded" style="width: 250px">
                <h6 class="sidebar-title fw-bold mb-3" style="color:black;">Pillar</h6>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="diet" />
                  <label class="form-check-label" for="diet">Diet</label>
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="exercise"
                  />
                  <label class="form-check-label" for="exercise"
                    >Sleep</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="social" />
                  <label class="form-check-label" for="social"
                    >Exercise</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input class="form-check-input" type="checkbox" id="stress" />
                  <label class="form-check-label" for="stress"
                    >+ve social connection</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="alcohol"
                  />
                  <label class="form-check-label" for="alcohol"
                    >Stress Reduction</label
                  >
                </div>

                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="supplements"
                  />
                  <label class="form-check-label" for="supplements"
                    >Avoiding Toxins</label
                  >
                </div>
                <div class="form-check mb-2">
                  <input
                    class="form-check-input"
                    type="checkbox"
                    id="supplements"
                  />
                  <label class="form-check-label" for="supplements"
                    >Eudemonia</label
                  >
                </div>
              </div>
            </div>
          </div>

          <!-- Products Section -->
          <div class="col-lg-9">
            <div id="productsContainer">
              <!-- Product 1 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Nordic Naturals</h5>
                        <p class="product-subtitle">
                          Algae Omega-3 Supplement - 700 mg Omega-3
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.5/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Promotes healthy cardiovascular function</li>
                      <li>Supports brain function and mood</li>
                      <li>Made from wild-caught sardines and anchovies</li>
                      <li>Third-party tested for purity and potency</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>

              <!-- Product 2 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Coenzyme Forte</h5>
                        <p class="product-subtitle">
                          Melatonin 10 mg Sleep Supplement for Men & Women
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.2/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Supports cellular energy production</li>
                      <li>Antioxidant and heart health support</li>
                      <li>Enhanced bioavailability formula</li>
                      <li>Non-GMO and gluten-free</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>

              <!-- Product 3 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Nordic Naturals</h5>
                        <p class="product-subtitle">
                          Algae Omega-3 Brain Supplement - 700 mg Omega-3
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.7/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Supports cognitive function and memory</li>
                      <li>Contains curcumin for brain health</li>
                      <li>Sustainably sourced algae oil</li>
                      <li>Third-party tested for freshness and purity</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>

              <!-- Product 4 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Coenzyme Forte</h5>
                        <p class="product-subtitle">
                          Melatonin 10 mg Sleep Supplement for Men & Women
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.1/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Promotes healthy sleep patterns</li>
                      <li>Helps regulate circadian rhythms</li>
                      <li>Fast-dissolving tablets</li>
                      <li>Non-habit forming sleep aid</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>

              <!-- Product 5 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Nordic Naturals</h5>
                        <p class="product-subtitle">
                          Algae Omega-3 Supplement - 700 mg Omega-3
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.6/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Promotes healthy cardiovascular function</li>
                      <li>Supports brain and eye health</li>
                      <li>Molecularly distilled for purity</li>
                      <li>Lemon flavored to reduce fishy aftertaste</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>

              <!-- Product 6 -->
              <div class="product-card">
                <div class="row">
                  <div class="col-md-2">
                    <div class="product-image"></div>
                  </div>
                  <div class="col-md-7">
                    <div
                      class="d-flex justify-content-between align-items-start mb-2"
                    >
                      <div>
                        <h5 class="product-title">Coenzyme Forte</h5>
                        <p class="product-subtitle">
                          Multivitamin 10 mg Supplement for Men & Women
                        </p>
                      </div>
                      <span class="evidence-badge">Strong</span>
                    </div>
                    <div class="d-flex align-items-center mb-2">
                      <span class="rating-text">(4.3/5)</span>
                    </div>
                    <ul class="benefit-list">
                      <li>Complete daily nutrition support</li>
                      <li>Energy metabolism and immune support</li>
                      <li>Contains essential vitamins and minerals</li>
                      <li>Easy-to-swallow capsules</li>
                    </ul>
                  </div>
                  <div class="col-md-3 text-center">
                    <button class="btn buy-btn">Buy Now</button>
                  </div>
                </div>
              </div>
            </div>

            <!-- See More Button -->
            <div class="text-center mt-4">
              <button class="btn see-more-btn">See More</button>
            </div>
          </div>
        </div>

        <!-- Disclaimer Section -->
        <div class="disclaimer">
          <div class="disclaimer-text">
            <strong>Disclaimer:</strong> This content is only for informational
            and educational purposes and is not a substitute for professional
            medical advice, diagnosis, or treatment. Always consult a qualified
            healthcare provider before making changes to your diet, exercise
            routine, or supplement regimen. The products mentioned have not been
            evaluated by the FDA and are not intended to diagnose, treat, cure,
            or prevent any disease. Individual results may vary. Some links may
            be affiliate links, and we may receive a commission at no extra cost
            to you. <br /><br />
            <strong>Affiliate Disclaimer:</strong> This blog provides general
            information about affiliate links. We are not responsible for the
            content of linked sites or any changes to their content. The
            inclusion of any link does not imply endorsement by us of the site.
            <br /><br />
            <strong>Medical Disclaimer:</strong> The information provided above
            may not reflect the most current medical developments. For the most
            up-to-date information, please consult your healthcare provider or
            visit reputable medical websites.
          </div>
        </div>
      </div>
    </div>

<!-- header.php or other template file -->
<div class="my-content">
    <?php 
    // Your PHP code here
    $name = "WordPress User";
    echo "<p>Hello, $name!</p>";
    ?>
    
    <!-- Regular HTML continues -->
    <div class="html-content">
        <p>This is normal HTML content</p>
    </div>
</div>


    <!-- Bootstrap JS -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>

    <script>
      // Filter functionality
      document.querySelectorAll(".filter-btn").forEach((btn) => {
        btn.addEventListener("click", function () {
          document
            .querySelectorAll(".filter-btn")
            .forEach((b) => b.classList.remove("active"));
          this.classList.add("active");
        });
      });

      // Search functionality
      document
        .getElementById("searchInput")
        .addEventListener("input", function (e) {
          const searchTerm = e.target.value.toLowerCase();
          const productCards = document.querySelectorAll(".product-card");

          productCards.forEach((card) => {
            const title = card
              .querySelector(".product-title")
              .textContent.toLowerCase();
            const subtitle = card
              .querySelector(".product-subtitle")
              .textContent.toLowerCase();
            const benefits = Array.from(
              card.querySelectorAll(".benefit-list li")
            )
              .map((li) => li.textContent.toLowerCase())
              .join(" ");

            if (
              title.includes(searchTerm) ||
              subtitle.includes(searchTerm) ||
              benefits.includes(searchTerm)
            ) {
              card.style.display = "block";
            } else {
              card.style.display = searchTerm === "" ? "block" : "none";
            }
          });
        });

      // Sidebar category filtering
      document.querySelectorAll(".sidebar-item").forEach((item) => {
        item.addEventListener("click", function () {
          document.querySelectorAll(".sidebar-item").forEach((i) => {
            i.style.fontWeight = "normal";
            i.style.color = "#64748b";
          });
          this.style.fontWeight = "600";
          this.style.color = "#3b82f6";
        });
      });

      // Smooth scrolling for anchor links
      document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
        anchor.addEventListener("click", function (e) {
          e.preventDefault();
          const target = document.querySelector(this.getAttribute("href"));
          if (target) {
            target.scrollIntoView({
              behavior: "smooth",
              block: "start",
            });
          }
        });
      });

      // Add loading animation for Buy Now buttons
      document.querySelectorAll(".buy-btn").forEach((btn) => {
        btn.addEventListener("click", function () {
          const originalText = this.textContent;
          this.innerHTML =
            '<i class="fas fa-spinner fa-spin me-2"></i>Loading...';
          this.disabled = true;

          setTimeout(() => {
            this.textContent = originalText;
            this.disabled = false;
          }, 2000);
        });
      });
    </script>
  </body>
</html>
Scroll to Top