Viking Heavy Metal Ring 16-Piece Set: Forged in Valhalla, Wear It Like a Warrior's Creed

$59.99
$119.99
-$60.00
Quantity

Description


1. Design: 16 Rings, 16 Tales from the Viking Age

This isn't just a set of rings; it's a portable Valhalla:

  • Skull Rings: Alloy - cast skulls with eyes that burn red or blue, cracks filled with aged silver - like rust. Slip one on, and your fingertips become a weapon against the mundane.
  • Beast - Adorned Rings: Coiled dragons, fierce lions, and sharp - taloned eagles—each detail ripped straight from the heart of Viking battle legends. The metal's curves and edges capture the raw power of these mythic creatures.
  • Gem - Inlaid Rings: Blue amber and obsidian are set into rough - hewn alloy bands. Their irregular surfaces graze your skin, like ancient runes carved by the gods themselves.
  • Open Rings: An unpolished, open - ended design screams "untamed." Adjusting it feels like breaking free from the chains of conformity, a true Viking act of rebellion.
  • Rune - Engraved Rings: Mysterious Norse runes are deeply etched into the metal, each one carrying the weight of ancient wisdom, protection, or a warrior's strength.
  • Thor's Hammer Rings: The iconic Mjölnir symbol, a potent reminder of Thor's might, is rendered in intricate detail, ready to channel the thunder god's power to your fingertips.

2. Craftsmanship: Forged with Viking - Level Precision

 Battle - Tested Alloy: Built on a zinc - alloy base and finished with multiple layers of rugged, aged silver plating, these rings are far from delicate. Everyday bumps and bruises? They're just adding to your ring's battle - scarred story. Rain and sweat? They're helping develop a unique, battle - worn patina that speaks of countless adventures.
 Micro - Detailed Carving: From the delicate curves of a skull's cheekbones to the sharpened tips of a beast's claws and the precise alignment of gemstone settings, every ring is a masterpiece of micro - carving. This isn't just jewelry; it's a tactile expression of Viking - era artistry.
 Perfect Fit, Every Time: The adjustable open - ring design ensures a snug, custom fit for fingers of all sizes. Whether you have fingers calloused from battle or simply prefer a more secure grip, these rings mold to your hand like a well - worn gauntlet.

3. Wear It, Rule Your Style Realm

  • Style - Defining Impact:
    • With Leather Jackets: Transform into a fearsome Viking raider, with rings that exude more menace than your most intense glare.
    • With Hoodies: Ditch the ordinary and let your fingertips take center stage as the leaders of a modern - day Norse mosh pit.
    • With Suits: Infuse a touch of Valhalla's wild spirit into your formalwear, leaving onlookers intrigued and wondering what epic tales you carry.
  • Social Signaling:
    • For Viking Enthusiasts: Fellow lovers of Norse culture will immediately recognize the significance of these rings, sparking conversations about ancient legends and heroic deeds.
    • For the Uninitiated: The bold, unapologetic designs will command attention, setting you apart as someone with a fearless, independent spirit.
  • Emotional Empowerment:
    • When Doubt Strikes: Run your fingers over the rough textures of the rings, and let the sting of the alloy jolt you back to your Viking roots. Remember, you carry the strength and courage of Valhalla's warriors within you.
    • Daily Confidence Boost: Each time you glance at your rings, you're reminded of the fearless Vikings who once roamed the earth, giving you the confidence to face any challenge with unwavering determination.

This isn't just a ring set; it's a 16 - piece Viking arsenal—a collection that allows you to carry the spirit of Valhalla with you, wherever you go. Let the alloy's strength, the aged finish's authenticity, and the mythic designs' power infuse your every step. Walk with the thunderous might of Odin, and let your presence command respect, just like the legendary Vikings of old.
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "58623cf7-1d64-41e5-b04e-3e11d16ef9c6"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '2a42f856-f0c9-4c4d-ab1b-be6589010bfd' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "2a42f856-f0c9-4c4d-ab1b-be6589010bfd", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);