diff --git a/src/app/profile/orders/[id]/page.tsx b/src/app/profile/orders/[id]/page.tsx
index d9512f5..2a04ae8 100644
--- a/src/app/profile/orders/[id]/page.tsx
+++ b/src/app/profile/orders/[id]/page.tsx
@@ -78,10 +78,10 @@ const OrderDetail: FC = () => {
جزئیات سفارش
- {/* router.push(`/profile/orders/${id}/return`)}>
+
router.push(`/profile/orders/${id}/return`)}>
فرم درخواست مرجوعی
-
*/}
+
{cancelOrderMutation.isPending ? (
diff --git a/src/share/components/DesktopSearch.tsx b/src/share/components/DesktopSearch.tsx
index 9c2a3c9..bf7820c 100644
--- a/src/share/components/DesktopSearch.tsx
+++ b/src/share/components/DesktopSearch.tsx
@@ -103,7 +103,7 @@ const DesktopSearch: FC = () => {
{searchResults.results.products.map((product) => (
handleProductClick(product.url)}
+ onClick={() => handleProductClick(`/product/${product._id}`)}
className='flex items-center gap-3 px-4 py-3 hover:bg-gray-50 cursor-pointer transition-colors'
>
diff --git a/src/share/components/MobileSearch.tsx b/src/share/components/MobileSearch.tsx
index 537c450..1f77399 100644
--- a/src/share/components/MobileSearch.tsx
+++ b/src/share/components/MobileSearch.tsx
@@ -59,7 +59,7 @@ const MobileSearch: FC = () => {
{searchResults.results.products.map((product) => (
handleProductClick(product.url)}
+ onClick={() => handleProductClick(`/product/${product._id}`)}
className='flex items-center gap-3 px-4 py-3 border-b border-gray-100 active:bg-gray-50'
>