<!DOCTYPE html>
<html lang="{{ lang }}" dir="{{ direction }}">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>{{ title }}</title>

    <base href="{{ base }}" />

    {% if description %}
    <meta name="description" content="{{ description }}">
    {% endif %}

    {% if keywords %}
    <meta name="keywords" content="{{ keywords }}">
    {% endif %}

    {% if icon %}
    <link href="{{ icon }}" rel="icon">
    {% endif %}

    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap" rel="stylesheet">

    <!-- Bootstrap -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet">

    <!-- Bootstrap Icons -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css" rel="stylesheet">

    {% for style in styles %}
    <link href="{{ style.href }}" type="text/css" rel="{{ style.rel }}" media="{{ style.media }}">
    {% endfor %}

    {% for link in links %}
    <link href="{{ link.href }}" rel="{{ link.rel }}">
    {% endfor %}

    {% for analytic in analytics %}
    {{ analytic }}
    {% endfor %}
</head>

<body>

<!-- ===========================
TOP BAR
=========================== -->

<div class="topbar">

    <div class="container">

        <div class="topbar-left">

            <span>
                <i class="bi bi-flower1"></i>
                100% Herbal
            </span>

            <span>
                <i class="bi bi-shield-check"></i>
                Trusted Quality
            </span>

            <span>
                <i class="bi bi-truck"></i>
                Cash on Delivery
            </span>

        </div>

        <div class="topbar-right">

            <a href="tel:{{ telephone }}">

                <i class="bi bi-telephone-fill"></i>

                {{ telephone }}

            </a>

        </div>

    </div>

</div>

<!-- ===========================
HEADER
=========================== -->

<header class="main-header">

    <div class="container">

        <div class="header-wrapper">

            <!-- Logo -->

            <div class="site-logo">

                <a href="{{ home }}">

                    {% if logo %}
                    <img src="{{ logo }}" alt="{{ name }}">
                    {% else %}
                    <h2>{{ name }}</h2>
                    {% endif %}

                </a>

            </div>

            <!-- Navigation -->

            <nav class="desktop-menu">

                {{ menu }}

            </nav>

            <!-- Right Side -->

            <div class="header-right">

                <div class="header-search">

                    {{ search }}

                </div>

                <a href="{{ wishlist }}" class="header-icon">

                    <i class="bi bi-heart"></i>

                </a>

                {% if logged %}
                <a href="{{ account }}" class="header-icon">
                {% else %}
                <a href="{{ login }}" class="header-icon">
                {% endif %}

                    <i class="bi bi-person"></i>

                </a>

                <div class="cart-area">

                    {{ cart }}

                </div>

            </div>

            <!-- Mobile Menu -->

            <button class="mobile-toggle">

                <i class="bi bi-list"></i>

            </button>

        </div>

    </div>

</header>