<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= typeof title !== 'undefined' ? title : 'Fashion Store BD' %></title>
  <link rel="stylesheet" href="/css/style.css">
  <meta name="description" content="<%= settings.siteDescription %>">
  <meta name="keywords" content="<%= settings.metaKeywords %>">
  <meta name="author" content="<%= settings.metaAuthor %>">
</head>
<body>
  <header>
    <div class="container">
      <a href="/" class="logo">Fashion<span>Store</span></a>
      <nav>
        <a href="/">Home</a>
        <a href="/shop">Shop</a>
        <a href="/about">About</a>
        <a href="/contact">Contact</a>
      </nav>
      <div class="header-actions">
        <a href="/cart">Cart <% if (cartCount > 0) { %><span class="cart-badge"><%= cartCount %></span><% } %></a>
        <% if (user) { %>
          <a href="/dashboard"><%= user.name %></a>
          <% if (user.role === 'admin') { %><a href="/admin">Admin</a><% } %>
          <a href="/signout">Sign Out</a>
        <% } else { %>
          <a href="/signin">Sign In</a>
          <a href="/signup">Sign Up</a>
        <% } %>
      </div>
    </div>
  </header>
  <%- body %>
  <footer>
    <div class="container">
      <div class="footer-links">
        <a href="/">Home</a>
        <a href="/shop">Shop</a>
        <a href="/about">About</a>
        <a href="/contact">Contact</a>
        <a href="/cart">Cart</a>
      </div>
      <p>&copy; 2026 FashionStore BD. All rights reserved. | Delivering across Bangladesh</p>
    </div>
  </footer>
</body>
</html>
