diff --git a/app/cart/components/CartContent.tsx b/app/cart/components/CartContent.tsx index f182d81..d088039 100644 --- a/app/cart/components/CartContent.tsx +++ b/app/cart/components/CartContent.tsx @@ -228,13 +228,25 @@ export function CartContent({ sm: once the row layout kicks in and the image sits beside the text instead. */}
- {product.name} - {entry.variant ? ` (${entry.variant})` : ""} -
+ {product.href ? ( + + {product.name} + {entry.variant ? ` (${entry.variant})` : ""} + + ) : ( ++ {product.name} + {entry.variant ? ` (${entry.variant})` : ""} +
+ )} {/* Independent stacked rows, not grid siblings — no equal-height pressure from neighboring lines, so a plain conditional line is enough here. */}