Sizing Chart

<!-- ============================================================
     SIZE CHART — Custom Liquid block for Shopify Dawn theme
     Always visible (no popup/trigger). Paste into a
     "Custom Liquid" block wherever you want it to appear.
     ============================================================ -->

<style>
  .sc-card {
    background: #f3b6c6; /* pink */
    border-radius: 24px;
    max-width: 640px;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', serif;
    color: #2b1f1a;
    margin: 24px auto;
  }

  .sc-title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 18px 0;
  }

  .sc-notes {
    font-size: 17px;
    line-height: 1.45;
    margin: 0 0 24px 0;
  }

  .sc-notes strong {
    font-weight: 700;
  }

  .sc-table-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    overflow-x: auto;
  }

  .sc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
  }

  .sc-table th,
  .sc-table td {
    text-align: center;
    padding: 16px 8px;
    font-size: 17px;
    white-space: nowrap;
  }

  .sc-table th {
    font-weight: 600;
    border-bottom: none;
  }

  .sc-table td:first-child,
  .sc-table th:first-child {
    text-align: left;
    padding-left: 4px;
  }

  .sc-table tbody tr {
    border-top: 1px solid #eee2e0;
  }

  /* Mobile tweaks */
  @media (max-width: 480px) {
    .sc-card {
      padding: 24px 18px;
      border-radius: 18px;
    }
    .sc-title {
      font-size: 26px;
    }
    .sc-notes {
      font-size: 15px;
    }
    .sc-table th,
    .sc-table td {
      font-size: 14px;
      padding: 12px 6px;
    }
  }
</style>

<div class="sc-card">
  <h2 class="sc-title">Size Chart</h2>

  <p class="sc-notes">
    <strong>Please Notes:</strong> Our Hoodies fit true to size for women's. Please size up 1 for mens (size up 2 for an oversized fit).
  </p>

  <div class="sc-table-wrap">
    <table class="sc-table">
      <thead>
        <tr>
          <th>Size</th>
          <th>UK</th>
          <th>Chest</th>
          <th>Length</th>
          <th>Sleeve Length</th>
        </tr>
      </thead>
      <tbody>
        <tr><td>S</td><td>8-10</td><td>40</td><td>26</td><td>22.1</td></tr>
        <tr><td>M</td><td>12-14</td><td>44</td><td>27</td><td>22.5</td></tr>
        <tr><td>L</td><td>16-18</td><td>48</td><td>28</td><td>22.9</td></tr>
        <tr><td>XL</td><td>20-22</td><td>52</td><td>29</td><td>23.2</td></tr>
        <tr><td>2XL</td><td>24-26</td><td>56</td><td>30</td><td>23.6</td></tr>
        <tr><td>3XL</td><td>28-30</td><td>60</td><td>31</td><td>24.0</td></tr>
        <tr><td>4XL</td><td>32-34</td><td>64</td><td>32</td><td>24.4</td></tr>
        <tr><td>5XL</td><td>36-38</td><td>68</td><td>33</td><td>24.8</td></tr>
      </tbody>
    </table>
  </div>
</div>