# Task 2-c: Move rating next to favorite button

## Summary
Moved the rating display and favorite (heart) button into a single row at the bottom of CardContent in both House and Shop listing cards.

## Changes Made

### HouseRentalModule.tsx
1. **Removed** favorite heart button from image overlay (was `absolute bottom-2 right-2` positioned on the image div)
2. **Removed** separate rating row (`{/* Rating row - only show if rating exists */}`) that was below the owner row
3. **Added** new combined "Rating & Favorite row" after the owner row:
   - Uses `flex items-center justify-between` layout
   - Rating (Star + number + review count) on the left, empty `<div />` spacer if no rating
   - Heart favorite button on the right with hover states

### ShopRentalModule.tsx
Same three changes applied identically, using `shop.id`, `shop.rating`, `shop.reviewCount`.

## Styling Details
- Heart: `h-3.5 w-3.5`, unfilled = `text-muted-foreground hover:text-red-400`, filled = `fill-red-500 text-red-500`
- Heart button: `hover:bg-red-50 dark:hover:bg-red-950/30` for subtle hover feedback
- Star: `h-3 w-3 fill-amber-400 text-amber-400` (unchanged)

## Verification
- Lint passes with no errors
- Dev server compiles successfully
- No changes to detail dialogs, filters, search, or other functionality
