Shop

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>PureLeaf Wellness | THCA & CBD</title>

<style>
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f5;
    color: #222;
}

header {
    background: #1f3d2b;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: #2f5c41;
    padding: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #e7efe9;
}

.hero h1 {
    font-size: 40px;
}

.btn {
    background: #1f3d2b;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
}

.products {
    padding: 60px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.about, .contact {
    padding: 60px 20px;
    text-align: center;
}

footer {
    background: #1f3d2b;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 14px;
}
</style>
</head>

<body>

<header>
    <h2>PureLeaf Wellness</h2>
    <p>Premium THCA & CBD Products</p>
</header>

<nav>
    <a href="#shop">Shop</a>
    <a href="#about">About</a>
    <a href="#contact">Contact</a>
</nav>

<section class="hero">
    <h1>Natural Relief. Premium Quality.</h1>
    <p>Lab-tested THCA & CBD products delivered to your door.</p>
    <a class="btn" href="#shop">Shop Now</a>
</section>

<section id="shop" class="products">
    <h2>Featured Products</h2>

    <div class="product-grid">

        <div class="card">
            <img src="https://via.placeholder.com/300x300">
            <h3>THCA Flower</h3>
            <p>$39.99</p>
            <button class="btn">Buy Now</button>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/300x300">
            <h3>CBD Gummies</h3>
            <p>$24.99</p>
            <button class="btn">Buy Now</button>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/300x300">
            <h3>CBD Oil Tincture</h3>
            <p>$29.99</p>
            <button class="btn">Buy Now</button>
        </div>

    </div>
</section>

<section id="about" class="about">
    <h2>About Us</h2>
    <p>
        We provide premium hemp-derived THCA and CBD products that are lab-tested,
        federally compliant, and crafted for wellness and relaxation.
    </p>
</section>

<section id="contact" class="contact">
    <h2>Contact Us</h2>
    <p>Email: support@pureleafwellness.com</p>
    <p>Follow us on social media</p>
</section>

<footer>
    <p>Must be 21+. Hemp-derived products only. Lab tested. Farm Bill compliant.</p>
    <p>© 2026 PureLeaf Wellness</p>
</footer>

</body>
</html>