Indulge in the rich, chocolatey flavor of Mocha Delight. This award-winning blend combines a buttery richness and creamy texture with delightful hints of caramel, dark chocolate, berry, walnut, and chocolate coffee beans. · Award-Winning: Silver and Bronze at the Royal Easter Show Fine Foods Awards. · Six-Bean Blend: Crafted from full-bodied, sweet mocha coffee beans and chocolate coffee beans. · Flavor Profile: Caramel, dark chocolate coffee beans, berry, walnut nuances, buttery richness, and creamy. · Perfect for Milk-Based Drinks: Delivers a sweet milk chocolate taste. · Freshly Roasted: Small-batch roasted to ensure peak freshness and flavor. Why Choose Mocha Delight? · Ultimate Indulgence: Smooth, velvety texture with every sip. · Eco-Friendly Packaging: Keeps beans fresh and reduces environmental impact. Brewing Tips: Use 1-2 tablespoons of mocha coffee beans and chocolate coffee beans per 6 ounces of water.Adjust grind size for best results. Mocha Delight Coffee Beans FAQs Award-Winning Chocolate Coffee Beans | $29.00 | Available: 500G, 1KG, 2KG, 4KG Q1. What makes Mocha Delight an award-winning blend? + Mocha Delight has won both Silver and Bronze at the Royal Easter Show Fine Foods Awards. It is a six-bean blend of full-bodied, sweet mocha coffee beans and chocolate coffee beans that consistently delivers a rich, creamy, and well-balanced cup. Q2. What does Mocha Delight taste like? + Mocha Delight has a flavour profile of caramel, dark chocolate, berry, and walnut nuances with a buttery richness and creamy finish. When used in milk-based drinks, it produces a sweet milk chocolate taste that is smooth and indulgent. Q3. Is Mocha Delight suitable for espresso machines and milk-based drinks? + Yes. Mocha Delight is specifically crafted to perform perfectly in milk-based drinks such as flat whites, cappuccinos, and lattes. It is available ground for espresso machine, drip filter, paper filter, and plunger — as well as whole beans. Q4. How should I brew Mocha Delight coffee beans? + Use 1–2 tablespoons of Mocha Delight mocha coffee beans per 6 ounces of water. Adjust your grind size depending on your brewing method — finer for espresso, coarser for plunger or drip filter — for the best results. Q5. What bag sizes are available for Mocha Delight? + Mocha Delight is available in 500G, 1KG, 2KG, and 4KG bag sizes, giving you flexibility for home brewing or café use. All bags are eco-friendly and designed to keep the freshly roasted chocolate coffee beans at peak freshness. Q6. Are the Mocha Delight coffee beans freshly roasted? + Yes. Wake Me Up Coffee roasts Mocha Delight in small batches to ensure peak freshness and flavour in every bag. Small-batch roasting means your chocolate coffee beans are never sitting in a warehouse — they are roasted close to the time of your order. /* FAQ WRAPPER */ .faq-wrapper { max-width: 1000px; margin: 0 auto; padding: 20px 0; } /* HEADING */ .faq-heading { font-size: 35px; font-weight: 700; text-align: left; color: #111; margin-bottom: 12px; line-height: 1.4; } /* SUBHEADING */ .faq-subheading { max-width: 760px; margin: 0 auto 45px; text-align: left; font-size: 17px; line-height: 1.8; color: #555; } /* FAQ CARD */ .faq-item { border-radius: 12px; margin-bottom: 18px; background: #fff; overflow: hidden; border: 1px solid #e5e5e5; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; } .faq-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); } .faq-item.active { border-color: #dc9c22; background: #fffaf2; } /* QUESTION */ .faq-question { width: 100%; padding: 20px 24px; background: #fffaf2; border: none; text-align: left; font-size: 17px; font-weight: 600; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s ease; } .faq-question:hover { color: #dc9c22; } /* ICON */ .icon { width: 28px; height: 28px; border-radius: 50%; color: #000; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 400; transition: all 0.3s ease; flex-shrink: 0; padding: 0px 10px -54px 10px; line-height: 28px; } .faq-item.active .icon { transform: rotate(45deg); } /* ANSWER */ .faq-answer { height: 0; overflow: hidden; transition: height 0.35s ease; } .faq-content { padding: 0 24px 22px; color: #555; line-height: 1.8; font-size: 15px; } /* MOBILE */ @media (max-width: 768px) { .faq-heading { font-size: 30px; } .faq-subheading { font-size: 15px; margin-bottom: 35px; } .faq-question { font-size: 15px; padding: 16px 18px; line-height: 1.5; } .faq-content { padding: 0 18px 18px; font-size: 14px; } .icon { width: 28px; height: 28px; font-size: 18px; } } .btn--share .icon { vertical-align: middle; width: 32px; height: 32px; margin-right: 4px; } document.addEventListener("DOMContentLoaded", function () { const items = document.querySelectorAll(".faq-item"); items.forEach((item, index) => { const btn = item.querySelector(".faq-question"); const answer = item.querySelector(".faq-answer"); /* OPEN FIRST FAQ */ if(index === 0){ item.classList.add("active"); answer.style.height = answer.scrollHeight + "px"; } btn.addEventListener("click", function () { const isOpen = item.classList.contains("active"); /* CLOSE ALL FAQ */ items.forEach(i => { i.classList.remove("active"); i.querySelector(".faq-answer").style.height = "0px"; }); /* OPEN CURRENT FAQ */ if(!isOpen){ item.classList.add("active"); answer.style.height = answer.scrollHeight + "px"; } }); }); });