Custom orders available. Appointments welcome outside of normal business hours!!!

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Return Policy - Gray Sky Supply</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f7;
      margin: 0;
      padding: 20px;
    }
    .card {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    h1, h2 {
      color: #222;
      margin-top: 0;
    }
    h1 {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }
    h2 {
      font-size: 1.4rem;
      margin-top: 22px;
      margin-bottom: 10px;
    }
    p, li {
      color: #444;
      line-height: 1.7;
      font-size: 1rem;
    }
    ul {
      margin: 10px 0 20px 20px;
      padding-left: 18px;
    }
    .contact {
      margin-top: 25px;
      padding: 15px;
      background: #f9fafb;
      border-left: 4px solid #4a90e2;
      border-radius: 6px;
      font-size: 1rem;
    }

    /* Mobile-friendly adjustments */
    @media (max-width: 600px) {
      body {
        padding: 10px;
      }
      .card {
        padding: 20px;
        border-radius: 10px;
      }
      h1 {
        font-size: 1.5rem;
      }
      h2 {
        font-size: 1.2rem;
      }
      p, li {
        font-size: 1.05rem;
      }
    }
  </style>
</head>
<body>
  <div class="card">
    <h1>Refund & Return Policy</h1>
    <p><strong>Gray Sky Supply, LLC</strong><br>
    90 S 4th St<br>
    Gower, MO 64454<br><br>
    <strong>Effective Date:</strong> 9-1-2025</p>

    <h2>General Return Policy (including Non-Returnable Items)</h2>
    <p>Certain items are not eligible for return under any circumstances, due to safety, legal, and custom-order considerations.</p>
    <p><strong>Non-returnable items include:</strong></p>
    <ul>
      <li>Firearms</li>
      <li>Ammunition</li>
      <li>Suppressors</li>
      <li>Special orders</li>
    </ul>

    <p><strong>Eligible items must be:</strong></p>
    <ul>
      <li>Unopened</li>
      <li>Unused</li>
      <li>In its original packaging</li>
      <li>Accompanied by the original receipt or proof of purchase</li>
    </ul>

    <h2>Defective Products</h2>
    <p>Gray Sky Supply, LLC is not liable for manufacturing defects. If you receive a product you believe to be defective, please contact the manufacturer directly for warranty claims, replacements, or repairs. We recommend reviewing the manufacturer’s warranty and support policies prior to purchase.</p>

    <h2>Additional Information</h2>
    <p>Customers are responsible for all return shipping costs.</p>
    <p>Returns must be initiated within 30 days of purchase.</p>

    <div class="contact">
      <p><strong>To initiate a return, please contact us at:</strong><br>
      <a href="mailto:customerservice@graysky.supply">customerservice@graysky.supply</a><br>
      816-424-8049</p>
    </div>
  </div>
</body>
</html>

top