BROSKI
Blended Scotch Whisky
Origin Scotland - Scottish Highlands
70cl
ABV 40%
BROSKI is an exceptionally smooth, full-bodied and easy drinking blended scotch whisky. Matured in the finest oak casks, this whisky delivers a burst of sweet honey & citrus notes with a gentle hint of smoke on the finish.
Broski can be drank neat, over ice or as a mixer for cocktails such as a Broski Old Fashioned, Manhattan and Whisky Sour.
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.sqs-add-to-cart-button').forEach(button => {
button.addEventListener('click', function(event) {
event.preventDefault();
const productID = button.getAttribute('data-item-id');
fetch('/cart/add', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
},
body: JSON.stringify({ lineItems: [{ productId: productID, quantity: 1 }] }),
})
.then(response => response.json())
.then(data => {
window.location.href = '/checkout';
})
.catch(error => console.error('Error:', error));
});
});
});