<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Our Teas - Taste of Maharashtra</title>

    <script src="https://cdn.tailwindcss.com"></script>

    <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=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">

    <style>

        body {

            font-family: 'Poppins', sans-serif;

            background-color: #FFFBF5;

            color: #4A2E2C;

        }

        .font-playfair {

            font-family: 'Playfair Display', serif;

        }

        .product-card {

            transition: all 0.3s ease-in-out;

        }

        .product-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);

        }

        .header-bg {

             background-image:

                radial-gradient(circle at 100% 0%, rgba(255, 214, 165, 0.3) 0%, rgba(255, 214, 165, 0) 30%),

                radial-gradient(circle at 0% 100%, rgba(253, 206, 138, 0.3) 0%, rgba(253, 206, 138, 0) 40%);

        }

    </style>

</head>

<body>


    <!-- Header -->

    <header class="bg-[#FFFBF5]/80 backdrop-blur-lg sticky top-0 z-50">

        <nav class="container mx-auto px-6 py-4 flex justify-between items-center">

            <div class="flex items-center gap-3">

                <!-- SVG Logo -->

                <svg width="32" height="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="text-[#D48953]">

                    <path d="M18.5 7C18.5 8.10457 18.9477 9 19.5 9C20.0523 9 20.5 8.10457 20.5 7C20.5 5.89543 20.0523 5 19.5 5C18.9477 5 18.5 5.89543 18.5 7Z" stroke="currentColor" stroke-width="1.5"/>

                    <path d="M4 11C4 11 4 11.5 4 12.5C4 15.5 6 17.5 9 17.5C12 17.5 14 15.5 14 12.5C14 11.5 14 11 14 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>

                    <path d="M4.5 8H13.5C14.8807 8 16 9.11929 16 10.5V10.5C16 11.8807 14.8807 13 13.5 13H4.5C3.11929 13 2 11.8807 2 10.5V10.5C2 9.11929 3.11929 8 4.5 8Z" stroke="currentColor" stroke-width="1.5"/>

                    <path d="M10 5C10 5 11.5 6.5 13 6.5C14.5 6.5 15.5 5.5 15.5 4C15.5 2.5 14 1.5 12.5 2C11 2.5 11 4 11 4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>

                </svg>

                <a href="index.html" class="font-playfair text-2xl font-bold text-[#6B4F4F]">Taste of Maharashtra</a>

            </div>

            <div class="hidden md:flex items-center space-x-8 text-sm font-semibold text-[#8E644D]">

                <a href="index.html#story" class="hover:text-[#D48953] transition-colors">Our Story</a>

                <a href="#" class="text-[#D48953] font-bold">Our Teas</a>

                <a href="index.html#promise" class="hover:text-[#D48953] transition-colors">Our Promise</a>

            </div>

            <div class="md:hidden">

                 <button class="text-[#8E644D]">

                    <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path></svg>

                 </button>

            </div>

        </nav>

    </header>


    <!-- Main Content -->

    <main>

        <!-- Page Header -->

        <section class="header-bg py-16 md:py-24 text-center">

            <div class="container mx-auto px-6">

                <h1 class="font-playfair text-5xl md:text-6xl font-bold text-[#4E3636]">Explore Our Authentic Blends</h1>

                <p class="mt-4 text-lg text-[#A0765E] max-w-2xl mx-auto">Each blend is a tribute to the rich traditions and fertile soils of Maharashtra, crafted for a perfect cup every time.</p>

            </div>

        </section>


        <!-- Product Grid -->

        <section class="py-20">

            <div class="container mx-auto px-6">

                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">


                    <!-- Product Card 1 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Peshwai+Chaha" alt="Peshwai Chaha" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Peshwai Chaha</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">A royal blend with notes of cardamom and saffron, inspired by the tea served in the courts of the Peshwas.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹450</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>


                    <!-- Product Card 2 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Kolhapuri+Spice" alt="Kolhapuri Spice Blend" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Kolhapuri Spice Blend</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">A robust and fiery mix featuring clove, cinnamon, and black pepper for a truly invigorating experience.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹420</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>


                    <!-- Product Card 3 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Nagpuri+Saunf" alt="Nagpuri Saunf Chai" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Nagpuri Saunf Chai</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">A refreshing and aromatic tea from the Orange City, infused with sweet fennel seeds for a cooling aftertaste.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹400</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>

                     <!-- Product Card 4 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Mumbai+Cutting" alt="Mumbai Cutting Chai" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Mumbai Cutting Chai</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">The iconic strong, milky, and gingery brew that fuels the city that never sleeps. Perfect for a quick boost.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹380</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>

                     <!-- Product Card 5 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Konkan+Coconut" alt="Konkan Coconut Chai" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Konkan Coconut Chai</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">A creamy, tropical infusion that brings the serene beaches of the Konkan coast to your cup.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹480</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>

                     <!-- Product Card 6 -->

                    <div class="product-card bg-white rounded-lg shadow-lg overflow-hidden flex flex-col">

                        <img src="https://placehold.co/600x400/F3E9DD/A0765E?text=Classic+Masala" alt="Classic Masala Chai" class="w-full h-56 object-cover">

                        <div class="p-6 flex flex-col flex-grow">

                            <h3 class="font-playfair text-2xl font-bold text-[#6B4F4F]">Classic Masala Chai</h3>

                            <p class="text-[#8E644D] mt-2 mb-4 flex-grow">The timeless, all-time favorite. A perfectly balanced blend of spices for a comforting and authentic taste.</p>

                            <div class="flex justify-between items-center mt-auto">

                                <span class="text-xl font-semibold text-[#4E3636]">₹350</span>

                                <button class="bg-[#D48953] text-white px-5 py-2 rounded-full hover:bg-[#C37A44] transition-colors font-semibold">Add to Cart</button>

                            </div>

                        </div>

                    </div>


                </div>

            </div>

        </section>

    </main>


    <!-- Footer -->

    <footer class="bg-[#4E3636] text-[#F9F4F0]">

        <div class="container mx-auto px-6 py-12 text-center">

            <p class="font-playfair text-3xl mb-4">Taste of Maharashtra</p>

            <p class="mb-6">Sip the soul of tradition. &copy; 2024</p>

            <div class="flex justify-center space-x-6">

                <a href="#" class="hover:opacity-75">Facebook</a>

                <a href="#" class="hover:opacity-75">Instagram</a>

                <a href="#" class="hover:opacity-75">Twitter</a>

            </div>

        </div>

    </footer>


</body>

</html>