{% schema %}
{
  "name": "Returning a Gift Section",
  "settings": [
    {
      "type": "text",
      "id": "heading",
      "label": "Heading",
      "default": "Returning a Gift"
    },
    {
      "type": "richtext",
      "id": "instructions",
      "label": "Instructions",
      "default": "<p>If you would like to return a gift*, please select <strong>“Return Gift for Gift Card”</strong> as the <strong>“Reason for Return”</strong>. Include your name, address, email address where you would like the gift card to be sent, your phone number, and the original order number on the FedEx Return Label below.</p><p>If you do not have the original order number or have any questions, please call customer service at 1-800-394-4653.</p>"
    },
    {
      "type": "richtext",
      "id": "delay_notice",
      "label": "Delay Notice (Red Text)",
      "default": "<p>Due to the temporary reduction of in-office personnel, our returns department will be experiencing delays processing your refund. Please allow an extra 5-7 business days for your return order to be completed.</p><p>Thank you for your patience and understanding. If you have any questions, Customer Service can be reached at 1-800-394-4653.</p>"
    }
  ],
  "presets": [
    {
      "name": "Returning a Gift"
    }
  ]
}
{% endschema %}

<section class="return-gift-section page-width">
  <div class="return-box">
    <h2>{{ section.settings.heading }}</h2>
    <div class="return-instructions-gift">
      {{ section.settings.instructions }}
    </div>
  </div>

  <div class="return-delay">
    {{ section.settings.delay_notice }}
  </div>
</section>

<style>
.return-gift-section {
  margin: 30px auto;
  font-family: Arial, sans-serif;
}
.return-box {
  border: 1px solid #ccc;
  padding: 20px;
}
.return-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.return-instructions-gift p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 23px;
}
.return-delay {
  margin-top: 20px;
  color: red;
  font-weight: bold;
}
</style>
