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 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. Sunset Coffee Beans FAQs Certified Organic & Fairtrade | Nutty Cocoa & Apricot | $29.00 | Available: 500G, 1KG, 2KG, 4KG Q1. What type of coffee are the Sunset Coffee Beans? + Sunset Coffee Beans are certified organic and Fairtrade coffee beans with a nutty cocoa flavour profile and hints of apricot. They have a medium to full body that is balanced and satisfying — making the sunset coffee bean a smooth, ethical choice for any time of day. Q2. Are Sunset Coffee Beans organic and Fairtrade certified? + Yes. Sunset Organic Coffee Beans carry both Certified Organic and Fairtrade certifications. They are responsibly sourced and freshly roasted — an excellent option to buy organic coffee beans online in Sydney or anywhere in Australia with confidence in their ethical sourcing. Q3. What does Sunset Coffee taste like? + Sunset Coffee Beans deliver nutty cocoa flavours with gentle apricot hints and a medium to full body that feels balanced and smooth. The flavour is rounded and satisfying without being overpowering — a perfect evening cup or gentle daytime alternative. Q4. What grind options are available for Sunset Coffee Beans? + Sunset Coffee Beans are available as whole beans or pre-ground for espresso machine, drip filter/paper filter, and plunger/drip filter with metal filter — in 500G, 1KG, 2KG, and 4KG bags, with free shipping across Australia. Q5. How is Sunset different from the Organic Coffee Beans in the range? + While both are organic products, Sunset Coffee Beans lead with nutty cocoa and apricot hints at a medium to full body, while the Organic Coffee Beans have a lighter, more delicate profile with caramel, honey, and honeydew melon notes. Sunset is the bolder organic option; Organic is the cleaner, lighter one. Q6. How do I brew Sunset Coffee Beans? + A medium grind is recommended for Sunset Coffee Beans. Use 1–2 tablespoons per 6 ounces of water and adjust to your preferred strength. The beans work well in any brew method — espresso, drip filter, or plunger — and are freshly roasted in small batches for the best possible flavour in every cup. /* FAQ WRAPPER */ .faq-wrapper { max-width: 1000px; margin: 0 auto; padding: 20px 0; 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 { font-size: 16px; } .btn--share .icon { width: 32px; height: 32px; } 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"; } }); }); });