Same rich umami flavor as the original Black Garlic but with more kick.
Ingredients: Fresno pepper, apple cider vinegar, sweet soy sauce (sugar, soy extract (water, salt, soybeans, wheat), water, salt, caramel color, sodium benzoate, citric acid, xanthan gum), brown sugar (sugar, molasses), Ghost pepper, black garlic powder, garlic powder, Cayenne powder, salt
Manufactured by Cajohn's
This site requires cookies in order to provide all of its functionality.
(function() {
var flame = document.getElementById('cart-flame');
if (!flame) return;
// Utility to trigger the flame burst
function burstFlame() {
flame.classList.remove('ignite');
// Force reflow to restart animation if triggered rapidly
void flame.offsetWidth;
flame.classList.add('ignite');
setTimeout(function() {
flame.classList.remove('ignite');
}, 900);
}
// Listen for changes to the cart count span
var cartCountSpan = document.querySelector('[data-count]');
if (cartCountSpan) {
var lastCount = cartCountSpan.textContent;
var observer = new MutationObserver(function() {
if (cartCountSpan.textContent !== lastCount) {
lastCount = cartCountSpan.textContent;
burstFlame();
}
});
observer.observe(cartCountSpan, { childList: true, subtree: true });
}
})();