<!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="hero">
    <div class="container">
      <h1><%= page.hero %></h1>
      <p><%= page.description %></p>
      <a href="/products" class="btn btn-primary">View Products</a>
    </div>
  </section>

  <section class="features">
    <div class="container">
      <h2>Why Choose Us</h2>
      <div class="feature-grid">
        <% page.features.forEach(feature => { %>
          <div class="feature-card">
            <h3><%= feature.title %></h3>
            <p><%= feature.description %></p>
          </div>
        <% }) %>
      </div>
    </div>
  </section>

  <section class="products-preview">
    <div class="container">
      <h2>Featured Products</h2>
      <div class="product-grid">
        <% products.forEach(product => { %>
          <div class="product-card">
            <img src="<%= product.image %>" alt="<%= product.name %>">
            <h3><%= product.name %></h3>
            <p><%= product.description %></p>
            <span class="price"><%= product.price %></span>
            <a href="/product/<%= product.id %>" class="btn btn-secondary">Get Quote</a>
          </div>
        <% }) %>
      </div>
      <div style="text-align: center; margin-top: 2rem;">
        <a href="/products" class="btn btn-primary">View All Products</a>
      </div>
    </div>
  </section>

  <%- include('partials/footer') %>
</body>
</html>
