Wake Me Up Coffee Variety Pack Explore the best of Wake Me Up Coffee with our coffee variety pack, featuring: Faithful: Robust with notes of dark chocolate and peppery spices, a Golden Bean Competition winner. Mocha Delight: Award-winning blend with rich chocolate, caramel, and walnut undertones. Organic: Smooth and clean-tasting, crafted with organic coffee beans. Awakening: Bold and invigorating, perfect for starting your day. Why Choose Wake Me Up Coffee Variety Pack? Award-Winning Blends: Recognized for excellence in flavor and quality. Freshly Roasted: Small batches ensure freshness in every brew. Versatile Brewing: Enjoy these beans in any coffee maker. Brewing Tips: Use 1-2 tablespoons of coffee beans per 6 ounces of water for optimal taste. Adjust grind size to suit your preferred brewing method. Discover your favorite flavors with Wake Me Up Coffee Variety Pack, curated for coffee aficionados seeking quality and variety coffee. Enjoy the convenience of purchasing Australian coffee beans online and indulge in the rich flavors of our coffee beans variety pack. Variety Pack Coffee Beans FAQs Best Coffee Beans Australia | $48.00 | Available: 250G, 500G, 1KG Q1. What blends are included in the Wake Me Up Coffee Variety Pack? + The Variety Pack includes four blends: Faithful (robust dark chocolate and peppery spices, Golden Bean Competition winner), Mocha Delight (award-winning blend with rich chocolate, caramel, and walnut), Organic (smooth certified organic coffee beans), and Awakening (bold and invigorating). It is the ideal coffee variety pack for exploring the full range. Q2. What sizes are available for the Variety Pack? + The coffee variety pack is available in 250G, 500G, and 1KG options. Each size can be ordered as whole beans or ground for espresso machine, drip filter/paper filter, or plunger — making it easy to try the coffee beans variety pack using any brewing method you prefer. Q3. Is the Variety Pack a good gift for coffee lovers? + Yes — it is one of the best gifts for coffee lovers in Australia. The Variety Pack lets the recipient explore four distinct award-winning flavour profiles at once, covering bold, chocolatey, organic, and invigorating blends. An ideal coffee variety pack gift for any occasion. Q4. How do I know which blend in the Variety Pack will suit me best? + If you prefer bold and spicy, start with Faithful. For rich chocolate and caramel, try Mocha Delight. For a clean, lighter cup, go to the Organic. For a strong, invigorating morning cup, choose Awakening. The coffee beans variety pack is designed specifically to help you discover your favourite. Q5. Are the blends in the Variety Pack freshly roasted? + Yes. All four blends — Faithful, Mocha Delight, Organic, and Awakening — are small-batch roasted for peak freshness. You can buy Australian coffee beans online in the Variety Pack format and receive freshly roasted beans ready to brew right from the bag. Q6. Can I use the Variety Pack blends in any coffee maker? + Absolutely. All four blends in the Wake Me Up Coffee Variety Pack are versatile and work across all coffee brewing methods. Select the correct grind at checkout — espresso, drip filter, or plunger — and enjoy the best coffee beans Australia has to offer in one convenient pack. /* 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: center; 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; } .btn--share { font-size: 16px; } 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"; } }); }); });