diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 5f76acb..b642beb 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -241,7 +241,14 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -250,6 +257,10 @@ export default function ProductPage({ params }: ProductPageProps) {
onClose={() => setCartOpen(false)}
items={cartItems}
total={cartTotal}
+ buttons={[
+ { text: "Continue Shopping", onClick: () => setCartOpen(false) },
+ { text: "Checkout", onClick: handleCheckout }
+ ]}
/>