Your shopping cart is empty.

Athena Designs

6 Products
Special Collection
CZ Bezel Stud Earrings
$22.00
Material: Gold vermeil Stone: Cubic zirconia Size: 3mm By Athena DesignsĀ 
Freshwater Pearl Bracelets
$18.00
Fresh water pearls on an elastic strap Choose either 6mm pearls or 9mm sized pearls by Athena Designs
Gold Fill Hoops with Electroform Charm
$40.00
18kt gold fill hoopsĀ  The charm is electroformed amazonite, moonstone, or labradoriteĀ  Size: The hoops are 15mm and the stones are approximately 9 x 7mm by Athena Designs
Crystal Pull Bracelet with CZ's
$48.50
Gold Vermeil chain with small round CZ's and a pull clasp Sterling silver chain with small round CZ's and a pull claspĀ  Will fit most wrists by Athena Designs
Bezel Set Open Bangle Bracelet
$27.00
Choose from a beautiful gold plated or silver plated bangle with sparkling crystal end caps. 6mm CZ end caps Size: the bracelet is 65mm. The CZ's are 6mm by Athena Designs
Beaded Bracelet with Enamel Butterfly
$32.00
The beaded bracelet and charm are gold plated, pave crystalsĀ  Beads are 3mm Elastic bandĀ  by Athena Designs
is added to your shopping cart.
Go to Cart
is added to your wishlist.
Go to Wishlist
document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[id`^`=ProductJson-'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const sectionId = current.id.replace('ProductJson-', ''); const section = document.querySelector('[data-section-id="' + sectionId + '"]'); const product = JSON.parse(current.text); if (product.options.length === 1) { const unavailableVariants = []; for (let j = 0; j < product.variants.length; j++) { const variant = product.variants[j]; if (!variant.available) { unavailableVariants.push(variant); } } if (unavailableVariants.length > 0) { const mutationCallback = function() { const variantOptions = section.querySelectorAll('.single-option-selector option'); if (variantOptions.length > 0) { for (let k = 0; k < unavailableVariants.length; k++) { const unavailableVariant = unavailableVariants[k]; for (let l = 0; l < variantOptions.length; l++) { const option = variantOptions[l]; if (unavailableVariant.title === option.value) { option.remove(); } } } if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } } } const observer = new MutationObserver(mutationCallback); const addToCartForm = document.querySelector('form[action*="/cart/add"]'); mutationCallback(); if (window.MutationObserver && addToCartForm.length) { const config = { childList: true, subtree: true }; if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } observer.observe(addToCartForm, config); } } } } } });