diff --git a/src/components/PricingView.tsx b/src/components/PricingView.tsx
index 5e9d5d9..af17dd9 100644
--- a/src/components/PricingView.tsx
+++ b/src/components/PricingView.tsx
@@ -445,6 +445,21 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
Units/Outer
+ {/* Outer W */}
+
+ Outer W
+ |
+
+ {/* Outer L */}
+
+ Outer L
+ |
+
+ {/* Outer H */}
+
+ Outer H
+ |
+
{/* Container columns */}
{containerCols.map(col => (
@@ -574,6 +589,21 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
{unitOuterBadge(row[COLUMNS.UNITS_OUTER])}
+ {/* Outer W */}
+ |
+ {row[COLUMNS.OUTER_W] ?? '-'}
+ |
+
+ {/* Outer L */}
+
+ {row[COLUMNS.OUTER_L] ?? '-'}
+ |
+
+ {/* Outer H */}
+
+ {row[COLUMNS.OUTER_H] ?? '-'}
+ |
+
{/* Container unit columns */}
{containerCols.map(col => (
|