{"product_id":"carniwal-fire","title":"CARNIwAL Fire","description":"\u003cbody\u003e\n\u003c!-- \u003cdiv class=\"hidemobile\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/POwER_Mini_A1.webp?v=1773311782\" width=\"100%\" height=\"100%\" loading=\"lazy\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/POwER_Mini_A2.webp?v=1773311782\" width=\"100%\" height=\"100%\" loading=\"lazy\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/POwER_Mini_A3-web.webp?v=1774445157\" width=\"100%\" height=\"100%\" loading=\"lazy\"\u003e\n\u003c\/div\u003e --\u003e\n  \u003cstyle\u003e\n.image-wrapperxyz {\n  margin: 0 -15px;\n}\n\n.image-wrapperxyz img {\n  width: 100%;\n  display: block;\n}\n  \u003c\/style\u003e\n\u003cdiv class=\"videomobileview image-wrapperxyz\" style=\"background-color:black;\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/carniwal-fire-mob-1.webp?v=1775890388\" width=\"100%\" height=\"100%\" loading=\"lazy\"\u003e\n \u003cstyle\u003e\n  .slider-outer {\n    height: 705px;\n    position: relative;\n    width: 100%;\n    max-width: 1600px;\n    margin: 0 auto;\n    overflow: hidden;\n    -webkit-tap-highlight-color: transparent;\n  }\n\n  .slider-padding {\n    padding: 0 35px;\n  }\n\n  .arrow {\n    position: absolute;\n    top: 50%;\n    transform: translateY(-50%);\n    z-index: 9999;\n    font-size: 1.25rem;\n    background: rgba(0,0,0,0.6);\n    color: #fff;\n    padding: 8px 10px;\n    border-radius: 999px;\n    cursor: pointer;\n    user-select: none;\n  }\n  .arrow.left { left: 10px; }\n  .arrow.right { right: 10px; }\n\n  .slider {\n    display: flex;\n    align-items: center;\n    height: 100%;\n    will-change: transform;\n    transition: transform 0.45s cubic-bezier(.2,.8,.2,1);\n  }\n\n  .slide {\n    flex: 0 0 auto;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n\n    box-sizing: border-box;\n  }\n\n  .slide img {\n    height: 695px;\n    width: auto;\n    display: block;\n   \n    object-fit: contain;\n    pointer-events: none;\n    -webkit-user-drag: none;\n  }\n\n  @media (max-width: 768px) {\n    .slider-padding { padding: 0; }\n    .arrow { display: none; }\n    .slider-outer { height: 10vh; }\n    .slide img { height: 100px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"slider-padding\"\u003e\n  \u003cdiv class=\"slider-outer\"\u003e\n    \u003cdiv class=\"slider\" id=\"slider\"\u003e\n    \n      \u003cdiv class=\"slide\"\u003e\u003cimg alt=\"2\" loading=\"lazy\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/carniwal-fire-mob-2.webp?v=1775890388\"\u003e\u003c\/div\u003e\n     \n    \u003c\/div\u003e\n    \u003cdiv class=\"arrow left\" id=\"prev\"\u003e❮\u003c\/div\u003e\n    \u003cdiv class=\"arrow right\" id=\"next\"\u003e❯\u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n(function () {\n  const sliderEl = document.getElementById('slider');\n  const prevBtn = document.getElementById('prev');\n  const nextBtn = document.getElementById('next');\n  const outer = document.querySelector('.slider-outer');\n\n  const AUTO_DELAY = 3000;\n  let slides = [];\n  let index = 1;\n  let autoId = null;\n  let isTransitioning = false;\n\n  function waitForImages() {\n    const imgs = Array.from(sliderEl.querySelectorAll('img'));\n    return Promise.all(imgs.map(img =\u003e {\n      if (img.complete \u0026\u0026 img.naturalWidth) return Promise.resolve();\n      return new Promise(res =\u003e { img.onload = img.onerror = res; });\n    }));\n  }\n\n  function cloneEdges() {\n    const origSlides = Array.from(sliderEl.children);\n    const firstClone = origSlides[0].cloneNode(true);\n    const lastClone = origSlides[origSlides.length - 1].cloneNode(true);\n    sliderEl.appendChild(firstClone);\n    sliderEl.insertBefore(lastClone, origSlides[0]);\n    slides = Array.from(sliderEl.children);\n  }\n\n  function getOffset() {\n    const viewportW = outer.getBoundingClientRect().width;\n    let offset = 0;\n    for (let i = 0; i \u003c index; i++) {\n      offset += slides[i].getBoundingClientRect().width;\n    }\n    const activeW = slides[index].getBoundingClientRect().width;\n    return Math.round((viewportW \/ 2) - (activeW \/ 2) - offset);\n  }\n\n  function goTo(i, animate = true) {\n    index = i;\n    if (!animate) sliderEl.style.transition = 'none';\n    else sliderEl.style.transition = 'transform 0.45s cubic-bezier(.2,.8,.2,1)';\n    sliderEl.style.transform = `translateX(${getOffset()}px)`;\n  }\n\n  function next() {\n    if (isTransitioning) return;\n    isTransitioning = true;\n    goTo(index + 1);\n    if (index === slides.length - 1) {\n      setTimeout(() =\u003e { goTo(1, false); isTransitioning = false; }, 460);\n    } else {\n      setTimeout(() =\u003e { isTransitioning = false; }, 460);\n    }\n  }\n\n  function prev() {\n    if (isTransitioning) return;\n    isTransitioning = true;\n    goTo(index - 1);\n    if (index === 0) {\n      setTimeout(() =\u003e { goTo(slides.length - 2, false); isTransitioning = false; }, 460);\n    } else {\n      setTimeout(() =\u003e { isTransitioning = false; }, 460);\n    }\n  }\n\n  function startAuto() { stopAuto(); autoId = setInterval(next, AUTO_DELAY); }\n  function stopAuto() { clearInterval(autoId); autoId = null; }\n\n  \/\/ Swipe\n  let startX = 0;\n  sliderEl.addEventListener('touchstart', e =\u003e { stopAuto(); startX = e.touches[0].clientX; }, { passive: true });\n  sliderEl.addEventListener('touchend', e =\u003e {\n    const dx = e.changedTouches[0].clientX - startX;\n    if (dx \u003c -40) next();\n    else if (dx \u003e 40) prev();\n    startAuto();\n  });\n\n  prevBtn.addEventListener('click', () =\u003e { stopAuto(); prev(); startAuto(); });\n  nextBtn.addEventListener('click', () =\u003e { stopAuto(); next(); startAuto(); });\n\n  window.addEventListener('resize', () =\u003e {\n    clearTimeout(window._rt);\n    window._rt = setTimeout(() =\u003e goTo(index, false), 100);\n  });\n\n  \/\/ Init\n  waitForImages().then(() =\u003e {\n    cloneEdges();\n    goTo(1, false);\n    startAuto();\n  });\n})();\n\u003c\/script\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/carniwal-fire-mob-3.webp?v=1775890607\" width=\"100%\" height=\"100%\" loading=\"lazy\"\u003e\n  \u003c\/div\u003e\n   \u003cdiv id=\"support\" class=\"row\"\u003e\n\u003cdiv class=\"container\"\u003e\n\u003cdiv class=\"columnstop\"\u003e\n\u003ch2\u003eFAQs\u003c\/h2\u003e\n\u003cbutton class=\"accordion\"\u003eQ.What is the battery capacity of the POwER MINI?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003eThe POwER MINI comes with a 5000mAh battery, providing reliable backup power for smartphones, earbuds, tablets, and other USB-powered devices.\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.What charging output does the POwER MINI support?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eIt supports 22.5W fast charging output, ensuring your devices recharge quickly and efficiently.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.Does POwER MINI support fast charging protocols?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eYes, it supports the PPS (Programmable Power Supply) charging protocol, which intelligently adjusts power levels for optimal charging speed and device safety.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.What kind of connector does the POwER MINI use?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eIt has an inbuilt Type-C input\/output connector, allowing you to charge the powerbank itself or your devices without carrying extra cables.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.Is the POwER MINI portable?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eAbsolutely! Its ultra-compact and pocket-friendly design makes it easy to carry in pockets, handbags, or small compartments, ideal for everyday use.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.Which devices are compatible with the POwER MINI?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eThe powerbank is universally compatible with most smartphones, earbuds, tablets, and other USB-powered devices.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.Can I charge multiple devices at once?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eThe POwER MINI is designed primarily for single-device fast charging. For multiple devices, consider using a higher-capacity powerbank from ACwO’s range.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.How long does it take to fully charge the POwER MINI?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eCharging time depends on the input source, but using a compatible fast charger with Type-C, it can be fully charged in approximately 2–3 hours.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"accordion\"\u003eQ.Is it safe to leave the powerbank connected to my device overnight?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eYes, the POwER MINI features multi-layered protection for overcharge, overcurrent, and short-circuit prevention, making overnight charging safe.\u003c\/p\u003e\n\u003c\/div\u003e\n  \u003cbutton class=\"accordion\"\u003eQ.Can I use POwER MINI while it is charging?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eYes, you can charge your device while the powerbank itself is charging, thanks to its Type-C input\/output design.\u003c\/p\u003e\n\u003c\/div\u003e\n  \u003cbutton class=\"accordion\"\u003eQ.Does the POwER MINI come with a warranty?\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cp\u003eYes, it includes a 1-year limited warranty for manufacturing defects. Misuse or unauthorized repairs by the user are not covered. Our dedicated support team is always ready to assist via WhatsApp or email.\n\n\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003cdiv class=\"columnstop\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0666\/4870\/3294\/files\/Whats-In-A-Box-power-mini.webp?v=1775114804\" loading=\"lazy\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003chr\u003e\n\u003cbutton class=\"accordion accorpro\"\u003eSpecifications\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eCountry Of Origin\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e India\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003ePacked and Marketed By\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003eACwO Lifestyle Pvt Ltd\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eAddress\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e 3RD, Office no.6, Ratan Chs Ltd, SV Road, near gokul shopping centre, Borivali West, Mumbai, Mumbai Suburban, Maharashtra - 400092\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eManufacturing Address\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003ePlot No. 58-60, 1st Floor, Apple Industrial Hub, Pelhar, Dist. Palghar, Maharashtra - 401208\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003ePackage Contains\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e1 Powerbank\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- container row close --\u003e\n\u003cbutton class=\"accordion accorpro\"\u003eTechnical Specification\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eBattery Capacity\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e5000 mAh \u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eType-C Port Input (1)\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e5V ⎓ 2.5 A\/ 9V ⎓2 A \/ 12 V⎓  1.5 A\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eType-C Port Output (1)\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e5V ⎓ 3A\/  9V ⎓ 2.22 A\/ 12 V⎓ 1.67 A (20 W MAX)\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eType- C Connector Input\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e5V ⎓ 2.5 A\/ 9V ⎓ 2 A \/ 12 V⎓  1.5 A\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eType-C Connector Output\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e5V ⎓3A\/  9V ⎓ 2.22 A\/ 12 V⎓ 1.67 A\/10V ⎓ 2.25 A  (22.5 W MAX)\u003c\/span\u003e\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003cbutton class=\"accordion accorpro\"\u003ePhysical Specification\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eProduct Dimension(L*W*H)\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e3.7L*8W*2.5H cms   \u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eProduct Weight\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e97 gm\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003ePackaging Weight\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e175 gm \u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eWarranty\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003e365 Days\u003c\/span\u003e\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003cbutton class=\"accordion accorpro\"\u003eAdditional Features\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003eIn-Built Type-C Input\/Output Connector\u003c\/span\u003e \u003cspan class=\"meta-info\"\u003eExtremely Tiny \u0026amp; Compact Design\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e22.5W Power Output\u003c\/span\u003e\u003cspan class=\"meta-info\"\u003e5000mAh  Battery\u003c\/span\u003e\n\u003c\/div\u003e\n  \u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003eLED Indicator\u003c\/span\u003e \u003cspan class=\"meta-info\"\u003eDual Fast Charging Output Ports\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003eReALmAh ™ Battery\u003c\/span\u003e\u003cspan class=\"meta-info\"\u003e\u003c\/span\u003e\n\u003c\/div\u003e\n   \n\n\u003c\/div\u003e\n\u003cbutton class=\"accordion accorpro\"\u003eCustomer Support and Warranty\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003ePan India Service Centers\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003eA vast network of service centers across India ensures your support needs are met promptly.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eDedicated Customer Support\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003eOur customer support team is just a call, email, or WhatsApp message away, ensuring you have assistance whenever you need it.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-info-row\"\u003e\n\u003cspan class=\"meta-info\"\u003e\u003cstrong\u003eWarranty\u003c\/strong\u003e\u003c\/span\u003e \u003cspan style=\"font-weight: 300;\" class=\"meta-info\"\u003eWe believe in the quality of our product. That's why we offer an impressive 365 days of warranty coverage from the date of purchase, giving you peace of mind.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/body\u003e","brand":"ACwO","offers":[{"title":"Default Title","offer_id":53300119699774,"sku":null,"price":0.0,"currency_code":"INR","in_stock":false}],"url":"https:\/\/acwo.com\/products\/carniwal-fire","provider":"ACwO","version":"1.0","type":"link"}