“`html

Shipping & Returns | UrbanJngl Terrarium Plants :root { –primary-green: #2a5c4a; –secondary-green: #3a7c5f; –light-green: #e8f4ef; –accent-terracotta: #c46a4e; –text-dark: #1a2a24; –text-light: #4a5f56; –background: #f9fbf8; –white: #ffffff; –border-radius: 8px; –spacing-xs: 0.5rem; –spacing-sm: 1rem; –spacing-md: 2rem; –spacing-lg: 3rem; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, sans-serif; line-height: 1.6; color: var(–text-dark); background-color: var(–background); padding: 0; max-width: 100%; } .container { max-width: 1200px; margin: 0 auto; padding: 0 var(–spacing-sm); } header { background-color: var(–white); border-bottom: 1px solid var(–light-green); padding: var(–spacing-sm) 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(42, 92, 74, 0.05); } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5rem; font-weight: 700; color: var(–primary-green); text-decoration: none; display: flex; align-items: center; } .logo span { color: var(–accent-terracotta); } .logo-icon { margin-right: 8px; font-size: 1.8rem; } .nav-links { display: flex; gap: var(–spacing-md); } .nav-links a { color: var(–text-light); text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: var(–primary-green); } .policy-header { background: linear-gradient(135deg, var(–light-green) 0%, #d4e8df 100%); padding: var(–spacing-lg) 0; text-align: center; margin-bottom: var(–spacing-lg); } .policy-header h1 { color: var(–primary-green); font-size: 2.5rem; margin-bottom: var(–spacing-xs); } .policy-header p { color: var(–text-light); font-size: 1.1rem; max-width: 800px; margin: 0 auto; } .content-section { background-color: var(–white); border-radius: var(–border-radius); padding: var(–spacing-md); margin-bottom: var(–spacing-md); box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-top: 3px solid var(–light-green); } .content-section h2 { color: var(–primary-green); margin-bottom: var(–spacing-sm); padding-bottom: var(–spacing-xs); border-bottom: 1px solid var(–light-green); display: flex; align-items: center; } .content-section h2 i { margin-right: 10px; color: var(–accent-terracotta); } .content-section h3 { color: var(–secondary-green); margin: var(–spacing-sm) 0 var(–spacing-xs); } .content-section p, .content-section li { color: var(–text-light); margin-bottom: var(–spacing-sm); } .content-section ul, .content-section ol { padding-left: var(–spacing-md); margin-bottom: var(–spacing-sm); } .content-section li { margin-bottom: var(–spacing-xs); } .shipping-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(–spacing-md); margin-top: var(–spacing-md); } .option-card { background-color: var(–light-green); padding: var(–spacing-md); border-radius: var(–border-radius); border: 1px solid #d1e7dd; } .option-card h4 { color: var(–primary-green); margin-bottom: var(–spacing-sm); } .process-step { display: flex; align-items: flex-start; margin-bottom: var(–spacing-md); padding: var(–spacing-sm); background-color: var(–light-green); border-radius: var(–border-radius); } .step-number { background-color: var(–accent-terracotta); color: var(–white); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: var(–spacing-sm); flex-shrink: 0; } .step-content { flex: 1; } .template-box { background-color: #f8f9fa; border: 1px solid #dee2e6; border-radius: var(–border-radius); padding: var(–spacing-md); margin: var(–spacing-md) 0; font-family: ‘Courier New’, monospace; font-size: 0.9rem; line-height: 1.5; color: var(–text-dark); overflow-x: auto; } .non-returnable { background-color: #fff5f5; border-left: 4px solid #e53e3e; padding: var(–spacing-sm); margin: var(–spacing-sm) 0; border-radius: 0 var(–border-radius) var(–border-radius) 0; } .non-returnable h4 { color: #c53030; margin-bottom: var(–spacing-xs); } .faq-item { margin-bottom: var(–spacing-sm); border-bottom: 1px solid var(–light-green); padding-bottom: var(–spacing-sm); } .faq-question { color: var(–primary-green); font-weight: 600; margin-bottom: var(–spacing-xs); cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .faq-answer { color: var(–text-light); display: none; } .faq-answer.active { display: block; } footer { background-color: var(–primary-green); color: var(–white); padding: var(–spacing-lg) 0; margin-top: var(–spacing-lg); } .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(–spacing-md); } .footer-section { flex: 1; min-width: 250px; } .footer-section h3 { color: var(–light-green); margin-bottom: var(–spacing-sm); font-size: 1.2rem; } .footer-section p, .footer-section a { color: #c6d9d0; margin-bottom: var(–spacing-xs); line-height: 1.5; } .footer-section a { text-decoration: none; display: block; transition: color 0.3s; } .footer-section a:hover { color: var(–white); } .copyright { text-align: center; margin-top: var(–spacing-lg); padding-top: var(–spacing-sm); border-top: 1px solid rgba(255,255,255,0.1); color: #a8c2b8; font-size: 0.9rem; } @media (max-width: 768px) { .nav-links { display: none; } .policy-header h1 { font-size: 2rem; } .content-section { padding: var(–spacing-sm); } .process-step { flex-direction: column; } .step-number { margin-bottom: var(–spacing-xs); } .shipping-options { grid-template-columns: 1fr; } }

Mindful delivery and a seamless return experience, crafted for your urban sanctuary.

đŸ“Ļ Shipping Information

We handle your order with the same care we give to nurturing our plants. Each item is thoughtfully packaged in 100% recyclable materials to ensure it arrives safely at your doorstep, ready to become part of your home.

Order Processing Time

All orders are processed within 1-2 business days (excluding weekends and holidays). You will receive a confirmation email with your order details and a tracking number once your items are on their way.

Shipping Methods & Delivery Times

We ship globally (excluding some remote areas in Asia and other specified regions). Please review the options below to choose the best fit for your needs.

Standard Shipping

Carrier: DHL or FedEx

Cost: $12.95

Delivery Time: 10-15 business days after dispatch.

Ideal for when you need your botanical companions a little sooner. Fully trackable.

Free Shipping

Carrier: EMS

Cost: FREE on orders over $50.

Delivery Time: 15-25 business days after dispatch.

A sustainable and economical choice for orders that are not time-sensitive. Tracking provided.

Important Notes

  • Delivery times are estimates and may vary due to customs processing, weather, or carrier delays.
  • Please ensure your shipping address is correct at checkout. We are not responsible for orders shipped to incorrect addresses provided by the customer.
  • For international orders, any customs duties, taxes, or fees are the responsibility of the recipient.

🌱 Our Return Philosophy

At UrbanJngl, we believe in cultivating satisfaction. We understand that creating your perfect space with Terrarium plants, Bonsai, or Home & Living accessories is a personal journey. Our return policy is designed with intention and care, aiming to be as seamless and stress-free as your initial discovery of our products.

Whether you’ve chosen a Mini | under 20 cm desk companion or a statement Extra Large | >130 cm centerpiece, we are committed to ensuring every element of your collection brings you peace and joy.

Please Note: Non-Returnable Items

To ensure the health and safety of our botanical community, the following items are final sale and cannot be returned or exchanged:

  • All Live Plants & Specimens: This includes Houseplants, Terrarium plants, Moss, Bonsai, and Species due to their perishable nature and biosecurity considerations.
  • Personalized or Custom Items: Any products customized at your request.
  • Gift Cards: Digital or physical gift cards are non-refundable.
  • Clearance or Final Sale Items: Clearly marked as such at purchase.

This policy reflects our commitment to responsible sourcing and the well-being of our living products.

â†Šī¸ Return & Exchange Conditions

To initiate a return or exchange, please ensure:

  • The request is made within 15 days of the delivery date.
  • The item is in its original, unused, and resalable condition.
  • All original packaging, including our protective materials, is intact.
  • You have your original order number and proof of purchase.

🔄 The Return Process: A Step-by-Step Guide

1

Initiate Your Request

Within 15 days of delivery, contact our Customer Care team at [email protected] with your order number and item details. You may use the template below to streamline your request.

2

Receive Authorization & Instructions

We will respond within 1-2 business days with a Return Merchandise Authorization (RMA) number and detailed shipping instructions. Please do not ship any items without this authorization.

3

Package & Ship

Securely repackage the item in its original packaging. Include the RMA number inside the package. Ship it to our returns hub:

UrbanJngl Returns
813 Sumner Street
Los Angeles, CA 90067
USA

We recommend using a trackable shipping service and retaining your proof of postage. Original shipping costs are non-refundable unless the return is due to our error.

4

Inspection & Completion

Once we receive and inspect your return (typically within 5-7 business days), we will notify you via email.

  • For Returns: Your refund will be processed to your original payment method.
  • For Exchanges: We will ship the replacement item promptly. If it’s out of stock, we will issue a refund or store credit.

Return Request Email Template

Copy and paste the template below into an email to [email protected].

Subject: Return/Exchange Request – Order #[Your Order Number] Dear UrbanJngl Customer Care, I would like to initiate a return/exchange for my recent order. Order Number: [Please insert your order number] Order Date: [Date of order] Item(s) for Return/Exchange: – [Product Name, e.g., “Ceramic Candle Holder”] – [Size, if applicable, e.g., “Small | 20-50 cm”] – [SKU or Item Code, if available] Reason for Return/Exchange: [Please briefly state the reason, e.g., “Size incorrect,” “Item damaged upon arrival,” “Change of mind”] Preferred Resolution: [ ] Refund to original payment method [ ] Exchange