Your shopping cart is empty.

SALE
Bella Cucina Pesto

Bella Cucina Pesto

$16.00

Savor the taste of summer in Tuscany. Bella Cucina uses freshly picked basil leaves from the garden and purees them into the classic paste so well known throughout the northern parts of Italy. All-natural and small-batch, with no added preservatives. All pestos come in a 6oz jar and have a 2-year shelf-life. Recipe suggestions on the bottom of the jar.

  • Sun-dried Tomato Pesto Sun-dried tomatoes (may contain sulfites), extra virgin olive oil, expeller-pressed canola oil, Parmesan cheese, pine nuts, garlic, salt and herbs

  • Olivada Olive Pesto: Kalamata olives, extra virgin olive oil, expeller-pressed canola oil, garlic, lemon juice

  • Fresh Basil Pesto: Fresh basil, extra virgin olive oil, expeller-pressed canola oil, walnuts, Parmesan cheese, parsley, fresh garlic, lemon juice and salt

  • Artichoke Lemon Pesto: Artichokes, Parmesan cheese, extra virgin olive oil and expeller-pressed canola oil, lemon juice, parsley, fresh garlic, salt and pepper
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); } } } } } });