Elf Bar Ice King

Elf Bar Ice King

3.50 GBP

24.99 GBP

Flavour

Description

Ice King
Ice King
The e-cigarette that pairs perfectly with a cool sensation

5-Level Cooling Adjustment

  • One-toggle power &
    airflow control

  • Up to 25,000 puffs

  • Dynamic display features

  • Bite-sized
    mouthpiece

Your Cooling, Your Choice
— 5 Levels

From a gentle breeze (0) to an icy Arctic freeze (4), choose from 5 levels of coolness
and experience perfect cooling whenever you want.

Power & Airflow,
Switchable in One

All it takes is one toggle to adjust power and airflow for the ideal flavor and vapor cloud every time.

Up to 25,000 Puffs

Turbo I in 3 modes delivers up to 25,000 smooth puffs,
while Turbo III offers 10,000 bold hits.
Experience lasting satisfaction with Ice King.

Check Your Device Status

No guessing, no hassle. Check your cooling level, e-liquid, and battery status at a glance on the side screen.

A Fit That Feels Natural

The flexible TPU mouthpiece fits comfortably in your mouth for a perfect draw with every puff.

Find Your Flavor

Flavor 1
Flavor 2
Flavor 3
Flavor 4
Flavor 5
Flavor 6
Flavor 7
Flavor 8
Flavor 9
Flavor 10
Flavor 11
Flavor 12
Flavor 13
Flavor 14
Flavor 15

Specifications

Ice King product
  • Size

    102 × 49 × 27 mm

  • Puff Count

    Up to 25000

  • Battery Capacity

    850 mAh

  • E-Liquid Capacity

    23 mL

  • Nicotine Content

    9.8 mg/mL

  • Charging Type

    C-TYPE

Package

Package
\n\n\n\n\n","featuredImage":{"url":"https://cdn.shopify.com/s/files/1/0788/3456/5416/files/0d98bdb4d2f1d0f9dc8455cf9952c0d5.png?v=1775036267"},"images":[{"url":"https://cdn.shopify.com/s/files/1/0788/3456/5416/files/0d98bdb4d2f1d0f9dc8455cf9952c0d5.png?v=1775036267"}],"priceRange":{"minVariantPrice":{"amount":"3.50","currencyCode":"GBP"}},"variants":[{"id":51142614516008,"title":"Peach Ice","price":"3.50","compareAtPrice":"24.99","availableForSale":true},{"id":51142614253864,"title":"Shine Muscat","price":"3.50","compareAtPrice":"24.99","availableForSale":true},{"id":51142614450472,"title":"Grape Cherry","price":"3.50","compareAtPrice":"24.99","availableForSale":false},{"id":51142614548776,"title":"Lemon Lime","price":"3.50","compareAtPrice":"24.99","availableForSale":true},{"id":51142614319400,"title":"ION Ice","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614221096,"title":"Jasmine Green Tea","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614352168,"title":"Pineapple Ice","price":"3.50","compareAtPrice":"19.99","availableForSale":true},{"id":51142614286632,"title":"Watermelon ice","price":"3.50","compareAtPrice":"19.99","availableForSale":true},{"id":51142614417704,"title":"Yuja Ice","price":"3.50","compareAtPrice":"19.99","availableForSale":true},{"id":51142614384936,"title":"Apple Ice","price":"3.50","compareAtPrice":"24.99","availableForSale":true},{"id":51142614483240,"title":"Blue Razz Ice","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614679848,"title":"Cola Ice","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614614312,"title":"Menthol","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614581544,"title":"Miami Mint","price":"3.50","compareAtPrice":"19.99","availableForSale":false},{"id":51142614647080,"title":"Strawberry Kiwi","price":"3.50","compareAtPrice":"19.99","availableForSale":false}],"options":[{"name":"Flavour","values":["Peach Ice","Shine Muscat","Grape Cherry","Lemon Lime","ION Ice","Jasmine Green Tea","Pineapple Ice","Watermelon ice","Yuja Ice","Apple Ice","Blue Razz Ice","Cola Ice","Menthol","Miami Mint","Strawberry Kiwi"]}]}; // Logic to map selected options to a variant and update price/stock function updateVariant() { if (!productData.options || productData.options[0].name === 'Title') return; // Gather selected options const selectedOptions = []; productData.options.forEach((opt, i) => { const checked = document.querySelector(`input[name="option-${i}"]:checked`); if (checked) selectedOptions.push(checked.value); }); // Find matching variant // In Shopify Admin API, variant.title is often "Option1 / Option2 / Option3" const variantTitle = selectedOptions.join(' / '); const matchedVariant = productData.variants.find(v => v.title === variantTitle || v.title === selectedOptions[0]); if (matchedVariant) { // Update Price document.getElementById('product-price').innerText = `${matchedVariant.price} GBP`; const compareEl = document.getElementById('product-compare-price'); if (matchedVariant.compareAtPrice) { if (!compareEl) { const priceContainer = document.getElementById('product-price').parentElement; const el = document.createElement('p'); el.id = 'product-compare-price'; el.className = 'ml-4 text-lg text-gray-400 line-through'; el.innerText = `${matchedVariant.compareAtPrice} GBP`; priceContainer.appendChild(el); } else { compareEl.innerText = `${matchedVariant.compareAtPrice} GBP`; } } else if (compareEl) { compareEl.remove(); } // Update Add to Cart button state const btn = document.getElementById('add-to-cart-btn'); if (matchedVariant.availableForSale) { btn.disabled = false; btn.innerText = 'Add to Cart'; btn.classList.remove('opacity-50', 'cursor-not-allowed'); } else { btn.disabled = true; btn.innerText = 'Out of Stock'; btn.classList.add('opacity-50', 'cursor-not-allowed'); } } } function addToCart() { const btn = document.getElementById('add-to-cart-btn'); if (btn.disabled) return; const originalText = btn.innerText; btn.innerText = 'Adding...'; // Simulate add to cart setTimeout(() => { btn.innerText = 'Added to Cart!'; btn.classList.replace('bg-indigo-600', 'bg-green-600'); btn.classList.replace('hover:bg-indigo-700', 'hover:bg-green-700'); setTimeout(() => { btn.innerText = originalText; btn.classList.replace('bg-green-600', 'bg-indigo-600'); btn.classList.replace('hover:bg-green-700', 'hover:bg-indigo-700'); }, 2000); }, 500); }