Home » Shop » Blue Ghost Jewellery Set – Necklace & Earrings

Blue Ghost Jewellery Set – Necklace & Earrings

KShs 1,500.00

Product Details:

  • Weight: 3.5g
  • Material: Stainless steel + 18K gold / 18K rose gold plating
  • Earrings: 9.6×8mm | Pendant: 11.6×9.4mm
  • Chain: 0.3mm cross chain, 40cm + 5cm adjustable extension
  • Finish: 6mm round plate
  • Hypoallergenic, tarnish-resistant, safe for sensitive skin
Availability: Hurry, Only 3 left.
Delivery & Return
Estimated Delivery:
24 August - 25 August
Description

Add an edgy touch to any look with the Blue Ghost Set — a trendy drip-oil heart design with bold, brat-inspired styling. Perfect as a jewellery set for girls, teens, and women alike, this piece pairs an on-trend aesthetic with everyday comfort.

The set includes matching stud earrings (9.6×8mm) and a coordinating pendant necklace (11.6×9.4mm), each featuring a unique heart-shaped drip accent finished with a smooth, polished plate. The necklace comes on a fine 40cm cross chain with a 5cm extension, so you can adjust the fit for a child, teen, or adult.

Made from stainless steel of 18K gold plating, this jewellery set is hypoallergenic, non-tarnishing, and safe for sensitive skin — ideal for everyday wear, gifting, or special occasions.

Whether you’re shopping for kids’ jewellery in Kenya, a stylish gift for a daughter, or a fun accessory for yourself, the Blue Ghost Set delivers standout style at an affordable price

Scroll To Top
  • Menu
  • Categories
Close
Home
Sidebar
0 Wishlist

Your Cart 0

Close

Shopping cart is empty!

Continue Shopping

Blue Ghost Jewellery Set – Necklace & Earrings
Blue Ghost Jewellery Set – Necklace & Earrings
KShs 1,500.00
========================================================================== */ jQuery(function ($) { // Matches "Zone Name (+KShs 500.00)" or "Zone Name (KShs 500.00)" // Captures: 1 = zone name, 2 = price (with currency), or undefined if free var PRICE_PATTERN = /^(.*?)\s*\(\+?\s*(KShs?\s?[\d,]+(?:\.\d{2})?)\)\s*$/i; function parseZoneOption(rawText) { var match = rawText.match(PRICE_PATTERN); if (match) { return { zone: match[1].trim(), price: match[2].trim() }; } // No price found in the text — treat as free / included return { zone: rawText.trim(), price: 'Free' }; } function formatZoneRow(state) { // state.text is undefined for the placeholder / loading option if (!state.id || !state.text) { return state.text; } var parsed = parseZoneOption(state.text); var $row = $( '
' + '' + '' + '
' ); $row.find('.zone-option-name').text(parsed.zone); $row.find('.zone-option-price').text(parsed.price); return $row; } function formatZoneSelection(state) { if (!state.id || !state.text) { return state.text; } // Keep the selected/closed state as plain text (zone — price) so it // still fits neatly in the collapsed input, same as before. var parsed = parseZoneOption(state.text); return parsed.zone + (parsed.price !== 'Free' ? ' — ' + parsed.price : ''); } function enhanceZoneDropdown($select) { // Skip if we've already enhanced this one if ($select.data('zone-enhanced')) return; // If Select2 is already attached (likely, since the dropdown already // works), destroy and rebuild it with our custom templates if ($select.hasClass('select2-hidden-accessible')) { $select.select2('destroy'); } $select.select2({ templateResult: formatZoneRow, templateSelection: formatZoneSelection, width: '100%' }); $select.data('zone-enhanced', true); } function findAndEnhanceZoneSelects() { // Detects the right