def suggest_items(query): query = query.lower() if "gift" in query and "500" in query: return ( "🎁 Gift Suggestions under ₹500:\n" "1. Bath & Body Gift Set - ₹499\n" "2. Mini Perfume Pack - ₹349\n" "3. Skin Care Hamper - ₹399\n" "4. Chocolates Gift Box - ₹299" ) if "shampoo" in query and "dry" in query: return ( "🧴 Shampoos for Dry Hair:\n" "1. Dove 500 ml - ₹325\n" "2. Clinic Plus 500 ml - ₹680" ) return "🤷 Sorry, no smart suggestions found. Try asking: 'Gift items under 500' or 'Shampoo for dry hair'"