diff --git a/src/pages/ProductPage/ProductPage.tsx b/src/pages/ProductPage/ProductPage.tsx
index 1122ecf5..a0d85a32 100644
--- a/src/pages/ProductPage/ProductPage.tsx
+++ b/src/pages/ProductPage/ProductPage.tsx
@@ -2,7 +2,7 @@ import { Spacing } from '@fun-eat/design-system';
import { useQueryErrorResetBoundary } from '@tanstack/react-query';
import { Suspense } from 'react';
-import { productSection } from './productPage.css';
+import { categorySection, productSection } from './productPage.css';
import {
Loading,
@@ -35,15 +35,18 @@ export const ProductPage = () => {
return (
<>
-
-
- {selectedTabMenu === TAB_MENUS[0].value ? (
-
- ) : (
-
- )}
-
-
+
+
+
+ {selectedTabMenu === TAB_MENUS[0].value ? (
+
+ ) : (
+
+ )}
+
+
+
+
}>
diff --git a/src/pages/ProductPage/productPage.css.ts b/src/pages/ProductPage/productPage.css.ts
index b2e71805..cf4e6165 100644
--- a/src/pages/ProductPage/productPage.css.ts
+++ b/src/pages/ProductPage/productPage.css.ts
@@ -26,6 +26,10 @@ export const menuName = styleVariants({
default: [menuNameBase, { fontWeight: 600, color: '#999' }],
});
+export const categorySection = style({
+ margin: '28px 0 24px',
+});
+
export const productSection = style({
margin: '28px 0 32px',
});