<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= title %> - Farm Products</title>
  <link rel="stylesheet" href="/css/style.css">
</head>
<body>
  <%- include('partials/navbar') %>

  <section class="page-header">
    <div class="container">
      <h1>Our Products</h1>
      <p>Fresh, quality products from our farm</p>
    </div>
  </section>

  <section class="content-section">
    <div class="container">
      <div class="product-grid">
        <% products.forEach(product => { %>
          <div class="product-card">
            <img src="<%= product.image %>" alt="<%= product.name %>">
            <div class="product-info">
              <span class="category"><%= product.category %></span>
              <h3><%= product.name %></h3>
              <p><%= product.description %></p>
              <span class="price"><%= product.price %></span>
              <a href="/product/<%= product.id %>" class="btn btn-primary">Request Quote</a>
            </div>
          </div>
        <% }) %>
      </div>
    </div>
  </section>

  <%- include('partials/footer') %>
</body>
</html>
