Refund policy

<body>


<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Return &amp; Warranty Policy - Voltky Electronics</title>
<style>
    :root {
      --bg: #ffffff;
      --card: #f8f9fb;
      --text: #0f1720;
      --muted: #6b7280;
      --accent: #0b74de;
      --maxw: 900px;
      --radius: 12px;
      --pad: 24px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      padding: 32px;
      display: flex;
      justify-content: center;
      font-size: 12px; /* Smaller font size */
    }
    .container {
      max-width: var(--maxw);
      width: 100%;
      background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
      border-radius: var(--radius);
      box-shadow: 0 6px 24px rgba(15,23,32,0.08);
      padding: 28px;
    }
    header h1 {
      margin: 0 0 12px 0;
      font-size: 28px; /* Smaller main heading */
    }
    .meta {
      background: var(--card);
      padding: 12px 16px;
      border-radius: 10px;
      display: inline-block;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 16px; /* Smaller meta */
    }
    h2 {
      font-size: 20px; /* Smaller section headings */
      margin: 16px 0;
    }
    section + section { margin-top: 24px; }
    ul { margin: 10px 0 14px 20px; font-size: 16px; }
    li { margin-bottom: 8px; }
    .contact {
      background: #f1f5f9;
      padding: 16px;
      border-radius: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 16px;
    }
    footer {
      margin-top: 24px;
      font-size: 14px;
      color: var(--muted);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap: 12px;
    }
    a { color: var(--accent); text-decoration: none; }
    @media (max-width: 520px) {
      body { padding: 18px; font-size: 14px; }
      .container { padding: 18px; }
      header h1 { font-size: 26px; }
      h2 { font-size: 18px; }
      ul { font-size: 14px; }
      .contact { font-size: 14px; }
    }
</style>

 

<div class="container" role="main" aria-labelledby="policyTitle">
    <header>
      <p>This policy explains how returns and warranty claims are handled by <strong>Voltky Electronics</strong>. By purchasing from our store, you agree to the terms below.</p>
    </header>
<br>
    <section>
      <h2>1. Scope</h2>
      <p>This policy applies to products purchased directly from Voltky Electronics online store in the United States. Products purchased from third-party sellers or outside the U.S. may be subject to different return or warranty terms.</p>
    </section>

    <section>
      <h2>2. Return Timeframe</h2>
      <p>All returns must be initiated within <strong>30 days of delivery</strong>. No exceptions will be accepted unless approved by Voltky Electronics.</p>
    </section>

    <section>
      <h2>3. Damaged or Defective Items</h2>
      <p>If you receive a damaged or defective product, contact us immediately. We will issue a free return shipping label along with a Return Number.</p>
      <p>Voltky Electronics will inspect all returned items. If the product is found to be fully functional, the return will be treated as a used product return (see Section 4).</p>
    </section>

    <section>
      <h2>4. Returns on Opened or Used Products</h2>
      <p>Products that have been opened or used are subject to a <strong>30% restocking fee</strong>. The buyer is responsible for return shipping costs.</p>
    </section>

    <section>
      <h2>5. Returns on Used Products with Missing Parts or Packaging</h2>
      <p>If a returned item is missing parts or original packaging, a <strong>50% deduction</strong> will be applied. Voltky Electronics reserves the right to refuse a refund if the item is misused or missing significant components.</p>
    </section>

    <section>
      <h2>6. Returns for Non-Opened Items / Customer Remorse</h2>
      <p>For non-opened items returned due to customer remorse, a <strong>10% restocking fee</strong> applies. The buyer is responsible for return shipping.</p>
    </section>

    <section>
      <h2>7. Warranty for Quality-Related Issues</h2>
      <p>Products with manufacturing defects or quality issues are covered under Voltky Electronics' limited warranty, starting from the purchase date. For such items, we may at our discretion:</p>
      <ul>
        <li>Provide replacement parts</li>
        <li>Repair the product</li>
        <li>Exchange for a factory refurbished unit</li>
        <li>Exchange for a new unit</li>
      </ul>
      <p>Replacements inherit the original warranty period or three months from the replacement date, whichever is longer. Warranty coverage does not apply to damage caused by misuse, accidents, or unauthorized modifications.</p>
    </section>

    <section>
      <h2>8. Return and Warranty Conditions</h2>
      <ul>
        <li>All returned items must include any included accessories.</li>
        <li>Original packaging should be returned when possible.</li>
        <li>Voltky Electronics may reject returns that do not meet these conditions.</li>
      </ul>
    </section>

    <section>
      <h2>9. Refund Methods</h2>
      <p>All refunds will be processed back to the original payment method once the return is approved and inspected.</p>
    </section>

    <section>
      <h2>10. Contact Us</h2>
      <p>If you have questions about returns or warranty claims, contact us at:</p>
      <div class="contact">
        Email: <a href="mailto:Support@voltky.com">Support@voltky.com</a>
      </div>
    </section>

    <footer>
      <div>© <span id="year"></span> Voltky Electronics</div>
      <div>
<a href="#">Privacy Policy</a> · <a href="#">Shipping Policy</a>
</div>
    </footer>
</div>

<script>
    document.getElementById('year').textContent = new Date().getFullYear();
</script>

</body>