<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Barbie Dreamhouse Store 🏠</title>
    
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />

        <style>
           <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet">
        </style>
</head>

<body>
    <div class="max-w-sm mx-auto rounded-lg overflow-hidden shadow-lg bg-[#F8BBD0] m-4">
  <img class="w-full h-64 object-cover" src="https://dummyimage.com/400x300/E91E63/FFFFFF&text=Barbie+Doll" alt="Barbie Doll Product Image">
  <div class="p-6">
    <div class="flex justify-between items-center mb-2">
      <h3 class="font-bold text-xl text-[#424242]">Barbie Dreamhouse Doll</h3>
      <span class="material-symbols-outlined text-[#E91E63] cursor-pointer">favorite</span>
    </div>
    <p class="text-[#E91E63] text-lg font-semibold mb-4">$49.99</p>
    <button class="w-full bg-[#E91E63] hover:bg-[#C2185B] text-white font-bold py-3 px-6 rounded-full shadow-md hover:shadow-lg transition-all">
      Add to Cart
    </button>
  </div>
</div>
</body>

</html>