Sunset Organic Coffee Beans Experience the balanced richness of Sunset Organic Coffee Beans. Savor nutty cocoa flavors with hints of apricot, crafted for ethical coffee enthusiasts. Enjoy responsibly sourced organic coffee beans, freshly roasted for peak flavor. Perfect for any brew method, it's your sustainable choice for a flavorful cup every morning. Key Features: · Certified Organic and Fairtrade · Flavor Profile: Nutty cocoa with apricot hints · Medium to Full Body: Balanced and satisfying Brewing Tips: · Medium grind recommended · Use 1-2 tablespoons per 6 ounces of water Discover Sunset Organic Coffee Beans and embrace sustainable indulgence. For the best coffee beans Australia has to offer, consider the unique Sunset coffee and coffee bean sunset options in our collection. Sunrise Coffee Beans FAQs Certified Organic & Fairtrade South American Blend | $29.00 | Available: 500G, 1KG, 2KG, 4KG Q1. What flavour profile do the Sunrise Coffee Beans have? + Sunrise Coffee Beans offer a balanced, sweet flavour built around nutty cocoa with hints of apricot. The cup has a medium to full body that is satisfying and smooth — a versatile choice for a wide range of brewing methods. Q2. Are Sunrise Coffee Beans organic and ethically sourced? + Yes. Sunrise Coffee Beans are Certified Organic and Fairtrade, responsibly sourced, and freshly roasted — making them an excellent choice among the best coffee beans Australia has for ethical coffee enthusiasts who care about sustainable farming practices. Q3. What is the recommended brewing method for Sunrise Coffee Beans? + A medium grind is recommended for Sunrise Coffee Beans. Use 1–2 tablespoons per 6 ounces of water and adjust to preferred strength. The beans are available pre-ground for espresso machine, drip filter, paper filter, and plunger — as well as whole bean. Q4. How does Sunrise compare to the Sunset blend? + Both Sunrise and Sunset share nutty cocoa with apricot hints and are Certified Organic and Fairtrade. They are listed separately as distinct products — if you enjoy one, you will likely enjoy the other, making them ideal to explore together across the organic coffee beans range. Q5. What bag sizes are available for Sunrise Coffee Beans? + Sunrise Coffee Beans are available in 500G, 1KG, 2KG, and 4KG bag sizes — all orderable as whole beans or pre-ground to your preferred coarseness, shipped with free delivery throughout Australia. Q6. Can I use Sunrise Coffee Beans in a coffee machine at home? + Yes. Sunrise Coffee Beans work well in any home coffee machine. Choose the espresso grind for a traditional espresso machine, drip filter grind for pour-over, or plunger grind for French press. Whole beans are also available if you prefer to grind fresh at home. /* FAQ WRAPPER */ .faq-wrapper { max-width: 1000px; margin: 0 auto; text-align: left; } /* HEADING */ .faq-heading { font-size: 35px; font-weight: 700; text-align: left; color: #111; margin-bottom: 12px; line-height: 1.2; } /* SUBHEADING */ .faq-subheading { margin: 0 0 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; gap: 15px; 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; text-align: left; } /* 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; min-width: 28px; font-size: 18px; } } .btn--share .icon { vertical-align: middle; width: 32px; height: 32px; } .btn--share { font-size: 16px; } .section-header { margin-bottom: 20px; } 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"; } }); }); });