// PRODUCT DETAIL function ProductPage({ id }) { const { navigate } = useRouter(); const p = PRODUCTS.find((x) => x.id === id) || PRODUCTS[0]; const c = COLLECTIONS.find((x) => x.id === p.collection); const related = PRODUCTS.filter((x) => x.collection === p.collection && x.id !== p.id).slice(0, 4); const [size, setSize] = useState(null); const [zoom, setZoom] = useState(false); const isRing = p.type === 'Ring'; const sizes = isRing ? ['46','48','50','52','54','56'] : ['One size']; return (
navigate('home')}>Gafla / navigate('collections')}>Collections / navigate('collection', { id: p.collection })}>{c?.name} / {p.type}
setZoom(!zoom)}>
{c?.name} · {p.type}
{p.name}
{related.slice(0, 3).map((r) => (
navigate('product', { id: r.id })}> {r.name}
))}
{c?.name} · {c?.motif}

{p.name}

{aed(p.price)}
{isRing ? 'Ring size (EU)' : 'Size'}
{sizes.map((s) => ( ))}
About the piece

Part of the Gafla {c?.name} line — {c?.story}

Material & specifications

Material details available on request. Each Gafla piece is hallmarked and accompanied by a certificate of authenticity. Gemstone, carat, and dimension details are confirmed at private viewing.

Delivery & private viewing

Pieces ship from Dubai with secure handling. For an unhurried, in‑person introduction to the piece, request a private viewing at the Gafla Majlis or via partner boutiques in Abu Dhabi.

Care & after‑sales

Lifetime cleaning and polishing through Gafla Concierge. Resizing and repair work available — please consult the Concierge before any service.

More from {c?.name}

{(related.length ? related : PRODUCTS.slice(0, 4)).slice(0, 4).map((r) => ( navigate('product', { id: r.id })} /> ))}
); } Object.assign(window, { ProductPage });