California, USA
This elegantly balanced Pinot Noir has lush cherry and strawberry flavors with a hint of lightly toasted oak.
Food Pairing
Duck & Game Bird, Cheese - Fresh & Soft
Josh Cellars Pinot Noir 75cl
ƒ32,40Price
bottom of page
// Replace Wix minimum order error message on checkout
if (window.location.pathname.includes("/checkout")) {
const interval = setInterval(() => {
const messages = document.querySelectorAll(".wixui-toast-message, ._3qvT, ._3qvT *"); // common Wix error classes
messages.forEach(el => {
if (el.textContent.includes("items are not currently available")) {
el.textContent = "Cannot process order — minimum order is AWG 250 or 6 items.";
clearInterval(interval); // stop checking once message is replaced
}
});
}, 500);
}