ÿþ<?php require_once '../includes/db.php'; require_once '../includes/functions.php'; require_once '../includes/seo.php'; $head_seo = generatePageHeadSEO('returns', null); ?> <!DOCTYPE html> <html lang="en"> <head> <?= $head_seo ?> <link rel="stylesheet" href="../assets/css/amazon-style.css"> <style> .returns-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; } .page-header { text-align: center; margin-bottom: 50px; padding: 40px; background: linear-gradient(135deg, #146EB4, #0E4B7C); color: white; border-radius: 16px; } .page-header h1 { font-size: 2.8em; margin-bottom: 15px; font-weight: 300; } .guarantee-banner { background: linear-gradient(135deg, #28a745, #20c997); color: white; padding: 30px; border-radius: 12px; text-align: center; margin-bottom: 40px; } .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 50px; } .step-card { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-align: center; position: relative; } .step-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #FF9900; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; } .info-section { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 40px; } .contact-section { background: #f8f9fa; padding: 40px; border-radius: 16px; text-align: center; } .contact-btn { display: inline-block; padding: 15px 30px; background: #FF9900; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; margin: 10px; } </style> </head> <body> <nav class="main-nav"> <div class="nav-container"> <a href="index.php" class="nav-logo"> <span class="logo-icon"></span> Premium Products </a> <div class="nav-links"> <a href="index.php">Home</a> <a href="../categories.php">Categories</a> <a href="returns.php" class="active">Returns</a> <a href="contact.php">Contact</a> </div> </div> </nav> <div class="returns-container"> <div class="page-header"> <h1>Returns & Refunds</h1> <p>Easy returns and hassle-free refunds. Your satisfaction is our priority.</p> </div> <div class="guarantee-banner"> <h2> 30-Day Money Back Guarantee</h2> <p>Not completely satisfied? Return any eligible item within 30 days for a full refund.</p> </div> <div class="process-steps"> <div class="step-card"> <div class="step-number">1</div> <h3>Contact Us</h3> <p>Get in touch to start your return process</p> </div> <div class="step-card"> <div class="step-number">2</div> <h3>Package Item</h3> <p>Pack item in original packaging</p> </div> <div class="step-card"> <div class="step-number">3</div> <h3>Ship Back</h3> <p>Use our prepaid return label</p> </div> <div class="step-card"> <div class="step-number">4</div> <h3>Get Refund</h3> <p>Receive refund within 3-5 business days</p> </div> </div> <div class="info-section"> <h2>Return Policy</h2> <p>Most items can be returned within 30 days of delivery in original condition with all packaging and accessories included.</p> <h3>What can be returned:</h3> <ul> <li>Items in original condition</li> <li>All original packaging included</li> <li>Accessories and manuals included</li> <li>Within 30-day return window</li> </ul> <h3>Processing times:</h3> <ul> <li>Return received: 1-2 days</li> <li>Refund processed: 2-3 days</li> <li>Refund in account: 3-5 days</li> </ul> </div> <div class="contact-section"> <h3>Need Help with a Return?</h3> <p>Our customer service team is ready to assist you.</p> <a href="contact.php" class="contact-btn">Contact Support</a> <a href="tel:1-800-773-6486" class="contact-btn">Call Us</a> </div> </div> <footer class="site-footer"> <div class="container"> <div class="footer-content"> <div class="footer-section"> <h3>Customer Service</h3> <ul> <li><a href="contact.php">Contact Us</a></li> <li><a href="shipping.php">Shipping Info</a></li> <li><a href="returns.php">Returns Policy</a></li> <li><a href="faq.php">FAQ</a></li> </ul> </div> <div class="footer-section"> <h3>Company</h3> <ul> <li><a href="about.php">About Us</a></li> <li><a href="support.php">Support</a></li> </ul> </div> </div> <div class="footer-bottom"> <p>&copy; 2024 Premium Products. All rights reserved.</p> <div style="margin-top: 8px;"> <span style="font-size: 12px; color: #DDD;">As an Amazon Associate, we earn from qualifying purchases.</span> </div> </div> </div> </footer> </body> </html>