# Returns & Exchanges – Toys Sale Store “`html

Returns & Exchanges – Toys Sale Store :root { –primary-color: #2c3e50; –secondary-color: #e74c3c; –accent-color: #3498db; –success-color: #27ae60; –warning-color: #f39c12; –light-color: #f9f9f9; –text-color: #333; –border-color: #ddd; –shadow-light: 0 4px 12px rgba(0,0,0,0.05); –shadow-medium: 0 6px 16px rgba(0,0,0,0.1); –magic-gradient: linear-gradient(135deg, #8e44ad 0%, #3498db 100%); –hero-gradient: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(–text-color); background-color: #f5f7fa; padding: 0; margin: 0; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: var(–hero-gradient); color: white; padding: 2.5rem 0; text-align: center; margin-bottom: 2rem; box-shadow: var(–shadow-medium); position: relative; overflow: hidden; } .header-content { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; } .header-decoration { position: absolute; opacity: 0.1; font-size: 8rem; z-index: 1; } .decoration-1 { top: 20px; left: 10%; } .decoration-2 { bottom: 20px; right: 10%; } h1 { font-size: 2.8rem; margin-bottom: 0.8rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); } .tagline { font-size: 1.3rem; opacity: 0.95; margin-bottom: 1rem; font-weight: 300; } .hero-icon { font-size: 2.2rem; margin: 0 12px; vertical-align: middle; } .content-wrapper { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-bottom: 4rem; } main { flex: 3; min-width: 300px; background-color: white; border-radius: 12px; padding: 2.5rem; box-shadow: var(–shadow-light); } aside { flex: 1; min-width: 280px; } .info-box { background-color: white; border-radius: 10px; padding: 1.8rem; margin-bottom: 1.8rem; box-shadow: var(–shadow-light); border-top: 5px solid var(–accent-color); transition: transform 0.3s ease, box-shadow 0.3s ease; } .info-box:hover { transform: translateY(-5px); box-shadow: var(–shadow-medium); } .info-box.warning { border-top-color: var(–warning-color); background-color: #fff9e6; } .info-box.success { border-top-color: var(–success-color); background-color: #e8f6ef; } .info-box.magic { border-top-color: #8e44ad; background: linear-gradient(to bottom right, #f8f4ff, #e8f4fc); } h2 { color: var(–primary-color); margin: 2rem 0 1.2rem; padding-bottom: 0.8rem; border-bottom: 3px solid var(–border-color); font-size: 1.8rem; } h3 { color: var(–secondary-color); margin: 1.5rem 0 1rem; font-size: 1.4rem; } p { margin-bottom: 1.2rem; } ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; } li { margin-bottom: 0.8rem; position: relative; } li:before { content: “⚡”; position: absolute; left: -1.5rem; color: var(–accent-color); } .highlight { background-color: #fff9e6; border-left: 5px solid #f1c40f; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; } .contact-info { background-color: #e8f4fc; border-left: 5px solid var(–accent-color); padding: 1.8rem; margin: 2rem 0; border-radius: 0 8px 8px 0; } .template-box { background-color: #f8f9fa; border: 2px dashed var(–border-color); border-radius: 8px; padding: 2rem; margin: 2rem 0; font-family: ‘Courier New’, monospace; } .template-title { color: var(–primary-color); font-weight: bold; margin-bottom: 1rem; font-family: ‘Segoe UI’, sans-serif; } .step-container { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 2rem 0; } .step { flex: 1; min-width: 200px; background: white; border-radius: 10px; padding: 1.5rem; text-align: center; box-shadow: var(–shadow-light); border-top: 4px solid var(–accent-color); } .step-number { display: inline-block; width: 40px; height: 40px; background: var(–accent-color); color: white; border-radius: 50%; line-height: 40px; font-weight: bold; margin-bottom: 1rem; } .step-title { font-weight: bold; color: var(–primary-color); margin-bottom: 0.8rem; } .non-returnable { background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); border-left: 5px solid var(–secondary-color); padding: 1.8rem; margin: 2rem 0; border-radius: 0 8px 8px 0; } .non-returnable h3 { color: var(–secondary-color); } footer { background-color: var(–primary-color); color: white; text-align: center; padding: 2.5rem 0; margin-top: 4rem; } .footer-content { max-width: 800px; margin: 0 auto; padding: 0 20px; } .store-info { font-size: 0.9rem; opacity: 0.8; margin-top: 1.2rem; line-height: 1.5; } .update-date { font-style: italic; color: #f1c40f; margin-top: 1.2rem; font-size: 0.9rem; } .cta-button { display: inline-block; background: var(–secondary-color); color: white; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 1rem; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3); } .cta-button:hover { background: #c0392b; transform: translateY(-3px); box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4); } @media (max-width: 768px) { .content-wrapper { flex-direction: column; } h1 { font-size: 2.2rem; } .step-container { flex-direction: column; } .header-decoration { font-size: 5rem; } } @media (max-width: 480px) { main, .info-box { padding: 1.5rem; } h1 { font-size: 1.8rem; } .hero-icon { font-size: 1.8rem; } }

Your Satisfaction is Our Superpower

Hello heroes, collectors, and magical families! We know that sometimes even the most carefully chosen character merchandise might need a return or exchange. Perhaps the Batman cape doesn’t flow quite right, or the Disney Princess dress needs a different size for your little hero. Whatever the reason, our fellowship of fans is here to make the process as smooth as a well-cast spell.

✨ Our Promise: We handle every return with the same care we’d give to a limited-edition collectible. Your satisfaction is our most important mission!

Return & Exchange Time Portal

You have 15 days from the delivery date to initiate a return or exchange. Think of it as your magical window of opportunity—like the limited time to reverse a spell in your favorite fantasy tale!

📅 Important Timeline

Return Window: 15 days from delivery date

Condition Requirement: Items must be unused, in original packaging with all tags attached

Documentation Needed: Original receipt or order number required

Your Heroic Return Journey: 4 Simple Steps

Returning an item is easier than learning a first-year spell at Hogwarts! Follow these steps:

1
Contact Our Fellowship

Email us at [email protected] within 15 days of delivery. Use our template below to make it super easy!

2
Await Our Response

Our team will send you a Return Authorization Number and shipping instructions within 2 business days.

3
Ship Your Item

Pack the item securely with all original packaging and tags. Include the RA number on the package.

4
Receive Your Refund/Exchange

Once we receive and inspect your return, we’ll process your refund or ship your exchange within 5-7 business days.

Magical Return Request Template

Copy and paste this template into your email to [email protected] to initiate your return:

RETURN/EXCHANGE REQUEST

Subject: Return/Exchange Request – Order #[Your Order Number]

Dear Toys Sale Store Fellowship,

I would like to request a [return/exchange] for my recent purchase.

Order Number: [Your Order Number]

Order Date: [Date of Purchase]

Item(s) to Return/Exchange:

• [Product Name, Size, Color] – [Quantity]

Reason for Return/Exchange: [Please specify: Wrong size, Damaged, Not as described, Changed mind, etc.]

Preferred Resolution: [Refund to original payment method / Exchange for (specify product details)]

Shipping Address for Exchange (if applicable):

[Your Full Name] [Street Address] [City, State, ZIP Code] [Country]

Thank you for your assistance with this matter!

Sincerely,

[Your Name]

Refund Timeline & Methods

Once your return is received and inspected, here’s what happens next:

⏱️ Refund Processing Timeline

  • Inspection Period: 3-5 business days after we receive your return
  • Refund Initiation: Within 2 business days after approval
  • Funds Appearance: 5-10 business days depending on your payment method

💳 Refund Methods

Refunds are issued to your original payment method:

  • Credit/Debit Cards (Visa, MasterCard, JCB): 5-10 business days
  • PayPal: 3-5 business days

Note: Shipping costs are non-refundable unless the return is due to our error (wrong item sent, defective product, etc.).

Protected Artifacts (Non-Returnable Items)

Just as some magical artifacts cannot be returned once their power is unleashed, certain items in our collection cannot be returned for health and safety reasons:

🚫 Non-Returnable Items

  • Opened Collectible Figures & Toys: Once removed from original packaging, Batman action figures, Disney Princess dolls, or Harry Potter collectibles cannot be returned
  • Personalized or Custom Items: Any merchandise customized with names, dates, or special requests
  • Intimate Apparel: Character underwear, swimwear, or socks for hygiene reasons
  • Digital Products: Downloadable content, digital codes, or virtual items
  • Damaged by Customer: Items damaged after delivery due to misuse or accidents
  • Final Sale Items: Clearly marked as “Final Sale” or “Non-Returnable”

Why these restrictions? We must ensure all character merchandise meets health and safety standards for our community of heroes and their sidekicks!