top of page
hompage
SOAP - Edited.png

Scented Soy Wax Candles with Black Lid | 9 oz.

$23.99Price
Colors
Amber Jar + Black Lid
Clear Jar + Black Lid
Scents
Vanilla Bean
Comfort Spice
Sea Breeze
Honeysuckle
Eucalyptus Lavender Herb
Spiced Pumpkin Ginger
Fresh Balsam
Pink Grapefruit
Unscented
Quantity

Warm light, clean wax, and carefully balanced fragrance. These hand-poured soy candles come in amber or clear reusable glass with a matte black lid — small jars that bring a quiet, layered scent to a room without overpowering it. Choose from a range of seasonal and fresh blends: from creamy Vanilla Bean and cozy Comfort Spice to crisp Fresh Balsam or bright Pink Grapefruit. Each candle uses 100% natural soy wax from USA-farmed soybeans and a 100% cotton eco-wick for a soot-minimized, longer-burning flame. The permanent label and clean jar make these candles easy to repurpose as mini-planters, storage jars, or countertop accents once the wax is gone. Thoughtfully made, ASTM-compliant, and scented with non-toxic fragrance blends, they slip effortlessly into a calming evening, a chilly morning, or a relaxed gathering at home.



Product features


- Hand-poured 100% natural soy wax from USA-farmed soybeans


- Available in 9oz (50–60 hr burn) size


- 100% cotton eco-wick and non-toxic fragrance blends (no parabens, phthalates, or synthetic dyes)


- Reusable amber or clear glass jar with matte black lid and permanent label


- Wide scent selection (Vanilla Bean, Eucalyptus Lavender Herb, Comfort Spice, Spiced Pumpkin Ginger, Sea Breeze, Fresh Balsam, Honeysuckle, Pink Grapefruit, plus Unscented)



Care instructions


- Keep the burning candle within sight, and keep away from children and pets. Never burn the candle near flammable items. For best results, burn the candle for 3 - 4 hours in each lighting and trim the wick to 1/4" before lighting. Discontinue use with 1/2" of wax remaining.

    bottom of page
    import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }