<!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="content-section">
    <div class="container">
      <div class="success-message">
        <h1>✅ Quote Request Submitted!</h1>
        <p>Thank you for your interest in <strong><%= quote.productName %></strong>.</p>
        <p>We have received your quote request and will contact you shortly at <strong><%= quote.email %></strong> or <strong><%= quote.phone %></strong>.</p>
        <div style="margin-top: 2rem;">
          <a href="/products" class="btn btn-secondary">View More Products</a>
          <a href="/" class="btn btn-primary">Back to Home</a>
        </div>
      </div>
    </div>
  </section>

  <%- include('partials/footer') %>
</body>
</html>
