+ {allImages.length > 0 ? (
+ <>
+
+
+
+ {/* Badges */}
+
+ {isOnSale && (
+
+ Sale
+
+ )}
+ {product.isFeatured && (
+
+ Featured
+
+ )}
+
+
+
+ {/* Image Navigation */}
+ {allImages.length > 1 && (
+ <>
+
+
+
+ {/* Image Dots */}
+
+ {allImages.map((_, index) => (
+
+ >
+ )}
+ >
+ ) : (
+
+ 👔
+
+ )}
+
+
+
+ {product.name}
+
+ {product.category && (
+
+ {product.category.name}
+
+ )}
+
+
+ {/* Price */}
+
+
+ {/* Description */}
+ {(product.shortDescription || product.description) && (
+
+
+ {product.shortDescription || product.description}
+
+
+ )}
+
+ {/* Size Selector (Mock) */}
+
+
+
+ {["XS", "S", "M", "L", "XL", "XXL"].map((size) => (
+
+ ))}
+
+
+
+ {/* Color Selector (Mock) */}
+
+
+
+ {[
+ { name: "Black", hex: "#000000" },
+ { name: "Navy", hex: "#001f3f" },
+ { name: "Gray", hex: "#808080" },
+ ].map((color) => (
+
+
+
+ {/* Actions */}
+
+
+
+
+
+
+