<turbo-stream action="replace" target="search-form"><template>
  <form id="search-form" class="contents" data-controller="search-filter multiselect" data-action="submit-&gt;search-filter#submit" data-search-filter-target="form" data-search-filter="form" action="/load_collection" accept-charset="UTF-8" data-remote="true" method="get">
  <!-- Search Field -->
  <div class="flex-1 w-full md:min-w-[200px] md:max-w-[400px]">
    <div class="flex flex-col">
      <h3 class="mb-2 text-grey-text">Search</h3>

      <div class="flex flex-row space-x-0">
        <input placeholder="Name, or c:b t:creature r:uncommon" onfocus="this.select();" data-search-filter-target="searchInput" class="w-full border text-grey-text rounded-l-md bg-background border-highlight focus:border-accent-50 focus:ring-accent-50" type="text" name="search" id="search" />

        <input autocomplete="off" value="denvermullets" type="hidden" name="username" id="username" />
        <input autocomplete="off" type="hidden" name="code" id="code" />
        <input autocomplete="off" value="309" type="hidden" name="collection_id" id="collection_id" />
        <input autocomplete="off" type="hidden" name="valuable_only" id="valuable_only" />
        <input autocomplete="off" type="hidden" name="owned_only" id="owned_only" />
        <input autocomplete="off" type="hidden" name="sort" id="sort" />
        <input autocomplete="off" value="asc" type="hidden" name="direction" id="direction" />
        <input autocomplete="off" type="hidden" name="view_mode" id="view_mode" />
        <input autocomplete="off" type="hidden" name="grouping" id="grouping" />
        <input autocomplete="off" type="hidden" name="exact_color_match" id="exact_color_match" />
        <input autocomplete="off" value="true" type="hidden" name="hide_proxies" id="hide_proxies" />

        <input type="submit" name="commit" value="Search" class="p-2 bg-background text-grey-text rounded-r-md border border-highlight hover:cursor-pointer hover:bg-gray-700" data-disable-with="Search" />
      </div>

        
<div data-controller="dialog" class="mt-2">
  <p class="text-xs text-grey-text">
    Search by name, or
    <button
      type="button"
      data-action="click->dialog#open"
      class="underline cursor-pointer text-accent-50 hover:text-nine-white"
    >
      use advanced syntax
    </button>
  </p>

  <dialog
    data-dialog-target="dialog"
    data-action="click->dialog#closeOnBackdrop keydown.esc->dialog#close"
    class="
      fixed p-0 m-0 border rounded-lg top-1/2 left-1/2 -translate-x-1/2
      -translate-y-1/2 bg-foreground border-highlight backdrop:bg-black/50
    "
  >
    <div class="w-[52rem] max-w-[92vw] max-h-[85vh] p-6 overflow-y-auto">
      <div class="flex items-start justify-between mb-1">
        <h3 class="text-lg font-semibold text-nine-white">Advanced search</h3>

        <button
          type="button"
          data-action="click->dialog#close"
          class="cursor-pointer text-grey-text hover:text-nine-white"
          aria-label="Close"
        >
          <svg
            class="w-6 h-6"
            fill="none"
            stroke="currentColor"
            viewBox="0 0 24 24"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M6 18L18 6M6 6l12 12"
            />
          </svg>
        </button>
      </div>

      <p class="mb-5 text-sm text-grey-text">
        Terms combine with AND, so
        <code class="text-accent-50">c:b t:creature</code> finds black
        creatures. Anything that isn't a term is matched against the card name.
      </p>

      <div class="grid gap-6 md:grid-cols-2">
        <div>
          <h4
            class="
              mb-2 text-xs font-semibold tracking-wide uppercase
              text-nine-white
            "
          >
            Fields
          </h4>

          <dl class="grid grid-cols-[max-content_1fr] gap-x-4 gap-y-2 text-sm">
              <dt class="font-mono whitespace-nowrap text-accent-50">
                c:

                  <span class="text-grey-text">/</span>
                  id:
              </dt>

              <dd class="text-grey-text">color, color identity</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                t:

              </dt>

              <dd class="text-grey-text">card type, subtype or supertype</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                r:

              </dt>

              <dd class="text-grey-text">rarity</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                o:

              </dt>

              <dd class="text-grey-text">oracle text</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                n:

                  <span class="text-grey-text">/</span>
                  m:
              </dt>

              <dd class="text-grey-text">name, mana cost</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                mv:

              </dt>

              <dd class="text-grey-text">mana value</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                pow:

                  <span class="text-grey-text">/</span>
                  tou:
              </dt>

              <dd class="text-grey-text">power, toughness</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                s:

              </dt>

              <dd class="text-grey-text">set code</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                kw:

                  <span class="text-grey-text">/</span>
                  a:
              </dt>

              <dd class="text-grey-text">keyword, artist</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                role:

                  <span class="text-grey-text">/</span>
                  effect:
              </dt>

              <dd class="text-grey-text">what a card does - ramp, removal, mana_rock</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                commander:

              </dt>

              <dd class="text-grey-text">legal in that commander&#39;s color identity</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                rank:

                  <span class="text-grey-text">/</span>
                  edhrec:
              </dt>

              <dd class="text-grey-text">EDHREC rank - higher is less played</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                salt:

              </dt>

              <dd class="text-grey-text">EDHREC saltiness</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                f:

                  <span class="text-grey-text">/</span>
                  banned:
              </dt>

              <dd class="text-grey-text">legal in / banned in a format</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                is:

              </dt>

              <dd class="text-grey-text">commander, token, reprint, reserved, dfc, colorless, foil, etched</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                qty:

                  <span class="text-grey-text">/</span>
                  needed:
              </dt>

              <dd class="text-grey-text">copies you own, cards marked needed</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                foil:

                  <span class="text-grey-text">/</span>
                  proxy:
              </dt>

              <dd class="text-grey-text">true or false</dd>
              <dt class="font-mono whitespace-nowrap text-accent-50">
                usd:

                  <span class="text-grey-text">/</span>
                  change:
              </dt>

              <dd class="text-grey-text">price, weekly price change</dd>
          </dl>
        </div>

        <div class="flex flex-col gap-6">
          <div>
            <h4
              class="
                mb-2 text-xs font-semibold tracking-wide uppercase
                text-nine-white
              "
            >
              Operators
            </h4>

            <dl class="grid grid-cols-[max-content_1fr] gap-x-4 gap-y-2 text-sm">
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  :
                </dt>

                <dd class="text-grey-text">
                  contains or matches part of
                  <span class="font-mono text-xs">— t:goblin</span>
                </dd>
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  =
                </dt>

                <dd class="text-grey-text">
                  is exactly
                  <span class="font-mono text-xs">— t=creature</span>
                </dd>
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  !=
                </dt>

                <dd class="text-grey-text">
                  is not exactly
                  <span class="font-mono text-xs">— r!=rare</span>
                </dd>
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  &gt;= &lt;= &gt; &lt;
                </dt>

                <dd class="text-grey-text">
                  compares
                  <span class="font-mono text-xs">— mv&lt;=3</span>
                </dd>
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  -
                </dt>

                <dd class="text-grey-text">
                  excludes
                  <span class="font-mono text-xs">— -t:legendary</span>
                </dd>
                <dt class="font-mono whitespace-nowrap text-accent-50">
                  &quot; &quot;
                </dt>

                <dd class="text-grey-text">
                  groups a phrase
                  <span class="font-mono text-xs">— o:&quot;draw a card&quot;</span>
                </dd>
            </dl>
          </div>

          <div>
            <h4
              class="
                mb-2 text-xs font-semibold tracking-wide uppercase
                text-nine-white
              "
            >
              Examples
            </h4>

            <ul class="flex flex-col gap-2 text-sm">
                <li>
                  <span class="font-mono text-accent-50">c:b t:creature r:uncommon</span>

                  <span class="block text-xs text-grey-text">
                    black uncommon creatures
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">t:goblin -t:legendary mv&lt;=3</span>

                  <span class="block text-xs text-grey-text">
                    cheap non-legendary goblins
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">o:&quot;draw a card&quot; c&gt;=wu</span>

                  <span class="block text-xs text-grey-text">
                    azorius cantrips
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">f:commander pow&gt;=5 kw:flying</span>

                  <span class="block text-xs text-grey-text">
                    big commander-legal fliers
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">r&gt;=rare usd&gt;=20 qty&gt;=4</span>

                  <span class="block text-xs text-grey-text">
                    rares worth $20+ you own a playset of
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">c:c t:artifact foil:true</span>

                  <span class="block text-xs text-grey-text">
                    colorless artifacts you own in foil
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">commander:prossh role:sacrifice qty&gt;=1</span>

                  <span class="block text-xs text-grey-text">
                    sac outlets you own that are legal under Prossh
                  </span>
                </li>
                <li>
                  <span class="font-mono text-accent-50">role:ramp rank&gt;8000 qty&gt;=1</span>

                  <span class="block text-xs text-grey-text">
                    ramp you own that almost nobody plays
                  </span>
                </li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </dialog>
</div>

    </div>
  </div>

  <!-- Mana Filter -->
  <div class="w-auto">
    <div class="flex flex-col">
      <h3 class="mb-2 text-grey-text">Mana</h3>

      <div class="flex flex-row flex-wrap items-center gap-2">
        <div class="flex flex-row flex-wrap">
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="B"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-b"></i>
            </button>
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="U"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-u"></i>
            </button>
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="W"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-w"></i>
            </button>
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="R"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-r"></i>
            </button>
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="G"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-g"></i>
            </button>
            <button
              type="button"
              data-action="click->multiselect#toggle"
              data-multiselect-target="item"
              data-multiselect-group="mana"
              data-value="C"
              class="
                cursor-pointer rounded-full p-1 transition border-2
                border-transparent data-selected:border-accent-50
                data-selected:bg-accent-50/20
              "
            >
              <i class="no-tailwind ms ms-cost ml-0 ms-c"></i>
            </button>
        </div>

        <button
          type="button"
          data-action="click->search-filter#toggleExactColor"
          data-search-filter-target="exactColorButton"
          class="cursor-pointer px-3 py-1 text-xs rounded-lg transition border-2 border-transparent bg-background text-grey-text hover:bg-menu"
        >
          Exact
        </button>
      </div>

      <p class="mt-2 text-xs text-grey-text">Select color to filter by</p>
    </div>
  </div>

  <!-- Rarity Filter -->
  <div class="w-auto">
    <div class="flex flex-col">
      <h3 class="mb-2 text-grey-text">Rarity</h3>

      <div class="flex flex-row flex-wrap">
          <button
            type="button"
            data-action="click->multiselect#toggle"
            data-multiselect-target="item"
            data-multiselect-group="rarity"
            data-value="mythic"
            class="
              cursor-pointer rounded-full p-1 transition border-2
              border-transparent data-selected:border-accent-50
              data-selected:bg-accent-50/20
            "
          >
            <i class="no-tailwind ml-0 ss ss-mythic ms-2x"></i>
          </button>
          <button
            type="button"
            data-action="click->multiselect#toggle"
            data-multiselect-target="item"
            data-multiselect-group="rarity"
            data-value="rare"
            class="
              cursor-pointer rounded-full p-1 transition border-2
              border-transparent data-selected:border-accent-50
              data-selected:bg-accent-50/20
            "
          >
            <i class="no-tailwind ml-0 ss ss-rare ms-2x"></i>
          </button>
          <button
            type="button"
            data-action="click->multiselect#toggle"
            data-multiselect-target="item"
            data-multiselect-group="rarity"
            data-value="uncommon"
            class="
              cursor-pointer rounded-full p-1 transition border-2
              border-transparent data-selected:border-accent-50
              data-selected:bg-accent-50/20
            "
          >
            <i class="no-tailwind ml-0 ss ss-uncommon ms-2x"></i>
          </button>
          <button
            type="button"
            data-action="click->multiselect#toggle"
            data-multiselect-target="item"
            data-multiselect-group="rarity"
            data-value="common"
            class="
              cursor-pointer rounded-full p-1 transition border-2
              border-transparent data-selected:border-accent-50
              data-selected:bg-accent-50/20
            "
          >
            <i class="no-tailwind ml-0 ss ss-common ms-2x"></i>
          </button>
      </div>

      <p class="mt-2 text-xs text-grey-text">Select rarity to filter by</p>
    </div>
  </div>


  <!-- Hidden fields for selected filters -->
  <div id="filter-hidden-fields" class="hidden"></div>
</form>
</template></turbo-stream>
<turbo-stream action="update" target="table-container"><template>
    
<!-- Mobile Card View -->
<div class="lg:hidden mb-24 max-w-full">
    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77886"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Irenicus&#39;s Vile Duplication
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $10.68
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Irenicus&#39;s Vile Duplication" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/4/2418e448-039a-4786-9dec-fcd9e17520a4.jpg?1783910286" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Irenicus&#39;s Vile Duplication
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Irenicus&#39;s Vile Duplication" src="https://cards.scryfall.io/large/front/2/4/2418e448-039a-4786-9dec-fcd9e17520a4.jpg?1783910286" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $10.68
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$6.50</span>
              <span class="text-xs text-grey-text">Credit: $8.45</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.94},{&quot;2026-06-14&quot;:10.92},{&quot;2026-06-15&quot;:10.96},{&quot;2026-06-16&quot;:11.02},{&quot;2026-06-17&quot;:10.98},{&quot;2026-06-18&quot;:11.11},{&quot;2026-06-19&quot;:11.11},{&quot;2026-06-20&quot;:11.15},{&quot;2026-06-21&quot;:11.15},{&quot;2026-06-22&quot;:11.21},{&quot;2026-06-23&quot;:11.24},{&quot;2026-06-24&quot;:11.24},{&quot;2026-06-25&quot;:11.24},{&quot;2026-06-26&quot;:11.19},{&quot;2026-06-27&quot;:11.3},{&quot;2026-06-28&quot;:11.3},{&quot;2026-06-29&quot;:11.15},{&quot;2026-06-30&quot;:11.19},{&quot;2026-07-01&quot;:11.1},{&quot;2026-07-02&quot;:11.06},{&quot;2026-07-03&quot;:11.01},{&quot;2026-07-04&quot;:11.01},{&quot;2026-07-05&quot;:11.01},{&quot;2026-07-06&quot;:11.0},{&quot;2026-07-07&quot;:11.01},{&quot;2026-07-08&quot;:11.01},{&quot;2026-07-09&quot;:10.97},{&quot;2026-07-10&quot;:10.97},{&quot;2026-07-11&quot;:10.4},{&quot;2026-07-12&quot;:10.44},{&quot;2026-07-13&quot;:10.21},{&quot;2026-07-14&quot;:10.1},{&quot;2026-07-15&quot;:9.96},{&quot;2026-07-16&quot;:9.94},{&quot;2026-07-17&quot;:10.11},{&quot;2026-07-18&quot;:10.11},{&quot;2026-07-19&quot;:10.18},{&quot;2026-07-20&quot;:10.19},{&quot;2026-07-21&quot;:10.21},{&quot;2026-07-22&quot;:10.39},{&quot;2026-07-23&quot;:10.56},{&quot;2026-07-24&quot;:10.64},{&quot;2026-07-25&quot;:10.75},{&quot;2026-07-26&quot;:10.89},{&quot;2026-07-27&quot;:10.96},{&quot;2026-07-28&quot;:10.96},{&quot;2026-07-29&quot;:10.98},{&quot;2026-07-30&quot;:10.98},{&quot;2026-07-31&quot;:11.14},{&quot;2026-08-01&quot;:11.13},{&quot;2026-08-02&quot;:11.14},{&quot;2026-08-03&quot;:11.07},{&quot;2026-08-04&quot;:11.09},{&quot;2026-08-05&quot;:10.94},{&quot;2026-08-07&quot;:10.93},{&quot;2026-08-08&quot;:10.98},{&quot;2026-08-09&quot;:10.94},{&quot;2026-08-10&quot;:10.96},{&quot;2026-08-11&quot;:10.95},{&quot;2026-08-12&quot;:10.89},{&quot;2026-08-13&quot;:10.82},{&quot;2026-08-14&quot;:10.75},{&quot;2026-08-15&quot;:10.58},{&quot;2026-08-16&quot;:10.52},{&quot;2026-08-17&quot;:10.52},{&quot;2026-08-18&quot;:10.52},{&quot;2026-08-19&quot;:10.48},{&quot;2026-08-20&quot;:10.38},{&quot;2026-08-21&quot;:10.3},{&quot;2026-08-22&quot;:10.22},{&quot;2026-08-23&quot;:10.22},{&quot;2026-08-24&quot;:10.31},{&quot;2026-08-25&quot;:10.39},{&quot;2026-08-26&quot;:10.44},{&quot;2026-08-27&quot;:10.58},{&quot;2026-08-28&quot;:10.59},{&quot;2026-08-29&quot;:10.59},{&quot;2026-08-30&quot;:10.6},{&quot;2026-08-31&quot;:10.6},{&quot;2026-09-01&quot;:10.6},{&quot;2026-09-02&quot;:10.62},{&quot;2026-09-03&quot;:10.62},{&quot;2026-09-04&quot;:10.5},{&quot;2026-09-05&quot;:10.49},{&quot;2026-09-06&quot;:10.48},{&quot;2026-09-07&quot;:10.58},{&quot;2026-09-08&quot;:10.58},{&quot;2026-09-09&quot;:10.51},{&quot;2026-09-10&quot;:10.52},{&quot;2026-09-11&quot;:10.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53227"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Eater of the Dead
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Horror
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $8.60
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Eater of the Dead" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/9/6908846e-aae0-44b3-9f08-84b2f3cefe18.jpg?1783910563" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Eater of the Dead
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Horror</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eater of the Dead" src="https://cards.scryfall.io/large/front/6/9/6908846e-aae0-44b3-9f08-84b2f3cefe18.jpg?1783910563" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.66
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $8.60
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$4.40</span>
              <span class="text-xs text-grey-text">Credit: $5.72</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:8.87},{&quot;2026-06-14&quot;:8.87},{&quot;2026-06-15&quot;:8.82},{&quot;2026-06-16&quot;:8.82},{&quot;2026-06-17&quot;:8.82},{&quot;2026-06-18&quot;:8.87},{&quot;2026-06-19&quot;:8.87},{&quot;2026-06-20&quot;:8.87},{&quot;2026-06-21&quot;:8.87},{&quot;2026-06-22&quot;:8.84},{&quot;2026-06-23&quot;:8.84},{&quot;2026-06-24&quot;:8.91},{&quot;2026-06-25&quot;:8.91},{&quot;2026-06-26&quot;:8.91},{&quot;2026-06-27&quot;:8.99},{&quot;2026-06-28&quot;:8.99},{&quot;2026-06-29&quot;:8.99},{&quot;2026-06-30&quot;:8.99},{&quot;2026-07-01&quot;:8.99},{&quot;2026-07-02&quot;:9.01},{&quot;2026-07-03&quot;:9.0},{&quot;2026-07-04&quot;:9.0},{&quot;2026-07-05&quot;:9.0},{&quot;2026-07-06&quot;:9.0},{&quot;2026-07-07&quot;:9.0},{&quot;2026-07-08&quot;:9.0},{&quot;2026-07-09&quot;:9.0},{&quot;2026-07-10&quot;:9.0},{&quot;2026-07-11&quot;:9.0},{&quot;2026-07-12&quot;:9.0},{&quot;2026-07-13&quot;:9.0},{&quot;2026-07-14&quot;:9.0},{&quot;2026-07-15&quot;:9.0},{&quot;2026-07-16&quot;:9.0},{&quot;2026-07-17&quot;:9.06},{&quot;2026-07-18&quot;:9.06},{&quot;2026-07-19&quot;:9.08},{&quot;2026-07-20&quot;:9.08},{&quot;2026-07-21&quot;:9.08},{&quot;2026-07-22&quot;:9.08},{&quot;2026-07-23&quot;:9.08},{&quot;2026-07-24&quot;:9.08},{&quot;2026-07-25&quot;:9.08},{&quot;2026-07-26&quot;:9.08},{&quot;2026-07-27&quot;:9.08},{&quot;2026-07-28&quot;:9.08},{&quot;2026-07-29&quot;:9.08},{&quot;2026-07-30&quot;:9.08},{&quot;2026-07-31&quot;:9.08},{&quot;2026-08-01&quot;:9.08},{&quot;2026-08-02&quot;:9.08},{&quot;2026-08-03&quot;:9.08},{&quot;2026-08-04&quot;:9.09},{&quot;2026-08-05&quot;:9.09},{&quot;2026-08-07&quot;:9.09},{&quot;2026-08-08&quot;:9.09},{&quot;2026-08-09&quot;:9.09},{&quot;2026-08-10&quot;:9.09},{&quot;2026-08-11&quot;:9.04},{&quot;2026-08-12&quot;:9.04},{&quot;2026-08-13&quot;:9.02},{&quot;2026-08-14&quot;:9.05},{&quot;2026-08-15&quot;:8.98},{&quot;2026-08-16&quot;:8.98},{&quot;2026-08-17&quot;:8.73},{&quot;2026-08-18&quot;:8.73},{&quot;2026-08-19&quot;:8.73},{&quot;2026-08-20&quot;:8.78},{&quot;2026-08-21&quot;:8.78},{&quot;2026-08-22&quot;:8.78},{&quot;2026-08-23&quot;:8.72},{&quot;2026-08-24&quot;:8.72},{&quot;2026-08-25&quot;:8.77},{&quot;2026-08-26&quot;:8.77},{&quot;2026-08-27&quot;:8.77},{&quot;2026-08-28&quot;:8.77},{&quot;2026-08-29&quot;:8.77},{&quot;2026-08-30&quot;:8.77},{&quot;2026-08-31&quot;:8.77},{&quot;2026-09-01&quot;:8.77},{&quot;2026-09-02&quot;:8.77},{&quot;2026-09-03&quot;:8.77},{&quot;2026-09-04&quot;:8.7},{&quot;2026-09-05&quot;:8.7},{&quot;2026-09-06&quot;:8.6},{&quot;2026-09-07&quot;:8.6},{&quot;2026-09-08&quot;:8.6},{&quot;2026-09-09&quot;:8.6},{&quot;2026-09-10&quot;:8.6},{&quot;2026-09-11&quot;:8.6}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.86},{&quot;2026-06-14&quot;:0.86},{&quot;2026-06-15&quot;:0.86},{&quot;2026-06-16&quot;:0.84},{&quot;2026-06-17&quot;:0.84},{&quot;2026-06-18&quot;:0.85},{&quot;2026-06-19&quot;:0.84},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.84},{&quot;2026-06-22&quot;:0.84},{&quot;2026-06-23&quot;:0.84},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.83},{&quot;2026-06-26&quot;:0.83},{&quot;2026-06-27&quot;:0.83},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.83},{&quot;2026-06-30&quot;:0.84},{&quot;2026-07-01&quot;:0.84},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.85},{&quot;2026-07-08&quot;:0.85},{&quot;2026-07-09&quot;:0.85},{&quot;2026-07-10&quot;:0.84},{&quot;2026-07-11&quot;:1.2},{&quot;2026-07-12&quot;:1.2},{&quot;2026-07-13&quot;:1.2},{&quot;2026-07-14&quot;:1.2},{&quot;2026-07-15&quot;:1.2},{&quot;2026-07-16&quot;:1.2},{&quot;2026-07-17&quot;:1.2},{&quot;2026-07-18&quot;:1.2},{&quot;2026-07-19&quot;:1.2},{&quot;2026-07-20&quot;:1.2},{&quot;2026-07-21&quot;:1.18},{&quot;2026-07-22&quot;:1.17},{&quot;2026-07-23&quot;:1.17},{&quot;2026-07-24&quot;:1.19},{&quot;2026-07-25&quot;:1.19},{&quot;2026-07-26&quot;:1.19},{&quot;2026-07-27&quot;:1.19},{&quot;2026-07-28&quot;:1.19},{&quot;2026-07-29&quot;:1.19},{&quot;2026-07-30&quot;:1.21},{&quot;2026-07-31&quot;:1.19},{&quot;2026-08-01&quot;:1.19},{&quot;2026-08-02&quot;:1.19},{&quot;2026-08-03&quot;:1.19},{&quot;2026-08-04&quot;:1.18},{&quot;2026-08-05&quot;:1.18},{&quot;2026-08-07&quot;:1.19},{&quot;2026-08-08&quot;:1.16},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.16},{&quot;2026-08-11&quot;:1.16},{&quot;2026-08-12&quot;:1.15},{&quot;2026-08-13&quot;:1.13},{&quot;2026-08-14&quot;:1.11},{&quot;2026-08-15&quot;:0.74},{&quot;2026-08-16&quot;:0.74},{&quot;2026-08-17&quot;:0.74},{&quot;2026-08-18&quot;:0.74},{&quot;2026-08-19&quot;:0.73},{&quot;2026-08-20&quot;:0.73},{&quot;2026-08-21&quot;:0.72},{&quot;2026-08-22&quot;:0.69},{&quot;2026-08-23&quot;:0.67},{&quot;2026-08-24&quot;:0.67},{&quot;2026-08-25&quot;:0.67},{&quot;2026-08-26&quot;:0.67},{&quot;2026-08-27&quot;:0.66},{&quot;2026-08-28&quot;:0.67},{&quot;2026-08-29&quot;:0.67},{&quot;2026-08-30&quot;:0.66},{&quot;2026-08-31&quot;:0.64},{&quot;2026-09-01&quot;:0.63},{&quot;2026-09-02&quot;:0.63},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.63},{&quot;2026-09-05&quot;:0.63},{&quot;2026-09-06&quot;:0.63},{&quot;2026-09-07&quot;:0.63},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.63},{&quot;2026-09-10&quot;:0.65},{&quot;2026-09-11&quot;:0.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82986"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dwarven Recruiter
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dwarf
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $7.52
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dwarven Recruiter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/d/5d7fc253-55a3-4d56-bac4-4dbc1bcf255b.jpg?1783915149" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Dwarven Recruiter
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Dwarf</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dwarven Recruiter" src="https://cards.scryfall.io/large/front/5/d/5d7fc253-55a3-4d56-bac4-4dbc1bcf255b.jpg?1783915149" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $7.52
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$5.50</span>
              <span class="text-xs text-grey-text">Credit: $7.15</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.05},{&quot;2026-06-16&quot;:1.07},{&quot;2026-06-17&quot;:1.07},{&quot;2026-06-18&quot;:1.11},{&quot;2026-06-19&quot;:1.11},{&quot;2026-06-20&quot;:1.09},{&quot;2026-06-21&quot;:1.09},{&quot;2026-06-22&quot;:1.1},{&quot;2026-06-23&quot;:1.1},{&quot;2026-06-24&quot;:1.1},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.09},{&quot;2026-06-27&quot;:1.09},{&quot;2026-06-28&quot;:1.08},{&quot;2026-06-29&quot;:1.08},{&quot;2026-06-30&quot;:1.08},{&quot;2026-07-01&quot;:1.08},{&quot;2026-07-02&quot;:1.08},{&quot;2026-07-03&quot;:1.09},{&quot;2026-07-04&quot;:1.09},{&quot;2026-07-05&quot;:1.09},{&quot;2026-07-06&quot;:1.12},{&quot;2026-07-07&quot;:1.13},{&quot;2026-07-08&quot;:1.16},{&quot;2026-07-09&quot;:1.14},{&quot;2026-07-10&quot;:1.21},{&quot;2026-07-11&quot;:1.16},{&quot;2026-07-12&quot;:1.16},{&quot;2026-07-13&quot;:1.19},{&quot;2026-07-14&quot;:1.23},{&quot;2026-07-15&quot;:1.23},{&quot;2026-07-16&quot;:1.2},{&quot;2026-07-17&quot;:2.05},{&quot;2026-07-18&quot;:2.99},{&quot;2026-07-19&quot;:5.36},{&quot;2026-07-20&quot;:7.08},{&quot;2026-07-21&quot;:7.43},{&quot;2026-07-22&quot;:7.31},{&quot;2026-07-23&quot;:6.8},{&quot;2026-07-24&quot;:7.15},{&quot;2026-07-25&quot;:6.85},{&quot;2026-07-26&quot;:7.39},{&quot;2026-07-27&quot;:6.9},{&quot;2026-07-28&quot;:6.77},{&quot;2026-07-29&quot;:6.81},{&quot;2026-07-30&quot;:6.81},{&quot;2026-07-31&quot;:6.39},{&quot;2026-08-01&quot;:6.35},{&quot;2026-08-02&quot;:5.91},{&quot;2026-08-03&quot;:6.06},{&quot;2026-08-04&quot;:5.82},{&quot;2026-08-05&quot;:5.85},{&quot;2026-08-07&quot;:6.22},{&quot;2026-08-08&quot;:6.0},{&quot;2026-08-09&quot;:5.92},{&quot;2026-08-10&quot;:6.04},{&quot;2026-08-11&quot;:6.45},{&quot;2026-08-12&quot;:7.12},{&quot;2026-08-13&quot;:7.13},{&quot;2026-08-14&quot;:7.05},{&quot;2026-08-15&quot;:6.55},{&quot;2026-08-16&quot;:6.73},{&quot;2026-08-17&quot;:6.5},{&quot;2026-08-18&quot;:6.06},{&quot;2026-08-19&quot;:6.59},{&quot;2026-08-20&quot;:7.02},{&quot;2026-08-21&quot;:7.3},{&quot;2026-08-22&quot;:7.35},{&quot;2026-08-23&quot;:7.41},{&quot;2026-08-24&quot;:7.49},{&quot;2026-08-25&quot;:7.36},{&quot;2026-08-26&quot;:7.49},{&quot;2026-08-27&quot;:7.64},{&quot;2026-08-28&quot;:7.58},{&quot;2026-08-29&quot;:7.58},{&quot;2026-08-30&quot;:7.74},{&quot;2026-08-31&quot;:7.44},{&quot;2026-09-01&quot;:7.38},{&quot;2026-09-02&quot;:7.51},{&quot;2026-09-03&quot;:7.49},{&quot;2026-09-04&quot;:7.54},{&quot;2026-09-05&quot;:7.52},{&quot;2026-09-06&quot;:7.46},{&quot;2026-09-07&quot;:7.23},{&quot;2026-09-08&quot;:7.35},{&quot;2026-09-09&quot;:7.37},{&quot;2026-09-10&quot;:7.49},{&quot;2026-09-11&quot;:7.52}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="80735"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Chain of Smog
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.84
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chain of Smog" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a56d9468-9d33-48e3-b41c-942653669b1a.jpg?1783921151" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Chain of Smog
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Chain of Smog" src="https://cards.scryfall.io/large/front/a/5/a56d9468-9d33-48e3-b41c-942653669b1a.jpg?1783921151" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $6.84
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.50</span>
              <span class="text-xs text-grey-text">Credit: $4.55</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.31},{&quot;2026-06-14&quot;:8.47},{&quot;2026-06-15&quot;:8.42},{&quot;2026-06-16&quot;:8.42},{&quot;2026-06-17&quot;:8.48},{&quot;2026-06-18&quot;:8.33},{&quot;2026-06-19&quot;:8.35},{&quot;2026-06-20&quot;:8.5},{&quot;2026-06-21&quot;:8.69},{&quot;2026-06-22&quot;:8.47},{&quot;2026-06-23&quot;:8.47},{&quot;2026-06-24&quot;:8.31},{&quot;2026-06-25&quot;:8.28},{&quot;2026-06-26&quot;:8.31},{&quot;2026-06-27&quot;:8.42},{&quot;2026-06-28&quot;:8.38},{&quot;2026-06-29&quot;:7.97},{&quot;2026-06-30&quot;:8.1},{&quot;2026-07-01&quot;:8.04},{&quot;2026-07-02&quot;:8.11},{&quot;2026-07-03&quot;:7.95},{&quot;2026-07-04&quot;:7.15},{&quot;2026-07-05&quot;:7.12},{&quot;2026-07-06&quot;:7.16},{&quot;2026-07-07&quot;:7.57},{&quot;2026-07-08&quot;:8.16},{&quot;2026-07-09&quot;:8.22},{&quot;2026-07-10&quot;:8.3},{&quot;2026-07-11&quot;:8.57},{&quot;2026-07-12&quot;:8.61},{&quot;2026-07-13&quot;:8.6},{&quot;2026-07-14&quot;:8.78},{&quot;2026-07-15&quot;:9.02},{&quot;2026-07-16&quot;:9.02},{&quot;2026-07-17&quot;:8.93},{&quot;2026-07-18&quot;:8.79},{&quot;2026-07-19&quot;:8.76},{&quot;2026-07-20&quot;:8.54},{&quot;2026-07-21&quot;:8.26},{&quot;2026-07-22&quot;:8.26},{&quot;2026-07-23&quot;:8.21},{&quot;2026-07-24&quot;:8.24},{&quot;2026-07-25&quot;:8.14},{&quot;2026-07-26&quot;:8.16},{&quot;2026-07-27&quot;:7.97},{&quot;2026-07-28&quot;:8.03},{&quot;2026-07-29&quot;:8.08},{&quot;2026-07-30&quot;:8.14},{&quot;2026-07-31&quot;:7.86},{&quot;2026-08-01&quot;:7.77},{&quot;2026-08-02&quot;:7.52},{&quot;2026-08-03&quot;:7.63},{&quot;2026-08-04&quot;:7.44},{&quot;2026-08-05&quot;:7.51},{&quot;2026-08-07&quot;:6.89},{&quot;2026-08-08&quot;:6.71},{&quot;2026-08-09&quot;:6.67},{&quot;2026-08-10&quot;:6.56},{&quot;2026-08-11&quot;:6.56},{&quot;2026-08-12&quot;:6.32},{&quot;2026-08-13&quot;:6.3},{&quot;2026-08-14&quot;:5.99},{&quot;2026-08-15&quot;:5.83},{&quot;2026-08-16&quot;:5.89},{&quot;2026-08-17&quot;:5.95},{&quot;2026-08-18&quot;:5.95},{&quot;2026-08-19&quot;:6.05},{&quot;2026-08-20&quot;:5.93},{&quot;2026-08-21&quot;:6.22},{&quot;2026-08-22&quot;:6.48},{&quot;2026-08-23&quot;:6.58},{&quot;2026-08-24&quot;:6.53},{&quot;2026-08-25&quot;:6.56},{&quot;2026-08-26&quot;:6.76},{&quot;2026-08-27&quot;:6.72},{&quot;2026-08-28&quot;:6.46},{&quot;2026-08-29&quot;:6.46},{&quot;2026-08-30&quot;:6.41},{&quot;2026-08-31&quot;:6.46},{&quot;2026-09-01&quot;:6.39},{&quot;2026-09-02&quot;:6.52},{&quot;2026-09-03&quot;:6.45},{&quot;2026-09-04&quot;:6.5},{&quot;2026-09-05&quot;:6.54},{&quot;2026-09-06&quot;:6.7},{&quot;2026-09-07&quot;:6.66},{&quot;2026-09-08&quot;:6.77},{&quot;2026-09-09&quot;:6.61},{&quot;2026-09-10&quot;:6.83},{&quot;2026-09-11&quot;:6.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74152"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Rebuff the Wicked
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.02
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rebuff the Wicked" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85232cbf-d907-4eb6-8f42-a451969213ca.jpg?1783915160" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Rebuff the Wicked
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rebuff the Wicked" src="https://cards.scryfall.io/large/front/8/5/85232cbf-d907-4eb6-8f42-a451969213ca.jpg?1783915160" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $6.02
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.50</span>
              <span class="text-xs text-grey-text">Credit: $4.55</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.35},{&quot;2026-06-10&quot;:6.48},{&quot;2026-06-11&quot;:6.25},{&quot;2026-06-12&quot;:6.26},{&quot;2026-06-13&quot;:6.35},{&quot;2026-06-14&quot;:6.36},{&quot;2026-06-15&quot;:6.55},{&quot;2026-06-16&quot;:6.49},{&quot;2026-06-17&quot;:6.55},{&quot;2026-06-18&quot;:6.79},{&quot;2026-06-19&quot;:7.1},{&quot;2026-06-20&quot;:7.1},{&quot;2026-06-21&quot;:7.2},{&quot;2026-06-22&quot;:7.23},{&quot;2026-06-24&quot;:6.93},{&quot;2026-06-25&quot;:7.0},{&quot;2026-06-26&quot;:7.0},{&quot;2026-06-27&quot;:7.0},{&quot;2026-06-28&quot;:7.0},{&quot;2026-06-29&quot;:7.16},{&quot;2026-06-30&quot;:7.24},{&quot;2026-07-01&quot;:7.23},{&quot;2026-07-02&quot;:7.23},{&quot;2026-07-03&quot;:7.23},{&quot;2026-07-04&quot;:7.26},{&quot;2026-07-05&quot;:7.23},{&quot;2026-07-06&quot;:7.24},{&quot;2026-07-07&quot;:7.26},{&quot;2026-07-08&quot;:7.27},{&quot;2026-07-09&quot;:7.16},{&quot;2026-07-10&quot;:7.21},{&quot;2026-07-11&quot;:7.1},{&quot;2026-07-12&quot;:6.96},{&quot;2026-07-13&quot;:6.96},{&quot;2026-07-14&quot;:6.96},{&quot;2026-07-15&quot;:7.1},{&quot;2026-07-16&quot;:7.1},{&quot;2026-07-17&quot;:6.89},{&quot;2026-07-18&quot;:6.78},{&quot;2026-07-19&quot;:6.74},{&quot;2026-07-20&quot;:6.96},{&quot;2026-07-21&quot;:7.17},{&quot;2026-07-23&quot;:7.3},{&quot;2026-07-25&quot;:7.78},{&quot;2026-07-26&quot;:7.89},{&quot;2026-07-27&quot;:7.67},{&quot;2026-07-29&quot;:8.22},{&quot;2026-07-30&quot;:8.22},{&quot;2026-07-31&quot;:7.98},{&quot;2026-08-01&quot;:7.17},{&quot;2026-08-02&quot;:6.87},{&quot;2026-08-03&quot;:6.76},{&quot;2026-08-04&quot;:6.63},{&quot;2026-08-05&quot;:6.38},{&quot;2026-08-07&quot;:5.86},{&quot;2026-08-08&quot;:5.29},{&quot;2026-08-09&quot;:5.26},{&quot;2026-08-10&quot;:5.22},{&quot;2026-08-11&quot;:5.28},{&quot;2026-08-12&quot;:5.67},{&quot;2026-08-13&quot;:5.21},{&quot;2026-08-14&quot;:5.39},{&quot;2026-08-15&quot;:6.18},{&quot;2026-08-16&quot;:6.12},{&quot;2026-08-17&quot;:6.01},{&quot;2026-08-18&quot;:5.64},{&quot;2026-08-19&quot;:5.76},{&quot;2026-08-20&quot;:5.76},{&quot;2026-08-21&quot;:5.73},{&quot;2026-08-22&quot;:5.62},{&quot;2026-08-23&quot;:5.85},{&quot;2026-08-24&quot;:6.24},{&quot;2026-08-25&quot;:6.24},{&quot;2026-08-26&quot;:6.22},{&quot;2026-08-27&quot;:6.22},{&quot;2026-08-28&quot;:6.07},{&quot;2026-08-29&quot;:6.07},{&quot;2026-08-30&quot;:6.21},{&quot;2026-08-31&quot;:6.07},{&quot;2026-09-01&quot;:6.07},{&quot;2026-09-02&quot;:6.1},{&quot;2026-09-03&quot;:6.09},{&quot;2026-09-04&quot;:6.09},{&quot;2026-09-05&quot;:6.11},{&quot;2026-09-06&quot;:5.99},{&quot;2026-09-07&quot;:6.11},{&quot;2026-09-08&quot;:6.13},{&quot;2026-09-09&quot;:6.23},{&quot;2026-09-10&quot;:6.22},{&quot;2026-09-11&quot;:6.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78143"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Cabal Therapy
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.90
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cabal Therapy" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/a/2afc9aa7-eaf2-453d-942c-23bf216a1844.jpg?1783932227" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Cabal Therapy
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cabal Therapy" src="https://cards.scryfall.io/large/front/2/a/2afc9aa7-eaf2-453d-942c-23bf216a1844.jpg?1783932227" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.90
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.80</span>
              <span class="text-xs text-grey-text">Credit: $4.94</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:7.36},{&quot;2026-06-14&quot;:7.35},{&quot;2026-06-15&quot;:7.35},{&quot;2026-06-16&quot;:7.35},{&quot;2026-06-17&quot;:7.2},{&quot;2026-06-18&quot;:7.2},{&quot;2026-06-19&quot;:7.2},{&quot;2026-06-20&quot;:7.2},{&quot;2026-06-21&quot;:7.2},{&quot;2026-06-22&quot;:7.2},{&quot;2026-06-23&quot;:7.2},{&quot;2026-06-24&quot;:7.2},{&quot;2026-06-25&quot;:7.2},{&quot;2026-06-26&quot;:7.2},{&quot;2026-06-27&quot;:7.2},{&quot;2026-06-28&quot;:7.12},{&quot;2026-06-29&quot;:7.12},{&quot;2026-06-30&quot;:7.12},{&quot;2026-07-01&quot;:7.12},{&quot;2026-07-02&quot;:7.12},{&quot;2026-07-03&quot;:7.12},{&quot;2026-07-04&quot;:7.01},{&quot;2026-07-05&quot;:7.01},{&quot;2026-07-06&quot;:7.01},{&quot;2026-07-07&quot;:6.99},{&quot;2026-07-08&quot;:6.99},{&quot;2026-07-09&quot;:6.99},{&quot;2026-07-10&quot;:6.99},{&quot;2026-07-11&quot;:6.99},{&quot;2026-07-12&quot;:6.95},{&quot;2026-07-13&quot;:6.95},{&quot;2026-07-14&quot;:6.95},{&quot;2026-07-15&quot;:7.0},{&quot;2026-07-16&quot;:7.0},{&quot;2026-07-17&quot;:6.92},{&quot;2026-07-18&quot;:6.9},{&quot;2026-07-19&quot;:6.9},{&quot;2026-07-20&quot;:6.9},{&quot;2026-07-21&quot;:6.64},{&quot;2026-07-22&quot;:6.64},{&quot;2026-07-23&quot;:6.64},{&quot;2026-07-24&quot;:6.64},{&quot;2026-07-25&quot;:6.65},{&quot;2026-07-26&quot;:6.58},{&quot;2026-07-27&quot;:6.58},{&quot;2026-07-28&quot;:6.53},{&quot;2026-07-29&quot;:6.56},{&quot;2026-07-30&quot;:6.56},{&quot;2026-07-31&quot;:6.59},{&quot;2026-08-01&quot;:6.55},{&quot;2026-08-02&quot;:6.55},{&quot;2026-08-03&quot;:6.55},{&quot;2026-08-04&quot;:6.55},{&quot;2026-08-05&quot;:6.55},{&quot;2026-08-07&quot;:6.55},{&quot;2026-08-08&quot;:6.58},{&quot;2026-08-09&quot;:6.58},{&quot;2026-08-10&quot;:6.58},{&quot;2026-08-11&quot;:6.58},{&quot;2026-08-12&quot;:6.55},{&quot;2026-08-13&quot;:6.55},{&quot;2026-08-14&quot;:6.55},{&quot;2026-08-15&quot;:6.55},{&quot;2026-08-16&quot;:6.55},{&quot;2026-08-17&quot;:6.54},{&quot;2026-08-18&quot;:6.3},{&quot;2026-08-19&quot;:6.3},{&quot;2026-08-20&quot;:6.19},{&quot;2026-08-21&quot;:6.02},{&quot;2026-08-22&quot;:6.02},{&quot;2026-08-23&quot;:6.02},{&quot;2026-08-24&quot;:6.02},{&quot;2026-08-25&quot;:6.02},{&quot;2026-08-26&quot;:5.84},{&quot;2026-08-27&quot;:6.02},{&quot;2026-08-28&quot;:6.02},{&quot;2026-08-29&quot;:6.02},{&quot;2026-08-30&quot;:6.05},{&quot;2026-08-31&quot;:6.05},{&quot;2026-09-01&quot;:6.08},{&quot;2026-09-02&quot;:6.08},{&quot;2026-09-03&quot;:6.08},{&quot;2026-09-04&quot;:6.08},{&quot;2026-09-05&quot;:6.08},{&quot;2026-09-06&quot;:5.94},{&quot;2026-09-07&quot;:5.94},{&quot;2026-09-08&quot;:5.95},{&quot;2026-09-09&quot;:6.0},{&quot;2026-09-10&quot;:5.9},{&quot;2026-09-11&quot;:5.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53259"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Goblin Recruiter
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Goblin
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.78
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Goblin Recruiter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/3/136d69b2-92c1-4f0c-8b1d-1da3f9a596dd.jpg?1783910561" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Goblin Recruiter
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Goblin</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Goblin Recruiter" src="https://cards.scryfall.io/large/front/1/3/136d69b2-92c1-4f0c-8b1d-1da3f9a596dd.jpg?1783910561" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.78
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  4%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $31.36
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.20</span>
              <span class="text-xs text-grey-text">Credit: $4.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:25.77},{&quot;2026-06-13&quot;:25.77},{&quot;2026-06-14&quot;:25.77},{&quot;2026-06-15&quot;:25.77},{&quot;2026-06-16&quot;:25.77},{&quot;2026-06-17&quot;:25.77},{&quot;2026-06-18&quot;:25.77},{&quot;2026-06-19&quot;:25.77},{&quot;2026-06-20&quot;:25.77},{&quot;2026-06-21&quot;:25.77},{&quot;2026-06-22&quot;:25.77},{&quot;2026-06-23&quot;:25.77},{&quot;2026-06-24&quot;:25.77},{&quot;2026-06-25&quot;:25.77},{&quot;2026-06-26&quot;:26.82},{&quot;2026-06-27&quot;:26.82},{&quot;2026-06-28&quot;:26.82},{&quot;2026-06-29&quot;:26.82},{&quot;2026-06-30&quot;:26.82},{&quot;2026-07-01&quot;:26.82},{&quot;2026-07-02&quot;:26.82},{&quot;2026-07-03&quot;:26.82},{&quot;2026-07-04&quot;:27.98},{&quot;2026-07-05&quot;:27.98},{&quot;2026-07-06&quot;:27.98},{&quot;2026-07-07&quot;:27.98},{&quot;2026-07-08&quot;:27.98},{&quot;2026-07-09&quot;:27.98},{&quot;2026-07-10&quot;:27.98},{&quot;2026-07-11&quot;:27.98},{&quot;2026-07-12&quot;:27.98},{&quot;2026-07-13&quot;:27.98},{&quot;2026-07-14&quot;:27.98},{&quot;2026-07-15&quot;:27.98},{&quot;2026-07-16&quot;:27.98},{&quot;2026-07-17&quot;:27.98},{&quot;2026-07-18&quot;:27.98},{&quot;2026-07-19&quot;:27.98},{&quot;2026-07-20&quot;:27.98},{&quot;2026-07-21&quot;:27.98},{&quot;2026-07-23&quot;:27.98},{&quot;2026-07-24&quot;:27.98},{&quot;2026-07-25&quot;:28.86},{&quot;2026-07-26&quot;:28.86},{&quot;2026-07-27&quot;:28.86},{&quot;2026-07-28&quot;:28.86},{&quot;2026-07-29&quot;:28.86},{&quot;2026-07-30&quot;:28.86},{&quot;2026-07-31&quot;:28.86},{&quot;2026-08-01&quot;:28.86},{&quot;2026-08-02&quot;:28.86},{&quot;2026-08-03&quot;:28.86},{&quot;2026-08-04&quot;:28.86},{&quot;2026-08-05&quot;:29.52},{&quot;2026-08-07&quot;:29.52},{&quot;2026-08-08&quot;:29.52},{&quot;2026-08-09&quot;:29.52},{&quot;2026-08-10&quot;:29.52},{&quot;2026-08-11&quot;:29.52},{&quot;2026-08-12&quot;:29.52},{&quot;2026-08-13&quot;:29.52},{&quot;2026-08-14&quot;:29.52},{&quot;2026-08-15&quot;:29.52},{&quot;2026-08-16&quot;:29.52},{&quot;2026-08-17&quot;:29.52},{&quot;2026-08-18&quot;:29.52},{&quot;2026-08-19&quot;:29.52},{&quot;2026-08-20&quot;:29.52},{&quot;2026-08-21&quot;:29.52},{&quot;2026-08-22&quot;:29.52},{&quot;2026-08-23&quot;:29.52},{&quot;2026-08-24&quot;:29.52},{&quot;2026-08-25&quot;:29.52},{&quot;2026-08-26&quot;:29.52},{&quot;2026-08-27&quot;:29.52},{&quot;2026-08-28&quot;:29.82},{&quot;2026-08-29&quot;:29.82},{&quot;2026-08-30&quot;:29.82},{&quot;2026-08-31&quot;:29.82},{&quot;2026-09-01&quot;:30.19},{&quot;2026-09-02&quot;:30.19},{&quot;2026-09-03&quot;:30.19},{&quot;2026-09-04&quot;:30.84},{&quot;2026-09-05&quot;:30.84},{&quot;2026-09-06&quot;:30.84},{&quot;2026-09-07&quot;:31.36},{&quot;2026-09-08&quot;:31.36},{&quot;2026-09-09&quot;:31.36},{&quot;2026-09-10&quot;:31.36},{&quot;2026-09-11&quot;:31.36}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:7.48},{&quot;2026-06-13&quot;:7.28},{&quot;2026-06-14&quot;:7.28},{&quot;2026-06-15&quot;:7.11},{&quot;2026-06-16&quot;:6.91},{&quot;2026-06-17&quot;:7.04},{&quot;2026-06-18&quot;:7.04},{&quot;2026-06-19&quot;:7.16},{&quot;2026-06-20&quot;:7.15},{&quot;2026-06-21&quot;:7.15},{&quot;2026-06-22&quot;:7.15},{&quot;2026-06-23&quot;:7.14},{&quot;2026-06-24&quot;:7.14},{&quot;2026-06-25&quot;:7.14},{&quot;2026-06-26&quot;:6.84},{&quot;2026-06-27&quot;:6.84},{&quot;2026-06-28&quot;:6.88},{&quot;2026-06-29&quot;:6.88},{&quot;2026-06-30&quot;:6.88},{&quot;2026-07-01&quot;:6.88},{&quot;2026-07-02&quot;:6.88},{&quot;2026-07-03&quot;:6.89},{&quot;2026-07-04&quot;:6.8},{&quot;2026-07-05&quot;:6.8},{&quot;2026-07-06&quot;:6.47},{&quot;2026-07-07&quot;:6.47},{&quot;2026-07-08&quot;:6.6},{&quot;2026-07-09&quot;:6.6},{&quot;2026-07-10&quot;:6.6},{&quot;2026-07-11&quot;:6.58},{&quot;2026-07-12&quot;:6.58},{&quot;2026-07-13&quot;:6.65},{&quot;2026-07-14&quot;:6.65},{&quot;2026-07-15&quot;:6.69},{&quot;2026-07-16&quot;:6.64},{&quot;2026-07-17&quot;:6.57},{&quot;2026-07-18&quot;:6.57},{&quot;2026-07-19&quot;:6.48},{&quot;2026-07-20&quot;:6.66},{&quot;2026-07-21&quot;:6.76},{&quot;2026-07-23&quot;:6.66},{&quot;2026-07-24&quot;:6.66},{&quot;2026-07-25&quot;:6.63},{&quot;2026-07-26&quot;:6.76},{&quot;2026-07-27&quot;:6.67},{&quot;2026-07-28&quot;:6.67},{&quot;2026-07-29&quot;:6.56},{&quot;2026-07-30&quot;:6.37},{&quot;2026-07-31&quot;:6.2},{&quot;2026-08-01&quot;:6.2},{&quot;2026-08-02&quot;:6.19},{&quot;2026-08-03&quot;:5.97},{&quot;2026-08-04&quot;:5.77},{&quot;2026-08-05&quot;:5.66},{&quot;2026-08-07&quot;:5.26},{&quot;2026-08-08&quot;:5.27},{&quot;2026-08-09&quot;:5.27},{&quot;2026-08-10&quot;:5.26},{&quot;2026-08-11&quot;:5.35},{&quot;2026-08-12&quot;:5.29},{&quot;2026-08-13&quot;:5.15},{&quot;2026-08-14&quot;:5.05},{&quot;2026-08-15&quot;:4.93},{&quot;2026-08-16&quot;:4.75},{&quot;2026-08-17&quot;:4.88},{&quot;2026-08-18&quot;:4.64},{&quot;2026-08-19&quot;:4.9},{&quot;2026-08-20&quot;:4.9},{&quot;2026-08-21&quot;:5.08},{&quot;2026-08-22&quot;:5.43},{&quot;2026-08-23&quot;:5.25},{&quot;2026-08-24&quot;:5.32},{&quot;2026-08-25&quot;:5.27},{&quot;2026-08-26&quot;:5.28},{&quot;2026-08-27&quot;:5.21},{&quot;2026-08-28&quot;:5.26},{&quot;2026-08-29&quot;:5.26},{&quot;2026-08-30&quot;:5.17},{&quot;2026-08-31&quot;:5.1},{&quot;2026-09-01&quot;:5.03},{&quot;2026-09-02&quot;:5.56},{&quot;2026-09-03&quot;:5.52},{&quot;2026-09-04&quot;:5.6},{&quot;2026-09-05&quot;:5.57},{&quot;2026-09-06&quot;:5.66},{&quot;2026-09-07&quot;:5.69},{&quot;2026-09-08&quot;:5.83},{&quot;2026-09-09&quot;:5.9},{&quot;2026-09-10&quot;:5.79},{&quot;2026-09-11&quot;:5.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74008"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Ghostly Prison
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.58
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ghostly Prison" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/4/f4cfcecf-621f-4664-9b1f-65ce4f0f8ab0.jpg?1783910470" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Ghostly Prison
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ghostly Prison" src="https://cards.scryfall.io/large/front/f/4/f4cfcecf-621f-4664-9b1f-65ce4f0f8ab0.jpg?1783910470" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.58
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$4.00</span>
              <span class="text-xs text-grey-text">Credit: $5.20</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.06},{&quot;2026-06-14&quot;:5.06},{&quot;2026-06-15&quot;:5.06},{&quot;2026-06-16&quot;:5.12},{&quot;2026-06-17&quot;:5.14},{&quot;2026-06-18&quot;:5.1},{&quot;2026-06-19&quot;:5.16},{&quot;2026-06-20&quot;:5.23},{&quot;2026-06-21&quot;:5.24},{&quot;2026-06-22&quot;:5.24},{&quot;2026-06-23&quot;:5.28},{&quot;2026-06-24&quot;:5.28},{&quot;2026-06-25&quot;:5.45},{&quot;2026-06-26&quot;:5.48},{&quot;2026-06-27&quot;:5.47},{&quot;2026-06-28&quot;:5.47},{&quot;2026-06-29&quot;:5.4},{&quot;2026-06-30&quot;:5.4},{&quot;2026-07-01&quot;:5.35},{&quot;2026-07-02&quot;:5.33},{&quot;2026-07-03&quot;:5.33},{&quot;2026-07-04&quot;:5.33},{&quot;2026-07-05&quot;:5.31},{&quot;2026-07-06&quot;:5.3},{&quot;2026-07-07&quot;:5.3},{&quot;2026-07-08&quot;:5.3},{&quot;2026-07-09&quot;:5.3},{&quot;2026-07-10&quot;:5.33},{&quot;2026-07-11&quot;:5.38},{&quot;2026-07-12&quot;:5.43},{&quot;2026-07-13&quot;:5.54},{&quot;2026-07-14&quot;:5.52},{&quot;2026-07-15&quot;:5.52},{&quot;2026-07-16&quot;:5.55},{&quot;2026-07-17&quot;:5.55},{&quot;2026-07-18&quot;:5.72},{&quot;2026-07-19&quot;:5.67},{&quot;2026-07-20&quot;:5.71},{&quot;2026-07-21&quot;:5.63},{&quot;2026-07-22&quot;:5.59},{&quot;2026-07-23&quot;:5.51},{&quot;2026-07-24&quot;:5.54},{&quot;2026-07-25&quot;:5.52},{&quot;2026-07-26&quot;:5.5},{&quot;2026-07-27&quot;:5.4},{&quot;2026-07-28&quot;:5.4},{&quot;2026-07-29&quot;:5.34},{&quot;2026-07-30&quot;:5.31},{&quot;2026-07-31&quot;:5.23},{&quot;2026-08-01&quot;:5.15},{&quot;2026-08-02&quot;:5.14},{&quot;2026-08-03&quot;:5.14},{&quot;2026-08-04&quot;:5.14},{&quot;2026-08-05&quot;:5.14},{&quot;2026-08-07&quot;:5.04},{&quot;2026-08-08&quot;:5.15},{&quot;2026-08-09&quot;:4.99},{&quot;2026-08-10&quot;:5.02},{&quot;2026-08-11&quot;:5.08},{&quot;2026-08-12&quot;:5.13},{&quot;2026-08-13&quot;:5.01},{&quot;2026-08-14&quot;:4.75},{&quot;2026-08-15&quot;:4.86},{&quot;2026-08-16&quot;:4.69},{&quot;2026-08-17&quot;:4.67},{&quot;2026-08-18&quot;:4.58},{&quot;2026-08-19&quot;:4.49},{&quot;2026-08-20&quot;:4.55},{&quot;2026-08-21&quot;:4.57},{&quot;2026-08-22&quot;:4.57},{&quot;2026-08-23&quot;:4.6},{&quot;2026-08-24&quot;:4.64},{&quot;2026-08-25&quot;:4.69},{&quot;2026-08-26&quot;:4.85},{&quot;2026-08-27&quot;:4.89},{&quot;2026-08-28&quot;:4.9},{&quot;2026-08-29&quot;:4.9},{&quot;2026-08-30&quot;:5.06},{&quot;2026-08-31&quot;:5.08},{&quot;2026-09-01&quot;:5.17},{&quot;2026-09-02&quot;:5.16},{&quot;2026-09-03&quot;:5.21},{&quot;2026-09-04&quot;:5.3},{&quot;2026-09-05&quot;:5.3},{&quot;2026-09-06&quot;:5.32},{&quot;2026-09-07&quot;:5.34},{&quot;2026-09-08&quot;:5.34},{&quot;2026-09-09&quot;:5.45},{&quot;2026-09-10&quot;:5.48},{&quot;2026-09-11&quot;:5.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79562"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Windfall
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            3 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.38
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Windfall" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/7/77f679d0-dcea-4e31-bbc9-26a8fb2e2159.jpg?1783910209" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Windfall
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Windfall" src="https://cards.scryfall.io/large/front/7/7/77f679d0-dcea-4e31-bbc9-26a8fb2e2159.jpg?1783910209" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            3
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.38
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.40</span>
              <span class="text-xs text-grey-text">Credit: $4.42</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:4.67},{&quot;2026-06-13&quot;:4.75},{&quot;2026-06-14&quot;:4.83},{&quot;2026-06-15&quot;:4.8},{&quot;2026-06-16&quot;:4.92},{&quot;2026-06-17&quot;:4.94},{&quot;2026-06-18&quot;:4.94},{&quot;2026-06-19&quot;:4.95},{&quot;2026-06-20&quot;:4.95},{&quot;2026-06-21&quot;:4.94},{&quot;2026-06-22&quot;:4.99},{&quot;2026-06-23&quot;:4.99},{&quot;2026-06-24&quot;:5.05},{&quot;2026-06-25&quot;:5.05},{&quot;2026-06-26&quot;:5.16},{&quot;2026-06-27&quot;:5.16},{&quot;2026-06-28&quot;:5.14},{&quot;2026-06-29&quot;:5.08},{&quot;2026-06-30&quot;:4.98},{&quot;2026-07-01&quot;:5.08},{&quot;2026-07-02&quot;:5.01},{&quot;2026-07-03&quot;:5.05},{&quot;2026-07-04&quot;:5.09},{&quot;2026-07-05&quot;:5.09},{&quot;2026-07-06&quot;:5.09},{&quot;2026-07-07&quot;:5.07},{&quot;2026-07-08&quot;:4.87},{&quot;2026-07-09&quot;:4.93},{&quot;2026-07-10&quot;:4.94},{&quot;2026-07-11&quot;:4.94},{&quot;2026-07-12&quot;:4.97},{&quot;2026-07-13&quot;:5.1},{&quot;2026-07-14&quot;:5.1},{&quot;2026-07-15&quot;:4.98},{&quot;2026-07-16&quot;:4.98},{&quot;2026-07-17&quot;:5.01},{&quot;2026-07-18&quot;:5.01},{&quot;2026-07-19&quot;:5.0},{&quot;2026-07-20&quot;:4.92},{&quot;2026-07-21&quot;:4.82},{&quot;2026-07-23&quot;:4.79},{&quot;2026-07-24&quot;:4.83},{&quot;2026-07-25&quot;:4.73},{&quot;2026-07-26&quot;:4.73},{&quot;2026-07-27&quot;:4.79},{&quot;2026-07-28&quot;:4.79},{&quot;2026-07-29&quot;:4.73},{&quot;2026-07-30&quot;:4.73},{&quot;2026-07-31&quot;:4.78},{&quot;2026-08-01&quot;:4.81},{&quot;2026-08-02&quot;:4.8},{&quot;2026-08-03&quot;:4.95},{&quot;2026-08-04&quot;:4.9},{&quot;2026-08-05&quot;:4.78},{&quot;2026-08-07&quot;:4.75},{&quot;2026-08-08&quot;:4.82},{&quot;2026-08-09&quot;:4.89},{&quot;2026-08-10&quot;:5.06},{&quot;2026-08-11&quot;:5.05},{&quot;2026-08-12&quot;:5.03},{&quot;2026-08-13&quot;:5.0},{&quot;2026-08-14&quot;:5.0},{&quot;2026-08-15&quot;:4.94},{&quot;2026-08-16&quot;:5.04},{&quot;2026-08-17&quot;:5.13},{&quot;2026-08-18&quot;:5.1},{&quot;2026-08-19&quot;:5.0},{&quot;2026-08-20&quot;:5.0},{&quot;2026-08-21&quot;:5.06},{&quot;2026-08-22&quot;:5.11},{&quot;2026-08-23&quot;:5.03},{&quot;2026-08-24&quot;:5.05},{&quot;2026-08-25&quot;:5.05},{&quot;2026-08-26&quot;:5.05},{&quot;2026-08-27&quot;:5.03},{&quot;2026-08-28&quot;:5.04},{&quot;2026-08-29&quot;:5.04},{&quot;2026-08-30&quot;:5.21},{&quot;2026-08-31&quot;:5.13},{&quot;2026-09-01&quot;:5.23},{&quot;2026-09-02&quot;:5.33},{&quot;2026-09-03&quot;:5.35},{&quot;2026-09-04&quot;:5.34},{&quot;2026-09-05&quot;:5.23},{&quot;2026-09-06&quot;:5.35},{&quot;2026-09-07&quot;:5.31},{&quot;2026-09-08&quot;:5.35},{&quot;2026-09-09&quot;:5.35},{&quot;2026-09-10&quot;:5.36},{&quot;2026-09-11&quot;:5.38}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85578"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Patriar&#39;s Seal
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.36
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Patriar&#39;s Seal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08bf0e79-efb8-4348-9b73-90293ac8f306.jpg?1783909996" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Patriar&#39;s Seal
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Patriar&#39;s Seal" src="https://cards.scryfall.io/large/front/0/8/08bf0e79-efb8-4348-9b73-90293ac8f306.jpg?1783909996" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.36
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.80</span>
              <span class="text-xs text-grey-text">Credit: $4.94</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:4.9},{&quot;2026-06-10&quot;:4.9},{&quot;2026-06-11&quot;:4.76},{&quot;2026-06-12&quot;:4.76},{&quot;2026-06-13&quot;:4.8},{&quot;2026-06-14&quot;:4.89},{&quot;2026-06-15&quot;:4.95},{&quot;2026-06-16&quot;:4.86},{&quot;2026-06-17&quot;:4.85},{&quot;2026-06-18&quot;:4.84},{&quot;2026-06-19&quot;:4.86},{&quot;2026-06-20&quot;:4.86},{&quot;2026-06-21&quot;:4.79},{&quot;2026-06-22&quot;:4.79},{&quot;2026-06-24&quot;:4.99},{&quot;2026-06-25&quot;:5.06},{&quot;2026-06-26&quot;:5.13},{&quot;2026-06-27&quot;:5.13},{&quot;2026-06-28&quot;:5.11},{&quot;2026-06-29&quot;:5.11},{&quot;2026-06-30&quot;:5.08},{&quot;2026-07-01&quot;:5.08},{&quot;2026-07-02&quot;:5.06},{&quot;2026-07-03&quot;:5.06},{&quot;2026-07-04&quot;:5.06},{&quot;2026-07-05&quot;:5.06},{&quot;2026-07-06&quot;:5.22},{&quot;2026-07-07&quot;:5.22},{&quot;2026-07-08&quot;:5.2},{&quot;2026-07-09&quot;:5.2},{&quot;2026-07-10&quot;:5.19},{&quot;2026-07-11&quot;:5.2},{&quot;2026-07-12&quot;:5.2},{&quot;2026-07-13&quot;:5.2},{&quot;2026-07-14&quot;:5.51},{&quot;2026-07-15&quot;:5.51},{&quot;2026-07-16&quot;:5.46},{&quot;2026-07-17&quot;:5.47},{&quot;2026-07-18&quot;:5.5},{&quot;2026-07-19&quot;:5.5},{&quot;2026-07-20&quot;:5.44},{&quot;2026-07-21&quot;:5.44},{&quot;2026-07-23&quot;:5.4},{&quot;2026-07-25&quot;:5.24},{&quot;2026-07-26&quot;:5.24},{&quot;2026-07-27&quot;:5.54},{&quot;2026-07-29&quot;:5.49},{&quot;2026-07-30&quot;:5.49},{&quot;2026-07-31&quot;:5.31},{&quot;2026-08-01&quot;:5.31},{&quot;2026-08-02&quot;:5.29},{&quot;2026-08-03&quot;:5.45},{&quot;2026-08-04&quot;:5.28},{&quot;2026-08-05&quot;:5.17},{&quot;2026-08-07&quot;:5.09},{&quot;2026-08-08&quot;:4.88},{&quot;2026-08-09&quot;:4.64},{&quot;2026-08-10&quot;:4.0},{&quot;2026-08-11&quot;:3.9},{&quot;2026-08-12&quot;:3.59},{&quot;2026-08-13&quot;:3.63},{&quot;2026-08-14&quot;:3.66},{&quot;2026-08-15&quot;:3.61},{&quot;2026-08-16&quot;:3.67},{&quot;2026-08-17&quot;:3.89},{&quot;2026-08-18&quot;:4.16},{&quot;2026-08-19&quot;:4.16},{&quot;2026-08-20&quot;:4.16},{&quot;2026-08-21&quot;:4.14},{&quot;2026-08-22&quot;:4.14},{&quot;2026-08-23&quot;:3.92},{&quot;2026-08-24&quot;:4.18},{&quot;2026-08-25&quot;:4.18},{&quot;2026-08-26&quot;:4.31},{&quot;2026-08-27&quot;:4.31},{&quot;2026-08-28&quot;:4.3},{&quot;2026-08-29&quot;:4.3},{&quot;2026-08-30&quot;:4.44},{&quot;2026-08-31&quot;:4.44},{&quot;2026-09-01&quot;:4.44},{&quot;2026-09-02&quot;:4.78},{&quot;2026-09-03&quot;:4.84},{&quot;2026-09-04&quot;:4.84},{&quot;2026-09-05&quot;:5.28},{&quot;2026-09-06&quot;:5.28},{&quot;2026-09-07&quot;:5.36},{&quot;2026-09-08&quot;:5.36},{&quot;2026-09-09&quot;:5.36},{&quot;2026-09-10&quot;:5.36},{&quot;2026-09-11&quot;:5.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76868"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Beseech the Queen
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.94
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Beseech the Queen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/5/b578ec2d-31d2-4ce0-9fec-4263a4eceabd.jpg?1783929710" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Beseech the Queen
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2b'></i><i class='no-tailwind ms ms-cost ml-0 ms-2b'></i><i class='no-tailwind ms ms-cost ml-0 ms-2b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Beseech the Queen" src="https://cards.scryfall.io/large/front/b/5/b578ec2d-31d2-4ce0-9fec-4263a4eceabd.jpg?1783929710" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.94
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.08},{&quot;2026-06-14&quot;:5.12},{&quot;2026-06-15&quot;:5.27},{&quot;2026-06-16&quot;:5.27},{&quot;2026-06-17&quot;:5.39},{&quot;2026-06-18&quot;:5.3},{&quot;2026-06-19&quot;:5.24},{&quot;2026-06-20&quot;:5.07},{&quot;2026-06-21&quot;:5.03},{&quot;2026-06-22&quot;:5.11},{&quot;2026-06-23&quot;:4.95},{&quot;2026-06-24&quot;:4.99},{&quot;2026-06-25&quot;:4.73},{&quot;2026-06-26&quot;:4.84},{&quot;2026-06-27&quot;:4.89},{&quot;2026-06-28&quot;:4.96},{&quot;2026-06-29&quot;:4.89},{&quot;2026-06-30&quot;:4.87},{&quot;2026-07-01&quot;:4.86},{&quot;2026-07-02&quot;:4.87},{&quot;2026-07-03&quot;:4.78},{&quot;2026-07-04&quot;:4.68},{&quot;2026-07-05&quot;:4.56},{&quot;2026-07-06&quot;:4.41},{&quot;2026-07-07&quot;:4.23},{&quot;2026-07-08&quot;:4.08},{&quot;2026-07-09&quot;:3.94},{&quot;2026-07-10&quot;:3.88},{&quot;2026-07-11&quot;:3.92},{&quot;2026-07-12&quot;:3.87},{&quot;2026-07-13&quot;:3.95},{&quot;2026-07-14&quot;:4.04},{&quot;2026-07-15&quot;:4.16},{&quot;2026-07-16&quot;:4.29},{&quot;2026-07-17&quot;:4.52},{&quot;2026-07-18&quot;:4.61},{&quot;2026-07-19&quot;:4.65},{&quot;2026-07-20&quot;:4.72},{&quot;2026-07-21&quot;:4.73},{&quot;2026-07-22&quot;:4.66},{&quot;2026-07-23&quot;:4.76},{&quot;2026-07-24&quot;:4.76},{&quot;2026-07-25&quot;:4.56},{&quot;2026-07-26&quot;:4.46},{&quot;2026-07-27&quot;:4.71},{&quot;2026-07-28&quot;:4.7},{&quot;2026-07-29&quot;:4.69},{&quot;2026-07-30&quot;:4.68},{&quot;2026-07-31&quot;:4.59},{&quot;2026-08-01&quot;:4.5},{&quot;2026-08-02&quot;:4.47},{&quot;2026-08-03&quot;:4.69},{&quot;2026-08-04&quot;:4.71},{&quot;2026-08-05&quot;:4.62},{&quot;2026-08-07&quot;:4.37},{&quot;2026-08-08&quot;:4.36},{&quot;2026-08-09&quot;:4.41},{&quot;2026-08-10&quot;:4.54},{&quot;2026-08-11&quot;:4.55},{&quot;2026-08-12&quot;:4.67},{&quot;2026-08-13&quot;:4.59},{&quot;2026-08-14&quot;:4.61},{&quot;2026-08-15&quot;:4.6},{&quot;2026-08-16&quot;:4.35},{&quot;2026-08-17&quot;:4.29},{&quot;2026-08-18&quot;:4.34},{&quot;2026-08-19&quot;:4.23},{&quot;2026-08-20&quot;:4.28},{&quot;2026-08-21&quot;:4.27},{&quot;2026-08-22&quot;:4.25},{&quot;2026-08-23&quot;:4.3},{&quot;2026-08-24&quot;:4.3},{&quot;2026-08-25&quot;:4.29},{&quot;2026-08-26&quot;:4.05},{&quot;2026-08-27&quot;:3.93},{&quot;2026-08-28&quot;:3.98},{&quot;2026-08-29&quot;:3.98},{&quot;2026-08-30&quot;:4.13},{&quot;2026-08-31&quot;:4.16},{&quot;2026-09-01&quot;:4.19},{&quot;2026-09-02&quot;:4.32},{&quot;2026-09-03&quot;:4.46},{&quot;2026-09-04&quot;:4.56},{&quot;2026-09-05&quot;:4.66},{&quot;2026-09-06&quot;:4.83},{&quot;2026-09-07&quot;:4.77},{&quot;2026-09-08&quot;:4.78},{&quot;2026-09-09&quot;:4.78},{&quot;2026-09-10&quot;:4.74},{&quot;2026-09-11&quot;:4.94}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="87230"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Relentless Rats
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Rat
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $4.73
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Relentless Rats" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/7/57139cca-2606-4493-8a12-416ae51e1752.jpg?1783929597" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Relentless Rats
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Rat</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Relentless Rats" src="https://cards.scryfall.io/large/front/5/7/57139cca-2606-4493-8a12-416ae51e1752.jpg?1783929597" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.73
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.00</span>
              <span class="text-xs text-grey-text">Credit: $3.90</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.68},{&quot;2026-06-14&quot;:4.74},{&quot;2026-06-15&quot;:4.74},{&quot;2026-06-16&quot;:4.74},{&quot;2026-06-17&quot;:4.74},{&quot;2026-06-18&quot;:4.66},{&quot;2026-06-19&quot;:4.66},{&quot;2026-06-20&quot;:4.67},{&quot;2026-06-21&quot;:4.67},{&quot;2026-06-22&quot;:4.86},{&quot;2026-06-23&quot;:4.71},{&quot;2026-06-24&quot;:4.75},{&quot;2026-06-25&quot;:4.75},{&quot;2026-06-26&quot;:4.75},{&quot;2026-06-27&quot;:4.75},{&quot;2026-06-28&quot;:4.75},{&quot;2026-06-29&quot;:4.75},{&quot;2026-06-30&quot;:4.75},{&quot;2026-07-01&quot;:4.75},{&quot;2026-07-02&quot;:4.82},{&quot;2026-07-03&quot;:4.82},{&quot;2026-07-04&quot;:4.82},{&quot;2026-07-05&quot;:4.82},{&quot;2026-07-06&quot;:4.79},{&quot;2026-07-07&quot;:4.79},{&quot;2026-07-08&quot;:4.79},{&quot;2026-07-09&quot;:4.82},{&quot;2026-07-10&quot;:4.82},{&quot;2026-07-11&quot;:4.82},{&quot;2026-07-12&quot;:4.92},{&quot;2026-07-13&quot;:4.92},{&quot;2026-07-14&quot;:5.01},{&quot;2026-07-15&quot;:5.01},{&quot;2026-07-16&quot;:5.01},{&quot;2026-07-17&quot;:4.93},{&quot;2026-07-18&quot;:4.93},{&quot;2026-07-19&quot;:5.05},{&quot;2026-07-20&quot;:5.05},{&quot;2026-07-21&quot;:5.05},{&quot;2026-07-22&quot;:5.05},{&quot;2026-07-23&quot;:5.0},{&quot;2026-07-24&quot;:5.0},{&quot;2026-07-25&quot;:5.0},{&quot;2026-07-26&quot;:4.74},{&quot;2026-07-27&quot;:4.74},{&quot;2026-07-28&quot;:4.74},{&quot;2026-07-29&quot;:4.74},{&quot;2026-07-30&quot;:4.74},{&quot;2026-07-31&quot;:4.71},{&quot;2026-08-01&quot;:4.71},{&quot;2026-08-02&quot;:4.71},{&quot;2026-08-03&quot;:4.71},{&quot;2026-08-04&quot;:4.71},{&quot;2026-08-05&quot;:4.7},{&quot;2026-08-07&quot;:4.67},{&quot;2026-08-08&quot;:4.67},{&quot;2026-08-09&quot;:4.47},{&quot;2026-08-10&quot;:4.47},{&quot;2026-08-11&quot;:4.47},{&quot;2026-08-12&quot;:4.47},{&quot;2026-08-13&quot;:4.47},{&quot;2026-08-14&quot;:4.47},{&quot;2026-08-15&quot;:4.47},{&quot;2026-08-16&quot;:4.47},{&quot;2026-08-17&quot;:4.47},{&quot;2026-08-18&quot;:4.47},{&quot;2026-08-19&quot;:4.47},{&quot;2026-08-20&quot;:4.47},{&quot;2026-08-21&quot;:4.53},{&quot;2026-08-22&quot;:4.53},{&quot;2026-08-23&quot;:4.53},{&quot;2026-08-24&quot;:4.53},{&quot;2026-08-25&quot;:4.74},{&quot;2026-08-26&quot;:4.74},{&quot;2026-08-27&quot;:4.74},{&quot;2026-08-28&quot;:4.74},{&quot;2026-08-29&quot;:4.74},{&quot;2026-08-30&quot;:4.74},{&quot;2026-08-31&quot;:4.74},{&quot;2026-09-01&quot;:4.74},{&quot;2026-09-02&quot;:4.74},{&quot;2026-09-03&quot;:4.77},{&quot;2026-09-04&quot;:4.72},{&quot;2026-09-05&quot;:4.74},{&quot;2026-09-06&quot;:4.74},{&quot;2026-09-07&quot;:4.74},{&quot;2026-09-08&quot;:4.74},{&quot;2026-09-09&quot;:4.74},{&quot;2026-09-10&quot;:4.73},{&quot;2026-09-11&quot;:4.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="86336"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Psychic Corrosion
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.57
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Psychic Corrosion" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b74cfb23-c644-4787-8479-476f293f1bf2.jpg?1783909974" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Psychic Corrosion
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Psychic Corrosion" src="https://cards.scryfall.io/large/front/b/7/b74cfb23-c644-4787-8479-476f293f1bf2.jpg?1783909974" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.57
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.20</span>
              <span class="text-xs text-grey-text">Credit: $4.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.9},{&quot;2026-06-14&quot;:4.91},{&quot;2026-06-15&quot;:4.94},{&quot;2026-06-16&quot;:4.98},{&quot;2026-06-17&quot;:4.98},{&quot;2026-06-18&quot;:4.94},{&quot;2026-06-19&quot;:4.98},{&quot;2026-06-20&quot;:4.97},{&quot;2026-06-21&quot;:4.97},{&quot;2026-06-22&quot;:4.91},{&quot;2026-06-23&quot;:4.94},{&quot;2026-06-24&quot;:4.91},{&quot;2026-06-25&quot;:4.94},{&quot;2026-06-26&quot;:4.9},{&quot;2026-06-27&quot;:4.95},{&quot;2026-06-28&quot;:4.97},{&quot;2026-06-29&quot;:4.98},{&quot;2026-06-30&quot;:4.87},{&quot;2026-07-01&quot;:4.89},{&quot;2026-07-02&quot;:4.89},{&quot;2026-07-03&quot;:4.92},{&quot;2026-07-04&quot;:4.91},{&quot;2026-07-05&quot;:4.89},{&quot;2026-07-06&quot;:4.89},{&quot;2026-07-07&quot;:4.91},{&quot;2026-07-08&quot;:4.91},{&quot;2026-07-09&quot;:4.85},{&quot;2026-07-10&quot;:4.81},{&quot;2026-07-11&quot;:4.81},{&quot;2026-07-12&quot;:4.76},{&quot;2026-07-13&quot;:4.76},{&quot;2026-07-14&quot;:4.76},{&quot;2026-07-15&quot;:4.68},{&quot;2026-07-16&quot;:4.64},{&quot;2026-07-17&quot;:4.62},{&quot;2026-07-18&quot;:4.59},{&quot;2026-07-19&quot;:4.59},{&quot;2026-07-20&quot;:4.59},{&quot;2026-07-21&quot;:4.63},{&quot;2026-07-22&quot;:4.66},{&quot;2026-07-23&quot;:4.66},{&quot;2026-07-24&quot;:4.67},{&quot;2026-07-25&quot;:4.67},{&quot;2026-07-26&quot;:4.68},{&quot;2026-07-27&quot;:4.69},{&quot;2026-07-28&quot;:4.73},{&quot;2026-07-29&quot;:4.73},{&quot;2026-07-30&quot;:4.65},{&quot;2026-07-31&quot;:4.65},{&quot;2026-08-01&quot;:4.68},{&quot;2026-08-02&quot;:4.68},{&quot;2026-08-03&quot;:4.67},{&quot;2026-08-04&quot;:4.64},{&quot;2026-08-05&quot;:4.41},{&quot;2026-08-07&quot;:4.35},{&quot;2026-08-08&quot;:4.3},{&quot;2026-08-09&quot;:4.29},{&quot;2026-08-10&quot;:4.25},{&quot;2026-08-11&quot;:4.21},{&quot;2026-08-12&quot;:4.07},{&quot;2026-08-13&quot;:3.91},{&quot;2026-08-14&quot;:3.86},{&quot;2026-08-15&quot;:3.82},{&quot;2026-08-16&quot;:3.8},{&quot;2026-08-17&quot;:3.76},{&quot;2026-08-18&quot;:3.69},{&quot;2026-08-19&quot;:3.67},{&quot;2026-08-20&quot;:3.75},{&quot;2026-08-21&quot;:3.75},{&quot;2026-08-22&quot;:3.79},{&quot;2026-08-23&quot;:3.9},{&quot;2026-08-24&quot;:3.96},{&quot;2026-08-25&quot;:3.98},{&quot;2026-08-26&quot;:4.04},{&quot;2026-08-27&quot;:4.16},{&quot;2026-08-28&quot;:4.14},{&quot;2026-08-29&quot;:4.14},{&quot;2026-08-30&quot;:4.2},{&quot;2026-08-31&quot;:4.32},{&quot;2026-09-01&quot;:4.39},{&quot;2026-09-02&quot;:4.44},{&quot;2026-09-03&quot;:4.45},{&quot;2026-09-04&quot;:4.45},{&quot;2026-09-05&quot;:4.45},{&quot;2026-09-06&quot;:4.45},{&quot;2026-09-07&quot;:4.45},{&quot;2026-09-08&quot;:4.59},{&quot;2026-09-09&quot;:4.59},{&quot;2026-09-10&quot;:4.61},{&quot;2026-09-11&quot;:4.57}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82815"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Carrion Feeder
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Zombie
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $4.51
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Carrion Feeder" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/22a77543-749a-49d8-96f4-3458ae5dcd38.jpg?1783931992" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Carrion Feeder
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Zombie</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Carrion Feeder" src="https://cards.scryfall.io/large/front/2/2/22a77543-749a-49d8-96f4-3458ae5dcd38.jpg?1783931992" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.51
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.20</span>
              <span class="text-xs text-grey-text">Credit: $4.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:5.24},{&quot;2026-06-13&quot;:5.27},{&quot;2026-06-14&quot;:5.22},{&quot;2026-06-15&quot;:5.22},{&quot;2026-06-16&quot;:5.21},{&quot;2026-06-17&quot;:5.21},{&quot;2026-06-18&quot;:5.21},{&quot;2026-06-19&quot;:5.21},{&quot;2026-06-20&quot;:5.21},{&quot;2026-06-21&quot;:5.21},{&quot;2026-06-22&quot;:5.21},{&quot;2026-06-23&quot;:5.21},{&quot;2026-06-24&quot;:5.21},{&quot;2026-06-25&quot;:5.22},{&quot;2026-06-26&quot;:5.22},{&quot;2026-06-27&quot;:5.22},{&quot;2026-06-28&quot;:5.22},{&quot;2026-06-29&quot;:5.22},{&quot;2026-06-30&quot;:5.22},{&quot;2026-07-01&quot;:5.22},{&quot;2026-07-02&quot;:5.23},{&quot;2026-07-03&quot;:5.23},{&quot;2026-07-04&quot;:5.23},{&quot;2026-07-05&quot;:5.23},{&quot;2026-07-06&quot;:5.23},{&quot;2026-07-07&quot;:5.23},{&quot;2026-07-08&quot;:5.23},{&quot;2026-07-09&quot;:5.23},{&quot;2026-07-10&quot;:5.18},{&quot;2026-07-11&quot;:5.14},{&quot;2026-07-12&quot;:5.14},{&quot;2026-07-13&quot;:5.14},{&quot;2026-07-14&quot;:5.14},{&quot;2026-07-15&quot;:5.14},{&quot;2026-07-16&quot;:5.14},{&quot;2026-07-17&quot;:5.14},{&quot;2026-07-18&quot;:5.14},{&quot;2026-07-19&quot;:5.14},{&quot;2026-07-20&quot;:5.14},{&quot;2026-07-21&quot;:5.14},{&quot;2026-07-23&quot;:5.11},{&quot;2026-07-24&quot;:5.11},{&quot;2026-07-25&quot;:5.05},{&quot;2026-07-26&quot;:5.06},{&quot;2026-07-27&quot;:5.06},{&quot;2026-07-28&quot;:5.06},{&quot;2026-07-29&quot;:5.06},{&quot;2026-07-30&quot;:4.89},{&quot;2026-07-31&quot;:4.91},{&quot;2026-08-01&quot;:4.91},{&quot;2026-08-02&quot;:4.91},{&quot;2026-08-03&quot;:4.91},{&quot;2026-08-04&quot;:4.91},{&quot;2026-08-05&quot;:4.88},{&quot;2026-08-07&quot;:4.85},{&quot;2026-08-08&quot;:4.85},{&quot;2026-08-09&quot;:4.85},{&quot;2026-08-10&quot;:4.87},{&quot;2026-08-11&quot;:4.93},{&quot;2026-08-12&quot;:4.93},{&quot;2026-08-13&quot;:4.97},{&quot;2026-08-14&quot;:4.97},{&quot;2026-08-15&quot;:4.97},{&quot;2026-08-16&quot;:4.97},{&quot;2026-08-17&quot;:4.97},{&quot;2026-08-18&quot;:4.97},{&quot;2026-08-19&quot;:4.97},{&quot;2026-08-20&quot;:4.97},{&quot;2026-08-21&quot;:4.97},{&quot;2026-08-22&quot;:4.97},{&quot;2026-08-23&quot;:4.97},{&quot;2026-08-24&quot;:4.81},{&quot;2026-08-25&quot;:4.81},{&quot;2026-08-26&quot;:4.81},{&quot;2026-08-27&quot;:4.81},{&quot;2026-08-28&quot;:4.81},{&quot;2026-08-29&quot;:4.81},{&quot;2026-08-30&quot;:4.67},{&quot;2026-08-31&quot;:4.67},{&quot;2026-09-01&quot;:4.67},{&quot;2026-09-02&quot;:4.58},{&quot;2026-09-03&quot;:4.58},{&quot;2026-09-04&quot;:4.5},{&quot;2026-09-05&quot;:4.5},{&quot;2026-09-06&quot;:4.48},{&quot;2026-09-07&quot;:4.48},{&quot;2026-09-08&quot;:4.48},{&quot;2026-09-09&quot;:4.51},{&quot;2026-09-10&quot;:4.51},{&quot;2026-09-11&quot;:4.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83682"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Tangle
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.37
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tangle" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/6/f6c32f19-8958-4aa0-8432-a1dc47bdb1e9.jpg?1783910057" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Tangle
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tangle" src="https://cards.scryfall.io/large/front/f/6/f6c32f19-8958-4aa0-8432-a1dc47bdb1e9.jpg?1783910057" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.37
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$4.50</span>
              <span class="text-xs text-grey-text">Credit: $5.85</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.12},{&quot;2026-06-14&quot;:4.12},{&quot;2026-06-15&quot;:4.04},{&quot;2026-06-16&quot;:3.94},{&quot;2026-06-17&quot;:3.94},{&quot;2026-06-18&quot;:3.94},{&quot;2026-06-19&quot;:3.9},{&quot;2026-06-20&quot;:3.82},{&quot;2026-06-21&quot;:3.81},{&quot;2026-06-22&quot;:3.68},{&quot;2026-06-23&quot;:3.66},{&quot;2026-06-24&quot;:3.61},{&quot;2026-06-25&quot;:3.62},{&quot;2026-06-26&quot;:3.62},{&quot;2026-06-27&quot;:3.71},{&quot;2026-06-28&quot;:3.69},{&quot;2026-06-29&quot;:3.66},{&quot;2026-06-30&quot;:3.69},{&quot;2026-07-01&quot;:3.68},{&quot;2026-07-02&quot;:3.66},{&quot;2026-07-03&quot;:3.67},{&quot;2026-07-04&quot;:3.69},{&quot;2026-07-05&quot;:3.69},{&quot;2026-07-06&quot;:3.84},{&quot;2026-07-07&quot;:3.86},{&quot;2026-07-08&quot;:3.92},{&quot;2026-07-09&quot;:3.94},{&quot;2026-07-10&quot;:3.94},{&quot;2026-07-11&quot;:4.08},{&quot;2026-07-12&quot;:4.11},{&quot;2026-07-13&quot;:4.11},{&quot;2026-07-14&quot;:4.19},{&quot;2026-07-15&quot;:4.19},{&quot;2026-07-16&quot;:4.21},{&quot;2026-07-17&quot;:4.24},{&quot;2026-07-18&quot;:4.29},{&quot;2026-07-19&quot;:4.29},{&quot;2026-07-20&quot;:4.34},{&quot;2026-07-21&quot;:4.42},{&quot;2026-07-22&quot;:4.45},{&quot;2026-07-23&quot;:4.46},{&quot;2026-07-24&quot;:4.46},{&quot;2026-07-25&quot;:4.47},{&quot;2026-07-26&quot;:4.47},{&quot;2026-07-27&quot;:4.47},{&quot;2026-07-28&quot;:4.47},{&quot;2026-07-29&quot;:4.46},{&quot;2026-07-30&quot;:4.46},{&quot;2026-07-31&quot;:4.42},{&quot;2026-08-01&quot;:4.39},{&quot;2026-08-02&quot;:4.41},{&quot;2026-08-03&quot;:4.46},{&quot;2026-08-04&quot;:4.46},{&quot;2026-08-05&quot;:4.46},{&quot;2026-08-07&quot;:4.41},{&quot;2026-08-08&quot;:4.38},{&quot;2026-08-09&quot;:4.3},{&quot;2026-08-10&quot;:4.3},{&quot;2026-08-11&quot;:4.3},{&quot;2026-08-12&quot;:4.3},{&quot;2026-08-13&quot;:4.29},{&quot;2026-08-14&quot;:4.26},{&quot;2026-08-15&quot;:4.22},{&quot;2026-08-16&quot;:4.26},{&quot;2026-08-17&quot;:4.22},{&quot;2026-08-18&quot;:4.2},{&quot;2026-08-19&quot;:4.21},{&quot;2026-08-20&quot;:4.26},{&quot;2026-08-21&quot;:4.28},{&quot;2026-08-22&quot;:4.26},{&quot;2026-08-23&quot;:4.23},{&quot;2026-08-24&quot;:4.18},{&quot;2026-08-25&quot;:4.15},{&quot;2026-08-26&quot;:4.12},{&quot;2026-08-27&quot;:4.13},{&quot;2026-08-28&quot;:4.08},{&quot;2026-08-29&quot;:4.08},{&quot;2026-08-30&quot;:4.06},{&quot;2026-08-31&quot;:4.03},{&quot;2026-09-01&quot;:4.11},{&quot;2026-09-02&quot;:4.09},{&quot;2026-09-03&quot;:4.05},{&quot;2026-09-04&quot;:4.19},{&quot;2026-09-05&quot;:4.17},{&quot;2026-09-06&quot;:4.17},{&quot;2026-09-07&quot;:4.21},{&quot;2026-09-08&quot;:4.21},{&quot;2026-09-09&quot;:4.28},{&quot;2026-09-10&quot;:4.2},{&quot;2026-09-11&quot;:4.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53328"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Basalt Monolith
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              8%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.87
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Basalt Monolith" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/f/ff27694e-0381-4ac9-ba20-d631d468f275.jpg?1783910555" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Basalt Monolith
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Basalt Monolith" src="https://cards.scryfall.io/large/front/f/f/ff27694e-0381-4ac9-ba20-d631d468f275.jpg?1783910555" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.87
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  8%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $100.27
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.00</span>
              <span class="text-xs text-grey-text">Credit: $3.90</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:98.85},{&quot;2026-06-10&quot;:98.85},{&quot;2026-06-11&quot;:98.85},{&quot;2026-06-12&quot;:98.85},{&quot;2026-06-13&quot;:98.85},{&quot;2026-06-14&quot;:98.85},{&quot;2026-06-15&quot;:98.85},{&quot;2026-06-16&quot;:98.85},{&quot;2026-06-17&quot;:98.85},{&quot;2026-06-18&quot;:98.85},{&quot;2026-06-19&quot;:98.85},{&quot;2026-06-20&quot;:98.85},{&quot;2026-06-21&quot;:98.85},{&quot;2026-06-22&quot;:98.85},{&quot;2026-06-24&quot;:98.85},{&quot;2026-06-25&quot;:98.85},{&quot;2026-06-26&quot;:98.85},{&quot;2026-06-27&quot;:99.71},{&quot;2026-06-28&quot;:99.71},{&quot;2026-06-29&quot;:99.71},{&quot;2026-06-30&quot;:99.71},{&quot;2026-07-01&quot;:99.71},{&quot;2026-07-02&quot;:100.16},{&quot;2026-07-03&quot;:100.16},{&quot;2026-07-04&quot;:100.16},{&quot;2026-07-05&quot;:100.16},{&quot;2026-07-06&quot;:100.16},{&quot;2026-07-07&quot;:100.16},{&quot;2026-07-08&quot;:100.16},{&quot;2026-07-09&quot;:100.35},{&quot;2026-07-10&quot;:100.35},{&quot;2026-07-11&quot;:100.35},{&quot;2026-07-12&quot;:100.35},{&quot;2026-07-13&quot;:100.55},{&quot;2026-07-14&quot;:100.55},{&quot;2026-07-15&quot;:100.55},{&quot;2026-07-16&quot;:100.55},{&quot;2026-07-17&quot;:100.55},{&quot;2026-07-18&quot;:100.55},{&quot;2026-07-19&quot;:100.55},{&quot;2026-07-20&quot;:100.55},{&quot;2026-07-21&quot;:100.55},{&quot;2026-07-23&quot;:100.55},{&quot;2026-07-25&quot;:100.55},{&quot;2026-07-26&quot;:100.55},{&quot;2026-07-27&quot;:100.55},{&quot;2026-07-29&quot;:100.55},{&quot;2026-07-30&quot;:100.55},{&quot;2026-07-31&quot;:100.55},{&quot;2026-08-01&quot;:100.55},{&quot;2026-08-02&quot;:100.55},{&quot;2026-08-03&quot;:100.55},{&quot;2026-08-04&quot;:100.55},{&quot;2026-08-05&quot;:100.55},{&quot;2026-08-07&quot;:100.55},{&quot;2026-08-08&quot;:100.55},{&quot;2026-08-09&quot;:100.55},{&quot;2026-08-10&quot;:100.55},{&quot;2026-08-11&quot;:100.55},{&quot;2026-08-12&quot;:100.55},{&quot;2026-08-13&quot;:100.55},{&quot;2026-08-14&quot;:100.55},{&quot;2026-08-15&quot;:100.55},{&quot;2026-08-16&quot;:100.55},{&quot;2026-08-17&quot;:100.55},{&quot;2026-08-18&quot;:100.55},{&quot;2026-08-19&quot;:100.55},{&quot;2026-08-20&quot;:100.55},{&quot;2026-08-21&quot;:100.55},{&quot;2026-08-22&quot;:100.55},{&quot;2026-08-23&quot;:100.55},{&quot;2026-08-24&quot;:100.55},{&quot;2026-08-25&quot;:100.55},{&quot;2026-08-26&quot;:100.55},{&quot;2026-08-27&quot;:100.55},{&quot;2026-08-28&quot;:100.55},{&quot;2026-08-29&quot;:100.55},{&quot;2026-08-30&quot;:100.55},{&quot;2026-08-31&quot;:100.55},{&quot;2026-09-01&quot;:100.55},{&quot;2026-09-02&quot;:100.55},{&quot;2026-09-03&quot;:100.55},{&quot;2026-09-04&quot;:100.79},{&quot;2026-09-05&quot;:100.79},{&quot;2026-09-06&quot;:100.27},{&quot;2026-09-07&quot;:100.27},{&quot;2026-09-08&quot;:100.27},{&quot;2026-09-09&quot;:100.27},{&quot;2026-09-10&quot;:100.27},{&quot;2026-09-11&quot;:100.27}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.78},{&quot;2026-06-10&quot;:3.83},{&quot;2026-06-11&quot;:3.76},{&quot;2026-06-12&quot;:3.69},{&quot;2026-06-13&quot;:3.69},{&quot;2026-06-14&quot;:3.78},{&quot;2026-06-15&quot;:3.82},{&quot;2026-06-16&quot;:3.95},{&quot;2026-06-17&quot;:3.95},{&quot;2026-06-18&quot;:3.93},{&quot;2026-06-19&quot;:3.97},{&quot;2026-06-20&quot;:3.99},{&quot;2026-06-21&quot;:4.01},{&quot;2026-06-22&quot;:4.07},{&quot;2026-06-24&quot;:3.99},{&quot;2026-06-25&quot;:4.04},{&quot;2026-06-26&quot;:4.04},{&quot;2026-06-27&quot;:4.04},{&quot;2026-06-28&quot;:4.04},{&quot;2026-06-29&quot;:4.01},{&quot;2026-06-30&quot;:3.96},{&quot;2026-07-01&quot;:3.97},{&quot;2026-07-02&quot;:3.99},{&quot;2026-07-03&quot;:4.01},{&quot;2026-07-04&quot;:4.01},{&quot;2026-07-05&quot;:3.92},{&quot;2026-07-06&quot;:3.83},{&quot;2026-07-07&quot;:3.85},{&quot;2026-07-08&quot;:3.75},{&quot;2026-07-09&quot;:3.81},{&quot;2026-07-10&quot;:3.79},{&quot;2026-07-11&quot;:3.69},{&quot;2026-07-12&quot;:3.61},{&quot;2026-07-13&quot;:3.55},{&quot;2026-07-14&quot;:3.5},{&quot;2026-07-15&quot;:3.48},{&quot;2026-07-16&quot;:3.51},{&quot;2026-07-17&quot;:3.42},{&quot;2026-07-18&quot;:3.42},{&quot;2026-07-19&quot;:3.46},{&quot;2026-07-20&quot;:3.44},{&quot;2026-07-21&quot;:3.44},{&quot;2026-07-23&quot;:3.41},{&quot;2026-07-25&quot;:3.43},{&quot;2026-07-26&quot;:3.48},{&quot;2026-07-27&quot;:3.46},{&quot;2026-07-29&quot;:3.55},{&quot;2026-07-30&quot;:3.53},{&quot;2026-07-31&quot;:3.75},{&quot;2026-08-01&quot;:3.75},{&quot;2026-08-02&quot;:3.74},{&quot;2026-08-03&quot;:3.74},{&quot;2026-08-04&quot;:3.64},{&quot;2026-08-05&quot;:3.66},{&quot;2026-08-07&quot;:3.59},{&quot;2026-08-08&quot;:3.57},{&quot;2026-08-09&quot;:3.54},{&quot;2026-08-10&quot;:3.37},{&quot;2026-08-11&quot;:3.35},{&quot;2026-08-12&quot;:3.44},{&quot;2026-08-13&quot;:3.49},{&quot;2026-08-14&quot;:3.47},{&quot;2026-08-15&quot;:3.48},{&quot;2026-08-16&quot;:3.58},{&quot;2026-08-17&quot;:3.57},{&quot;2026-08-18&quot;:3.56},{&quot;2026-08-19&quot;:3.56},{&quot;2026-08-20&quot;:3.56},{&quot;2026-08-21&quot;:3.55},{&quot;2026-08-22&quot;:3.56},{&quot;2026-08-23&quot;:3.59},{&quot;2026-08-24&quot;:3.52},{&quot;2026-08-25&quot;:3.52},{&quot;2026-08-26&quot;:3.46},{&quot;2026-08-27&quot;:3.54},{&quot;2026-08-28&quot;:3.58},{&quot;2026-08-29&quot;:3.58},{&quot;2026-08-30&quot;:3.68},{&quot;2026-08-31&quot;:3.74},{&quot;2026-09-01&quot;:3.74},{&quot;2026-09-02&quot;:3.8},{&quot;2026-09-03&quot;:3.78},{&quot;2026-09-04&quot;:3.7},{&quot;2026-09-05&quot;:3.6},{&quot;2026-09-06&quot;:4.01},{&quot;2026-09-07&quot;:4.05},{&quot;2026-09-08&quot;:4.06},{&quot;2026-09-09&quot;:4.06},{&quot;2026-09-10&quot;:3.87},{&quot;2026-09-11&quot;:3.87}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="84140"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Power Conduit
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.54
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Power Conduit" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a1bde782-3ef3-4a7d-9c44-67b78c65efa8.jpg?1783910043" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Power Conduit
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Power Conduit" src="https://cards.scryfall.io/large/front/a/1/a1bde782-3ef3-4a7d-9c44-67b78c65efa8.jpg?1783910043" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.54
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.50</span>
              <span class="text-xs text-grey-text">Credit: $1.95</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.37},{&quot;2026-06-14&quot;:4.37},{&quot;2026-06-15&quot;:4.36},{&quot;2026-06-16&quot;:4.36},{&quot;2026-06-17&quot;:4.36},{&quot;2026-06-18&quot;:4.38},{&quot;2026-06-19&quot;:4.36},{&quot;2026-06-20&quot;:4.36},{&quot;2026-06-21&quot;:4.37},{&quot;2026-06-22&quot;:4.45},{&quot;2026-06-23&quot;:4.45},{&quot;2026-06-24&quot;:4.34},{&quot;2026-06-25&quot;:4.35},{&quot;2026-06-26&quot;:4.35},{&quot;2026-06-27&quot;:4.36},{&quot;2026-06-28&quot;:4.36},{&quot;2026-06-29&quot;:4.36},{&quot;2026-06-30&quot;:4.3},{&quot;2026-07-01&quot;:4.3},{&quot;2026-07-02&quot;:4.39},{&quot;2026-07-03&quot;:4.39},{&quot;2026-07-04&quot;:4.39},{&quot;2026-07-05&quot;:4.39},{&quot;2026-07-06&quot;:4.3},{&quot;2026-07-07&quot;:4.19},{&quot;2026-07-08&quot;:4.19},{&quot;2026-07-09&quot;:4.19},{&quot;2026-07-10&quot;:4.16},{&quot;2026-07-11&quot;:4.11},{&quot;2026-07-12&quot;:4.07},{&quot;2026-07-13&quot;:4.07},{&quot;2026-07-14&quot;:4.08},{&quot;2026-07-15&quot;:4.08},{&quot;2026-07-16&quot;:4.01},{&quot;2026-07-17&quot;:3.95},{&quot;2026-07-18&quot;:3.95},{&quot;2026-07-19&quot;:3.91},{&quot;2026-07-20&quot;:3.92},{&quot;2026-07-21&quot;:3.88},{&quot;2026-07-22&quot;:3.88},{&quot;2026-07-23&quot;:3.86},{&quot;2026-07-24&quot;:3.88},{&quot;2026-07-25&quot;:3.88},{&quot;2026-07-26&quot;:3.95},{&quot;2026-07-27&quot;:3.95},{&quot;2026-07-28&quot;:3.95},{&quot;2026-07-29&quot;:3.95},{&quot;2026-07-30&quot;:3.95},{&quot;2026-07-31&quot;:3.89},{&quot;2026-08-01&quot;:3.89},{&quot;2026-08-02&quot;:3.82},{&quot;2026-08-03&quot;:3.9},{&quot;2026-08-04&quot;:3.9},{&quot;2026-08-05&quot;:3.84},{&quot;2026-08-07&quot;:3.73},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.73},{&quot;2026-08-10&quot;:3.7},{&quot;2026-08-11&quot;:3.69},{&quot;2026-08-12&quot;:3.52},{&quot;2026-08-13&quot;:3.52},{&quot;2026-08-14&quot;:3.51},{&quot;2026-08-15&quot;:3.51},{&quot;2026-08-16&quot;:3.51},{&quot;2026-08-17&quot;:3.48},{&quot;2026-08-18&quot;:3.48},{&quot;2026-08-19&quot;:3.49},{&quot;2026-08-20&quot;:3.46},{&quot;2026-08-21&quot;:3.51},{&quot;2026-08-22&quot;:3.48},{&quot;2026-08-23&quot;:3.49},{&quot;2026-08-24&quot;:3.47},{&quot;2026-08-25&quot;:3.45},{&quot;2026-08-26&quot;:3.48},{&quot;2026-08-27&quot;:3.48},{&quot;2026-08-28&quot;:3.48},{&quot;2026-08-29&quot;:3.48},{&quot;2026-08-30&quot;:3.53},{&quot;2026-08-31&quot;:3.53},{&quot;2026-09-01&quot;:3.58},{&quot;2026-09-02&quot;:3.59},{&quot;2026-09-03&quot;:3.59},{&quot;2026-09-04&quot;:3.59},{&quot;2026-09-05&quot;:3.6},{&quot;2026-09-06&quot;:3.6},{&quot;2026-09-07&quot;:3.55},{&quot;2026-09-08&quot;:3.54},{&quot;2026-09-09&quot;:3.54},{&quot;2026-09-10&quot;:3.54},{&quot;2026-09-11&quot;:3.54}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78051"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Batwing Brume
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Batwing Brume" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/1/31813db2-cc97-4c68-8933-829d3b9e036d.jpg?1783910275" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Batwing Brume
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-wb'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Batwing Brume" src="https://cards.scryfall.io/large/front/3/1/31813db2-cc97-4c68-8933-829d3b9e036d.jpg?1783910275" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.31
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  6%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$2.75</span>
              <span class="text-xs text-grey-text">Credit: $3.58</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.51},{&quot;2026-06-11&quot;:4.47},{&quot;2026-06-12&quot;:4.66},{&quot;2026-06-13&quot;:4.66},{&quot;2026-06-14&quot;:4.58},{&quot;2026-06-15&quot;:4.5},{&quot;2026-06-16&quot;:4.46},{&quot;2026-06-17&quot;:4.47},{&quot;2026-06-18&quot;:4.57},{&quot;2026-06-19&quot;:4.5},{&quot;2026-06-20&quot;:4.49},{&quot;2026-06-21&quot;:4.45},{&quot;2026-06-22&quot;:4.45},{&quot;2026-06-23&quot;:4.45},{&quot;2026-06-24&quot;:4.24},{&quot;2026-06-25&quot;:4.18},{&quot;2026-06-26&quot;:4.2},{&quot;2026-06-27&quot;:4.22},{&quot;2026-06-28&quot;:4.24},{&quot;2026-06-29&quot;:4.35},{&quot;2026-06-30&quot;:4.33},{&quot;2026-07-01&quot;:4.25},{&quot;2026-07-02&quot;:4.25},{&quot;2026-07-03&quot;:4.36},{&quot;2026-07-04&quot;:4.4},{&quot;2026-07-05&quot;:4.39},{&quot;2026-07-06&quot;:4.49},{&quot;2026-07-07&quot;:4.57},{&quot;2026-07-08&quot;:4.61},{&quot;2026-07-09&quot;:4.63},{&quot;2026-07-10&quot;:4.63},{&quot;2026-07-11&quot;:4.63},{&quot;2026-07-12&quot;:4.65},{&quot;2026-07-13&quot;:4.65},{&quot;2026-07-14&quot;:4.65},{&quot;2026-07-15&quot;:4.7},{&quot;2026-07-16&quot;:4.61},{&quot;2026-07-17&quot;:4.54},{&quot;2026-07-18&quot;:4.54},{&quot;2026-07-19&quot;:4.63},{&quot;2026-07-20&quot;:4.63},{&quot;2026-07-21&quot;:4.63},{&quot;2026-07-23&quot;:4.71},{&quot;2026-07-25&quot;:4.66},{&quot;2026-07-26&quot;:4.63},{&quot;2026-07-27&quot;:4.71},{&quot;2026-07-29&quot;:4.6},{&quot;2026-07-30&quot;:4.63},{&quot;2026-07-31&quot;:4.5},{&quot;2026-08-01&quot;:4.62},{&quot;2026-08-02&quot;:4.58},{&quot;2026-08-03&quot;:4.53},{&quot;2026-08-04&quot;:4.46},{&quot;2026-08-05&quot;:4.15},{&quot;2026-08-07&quot;:4.24},{&quot;2026-08-08&quot;:4.16},{&quot;2026-08-09&quot;:4.11},{&quot;2026-08-10&quot;:4.07},{&quot;2026-08-11&quot;:4.04},{&quot;2026-08-12&quot;:4.04},{&quot;2026-08-13&quot;:3.99},{&quot;2026-08-14&quot;:3.87},{&quot;2026-08-15&quot;:3.78},{&quot;2026-08-16&quot;:3.84},{&quot;2026-08-17&quot;:3.79},{&quot;2026-08-18&quot;:3.76},{&quot;2026-08-19&quot;:3.74},{&quot;2026-08-20&quot;:3.74},{&quot;2026-08-21&quot;:3.64},{&quot;2026-08-22&quot;:3.64},{&quot;2026-08-23&quot;:3.64},{&quot;2026-08-24&quot;:3.67},{&quot;2026-08-25&quot;:3.67},{&quot;2026-08-26&quot;:3.69},{&quot;2026-08-27&quot;:3.71},{&quot;2026-08-28&quot;:3.7},{&quot;2026-08-29&quot;:3.7},{&quot;2026-08-30&quot;:3.7},{&quot;2026-08-31&quot;:3.59},{&quot;2026-09-01&quot;:3.59},{&quot;2026-09-02&quot;:3.57},{&quot;2026-09-03&quot;:3.58},{&quot;2026-09-04&quot;:3.61},{&quot;2026-09-05&quot;:3.53},{&quot;2026-09-06&quot;:3.53},{&quot;2026-09-07&quot;:3.49},{&quot;2026-09-08&quot;:3.49},{&quot;2026-09-09&quot;:3.38},{&quot;2026-09-10&quot;:3.35},{&quot;2026-09-11&quot;:3.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82592"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Memnite
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Construct
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.30
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Memnite" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/b/7b8f6516-3d00-4deb-b852-bcd3b72e49ea.jpg?1783931255" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Memnite
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Construct</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Memnite" src="https://cards.scryfall.io/large/front/7/b/7b8f6516-3d00-4deb-b852-bcd3b72e49ea.jpg?1783931255" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.30
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $2.90
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.35</span>
              <span class="text-xs text-grey-text">Credit: $1.76</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:2.7},{&quot;2026-06-12&quot;:2.72},{&quot;2026-06-13&quot;:2.72},{&quot;2026-06-14&quot;:2.8},{&quot;2026-06-15&quot;:2.8},{&quot;2026-06-16&quot;:2.79},{&quot;2026-06-17&quot;:2.79},{&quot;2026-06-18&quot;:2.79},{&quot;2026-06-19&quot;:2.83},{&quot;2026-06-20&quot;:2.83},{&quot;2026-06-21&quot;:2.83},{&quot;2026-06-22&quot;:2.83},{&quot;2026-06-23&quot;:2.83},{&quot;2026-06-24&quot;:2.85},{&quot;2026-06-25&quot;:2.81},{&quot;2026-06-26&quot;:2.79},{&quot;2026-06-27&quot;:2.79},{&quot;2026-06-28&quot;:2.75},{&quot;2026-06-29&quot;:2.78},{&quot;2026-06-30&quot;:2.78},{&quot;2026-07-01&quot;:2.78},{&quot;2026-07-02&quot;:2.81},{&quot;2026-07-03&quot;:2.76},{&quot;2026-07-04&quot;:2.76},{&quot;2026-07-05&quot;:2.76},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.74},{&quot;2026-07-08&quot;:2.74},{&quot;2026-07-09&quot;:2.74},{&quot;2026-07-10&quot;:2.74},{&quot;2026-07-11&quot;:2.74},{&quot;2026-07-12&quot;:2.74},{&quot;2026-07-13&quot;:2.74},{&quot;2026-07-14&quot;:2.74},{&quot;2026-07-15&quot;:2.74},{&quot;2026-07-16&quot;:2.74},{&quot;2026-07-17&quot;:2.74},{&quot;2026-07-18&quot;:2.74},{&quot;2026-07-19&quot;:2.77},{&quot;2026-07-20&quot;:2.77},{&quot;2026-07-21&quot;:2.84},{&quot;2026-07-23&quot;:2.84},{&quot;2026-07-25&quot;:2.84},{&quot;2026-07-26&quot;:2.84},{&quot;2026-07-27&quot;:2.84},{&quot;2026-07-28&quot;:2.84},{&quot;2026-07-29&quot;:2.84},{&quot;2026-07-30&quot;:2.84},{&quot;2026-07-31&quot;:2.84},{&quot;2026-08-01&quot;:2.84},{&quot;2026-08-02&quot;:2.84},{&quot;2026-08-03&quot;:2.84},{&quot;2026-08-04&quot;:2.87},{&quot;2026-08-05&quot;:2.85},{&quot;2026-08-07&quot;:2.85},{&quot;2026-08-08&quot;:2.85},{&quot;2026-08-09&quot;:2.85},{&quot;2026-08-10&quot;:2.85},{&quot;2026-08-11&quot;:2.85},{&quot;2026-08-12&quot;:2.79},{&quot;2026-08-13&quot;:2.79},{&quot;2026-08-14&quot;:2.79},{&quot;2026-08-15&quot;:2.79},{&quot;2026-08-16&quot;:2.89},{&quot;2026-08-17&quot;:2.89},{&quot;2026-08-18&quot;:2.89},{&quot;2026-08-19&quot;:2.89},{&quot;2026-08-20&quot;:2.89},{&quot;2026-08-21&quot;:2.89},{&quot;2026-08-22&quot;:2.89},{&quot;2026-08-23&quot;:2.89},{&quot;2026-08-24&quot;:2.89},{&quot;2026-08-25&quot;:2.89},{&quot;2026-08-26&quot;:2.89},{&quot;2026-08-27&quot;:2.89},{&quot;2026-08-28&quot;:2.89},{&quot;2026-08-29&quot;:2.89},{&quot;2026-08-30&quot;:2.89},{&quot;2026-08-31&quot;:2.89},{&quot;2026-09-01&quot;:2.89},{&quot;2026-09-02&quot;:2.89},{&quot;2026-09-03&quot;:2.89},{&quot;2026-09-04&quot;:2.89},{&quot;2026-09-05&quot;:2.89},{&quot;2026-09-06&quot;:2.89},{&quot;2026-09-07&quot;:2.89},{&quot;2026-09-08&quot;:2.89},{&quot;2026-09-09&quot;:2.89},{&quot;2026-09-10&quot;:2.9},{&quot;2026-09-11&quot;:2.9}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:4.42},{&quot;2026-06-12&quot;:4.31},{&quot;2026-06-13&quot;:4.31},{&quot;2026-06-14&quot;:4.24},{&quot;2026-06-15&quot;:4.24},{&quot;2026-06-16&quot;:3.96},{&quot;2026-06-17&quot;:4.19},{&quot;2026-06-18&quot;:4.19},{&quot;2026-06-19&quot;:4.18},{&quot;2026-06-20&quot;:4.18},{&quot;2026-06-21&quot;:4.18},{&quot;2026-06-22&quot;:4.07},{&quot;2026-06-23&quot;:3.78},{&quot;2026-06-24&quot;:3.78},{&quot;2026-06-25&quot;:3.79},{&quot;2026-06-26&quot;:3.78},{&quot;2026-06-27&quot;:3.78},{&quot;2026-06-28&quot;:3.77},{&quot;2026-06-29&quot;:3.77},{&quot;2026-06-30&quot;:3.77},{&quot;2026-07-01&quot;:3.78},{&quot;2026-07-02&quot;:3.78},{&quot;2026-07-03&quot;:3.78},{&quot;2026-07-04&quot;:3.78},{&quot;2026-07-05&quot;:3.78},{&quot;2026-07-06&quot;:3.85},{&quot;2026-07-07&quot;:3.85},{&quot;2026-07-08&quot;:3.85},{&quot;2026-07-09&quot;:3.85},{&quot;2026-07-10&quot;:3.85},{&quot;2026-07-11&quot;:3.92},{&quot;2026-07-12&quot;:3.92},{&quot;2026-07-13&quot;:3.91},{&quot;2026-07-14&quot;:3.91},{&quot;2026-07-15&quot;:3.83},{&quot;2026-07-16&quot;:3.73},{&quot;2026-07-17&quot;:3.73},{&quot;2026-07-18&quot;:3.73},{&quot;2026-07-19&quot;:3.7},{&quot;2026-07-20&quot;:3.6},{&quot;2026-07-21&quot;:3.5},{&quot;2026-07-23&quot;:3.5},{&quot;2026-07-25&quot;:3.5},{&quot;2026-07-26&quot;:3.5},{&quot;2026-07-27&quot;:3.5},{&quot;2026-07-28&quot;:3.5},{&quot;2026-07-29&quot;:3.5},{&quot;2026-07-30&quot;:3.5},{&quot;2026-07-31&quot;:3.29},{&quot;2026-08-01&quot;:3.29},{&quot;2026-08-02&quot;:3.25},{&quot;2026-08-03&quot;:3.25},{&quot;2026-08-04&quot;:3.25},{&quot;2026-08-05&quot;:3.32},{&quot;2026-08-07&quot;:3.21},{&quot;2026-08-08&quot;:3.17},{&quot;2026-08-09&quot;:3.17},{&quot;2026-08-10&quot;:3.17},{&quot;2026-08-11&quot;:3.17},{&quot;2026-08-12&quot;:3.17},{&quot;2026-08-13&quot;:3.08},{&quot;2026-08-14&quot;:3.08},{&quot;2026-08-15&quot;:3.08},{&quot;2026-08-16&quot;:3.11},{&quot;2026-08-17&quot;:3.11},{&quot;2026-08-18&quot;:3.15},{&quot;2026-08-19&quot;:3.2},{&quot;2026-08-20&quot;:3.2},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.16},{&quot;2026-08-23&quot;:3.16},{&quot;2026-08-24&quot;:3.16},{&quot;2026-08-25&quot;:3.16},{&quot;2026-08-26&quot;:3.16},{&quot;2026-08-27&quot;:3.16},{&quot;2026-08-28&quot;:3.14},{&quot;2026-08-29&quot;:3.14},{&quot;2026-08-30&quot;:3.11},{&quot;2026-08-31&quot;:3.16},{&quot;2026-09-01&quot;:3.16},{&quot;2026-09-02&quot;:3.16},{&quot;2026-09-03&quot;:3.21},{&quot;2026-09-04&quot;:3.2},{&quot;2026-09-05&quot;:3.2},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.3},{&quot;2026-09-08&quot;:3.3},{&quot;2026-09-09&quot;:3.3},{&quot;2026-09-10&quot;:3.3},{&quot;2026-09-11&quot;:3.3}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53188"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Reset
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.07
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Reset" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/6/16ab9d29-8094-47eb-8106-d29ffb0c2266.jpg?1783910569" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Reset
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reset" src="https://cards.scryfall.io/large/front/1/6/16ab9d29-8094-47eb-8106-d29ffb0c2266.jpg?1783910569" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.07
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $13.70
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.85</span>
              <span class="text-xs text-grey-text">Credit: $1.11</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:12.0},{&quot;2026-06-11&quot;:12.0},{&quot;2026-06-12&quot;:12.0},{&quot;2026-06-13&quot;:12.0},{&quot;2026-06-14&quot;:12.1},{&quot;2026-06-15&quot;:12.1},{&quot;2026-06-16&quot;:12.1},{&quot;2026-06-17&quot;:12.2},{&quot;2026-06-18&quot;:12.2},{&quot;2026-06-19&quot;:12.2},{&quot;2026-06-20&quot;:12.2},{&quot;2026-06-21&quot;:12.2},{&quot;2026-06-22&quot;:12.2},{&quot;2026-06-23&quot;:12.2},{&quot;2026-06-24&quot;:12.2},{&quot;2026-06-25&quot;:12.2},{&quot;2026-06-26&quot;:12.2},{&quot;2026-06-27&quot;:12.2},{&quot;2026-06-28&quot;:12.2},{&quot;2026-06-29&quot;:12.23},{&quot;2026-06-30&quot;:12.23},{&quot;2026-07-01&quot;:12.23},{&quot;2026-07-02&quot;:12.23},{&quot;2026-07-03&quot;:12.23},{&quot;2026-07-04&quot;:12.23},{&quot;2026-07-05&quot;:12.23},{&quot;2026-07-06&quot;:13.3},{&quot;2026-07-07&quot;:13.3},{&quot;2026-07-08&quot;:13.3},{&quot;2026-07-09&quot;:13.3},{&quot;2026-07-10&quot;:13.3},{&quot;2026-07-11&quot;:13.3},{&quot;2026-07-12&quot;:13.3},{&quot;2026-07-13&quot;:13.46},{&quot;2026-07-14&quot;:13.46},{&quot;2026-07-15&quot;:13.46},{&quot;2026-07-16&quot;:13.46},{&quot;2026-07-17&quot;:13.37},{&quot;2026-07-18&quot;:13.37},{&quot;2026-07-19&quot;:13.37},{&quot;2026-07-20&quot;:13.37},{&quot;2026-07-21&quot;:13.37},{&quot;2026-07-23&quot;:13.37},{&quot;2026-07-25&quot;:13.37},{&quot;2026-07-26&quot;:13.37},{&quot;2026-07-27&quot;:13.37},{&quot;2026-07-29&quot;:13.37},{&quot;2026-07-30&quot;:13.37},{&quot;2026-07-31&quot;:13.7},{&quot;2026-08-01&quot;:13.7},{&quot;2026-08-02&quot;:13.7},{&quot;2026-08-03&quot;:13.7},{&quot;2026-08-04&quot;:13.7},{&quot;2026-08-05&quot;:13.7},{&quot;2026-08-07&quot;:13.7},{&quot;2026-08-08&quot;:13.7},{&quot;2026-08-09&quot;:13.7},{&quot;2026-08-10&quot;:13.7},{&quot;2026-08-11&quot;:13.7},{&quot;2026-08-12&quot;:13.7},{&quot;2026-08-13&quot;:13.7},{&quot;2026-08-14&quot;:13.7},{&quot;2026-08-15&quot;:13.7},{&quot;2026-08-16&quot;:13.7},{&quot;2026-08-17&quot;:13.7},{&quot;2026-08-18&quot;:13.7},{&quot;2026-08-19&quot;:13.7},{&quot;2026-08-20&quot;:13.7},{&quot;2026-08-21&quot;:13.7},{&quot;2026-08-22&quot;:13.7},{&quot;2026-08-23&quot;:13.7},{&quot;2026-08-24&quot;:13.7},{&quot;2026-08-25&quot;:13.7},{&quot;2026-08-26&quot;:13.7},{&quot;2026-08-27&quot;:13.7},{&quot;2026-08-28&quot;:13.7},{&quot;2026-08-29&quot;:13.7},{&quot;2026-08-30&quot;:13.7},{&quot;2026-08-31&quot;:13.7},{&quot;2026-09-01&quot;:13.7},{&quot;2026-09-02&quot;:13.7},{&quot;2026-09-03&quot;:13.7},{&quot;2026-09-04&quot;:13.7},{&quot;2026-09-05&quot;:13.7},{&quot;2026-09-06&quot;:13.7},{&quot;2026-09-07&quot;:13.7},{&quot;2026-09-08&quot;:13.7},{&quot;2026-09-09&quot;:13.7},{&quot;2026-09-10&quot;:13.7},{&quot;2026-09-11&quot;:13.7}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.64},{&quot;2026-06-11&quot;:3.78},{&quot;2026-06-12&quot;:3.84},{&quot;2026-06-13&quot;:3.84},{&quot;2026-06-14&quot;:3.96},{&quot;2026-06-15&quot;:3.94},{&quot;2026-06-16&quot;:3.97},{&quot;2026-06-17&quot;:3.97},{&quot;2026-06-18&quot;:3.97},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:3.88},{&quot;2026-06-21&quot;:3.95},{&quot;2026-06-22&quot;:3.95},{&quot;2026-06-23&quot;:3.91},{&quot;2026-06-24&quot;:3.92},{&quot;2026-06-25&quot;:3.92},{&quot;2026-06-26&quot;:3.87},{&quot;2026-06-27&quot;:3.87},{&quot;2026-06-28&quot;:3.81},{&quot;2026-06-29&quot;:3.78},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.83},{&quot;2026-07-02&quot;:3.78},{&quot;2026-07-03&quot;:3.78},{&quot;2026-07-04&quot;:3.78},{&quot;2026-07-05&quot;:3.67},{&quot;2026-07-06&quot;:3.67},{&quot;2026-07-07&quot;:3.6},{&quot;2026-07-08&quot;:3.57},{&quot;2026-07-09&quot;:3.62},{&quot;2026-07-10&quot;:3.52},{&quot;2026-07-11&quot;:3.45},{&quot;2026-07-12&quot;:3.45},{&quot;2026-07-13&quot;:3.45},{&quot;2026-07-14&quot;:3.45},{&quot;2026-07-15&quot;:3.4},{&quot;2026-07-16&quot;:3.4},{&quot;2026-07-17&quot;:3.4},{&quot;2026-07-18&quot;:3.3},{&quot;2026-07-19&quot;:3.43},{&quot;2026-07-20&quot;:3.43},{&quot;2026-07-21&quot;:3.27},{&quot;2026-07-23&quot;:3.21},{&quot;2026-07-25&quot;:3.17},{&quot;2026-07-26&quot;:3.17},{&quot;2026-07-27&quot;:3.03},{&quot;2026-07-29&quot;:3.08},{&quot;2026-07-30&quot;:3.1},{&quot;2026-07-31&quot;:3.15},{&quot;2026-08-01&quot;:3.14},{&quot;2026-08-02&quot;:3.09},{&quot;2026-08-03&quot;:3.19},{&quot;2026-08-04&quot;:3.18},{&quot;2026-08-05&quot;:3.18},{&quot;2026-08-07&quot;:3.2},{&quot;2026-08-08&quot;:3.2},{&quot;2026-08-09&quot;:3.26},{&quot;2026-08-10&quot;:3.26},{&quot;2026-08-11&quot;:3.31},{&quot;2026-08-12&quot;:3.36},{&quot;2026-08-13&quot;:3.33},{&quot;2026-08-14&quot;:3.28},{&quot;2026-08-15&quot;:3.26},{&quot;2026-08-16&quot;:3.35},{&quot;2026-08-17&quot;:3.3},{&quot;2026-08-18&quot;:3.24},{&quot;2026-08-19&quot;:3.24},{&quot;2026-08-20&quot;:3.24},{&quot;2026-08-21&quot;:3.27},{&quot;2026-08-22&quot;:3.13},{&quot;2026-08-23&quot;:3.15},{&quot;2026-08-24&quot;:3.19},{&quot;2026-08-25&quot;:3.19},{&quot;2026-08-26&quot;:3.18},{&quot;2026-08-27&quot;:3.06},{&quot;2026-08-28&quot;:3.04},{&quot;2026-08-29&quot;:3.04},{&quot;2026-08-30&quot;:2.97},{&quot;2026-08-31&quot;:2.96},{&quot;2026-09-01&quot;:2.96},{&quot;2026-09-02&quot;:2.98},{&quot;2026-09-03&quot;:3.07},{&quot;2026-09-04&quot;:3.05},{&quot;2026-09-05&quot;:3.01},{&quot;2026-09-06&quot;:3.1},{&quot;2026-09-07&quot;:3.13},{&quot;2026-09-08&quot;:3.13},{&quot;2026-09-09&quot;:3.13},{&quot;2026-09-10&quot;:3.07},{&quot;2026-09-11&quot;:3.07}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78425"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Throat Slitter
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Rat Ninja
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.97
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Throat Slitter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85c6af5c-6a64-44ab-a316-0d500a9aa833.jpg?1783915352" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Throat Slitter
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Rat Ninja</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Throat Slitter" src="https://cards.scryfall.io/large/front/8/5/85c6af5c-6a64-44ab-a316-0d500a9aa833.jpg?1783915352" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.97
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.30</span>
              <span class="text-xs text-grey-text">Credit: $1.69</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.66},{&quot;2026-06-10&quot;:2.71},{&quot;2026-06-11&quot;:2.74},{&quot;2026-06-12&quot;:2.65},{&quot;2026-06-13&quot;:2.6},{&quot;2026-06-14&quot;:2.64},{&quot;2026-06-15&quot;:2.68},{&quot;2026-06-16&quot;:2.72},{&quot;2026-06-17&quot;:2.9},{&quot;2026-06-18&quot;:2.98},{&quot;2026-06-19&quot;:2.89},{&quot;2026-06-20&quot;:2.98},{&quot;2026-06-21&quot;:3.07},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-24&quot;:3.12},{&quot;2026-06-25&quot;:3.02},{&quot;2026-06-26&quot;:2.91},{&quot;2026-06-27&quot;:2.89},{&quot;2026-06-28&quot;:2.84},{&quot;2026-06-29&quot;:2.84},{&quot;2026-06-30&quot;:2.84},{&quot;2026-07-01&quot;:2.82},{&quot;2026-07-02&quot;:2.77},{&quot;2026-07-03&quot;:2.77},{&quot;2026-07-04&quot;:2.79},{&quot;2026-07-05&quot;:2.64},{&quot;2026-07-06&quot;:2.78},{&quot;2026-07-07&quot;:2.68},{&quot;2026-07-08&quot;:2.84},{&quot;2026-07-09&quot;:2.67},{&quot;2026-07-10&quot;:2.73},{&quot;2026-07-11&quot;:2.73},{&quot;2026-07-12&quot;:2.79},{&quot;2026-07-13&quot;:2.86},{&quot;2026-07-14&quot;:2.92},{&quot;2026-07-15&quot;:2.96},{&quot;2026-07-16&quot;:2.79},{&quot;2026-07-17&quot;:2.79},{&quot;2026-07-18&quot;:2.8},{&quot;2026-07-19&quot;:2.81},{&quot;2026-07-20&quot;:2.81},{&quot;2026-07-21&quot;:3.08},{&quot;2026-07-23&quot;:3.18},{&quot;2026-07-25&quot;:3.18},{&quot;2026-07-26&quot;:3.18},{&quot;2026-07-27&quot;:3.18},{&quot;2026-07-29&quot;:3.1},{&quot;2026-07-30&quot;:3.1},{&quot;2026-07-31&quot;:3.21},{&quot;2026-08-01&quot;:3.21},{&quot;2026-08-02&quot;:3.21},{&quot;2026-08-03&quot;:3.21},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:2.95},{&quot;2026-08-07&quot;:3.04},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:3.17},{&quot;2026-08-10&quot;:3.08},{&quot;2026-08-11&quot;:2.93},{&quot;2026-08-12&quot;:2.92},{&quot;2026-08-13&quot;:2.92},{&quot;2026-08-14&quot;:3.0},{&quot;2026-08-15&quot;:2.98},{&quot;2026-08-16&quot;:2.85},{&quot;2026-08-17&quot;:2.8},{&quot;2026-08-18&quot;:2.76},{&quot;2026-08-19&quot;:2.76},{&quot;2026-08-20&quot;:2.76},{&quot;2026-08-21&quot;:2.85},{&quot;2026-08-22&quot;:2.85},{&quot;2026-08-23&quot;:2.93},{&quot;2026-08-24&quot;:2.95},{&quot;2026-08-25&quot;:2.95},{&quot;2026-08-26&quot;:2.99},{&quot;2026-08-27&quot;:2.96},{&quot;2026-08-28&quot;:3.1},{&quot;2026-08-29&quot;:3.1},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.2},{&quot;2026-09-01&quot;:3.2},{&quot;2026-09-02&quot;:3.14},{&quot;2026-09-03&quot;:3.14},{&quot;2026-09-04&quot;:3.15},{&quot;2026-09-05&quot;:3.12},{&quot;2026-09-06&quot;:3.04},{&quot;2026-09-07&quot;:3.06},{&quot;2026-09-08&quot;:2.82},{&quot;2026-09-09&quot;:2.99},{&quot;2026-09-10&quot;:3.03},{&quot;2026-09-11&quot;:2.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77211"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Aphetto Alchemist
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Wizard
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.43
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Aphetto Alchemist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7f0338fc-853b-41e4-a8d4-325fcccc84dc.jpg?1783910316" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Aphetto Alchemist
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Aphetto Alchemist" src="https://cards.scryfall.io/large/front/7/f/7f0338fc-853b-41e4-a8d4-325fcccc84dc.jpg?1783910316" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.43
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.00</span>
              <span class="text-xs text-grey-text">Credit: $1.30</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.88},{&quot;2026-06-11&quot;:1.87},{&quot;2026-06-12&quot;:1.87},{&quot;2026-06-13&quot;:1.9},{&quot;2026-06-14&quot;:1.89},{&quot;2026-06-15&quot;:1.94},{&quot;2026-06-16&quot;:1.93},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:2.03},{&quot;2026-06-20&quot;:2.04},{&quot;2026-06-21&quot;:2.03},{&quot;2026-06-22&quot;:2.03},{&quot;2026-06-23&quot;:2.04},{&quot;2026-06-24&quot;:2.07},{&quot;2026-06-25&quot;:2.07},{&quot;2026-06-26&quot;:2.07},{&quot;2026-06-27&quot;:2.08},{&quot;2026-06-28&quot;:1.98},{&quot;2026-06-29&quot;:1.98},{&quot;2026-06-30&quot;:2.01},{&quot;2026-07-01&quot;:2.01},{&quot;2026-07-02&quot;:2.01},{&quot;2026-07-03&quot;:2.03},{&quot;2026-07-04&quot;:2.05},{&quot;2026-07-05&quot;:2.05},{&quot;2026-07-06&quot;:2.05},{&quot;2026-07-07&quot;:2.06},{&quot;2026-07-08&quot;:2.08},{&quot;2026-07-09&quot;:2.09},{&quot;2026-07-10&quot;:2.1},{&quot;2026-07-11&quot;:2.12},{&quot;2026-07-12&quot;:2.11},{&quot;2026-07-13&quot;:2.11},{&quot;2026-07-14&quot;:2.11},{&quot;2026-07-15&quot;:2.12},{&quot;2026-07-16&quot;:2.11},{&quot;2026-07-17&quot;:2.09},{&quot;2026-07-18&quot;:2.13},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.25},{&quot;2026-07-21&quot;:2.26},{&quot;2026-07-23&quot;:2.27},{&quot;2026-07-25&quot;:2.27},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.3},{&quot;2026-07-29&quot;:2.33},{&quot;2026-07-30&quot;:2.27},{&quot;2026-07-31&quot;:2.24},{&quot;2026-08-01&quot;:2.25},{&quot;2026-08-02&quot;:2.32},{&quot;2026-08-03&quot;:2.32},{&quot;2026-08-04&quot;:2.32},{&quot;2026-08-05&quot;:2.38},{&quot;2026-08-07&quot;:2.4},{&quot;2026-08-08&quot;:2.4},{&quot;2026-08-09&quot;:2.39},{&quot;2026-08-10&quot;:2.39},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.34},{&quot;2026-08-13&quot;:2.33},{&quot;2026-08-14&quot;:2.31},{&quot;2026-08-15&quot;:2.4},{&quot;2026-08-16&quot;:2.4},{&quot;2026-08-17&quot;:2.4},{&quot;2026-08-18&quot;:2.4},{&quot;2026-08-19&quot;:2.38},{&quot;2026-08-20&quot;:2.38},{&quot;2026-08-21&quot;:2.41},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.41},{&quot;2026-08-24&quot;:2.41},{&quot;2026-08-25&quot;:2.41},{&quot;2026-08-26&quot;:2.54},{&quot;2026-08-27&quot;:2.56},{&quot;2026-08-28&quot;:2.5},{&quot;2026-08-29&quot;:2.5},{&quot;2026-08-30&quot;:2.51},{&quot;2026-08-31&quot;:2.53},{&quot;2026-09-01&quot;:2.53},{&quot;2026-09-02&quot;:2.5},{&quot;2026-09-03&quot;:2.5},{&quot;2026-09-04&quot;:2.51},{&quot;2026-09-05&quot;:2.5},{&quot;2026-09-06&quot;:2.42},{&quot;2026-09-07&quot;:2.44},{&quot;2026-09-08&quot;:2.45},{&quot;2026-09-09&quot;:2.44},{&quot;2026-09-10&quot;:2.44},{&quot;2026-09-11&quot;:2.43}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="52935"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Lim-Dûl&#39;s Vault
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.37
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lim-Dûl&#39;s Vault" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/4/44d117d8-222b-4d10-b02b-c1ff110a1c50.jpg?1783910593" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Lim-Dûl&#39;s Vault
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lim-Dûl&#39;s Vault" src="https://cards.scryfall.io/large/front/4/4/44d117d8-222b-4d10-b02b-c1ff110a1c50.jpg?1783910593" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.37
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:2.09},{&quot;2026-06-15&quot;:2.07},{&quot;2026-06-16&quot;:2.12},{&quot;2026-06-17&quot;:2.16},{&quot;2026-06-18&quot;:2.25},{&quot;2026-06-19&quot;:2.26},{&quot;2026-06-20&quot;:2.34},{&quot;2026-06-21&quot;:2.34},{&quot;2026-06-22&quot;:2.46},{&quot;2026-06-23&quot;:2.45},{&quot;2026-06-24&quot;:2.62},{&quot;2026-06-25&quot;:2.67},{&quot;2026-06-26&quot;:2.71},{&quot;2026-06-27&quot;:2.94},{&quot;2026-06-28&quot;:2.92},{&quot;2026-06-29&quot;:2.93},{&quot;2026-06-30&quot;:2.81},{&quot;2026-07-01&quot;:2.73},{&quot;2026-07-02&quot;:2.76},{&quot;2026-07-03&quot;:2.73},{&quot;2026-07-04&quot;:2.76},{&quot;2026-07-05&quot;:2.65},{&quot;2026-07-06&quot;:2.7},{&quot;2026-07-07&quot;:2.7},{&quot;2026-07-08&quot;:2.54},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.55},{&quot;2026-07-11&quot;:2.41},{&quot;2026-07-12&quot;:2.47},{&quot;2026-07-13&quot;:2.39},{&quot;2026-07-14&quot;:2.34},{&quot;2026-07-15&quot;:2.24},{&quot;2026-07-16&quot;:2.12},{&quot;2026-07-17&quot;:2.1},{&quot;2026-07-18&quot;:2.08},{&quot;2026-07-19&quot;:2.21},{&quot;2026-07-20&quot;:2.33},{&quot;2026-07-21&quot;:2.31},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.43},{&quot;2026-07-24&quot;:2.6},{&quot;2026-07-25&quot;:2.6},{&quot;2026-07-26&quot;:2.72},{&quot;2026-07-27&quot;:2.77},{&quot;2026-07-28&quot;:2.77},{&quot;2026-07-29&quot;:2.78},{&quot;2026-07-30&quot;:2.81},{&quot;2026-07-31&quot;:2.85},{&quot;2026-08-01&quot;:2.85},{&quot;2026-08-02&quot;:3.02},{&quot;2026-08-03&quot;:3.05},{&quot;2026-08-04&quot;:2.96},{&quot;2026-08-05&quot;:2.96},{&quot;2026-08-07&quot;:2.84},{&quot;2026-08-08&quot;:2.82},{&quot;2026-08-09&quot;:2.7},{&quot;2026-08-10&quot;:2.7},{&quot;2026-08-11&quot;:2.4},{&quot;2026-08-12&quot;:2.37},{&quot;2026-08-13&quot;:2.34},{&quot;2026-08-14&quot;:2.42},{&quot;2026-08-15&quot;:2.36},{&quot;2026-08-16&quot;:2.33},{&quot;2026-08-17&quot;:2.24},{&quot;2026-08-18&quot;:2.34},{&quot;2026-08-19&quot;:2.46},{&quot;2026-08-20&quot;:2.4},{&quot;2026-08-21&quot;:2.55},{&quot;2026-08-22&quot;:2.53},{&quot;2026-08-23&quot;:2.65},{&quot;2026-08-24&quot;:2.61},{&quot;2026-08-25&quot;:2.58},{&quot;2026-08-26&quot;:2.6},{&quot;2026-08-27&quot;:2.56},{&quot;2026-08-28&quot;:2.47},{&quot;2026-08-29&quot;:2.47},{&quot;2026-08-30&quot;:2.63},{&quot;2026-08-31&quot;:2.5},{&quot;2026-09-01&quot;:2.44},{&quot;2026-09-02&quot;:2.44},{&quot;2026-09-03&quot;:2.44},{&quot;2026-09-04&quot;:2.31},{&quot;2026-09-05&quot;:2.31},{&quot;2026-09-06&quot;:2.31},{&quot;2026-09-07&quot;:2.4},{&quot;2026-09-08&quot;:2.4},{&quot;2026-09-09&quot;:2.42},{&quot;2026-09-10&quot;:2.37},{&quot;2026-09-11&quot;:2.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="86497"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dragon&#39;s Rage Channeler
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Shaman
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $2.37
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dragon&#39;s Rage Channeler" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e162de32-d326-4576-9081-a7b2efd51d46.jpg?1783922326" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Dragon&#39;s Rage Channeler
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Shaman</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dragon&#39;s Rage Channeler" src="https://cards.scryfall.io/large/front/e/1/e162de32-d326-4576-9081-a7b2efd51d46.jpg?1783922326" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.37
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.15</span>
              <span class="text-xs text-grey-text">Credit: $1.50</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.68},{&quot;2026-06-12&quot;:1.68},{&quot;2026-06-13&quot;:1.8},{&quot;2026-06-14&quot;:1.8},{&quot;2026-06-15&quot;:1.8},{&quot;2026-06-16&quot;:1.93},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.93},{&quot;2026-06-20&quot;:1.93},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.93},{&quot;2026-06-23&quot;:1.93},{&quot;2026-06-24&quot;:1.93},{&quot;2026-06-25&quot;:1.93},{&quot;2026-06-26&quot;:1.93},{&quot;2026-06-27&quot;:1.93},{&quot;2026-06-28&quot;:1.93},{&quot;2026-06-29&quot;:1.89},{&quot;2026-06-30&quot;:1.92},{&quot;2026-07-01&quot;:1.94},{&quot;2026-07-02&quot;:1.94},{&quot;2026-07-03&quot;:1.94},{&quot;2026-07-04&quot;:1.92},{&quot;2026-07-05&quot;:1.94},{&quot;2026-07-06&quot;:1.94},{&quot;2026-07-07&quot;:1.97},{&quot;2026-07-08&quot;:1.98},{&quot;2026-07-09&quot;:1.98},{&quot;2026-07-10&quot;:1.98},{&quot;2026-07-11&quot;:1.98},{&quot;2026-07-12&quot;:1.98},{&quot;2026-07-13&quot;:1.98},{&quot;2026-07-14&quot;:1.98},{&quot;2026-07-15&quot;:1.98},{&quot;2026-07-16&quot;:1.97},{&quot;2026-07-17&quot;:2.1},{&quot;2026-07-18&quot;:2.13},{&quot;2026-07-19&quot;:2.13},{&quot;2026-07-20&quot;:2.13},{&quot;2026-07-21&quot;:2.13},{&quot;2026-07-23&quot;:2.13},{&quot;2026-07-25&quot;:2.13},{&quot;2026-07-26&quot;:2.13},{&quot;2026-07-27&quot;:2.13},{&quot;2026-07-28&quot;:2.13},{&quot;2026-07-29&quot;:2.13},{&quot;2026-07-30&quot;:2.11},{&quot;2026-07-31&quot;:2.08},{&quot;2026-08-01&quot;:2.11},{&quot;2026-08-02&quot;:2.18},{&quot;2026-08-03&quot;:2.24},{&quot;2026-08-04&quot;:2.24},{&quot;2026-08-05&quot;:2.24},{&quot;2026-08-07&quot;:2.24},{&quot;2026-08-08&quot;:2.24},{&quot;2026-08-09&quot;:2.24},{&quot;2026-08-10&quot;:2.24},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.24},{&quot;2026-08-13&quot;:2.24},{&quot;2026-08-14&quot;:2.24},{&quot;2026-08-15&quot;:2.24},{&quot;2026-08-16&quot;:2.29},{&quot;2026-08-17&quot;:2.29},{&quot;2026-08-18&quot;:2.29},{&quot;2026-08-19&quot;:2.29},{&quot;2026-08-20&quot;:2.29},{&quot;2026-08-21&quot;:2.29},{&quot;2026-08-22&quot;:2.29},{&quot;2026-08-23&quot;:2.29},{&quot;2026-08-24&quot;:2.32},{&quot;2026-08-25&quot;:2.32},{&quot;2026-08-26&quot;:2.32},{&quot;2026-08-27&quot;:2.32},{&quot;2026-08-28&quot;:2.32},{&quot;2026-08-29&quot;:2.32},{&quot;2026-08-30&quot;:2.37},{&quot;2026-08-31&quot;:2.37},{&quot;2026-09-01&quot;:2.37},{&quot;2026-09-02&quot;:2.37},{&quot;2026-09-03&quot;:2.37},{&quot;2026-09-04&quot;:2.4},{&quot;2026-09-05&quot;:2.37},{&quot;2026-09-06&quot;:2.37},{&quot;2026-09-07&quot;:2.37},{&quot;2026-09-08&quot;:2.37},{&quot;2026-09-09&quot;:2.37},{&quot;2026-09-10&quot;:2.37},{&quot;2026-09-11&quot;:2.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="86701"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Tireless Provisioner
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elf Scout
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.37
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tireless Provisioner" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/1163fe84-c5d5-42c8-b7cd-d206a9b0bd3f.jpg?1783916537" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Tireless Provisioner
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Elf Scout</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tireless Provisioner" src="https://cards.scryfall.io/large/front/1/1/1163fe84-c5d5-42c8-b7cd-d206a9b0bd3f.jpg?1783916537" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.37
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  12%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.77},{&quot;2026-06-14&quot;:2.77},{&quot;2026-06-15&quot;:2.79},{&quot;2026-06-16&quot;:2.75},{&quot;2026-06-17&quot;:2.75},{&quot;2026-06-18&quot;:2.76},{&quot;2026-06-19&quot;:2.79},{&quot;2026-06-20&quot;:2.76},{&quot;2026-06-21&quot;:2.71},{&quot;2026-06-22&quot;:2.66},{&quot;2026-06-23&quot;:2.66},{&quot;2026-06-24&quot;:2.51},{&quot;2026-06-25&quot;:2.6},{&quot;2026-06-26&quot;:2.49},{&quot;2026-06-27&quot;:2.53},{&quot;2026-06-28&quot;:2.45},{&quot;2026-06-29&quot;:2.47},{&quot;2026-06-30&quot;:2.45},{&quot;2026-07-01&quot;:2.68},{&quot;2026-07-02&quot;:2.78},{&quot;2026-07-03&quot;:2.78},{&quot;2026-07-04&quot;:2.81},{&quot;2026-07-05&quot;:2.81},{&quot;2026-07-06&quot;:2.79},{&quot;2026-07-07&quot;:2.62},{&quot;2026-07-08&quot;:2.48},{&quot;2026-07-09&quot;:2.43},{&quot;2026-07-10&quot;:2.35},{&quot;2026-07-11&quot;:2.35},{&quot;2026-07-12&quot;:2.47},{&quot;2026-07-13&quot;:2.48},{&quot;2026-07-14&quot;:2.63},{&quot;2026-07-15&quot;:2.63},{&quot;2026-07-16&quot;:2.52},{&quot;2026-07-17&quot;:2.55},{&quot;2026-07-18&quot;:3.13},{&quot;2026-07-19&quot;:3.15},{&quot;2026-07-20&quot;:3.18},{&quot;2026-07-21&quot;:3.18},{&quot;2026-07-22&quot;:3.16},{&quot;2026-07-23&quot;:3.26},{&quot;2026-07-24&quot;:3.26},{&quot;2026-07-25&quot;:3.36},{&quot;2026-07-26&quot;:3.36},{&quot;2026-07-27&quot;:3.59},{&quot;2026-07-28&quot;:3.7},{&quot;2026-07-29&quot;:3.55},{&quot;2026-07-30&quot;:3.42},{&quot;2026-07-31&quot;:2.65},{&quot;2026-08-01&quot;:2.68},{&quot;2026-08-02&quot;:2.66},{&quot;2026-08-03&quot;:2.78},{&quot;2026-08-04&quot;:2.59},{&quot;2026-08-05&quot;:2.64},{&quot;2026-08-07&quot;:2.77},{&quot;2026-08-08&quot;:2.67},{&quot;2026-08-09&quot;:2.67},{&quot;2026-08-10&quot;:2.65},{&quot;2026-08-11&quot;:2.67},{&quot;2026-08-12&quot;:2.73},{&quot;2026-08-13&quot;:2.62},{&quot;2026-08-14&quot;:2.66},{&quot;2026-08-15&quot;:2.67},{&quot;2026-08-16&quot;:2.56},{&quot;2026-08-17&quot;:2.42},{&quot;2026-08-18&quot;:2.45},{&quot;2026-08-19&quot;:2.48},{&quot;2026-08-20&quot;:2.57},{&quot;2026-08-21&quot;:2.58},{&quot;2026-08-22&quot;:2.58},{&quot;2026-08-23&quot;:2.58},{&quot;2026-08-24&quot;:2.61},{&quot;2026-08-25&quot;:2.61},{&quot;2026-08-26&quot;:2.68},{&quot;2026-08-27&quot;:2.69},{&quot;2026-08-28&quot;:2.79},{&quot;2026-08-29&quot;:2.79},{&quot;2026-08-30&quot;:2.78},{&quot;2026-08-31&quot;:2.68},{&quot;2026-09-01&quot;:2.72},{&quot;2026-09-02&quot;:2.71},{&quot;2026-09-03&quot;:2.72},{&quot;2026-09-04&quot;:2.69},{&quot;2026-09-05&quot;:2.69},{&quot;2026-09-06&quot;:2.76},{&quot;2026-09-07&quot;:2.88},{&quot;2026-09-08&quot;:2.67},{&quot;2026-09-09&quot;:2.62},{&quot;2026-09-10&quot;:2.47},{&quot;2026-09-11&quot;:2.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="80436"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Crystalline Sliver
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Sliver
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Crystalline Sliver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c10b48a-f21c-4f4a-84d1-2beedef05270.jpg?1783929669" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Crystalline Sliver
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Sliver</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crystalline Sliver" src="https://cards.scryfall.io/large/front/8/c/8c10b48a-f21c-4f4a-84d1-2beedef05270.jpg?1783929669" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.31
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  13%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.85</span>
              <span class="text-xs text-grey-text">Credit: $1.11</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.5},{&quot;2026-06-12&quot;:2.63},{&quot;2026-06-13&quot;:2.59},{&quot;2026-06-14&quot;:2.7},{&quot;2026-06-15&quot;:2.78},{&quot;2026-06-16&quot;:3.0},{&quot;2026-06-17&quot;:2.94},{&quot;2026-06-18&quot;:2.94},{&quot;2026-06-19&quot;:2.92},{&quot;2026-06-20&quot;:2.79},{&quot;2026-06-21&quot;:2.73},{&quot;2026-06-22&quot;:2.89},{&quot;2026-06-23&quot;:3.08},{&quot;2026-06-24&quot;:3.07},{&quot;2026-06-25&quot;:3.01},{&quot;2026-06-26&quot;:2.89},{&quot;2026-06-27&quot;:2.9},{&quot;2026-06-28&quot;:2.62},{&quot;2026-06-29&quot;:2.69},{&quot;2026-06-30&quot;:2.69},{&quot;2026-07-01&quot;:2.68},{&quot;2026-07-02&quot;:2.68},{&quot;2026-07-03&quot;:2.65},{&quot;2026-07-04&quot;:2.65},{&quot;2026-07-05&quot;:2.8},{&quot;2026-07-06&quot;:2.8},{&quot;2026-07-07&quot;:2.82},{&quot;2026-07-08&quot;:2.67},{&quot;2026-07-09&quot;:2.74},{&quot;2026-07-10&quot;:2.69},{&quot;2026-07-11&quot;:2.69},{&quot;2026-07-12&quot;:2.8},{&quot;2026-07-13&quot;:2.74},{&quot;2026-07-14&quot;:2.63},{&quot;2026-07-15&quot;:2.63},{&quot;2026-07-16&quot;:2.89},{&quot;2026-07-17&quot;:2.89},{&quot;2026-07-18&quot;:2.82},{&quot;2026-07-19&quot;:2.89},{&quot;2026-07-20&quot;:2.76},{&quot;2026-07-21&quot;:2.89},{&quot;2026-07-23&quot;:2.97},{&quot;2026-07-25&quot;:2.98},{&quot;2026-07-26&quot;:2.94},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-28&quot;:2.97},{&quot;2026-07-29&quot;:2.85},{&quot;2026-07-30&quot;:2.92},{&quot;2026-07-31&quot;:2.96},{&quot;2026-08-01&quot;:2.96},{&quot;2026-08-02&quot;:2.92},{&quot;2026-08-03&quot;:2.96},{&quot;2026-08-04&quot;:3.04},{&quot;2026-08-05&quot;:2.89},{&quot;2026-08-07&quot;:2.79},{&quot;2026-08-08&quot;:3.1},{&quot;2026-08-09&quot;:2.92},{&quot;2026-08-10&quot;:2.76},{&quot;2026-08-11&quot;:2.67},{&quot;2026-08-12&quot;:2.57},{&quot;2026-08-13&quot;:2.53},{&quot;2026-08-14&quot;:2.56},{&quot;2026-08-15&quot;:2.53},{&quot;2026-08-16&quot;:2.5},{&quot;2026-08-17&quot;:2.44},{&quot;2026-08-18&quot;:2.56},{&quot;2026-08-19&quot;:2.56},{&quot;2026-08-20&quot;:2.56},{&quot;2026-08-21&quot;:2.62},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.34},{&quot;2026-08-24&quot;:2.5},{&quot;2026-08-25&quot;:2.5},{&quot;2026-08-26&quot;:2.62},{&quot;2026-08-27&quot;:2.62},{&quot;2026-08-28&quot;:2.77},{&quot;2026-08-29&quot;:2.77},{&quot;2026-08-30&quot;:2.8},{&quot;2026-08-31&quot;:2.72},{&quot;2026-09-01&quot;:2.72},{&quot;2026-09-02&quot;:2.72},{&quot;2026-09-03&quot;:2.72},{&quot;2026-09-04&quot;:2.66},{&quot;2026-09-05&quot;:2.65},{&quot;2026-09-06&quot;:2.6},{&quot;2026-09-07&quot;:2.51},{&quot;2026-09-08&quot;:2.48},{&quot;2026-09-09&quot;:2.48},{&quot;2026-09-10&quot;:2.46},{&quot;2026-09-11&quot;:2.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76621"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Flux Channeler
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Wizard
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.13
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Flux Channeler" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/26a679fa-cefc-4222-a12c-3ab886940956.jpg?1783910345" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Flux Channeler
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Flux Channeler" src="https://cards.scryfall.io/large/front/2/6/26a679fa-cefc-4222-a12c-3ab886940956.jpg?1783910345" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.13
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  6%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.30</span>
              <span class="text-xs text-grey-text">Credit: $1.69</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.65},{&quot;2026-06-12&quot;:2.65},{&quot;2026-06-13&quot;:2.62},{&quot;2026-06-14&quot;:2.59},{&quot;2026-06-15&quot;:2.59},{&quot;2026-06-16&quot;:2.59},{&quot;2026-06-17&quot;:2.59},{&quot;2026-06-18&quot;:2.59},{&quot;2026-06-19&quot;:2.59},{&quot;2026-06-20&quot;:2.59},{&quot;2026-06-21&quot;:2.6},{&quot;2026-06-22&quot;:2.6},{&quot;2026-06-23&quot;:2.59},{&quot;2026-06-24&quot;:2.59},{&quot;2026-06-25&quot;:2.59},{&quot;2026-06-26&quot;:2.59},{&quot;2026-06-27&quot;:2.59},{&quot;2026-06-28&quot;:2.59},{&quot;2026-06-29&quot;:2.55},{&quot;2026-06-30&quot;:2.42},{&quot;2026-07-01&quot;:2.37},{&quot;2026-07-02&quot;:2.38},{&quot;2026-07-03&quot;:2.37},{&quot;2026-07-04&quot;:2.37},{&quot;2026-07-05&quot;:2.37},{&quot;2026-07-06&quot;:2.35},{&quot;2026-07-07&quot;:2.34},{&quot;2026-07-08&quot;:2.33},{&quot;2026-07-09&quot;:2.29},{&quot;2026-07-10&quot;:2.29},{&quot;2026-07-11&quot;:2.29},{&quot;2026-07-12&quot;:2.28},{&quot;2026-07-13&quot;:2.29},{&quot;2026-07-14&quot;:2.29},{&quot;2026-07-15&quot;:2.29},{&quot;2026-07-16&quot;:2.29},{&quot;2026-07-17&quot;:2.35},{&quot;2026-07-18&quot;:2.38},{&quot;2026-07-19&quot;:2.38},{&quot;2026-07-20&quot;:2.35},{&quot;2026-07-21&quot;:2.35},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-25&quot;:2.36},{&quot;2026-07-26&quot;:2.36},{&quot;2026-07-27&quot;:2.36},{&quot;2026-07-28&quot;:2.36},{&quot;2026-07-29&quot;:2.36},{&quot;2026-07-30&quot;:2.33},{&quot;2026-07-31&quot;:2.39},{&quot;2026-08-01&quot;:2.39},{&quot;2026-08-02&quot;:2.39},{&quot;2026-08-03&quot;:2.37},{&quot;2026-08-04&quot;:2.37},{&quot;2026-08-05&quot;:2.37},{&quot;2026-08-07&quot;:2.46},{&quot;2026-08-08&quot;:2.44},{&quot;2026-08-09&quot;:2.44},{&quot;2026-08-10&quot;:2.41},{&quot;2026-08-11&quot;:2.4},{&quot;2026-08-12&quot;:2.4},{&quot;2026-08-13&quot;:2.37},{&quot;2026-08-14&quot;:2.37},{&quot;2026-08-15&quot;:2.36},{&quot;2026-08-16&quot;:2.35},{&quot;2026-08-17&quot;:2.34},{&quot;2026-08-18&quot;:2.34},{&quot;2026-08-19&quot;:2.34},{&quot;2026-08-20&quot;:2.34},{&quot;2026-08-21&quot;:2.34},{&quot;2026-08-22&quot;:2.33},{&quot;2026-08-23&quot;:2.27},{&quot;2026-08-24&quot;:2.27},{&quot;2026-08-25&quot;:2.27},{&quot;2026-08-26&quot;:2.26},{&quot;2026-08-27&quot;:2.28},{&quot;2026-08-28&quot;:2.28},{&quot;2026-08-29&quot;:2.28},{&quot;2026-08-30&quot;:2.29},{&quot;2026-08-31&quot;:2.29},{&quot;2026-09-01&quot;:2.29},{&quot;2026-09-02&quot;:2.29},{&quot;2026-09-03&quot;:2.28},{&quot;2026-09-04&quot;:2.28},{&quot;2026-09-05&quot;:2.27},{&quot;2026-09-06&quot;:2.27},{&quot;2026-09-07&quot;:2.24},{&quot;2026-09-08&quot;:2.14},{&quot;2026-09-09&quot;:2.13},{&quot;2026-09-10&quot;:2.13},{&quot;2026-09-11&quot;:2.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="81698"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Keen Sense
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment — Aura
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.12
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Keen Sense" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/3/83767c02-8553-4a9d-8818-ff3e5d068451.jpg?1783910126" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Keen Sense
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment — Aura</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Keen Sense" src="https://cards.scryfall.io/large/front/8/3/83767c02-8553-4a9d-8818-ff3e5d068451.jpg?1783910126" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.12
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.00</span>
              <span class="text-xs text-grey-text">Credit: $1.30</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.67},{&quot;2026-06-14&quot;:1.67},{&quot;2026-06-15&quot;:1.66},{&quot;2026-06-16&quot;:1.64},{&quot;2026-06-17&quot;:1.63},{&quot;2026-06-18&quot;:1.63},{&quot;2026-06-19&quot;:1.64},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.64},{&quot;2026-06-22&quot;:1.63},{&quot;2026-06-23&quot;:1.62},{&quot;2026-06-24&quot;:1.62},{&quot;2026-06-25&quot;:1.62},{&quot;2026-06-26&quot;:1.62},{&quot;2026-06-27&quot;:1.62},{&quot;2026-06-28&quot;:1.65},{&quot;2026-06-29&quot;:1.69},{&quot;2026-06-30&quot;:1.69},{&quot;2026-07-01&quot;:1.71},{&quot;2026-07-02&quot;:1.73},{&quot;2026-07-03&quot;:1.73},{&quot;2026-07-04&quot;:1.76},{&quot;2026-07-05&quot;:1.74},{&quot;2026-07-06&quot;:1.76},{&quot;2026-07-07&quot;:1.71},{&quot;2026-07-08&quot;:1.73},{&quot;2026-07-09&quot;:1.74},{&quot;2026-07-10&quot;:1.75},{&quot;2026-07-11&quot;:1.79},{&quot;2026-07-12&quot;:1.79},{&quot;2026-07-13&quot;:1.79},{&quot;2026-07-14&quot;:1.8},{&quot;2026-07-15&quot;:1.81},{&quot;2026-07-16&quot;:1.82},{&quot;2026-07-17&quot;:1.85},{&quot;2026-07-18&quot;:1.83},{&quot;2026-07-19&quot;:1.87},{&quot;2026-07-20&quot;:1.93},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-22&quot;:1.96},{&quot;2026-07-23&quot;:2.01},{&quot;2026-07-24&quot;:2.01},{&quot;2026-07-25&quot;:2.06},{&quot;2026-07-26&quot;:2.09},{&quot;2026-07-27&quot;:2.08},{&quot;2026-07-28&quot;:2.1},{&quot;2026-07-29&quot;:2.11},{&quot;2026-07-30&quot;:2.12},{&quot;2026-07-31&quot;:2.04},{&quot;2026-08-01&quot;:2.0},{&quot;2026-08-02&quot;:1.97},{&quot;2026-08-03&quot;:1.97},{&quot;2026-08-04&quot;:1.95},{&quot;2026-08-05&quot;:1.96},{&quot;2026-08-07&quot;:1.95},{&quot;2026-08-08&quot;:1.95},{&quot;2026-08-09&quot;:2.04},{&quot;2026-08-10&quot;:2.07},{&quot;2026-08-11&quot;:2.07},{&quot;2026-08-12&quot;:2.06},{&quot;2026-08-13&quot;:2.06},{&quot;2026-08-14&quot;:2.08},{&quot;2026-08-15&quot;:2.07},{&quot;2026-08-16&quot;:2.11},{&quot;2026-08-17&quot;:2.16},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.17},{&quot;2026-08-20&quot;:2.16},{&quot;2026-08-21&quot;:2.16},{&quot;2026-08-22&quot;:2.17},{&quot;2026-08-23&quot;:2.12},{&quot;2026-08-24&quot;:2.16},{&quot;2026-08-25&quot;:2.18},{&quot;2026-08-26&quot;:2.15},{&quot;2026-08-27&quot;:2.15},{&quot;2026-08-28&quot;:2.16},{&quot;2026-08-29&quot;:2.16},{&quot;2026-08-30&quot;:2.18},{&quot;2026-08-31&quot;:2.18},{&quot;2026-09-01&quot;:2.19},{&quot;2026-09-02&quot;:2.19},{&quot;2026-09-03&quot;:2.19},{&quot;2026-09-04&quot;:2.19},{&quot;2026-09-05&quot;:2.19},{&quot;2026-09-06&quot;:2.2},{&quot;2026-09-07&quot;:2.2},{&quot;2026-09-08&quot;:2.21},{&quot;2026-09-09&quot;:2.2},{&quot;2026-09-10&quot;:2.15},{&quot;2026-09-11&quot;:2.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77189"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Buried Alive
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              27%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.11
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Buried Alive" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/71c69ce7-a2eb-4e6c-8441-53399f0a056c.jpg?1783910316" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Buried Alive
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Buried Alive" src="https://cards.scryfall.io/large/front/7/1/71c69ce7-a2eb-4e6c-8441-53399f0a056c.jpg?1783910316" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.11
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  27%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.09},{&quot;2026-06-13&quot;:1.08},{&quot;2026-06-14&quot;:1.09},{&quot;2026-06-15&quot;:1.09},{&quot;2026-06-16&quot;:1.1},{&quot;2026-06-17&quot;:1.11},{&quot;2026-06-18&quot;:1.11},{&quot;2026-06-19&quot;:1.09},{&quot;2026-06-20&quot;:1.09},{&quot;2026-06-21&quot;:1.13},{&quot;2026-06-22&quot;:1.13},{&quot;2026-06-23&quot;:1.14},{&quot;2026-06-24&quot;:1.14},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.1},{&quot;2026-06-27&quot;:1.11},{&quot;2026-06-28&quot;:1.6},{&quot;2026-06-29&quot;:1.6},{&quot;2026-06-30&quot;:1.6},{&quot;2026-07-01&quot;:1.6},{&quot;2026-07-02&quot;:1.58},{&quot;2026-07-03&quot;:1.61},{&quot;2026-07-04&quot;:1.61},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.65},{&quot;2026-07-07&quot;:1.66},{&quot;2026-07-08&quot;:1.66},{&quot;2026-07-09&quot;:1.67},{&quot;2026-07-10&quot;:1.68},{&quot;2026-07-11&quot;:1.67},{&quot;2026-07-12&quot;:1.67},{&quot;2026-07-13&quot;:1.67},{&quot;2026-07-14&quot;:1.67},{&quot;2026-07-15&quot;:1.71},{&quot;2026-07-16&quot;:1.22},{&quot;2026-07-17&quot;:1.22},{&quot;2026-07-18&quot;:1.23},{&quot;2026-07-19&quot;:1.23},{&quot;2026-07-20&quot;:1.25},{&quot;2026-07-21&quot;:1.23},{&quot;2026-07-23&quot;:1.23},{&quot;2026-07-24&quot;:1.27},{&quot;2026-07-25&quot;:1.29},{&quot;2026-07-26&quot;:1.25},{&quot;2026-07-27&quot;:1.3},{&quot;2026-07-28&quot;:1.25},{&quot;2026-07-29&quot;:1.23},{&quot;2026-07-30&quot;:1.21},{&quot;2026-07-31&quot;:1.25},{&quot;2026-08-01&quot;:1.25},{&quot;2026-08-02&quot;:1.25},{&quot;2026-08-03&quot;:1.2},{&quot;2026-08-04&quot;:1.13},{&quot;2026-08-05&quot;:1.16},{&quot;2026-08-07&quot;:1.28},{&quot;2026-08-08&quot;:1.29},{&quot;2026-08-09&quot;:1.3},{&quot;2026-08-10&quot;:1.29},{&quot;2026-08-11&quot;:1.28},{&quot;2026-08-12&quot;:1.3},{&quot;2026-08-13&quot;:1.35},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.25},{&quot;2026-08-16&quot;:1.39},{&quot;2026-08-17&quot;:1.39},{&quot;2026-08-18&quot;:1.4},{&quot;2026-08-19&quot;:1.37},{&quot;2026-08-20&quot;:1.37},{&quot;2026-08-21&quot;:1.37},{&quot;2026-08-22&quot;:1.4},{&quot;2026-08-23&quot;:1.43},{&quot;2026-08-24&quot;:1.43},{&quot;2026-08-25&quot;:1.42},{&quot;2026-08-26&quot;:1.42},{&quot;2026-08-27&quot;:1.39},{&quot;2026-08-28&quot;:1.4},{&quot;2026-08-29&quot;:1.4},{&quot;2026-08-30&quot;:1.42},{&quot;2026-08-31&quot;:1.5},{&quot;2026-09-01&quot;:1.52},{&quot;2026-09-02&quot;:1.48},{&quot;2026-09-03&quot;:1.57},{&quot;2026-09-04&quot;:1.66},{&quot;2026-09-05&quot;:1.66},{&quot;2026-09-06&quot;:1.68},{&quot;2026-09-07&quot;:1.69},{&quot;2026-09-08&quot;:1.7},{&quot;2026-09-09&quot;:1.92},{&quot;2026-09-10&quot;:2.11},{&quot;2026-09-11&quot;:2.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53193"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Standstill
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.09
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Standstill" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95f92488-7a7b-48ad-a3b9-8eb83cef1c48.jpg?1783910567" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Standstill
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Standstill" src="https://cards.scryfall.io/large/front/9/5/95f92488-7a7b-48ad-a3b9-8eb83cef1c48.jpg?1783910567" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.09
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  13%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $13.99
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$2.00</span>
              <span class="text-xs text-grey-text">Credit: $2.60</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:14.72},{&quot;2026-06-12&quot;:14.68},{&quot;2026-06-13&quot;:14.68},{&quot;2026-06-14&quot;:14.62},{&quot;2026-06-15&quot;:14.62},{&quot;2026-06-16&quot;:14.62},{&quot;2026-06-17&quot;:14.62},{&quot;2026-06-18&quot;:14.62},{&quot;2026-06-19&quot;:14.62},{&quot;2026-06-20&quot;:14.62},{&quot;2026-06-21&quot;:14.62},{&quot;2026-06-22&quot;:14.62},{&quot;2026-06-23&quot;:14.62},{&quot;2026-06-24&quot;:14.62},{&quot;2026-06-25&quot;:14.62},{&quot;2026-06-26&quot;:14.62},{&quot;2026-06-27&quot;:14.54},{&quot;2026-06-28&quot;:14.54},{&quot;2026-06-29&quot;:14.54},{&quot;2026-06-30&quot;:14.54},{&quot;2026-07-01&quot;:14.54},{&quot;2026-07-02&quot;:14.54},{&quot;2026-07-03&quot;:14.54},{&quot;2026-07-04&quot;:14.54},{&quot;2026-07-05&quot;:14.54},{&quot;2026-07-06&quot;:14.54},{&quot;2026-07-07&quot;:14.54},{&quot;2026-07-08&quot;:14.54},{&quot;2026-07-09&quot;:14.54},{&quot;2026-07-10&quot;:14.54},{&quot;2026-07-11&quot;:14.54},{&quot;2026-07-12&quot;:14.54},{&quot;2026-07-13&quot;:14.54},{&quot;2026-07-14&quot;:14.54},{&quot;2026-07-15&quot;:14.54},{&quot;2026-07-16&quot;:14.54},{&quot;2026-07-17&quot;:14.54},{&quot;2026-07-18&quot;:14.54},{&quot;2026-07-19&quot;:14.54},{&quot;2026-07-20&quot;:14.54},{&quot;2026-07-21&quot;:14.54},{&quot;2026-07-23&quot;:14.54},{&quot;2026-07-25&quot;:14.54},{&quot;2026-07-26&quot;:14.54},{&quot;2026-07-27&quot;:14.36},{&quot;2026-07-28&quot;:14.36},{&quot;2026-07-29&quot;:14.36},{&quot;2026-07-30&quot;:14.36},{&quot;2026-07-31&quot;:14.21},{&quot;2026-08-01&quot;:14.21},{&quot;2026-08-02&quot;:14.21},{&quot;2026-08-03&quot;:14.21},{&quot;2026-08-04&quot;:14.21},{&quot;2026-08-05&quot;:14.21},{&quot;2026-08-07&quot;:14.21},{&quot;2026-08-08&quot;:14.07},{&quot;2026-08-09&quot;:14.07},{&quot;2026-08-10&quot;:14.07},{&quot;2026-08-11&quot;:14.07},{&quot;2026-08-12&quot;:14.07},{&quot;2026-08-13&quot;:14.07},{&quot;2026-08-14&quot;:14.07},{&quot;2026-08-15&quot;:14.07},{&quot;2026-08-16&quot;:14.07},{&quot;2026-08-17&quot;:14.07},{&quot;2026-08-18&quot;:14.07},{&quot;2026-08-19&quot;:13.95},{&quot;2026-08-20&quot;:13.95},{&quot;2026-08-21&quot;:13.99},{&quot;2026-08-22&quot;:14.02},{&quot;2026-08-23&quot;:14.02},{&quot;2026-08-24&quot;:14.02},{&quot;2026-08-25&quot;:14.02},{&quot;2026-08-26&quot;:14.02},{&quot;2026-08-27&quot;:14.02},{&quot;2026-08-28&quot;:14.02},{&quot;2026-08-29&quot;:14.02},{&quot;2026-08-30&quot;:14.02},{&quot;2026-08-31&quot;:14.02},{&quot;2026-09-01&quot;:14.02},{&quot;2026-09-02&quot;:14.02},{&quot;2026-09-03&quot;:14.02},{&quot;2026-09-04&quot;:14.02},{&quot;2026-09-05&quot;:14.02},{&quot;2026-09-06&quot;:14.02},{&quot;2026-09-07&quot;:14.02},{&quot;2026-09-08&quot;:14.02},{&quot;2026-09-09&quot;:14.02},{&quot;2026-09-10&quot;:14.02},{&quot;2026-09-11&quot;:13.99}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.78},{&quot;2026-06-12&quot;:2.78},{&quot;2026-06-13&quot;:2.86},{&quot;2026-06-14&quot;:2.84},{&quot;2026-06-15&quot;:2.84},{&quot;2026-06-16&quot;:2.77},{&quot;2026-06-17&quot;:2.77},{&quot;2026-06-18&quot;:2.67},{&quot;2026-06-19&quot;:2.68},{&quot;2026-06-20&quot;:2.68},{&quot;2026-06-21&quot;:2.68},{&quot;2026-06-22&quot;:2.7},{&quot;2026-06-23&quot;:2.7},{&quot;2026-06-24&quot;:2.7},{&quot;2026-06-25&quot;:2.68},{&quot;2026-06-26&quot;:2.68},{&quot;2026-06-27&quot;:2.73},{&quot;2026-06-28&quot;:2.71},{&quot;2026-06-29&quot;:2.71},{&quot;2026-06-30&quot;:2.71},{&quot;2026-07-01&quot;:2.68},{&quot;2026-07-02&quot;:2.68},{&quot;2026-07-03&quot;:2.51},{&quot;2026-07-04&quot;:2.49},{&quot;2026-07-05&quot;:2.48},{&quot;2026-07-06&quot;:2.48},{&quot;2026-07-07&quot;:2.48},{&quot;2026-07-08&quot;:2.47},{&quot;2026-07-09&quot;:2.36},{&quot;2026-07-10&quot;:2.36},{&quot;2026-07-11&quot;:2.32},{&quot;2026-07-12&quot;:2.32},{&quot;2026-07-13&quot;:2.32},{&quot;2026-07-14&quot;:2.31},{&quot;2026-07-15&quot;:2.27},{&quot;2026-07-16&quot;:2.25},{&quot;2026-07-17&quot;:2.25},{&quot;2026-07-18&quot;:2.32},{&quot;2026-07-19&quot;:2.25},{&quot;2026-07-20&quot;:2.31},{&quot;2026-07-21&quot;:2.27},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-25&quot;:2.38},{&quot;2026-07-26&quot;:2.43},{&quot;2026-07-27&quot;:2.44},{&quot;2026-07-28&quot;:2.46},{&quot;2026-07-29&quot;:2.42},{&quot;2026-07-30&quot;:2.43},{&quot;2026-07-31&quot;:2.4},{&quot;2026-08-01&quot;:2.41},{&quot;2026-08-02&quot;:2.35},{&quot;2026-08-03&quot;:2.34},{&quot;2026-08-04&quot;:2.25},{&quot;2026-08-05&quot;:2.33},{&quot;2026-08-07&quot;:2.25},{&quot;2026-08-08&quot;:2.25},{&quot;2026-08-09&quot;:2.19},{&quot;2026-08-10&quot;:2.18},{&quot;2026-08-11&quot;:2.13},{&quot;2026-08-12&quot;:2.15},{&quot;2026-08-13&quot;:2.17},{&quot;2026-08-14&quot;:2.21},{&quot;2026-08-15&quot;:2.21},{&quot;2026-08-16&quot;:2.21},{&quot;2026-08-17&quot;:2.24},{&quot;2026-08-18&quot;:2.26},{&quot;2026-08-19&quot;:2.2},{&quot;2026-08-20&quot;:2.2},{&quot;2026-08-21&quot;:2.13},{&quot;2026-08-22&quot;:2.12},{&quot;2026-08-23&quot;:2.08},{&quot;2026-08-24&quot;:2.1},{&quot;2026-08-25&quot;:2.1},{&quot;2026-08-26&quot;:2.08},{&quot;2026-08-27&quot;:2.05},{&quot;2026-08-28&quot;:2.06},{&quot;2026-08-29&quot;:2.06},{&quot;2026-08-30&quot;:1.99},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.87},{&quot;2026-09-02&quot;:1.85},{&quot;2026-09-03&quot;:1.87},{&quot;2026-09-04&quot;:1.87},{&quot;2026-09-05&quot;:1.85},{&quot;2026-09-06&quot;:1.85},{&quot;2026-09-07&quot;:1.87},{&quot;2026-09-08&quot;:1.87},{&quot;2026-09-09&quot;:1.91},{&quot;2026-09-10&quot;:2.09},{&quot;2026-09-11&quot;:2.09}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78104"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Wall of Blood
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Wall
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.06
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Wall of Blood" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/82919b9d-b54b-4874-89f0-a7b12af6d420.jpg?1783925035" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Wall of Blood
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Wall</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wall of Blood" src="https://cards.scryfall.io/large/front/8/2/82919b9d-b54b-4874-89f0-a7b12af6d420.jpg?1783925035" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.06
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.23</span>
              <span class="text-xs text-grey-text">Credit: $0.30</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.66},{&quot;2026-06-14&quot;:2.64},{&quot;2026-06-15&quot;:2.79},{&quot;2026-06-16&quot;:2.79},{&quot;2026-06-17&quot;:3.2},{&quot;2026-06-18&quot;:3.12},{&quot;2026-06-19&quot;:3.23},{&quot;2026-06-20&quot;:3.34},{&quot;2026-06-21&quot;:3.58},{&quot;2026-06-22&quot;:3.57},{&quot;2026-06-23&quot;:3.31},{&quot;2026-06-24&quot;:3.43},{&quot;2026-06-25&quot;:3.46},{&quot;2026-06-26&quot;:3.56},{&quot;2026-06-27&quot;:3.45},{&quot;2026-06-28&quot;:3.42},{&quot;2026-06-29&quot;:3.5},{&quot;2026-06-30&quot;:3.25},{&quot;2026-07-01&quot;:3.08},{&quot;2026-07-02&quot;:3.02},{&quot;2026-07-03&quot;:2.77},{&quot;2026-07-04&quot;:2.74},{&quot;2026-07-05&quot;:2.49},{&quot;2026-07-06&quot;:2.5},{&quot;2026-07-07&quot;:2.5},{&quot;2026-07-08&quot;:2.55},{&quot;2026-07-09&quot;:2.45},{&quot;2026-07-10&quot;:2.44},{&quot;2026-07-11&quot;:2.48},{&quot;2026-07-12&quot;:2.51},{&quot;2026-07-13&quot;:2.54},{&quot;2026-07-14&quot;:2.45},{&quot;2026-07-15&quot;:2.55},{&quot;2026-07-16&quot;:2.5},{&quot;2026-07-17&quot;:2.46},{&quot;2026-07-18&quot;:2.48},{&quot;2026-07-19&quot;:2.32},{&quot;2026-07-20&quot;:2.32},{&quot;2026-07-21&quot;:2.29},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.29},{&quot;2026-07-24&quot;:2.23},{&quot;2026-07-25&quot;:2.23},{&quot;2026-07-26&quot;:2.23},{&quot;2026-07-27&quot;:2.21},{&quot;2026-07-28&quot;:2.1},{&quot;2026-07-29&quot;:2.1},{&quot;2026-07-30&quot;:2.1},{&quot;2026-07-31&quot;:2.05},{&quot;2026-08-01&quot;:2.05},{&quot;2026-08-02&quot;:1.91},{&quot;2026-08-03&quot;:1.94},{&quot;2026-08-04&quot;:1.92},{&quot;2026-08-05&quot;:1.72},{&quot;2026-08-07&quot;:1.68},{&quot;2026-08-08&quot;:1.62},{&quot;2026-08-09&quot;:1.59},{&quot;2026-08-10&quot;:1.54},{&quot;2026-08-11&quot;:1.56},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.55},{&quot;2026-08-14&quot;:1.54},{&quot;2026-08-15&quot;:1.54},{&quot;2026-08-16&quot;:1.54},{&quot;2026-08-17&quot;:1.5},{&quot;2026-08-18&quot;:1.53},{&quot;2026-08-19&quot;:1.57},{&quot;2026-08-20&quot;:1.68},{&quot;2026-08-21&quot;:1.69},{&quot;2026-08-22&quot;:1.84},{&quot;2026-08-23&quot;:1.84},{&quot;2026-08-24&quot;:2.1},{&quot;2026-08-25&quot;:2.14},{&quot;2026-08-26&quot;:2.31},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.32},{&quot;2026-08-29&quot;:2.32},{&quot;2026-08-30&quot;:2.32},{&quot;2026-08-31&quot;:2.22},{&quot;2026-09-01&quot;:2.3},{&quot;2026-09-02&quot;:2.25},{&quot;2026-09-03&quot;:2.23},{&quot;2026-09-04&quot;:2.02},{&quot;2026-09-05&quot;:2.03},{&quot;2026-09-06&quot;:2.1},{&quot;2026-09-07&quot;:1.96},{&quot;2026-09-08&quot;:2.02},{&quot;2026-09-09&quot;:2.1},{&quot;2026-09-10&quot;:2.06},{&quot;2026-09-11&quot;:2.06}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82228"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Gemstone Mine
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              8%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.97
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Gemstone Mine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/d/bdd581e3-6ed4-4a2c-91d6-ef3aa304b7e8.jpg?1783910106" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Gemstone Mine
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gemstone Mine" src="https://cards.scryfall.io/large/front/b/d/bdd581e3-6ed4-4a2c-91d6-ef3aa304b7e8.jpg?1783910106" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.97
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  8%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.94},{&quot;2026-06-14&quot;:1.94},{&quot;2026-06-15&quot;:1.94},{&quot;2026-06-16&quot;:1.94},{&quot;2026-06-17&quot;:1.94},{&quot;2026-06-18&quot;:2.05},{&quot;2026-06-19&quot;:2.05},{&quot;2026-06-20&quot;:2.06},{&quot;2026-06-21&quot;:2.05},{&quot;2026-06-22&quot;:2.11},{&quot;2026-06-23&quot;:2.19},{&quot;2026-06-24&quot;:2.27},{&quot;2026-06-25&quot;:2.27},{&quot;2026-06-26&quot;:2.27},{&quot;2026-06-27&quot;:2.27},{&quot;2026-06-28&quot;:2.32},{&quot;2026-06-29&quot;:2.25},{&quot;2026-06-30&quot;:2.25},{&quot;2026-07-01&quot;:2.25},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.24},{&quot;2026-07-04&quot;:2.21},{&quot;2026-07-05&quot;:2.21},{&quot;2026-07-06&quot;:2.21},{&quot;2026-07-07&quot;:2.21},{&quot;2026-07-08&quot;:2.18},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.18},{&quot;2026-07-11&quot;:2.18},{&quot;2026-07-12&quot;:2.18},{&quot;2026-07-13&quot;:2.18},{&quot;2026-07-14&quot;:2.18},{&quot;2026-07-15&quot;:2.18},{&quot;2026-07-16&quot;:2.52},{&quot;2026-07-17&quot;:2.52},{&quot;2026-07-18&quot;:2.52},{&quot;2026-07-19&quot;:2.56},{&quot;2026-07-20&quot;:2.56},{&quot;2026-07-21&quot;:2.56},{&quot;2026-07-22&quot;:2.58},{&quot;2026-07-23&quot;:2.58},{&quot;2026-07-24&quot;:2.57},{&quot;2026-07-25&quot;:2.57},{&quot;2026-07-26&quot;:2.53},{&quot;2026-07-27&quot;:2.53},{&quot;2026-07-28&quot;:2.53},{&quot;2026-07-29&quot;:2.53},{&quot;2026-07-30&quot;:2.55},{&quot;2026-07-31&quot;:2.5},{&quot;2026-08-01&quot;:2.5},{&quot;2026-08-02&quot;:2.46},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.45},{&quot;2026-08-05&quot;:2.45},{&quot;2026-08-07&quot;:2.03},{&quot;2026-08-08&quot;:2.03},{&quot;2026-08-09&quot;:2.09},{&quot;2026-08-10&quot;:2.02},{&quot;2026-08-11&quot;:2.02},{&quot;2026-08-12&quot;:2.02},{&quot;2026-08-13&quot;:2.09},{&quot;2026-08-14&quot;:2.09},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:2.02},{&quot;2026-08-17&quot;:1.78},{&quot;2026-08-18&quot;:1.78},{&quot;2026-08-19&quot;:1.74},{&quot;2026-08-20&quot;:1.74},{&quot;2026-08-21&quot;:1.74},{&quot;2026-08-22&quot;:1.75},{&quot;2026-08-23&quot;:1.75},{&quot;2026-08-24&quot;:1.75},{&quot;2026-08-25&quot;:1.81},{&quot;2026-08-26&quot;:1.83},{&quot;2026-08-27&quot;:1.83},{&quot;2026-08-28&quot;:1.94},{&quot;2026-08-29&quot;:1.94},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.84},{&quot;2026-09-02&quot;:1.84},{&quot;2026-09-03&quot;:1.83},{&quot;2026-09-04&quot;:1.83},{&quot;2026-09-05&quot;:1.83},{&quot;2026-09-06&quot;:1.85},{&quot;2026-09-07&quot;:1.91},{&quot;2026-09-08&quot;:1.9},{&quot;2026-09-09&quot;:1.93},{&quot;2026-09-10&quot;:1.97},{&quot;2026-09-11&quot;:1.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85759"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Heartstone
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              18%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.97
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Heartstone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/1/5139d090-fcf1-419f-8ce7-0d544c8e1217.jpg?1783909988" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Heartstone
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Heartstone" src="https://cards.scryfall.io/large/front/5/1/5139d090-fcf1-419f-8ce7-0d544c8e1217.jpg?1783909988" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.97
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  18%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.35</span>
              <span class="text-xs text-grey-text">Credit: $1.76</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.66},{&quot;2026-06-13&quot;:1.65},{&quot;2026-06-14&quot;:1.6},{&quot;2026-06-15&quot;:1.58},{&quot;2026-06-16&quot;:1.62},{&quot;2026-06-17&quot;:1.67},{&quot;2026-06-18&quot;:1.69},{&quot;2026-06-19&quot;:1.69},{&quot;2026-06-20&quot;:1.61},{&quot;2026-06-21&quot;:1.52},{&quot;2026-06-22&quot;:1.53},{&quot;2026-06-23&quot;:1.53},{&quot;2026-06-24&quot;:1.47},{&quot;2026-06-25&quot;:1.47},{&quot;2026-06-26&quot;:1.47},{&quot;2026-06-27&quot;:1.43},{&quot;2026-06-28&quot;:1.39},{&quot;2026-06-29&quot;:1.39},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.42},{&quot;2026-07-02&quot;:1.38},{&quot;2026-07-03&quot;:1.39},{&quot;2026-07-04&quot;:1.45},{&quot;2026-07-05&quot;:1.43},{&quot;2026-07-06&quot;:1.51},{&quot;2026-07-07&quot;:1.51},{&quot;2026-07-08&quot;:1.51},{&quot;2026-07-09&quot;:1.54},{&quot;2026-07-10&quot;:1.56},{&quot;2026-07-11&quot;:1.56},{&quot;2026-07-12&quot;:1.6},{&quot;2026-07-13&quot;:1.63},{&quot;2026-07-14&quot;:1.6},{&quot;2026-07-15&quot;:1.6},{&quot;2026-07-16&quot;:1.65},{&quot;2026-07-17&quot;:1.65},{&quot;2026-07-18&quot;:1.7},{&quot;2026-07-19&quot;:1.7},{&quot;2026-07-20&quot;:1.7},{&quot;2026-07-21&quot;:1.63},{&quot;2026-07-23&quot;:1.65},{&quot;2026-07-24&quot;:1.65},{&quot;2026-07-25&quot;:1.65},{&quot;2026-07-26&quot;:1.65},{&quot;2026-07-27&quot;:1.76},{&quot;2026-07-28&quot;:1.73},{&quot;2026-07-29&quot;:1.73},{&quot;2026-07-30&quot;:1.73},{&quot;2026-07-31&quot;:1.7},{&quot;2026-08-01&quot;:1.67},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.78},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.9},{&quot;2026-08-07&quot;:1.96},{&quot;2026-08-08&quot;:1.96},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.91},{&quot;2026-08-11&quot;:1.91},{&quot;2026-08-12&quot;:1.91},{&quot;2026-08-13&quot;:1.85},{&quot;2026-08-14&quot;:1.98},{&quot;2026-08-15&quot;:1.9},{&quot;2026-08-16&quot;:1.9},{&quot;2026-08-17&quot;:1.93},{&quot;2026-08-18&quot;:1.95},{&quot;2026-08-19&quot;:1.93},{&quot;2026-08-20&quot;:1.93},{&quot;2026-08-21&quot;:1.82},{&quot;2026-08-22&quot;:1.83},{&quot;2026-08-23&quot;:1.83},{&quot;2026-08-24&quot;:1.82},{&quot;2026-08-25&quot;:1.82},{&quot;2026-08-26&quot;:1.82},{&quot;2026-08-27&quot;:1.84},{&quot;2026-08-28&quot;:1.74},{&quot;2026-08-29&quot;:1.74},{&quot;2026-08-30&quot;:1.62},{&quot;2026-08-31&quot;:1.7},{&quot;2026-09-01&quot;:1.73},{&quot;2026-09-02&quot;:1.71},{&quot;2026-09-03&quot;:1.71},{&quot;2026-09-04&quot;:1.63},{&quot;2026-09-05&quot;:1.67},{&quot;2026-09-06&quot;:1.81},{&quot;2026-09-07&quot;:1.81},{&quot;2026-09-08&quot;:1.97},{&quot;2026-09-09&quot;:1.97},{&quot;2026-09-10&quot;:1.97},{&quot;2026-09-11&quot;:1.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="84298"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Horned Sliver
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Sliver
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.91
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Horned Sliver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/0/101c69f7-d786-4973-bbd2-e3fbff360f73.jpg?1783910036" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Horned Sliver
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Sliver</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Horned Sliver" src="https://cards.scryfall.io/large/front/1/0/101c69f7-d786-4973-bbd2-e3fbff360f73.jpg?1783910036" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.91
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.45</span>
              <span class="text-xs text-grey-text">Credit: $0.59</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.33},{&quot;2026-06-14&quot;:2.34},{&quot;2026-06-15&quot;:2.34},{&quot;2026-06-16&quot;:2.34},{&quot;2026-06-17&quot;:2.35},{&quot;2026-06-18&quot;:2.35},{&quot;2026-06-19&quot;:2.35},{&quot;2026-06-20&quot;:2.35},{&quot;2026-06-21&quot;:2.35},{&quot;2026-06-22&quot;:2.34},{&quot;2026-06-23&quot;:2.34},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.36},{&quot;2026-06-26&quot;:2.36},{&quot;2026-06-27&quot;:2.36},{&quot;2026-06-28&quot;:2.36},{&quot;2026-06-29&quot;:2.36},{&quot;2026-06-30&quot;:2.36},{&quot;2026-07-01&quot;:2.35},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.4},{&quot;2026-07-04&quot;:2.4},{&quot;2026-07-05&quot;:2.4},{&quot;2026-07-06&quot;:2.4},{&quot;2026-07-07&quot;:2.39},{&quot;2026-07-08&quot;:2.39},{&quot;2026-07-09&quot;:2.39},{&quot;2026-07-10&quot;:2.41},{&quot;2026-07-11&quot;:2.41},{&quot;2026-07-12&quot;:2.41},{&quot;2026-07-13&quot;:2.41},{&quot;2026-07-14&quot;:2.42},{&quot;2026-07-15&quot;:2.42},{&quot;2026-07-16&quot;:2.41},{&quot;2026-07-17&quot;:2.41},{&quot;2026-07-18&quot;:2.41},{&quot;2026-07-19&quot;:2.41},{&quot;2026-07-20&quot;:2.41},{&quot;2026-07-21&quot;:2.4},{&quot;2026-07-22&quot;:2.41},{&quot;2026-07-23&quot;:2.43},{&quot;2026-07-24&quot;:2.42},{&quot;2026-07-25&quot;:2.42},{&quot;2026-07-26&quot;:2.4},{&quot;2026-07-27&quot;:2.39},{&quot;2026-07-28&quot;:2.39},{&quot;2026-07-29&quot;:2.39},{&quot;2026-07-30&quot;:2.33},{&quot;2026-07-31&quot;:2.32},{&quot;2026-08-01&quot;:2.32},{&quot;2026-08-02&quot;:2.27},{&quot;2026-08-03&quot;:2.23},{&quot;2026-08-04&quot;:2.23},{&quot;2026-08-05&quot;:2.23},{&quot;2026-08-07&quot;:2.15},{&quot;2026-08-08&quot;:2.09},{&quot;2026-08-09&quot;:2.05},{&quot;2026-08-10&quot;:2.04},{&quot;2026-08-11&quot;:2.03},{&quot;2026-08-12&quot;:2.02},{&quot;2026-08-13&quot;:2.02},{&quot;2026-08-14&quot;:2.02},{&quot;2026-08-15&quot;:2.02},{&quot;2026-08-16&quot;:2.02},{&quot;2026-08-17&quot;:2.01},{&quot;2026-08-18&quot;:2.01},{&quot;2026-08-19&quot;:2.02},{&quot;2026-08-20&quot;:2.02},{&quot;2026-08-21&quot;:2.02},{&quot;2026-08-22&quot;:2.02},{&quot;2026-08-23&quot;:2.02},{&quot;2026-08-24&quot;:2.03},{&quot;2026-08-25&quot;:2.03},{&quot;2026-08-26&quot;:2.03},{&quot;2026-08-27&quot;:2.03},{&quot;2026-08-28&quot;:2.02},{&quot;2026-08-29&quot;:2.02},{&quot;2026-08-30&quot;:1.99},{&quot;2026-08-31&quot;:1.99},{&quot;2026-09-01&quot;:2.0},{&quot;2026-09-02&quot;:1.98},{&quot;2026-09-03&quot;:1.96},{&quot;2026-09-04&quot;:1.91},{&quot;2026-09-05&quot;:1.9},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.9},{&quot;2026-09-08&quot;:1.91},{&quot;2026-09-09&quot;:1.91},{&quot;2026-09-10&quot;:1.91},{&quot;2026-09-11&quot;:1.91}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79797"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Storm-Kiln Artist
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dwarf Shaman
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.79
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Storm-Kiln Artist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/d/cd489ca6-1a43-4305-9940-fa9dbcd58a89.jpg?1783913657" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Storm-Kiln Artist
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Dwarf Shaman</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Storm-Kiln Artist" src="https://cards.scryfall.io/large/front/c/d/cd489ca6-1a43-4305-9940-fa9dbcd58a89.jpg?1783913657" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.79
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.02},{&quot;2026-06-11&quot;:2.02},{&quot;2026-06-12&quot;:2.06},{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:1.99},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:1.99},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.93},{&quot;2026-06-20&quot;:1.9},{&quot;2026-06-21&quot;:1.9},{&quot;2026-06-22&quot;:1.92},{&quot;2026-06-23&quot;:1.93},{&quot;2026-06-24&quot;:1.91},{&quot;2026-06-25&quot;:1.91},{&quot;2026-06-26&quot;:1.91},{&quot;2026-06-27&quot;:1.91},{&quot;2026-06-28&quot;:1.91},{&quot;2026-06-29&quot;:1.91},{&quot;2026-06-30&quot;:1.91},{&quot;2026-07-01&quot;:1.9},{&quot;2026-07-02&quot;:1.84},{&quot;2026-07-03&quot;:1.88},{&quot;2026-07-04&quot;:1.88},{&quot;2026-07-05&quot;:1.88},{&quot;2026-07-06&quot;:1.92},{&quot;2026-07-07&quot;:1.92},{&quot;2026-07-08&quot;:1.94},{&quot;2026-07-09&quot;:1.94},{&quot;2026-07-10&quot;:1.94},{&quot;2026-07-11&quot;:1.89},{&quot;2026-07-12&quot;:1.88},{&quot;2026-07-13&quot;:1.88},{&quot;2026-07-14&quot;:1.93},{&quot;2026-07-15&quot;:2.02},{&quot;2026-07-16&quot;:2.02},{&quot;2026-07-17&quot;:2.06},{&quot;2026-07-18&quot;:2.02},{&quot;2026-07-19&quot;:2.13},{&quot;2026-07-20&quot;:2.19},{&quot;2026-07-21&quot;:2.19},{&quot;2026-07-23&quot;:2.19},{&quot;2026-07-25&quot;:2.13},{&quot;2026-07-26&quot;:2.05},{&quot;2026-07-27&quot;:2.05},{&quot;2026-07-29&quot;:1.98},{&quot;2026-07-30&quot;:1.96},{&quot;2026-07-31&quot;:1.86},{&quot;2026-08-01&quot;:1.82},{&quot;2026-08-02&quot;:1.82},{&quot;2026-08-03&quot;:1.79},{&quot;2026-08-04&quot;:1.79},{&quot;2026-08-05&quot;:2.03},{&quot;2026-08-07&quot;:1.87},{&quot;2026-08-08&quot;:2.02},{&quot;2026-08-09&quot;:2.02},{&quot;2026-08-10&quot;:2.04},{&quot;2026-08-11&quot;:1.99},{&quot;2026-08-12&quot;:2.23},{&quot;2026-08-13&quot;:2.26},{&quot;2026-08-14&quot;:2.16},{&quot;2026-08-15&quot;:2.14},{&quot;2026-08-16&quot;:1.87},{&quot;2026-08-17&quot;:1.87},{&quot;2026-08-18&quot;:1.79},{&quot;2026-08-19&quot;:1.74},{&quot;2026-08-20&quot;:1.74},{&quot;2026-08-21&quot;:1.6},{&quot;2026-08-22&quot;:1.59},{&quot;2026-08-23&quot;:1.47},{&quot;2026-08-24&quot;:1.67},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:1.78},{&quot;2026-08-28&quot;:1.79},{&quot;2026-08-29&quot;:1.79},{&quot;2026-08-30&quot;:1.92},{&quot;2026-08-31&quot;:1.92},{&quot;2026-09-01&quot;:1.92},{&quot;2026-09-02&quot;:1.86},{&quot;2026-09-03&quot;:1.84},{&quot;2026-09-04&quot;:1.88},{&quot;2026-09-05&quot;:1.85},{&quot;2026-09-06&quot;:1.85},{&quot;2026-09-07&quot;:1.85},{&quot;2026-09-08&quot;:1.95},{&quot;2026-09-09&quot;:1.78},{&quot;2026-09-10&quot;:1.78},{&quot;2026-09-11&quot;:1.79}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83256"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Ajani&#39;s Welcome
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.74
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ajani&#39;s Welcome" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b7d0793f-0180-41a4-b9e8-1c527d1b978b.jpg?1783910073" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Ajani&#39;s Welcome
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ajani&#39;s Welcome" src="https://cards.scryfall.io/large/front/b/7/b7d0793f-0180-41a4-b9e8-1c527d1b978b.jpg?1783910073" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.74
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.75</span>
              <span class="text-xs text-grey-text">Credit: $2.28</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.2},{&quot;2026-06-14&quot;:2.2},{&quot;2026-06-15&quot;:2.17},{&quot;2026-06-16&quot;:2.13},{&quot;2026-06-17&quot;:2.11},{&quot;2026-06-18&quot;:2.12},{&quot;2026-06-19&quot;:2.07},{&quot;2026-06-20&quot;:2.05},{&quot;2026-06-21&quot;:2.05},{&quot;2026-06-22&quot;:2.06},{&quot;2026-06-23&quot;:2.06},{&quot;2026-06-24&quot;:2.06},{&quot;2026-06-25&quot;:2.05},{&quot;2026-06-26&quot;:2.05},{&quot;2026-06-27&quot;:2.05},{&quot;2026-06-28&quot;:2.05},{&quot;2026-06-29&quot;:2.05},{&quot;2026-06-30&quot;:2.05},{&quot;2026-07-01&quot;:2.0},{&quot;2026-07-02&quot;:2.0},{&quot;2026-07-03&quot;:1.97},{&quot;2026-07-04&quot;:1.97},{&quot;2026-07-05&quot;:1.94},{&quot;2026-07-06&quot;:1.91},{&quot;2026-07-07&quot;:1.91},{&quot;2026-07-08&quot;:1.92},{&quot;2026-07-09&quot;:1.93},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.89},{&quot;2026-07-12&quot;:1.91},{&quot;2026-07-13&quot;:1.91},{&quot;2026-07-14&quot;:1.88},{&quot;2026-07-15&quot;:1.88},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:1.89},{&quot;2026-07-18&quot;:1.91},{&quot;2026-07-19&quot;:1.91},{&quot;2026-07-20&quot;:1.91},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-22&quot;:1.91},{&quot;2026-07-23&quot;:1.9},{&quot;2026-07-24&quot;:1.86},{&quot;2026-07-25&quot;:1.85},{&quot;2026-07-26&quot;:1.86},{&quot;2026-07-27&quot;:1.86},{&quot;2026-07-28&quot;:1.87},{&quot;2026-07-29&quot;:1.86},{&quot;2026-07-30&quot;:1.85},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.81},{&quot;2026-08-02&quot;:1.78},{&quot;2026-08-03&quot;:1.8},{&quot;2026-08-04&quot;:1.76},{&quot;2026-08-05&quot;:1.75},{&quot;2026-08-07&quot;:1.77},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.79},{&quot;2026-08-10&quot;:1.79},{&quot;2026-08-11&quot;:1.78},{&quot;2026-08-12&quot;:1.77},{&quot;2026-08-13&quot;:1.77},{&quot;2026-08-14&quot;:1.74},{&quot;2026-08-15&quot;:1.74},{&quot;2026-08-16&quot;:1.69},{&quot;2026-08-17&quot;:1.71},{&quot;2026-08-18&quot;:1.67},{&quot;2026-08-19&quot;:1.67},{&quot;2026-08-20&quot;:1.65},{&quot;2026-08-21&quot;:1.67},{&quot;2026-08-22&quot;:1.68},{&quot;2026-08-23&quot;:1.7},{&quot;2026-08-24&quot;:1.72},{&quot;2026-08-25&quot;:1.73},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:1.73},{&quot;2026-08-28&quot;:1.74},{&quot;2026-08-29&quot;:1.74},{&quot;2026-08-30&quot;:1.73},{&quot;2026-08-31&quot;:1.7},{&quot;2026-09-01&quot;:1.75},{&quot;2026-09-02&quot;:1.75},{&quot;2026-09-03&quot;:1.74},{&quot;2026-09-04&quot;:1.73},{&quot;2026-09-05&quot;:1.72},{&quot;2026-09-06&quot;:1.7},{&quot;2026-09-07&quot;:1.69},{&quot;2026-09-08&quot;:1.68},{&quot;2026-09-09&quot;:1.71},{&quot;2026-09-10&quot;:1.73},{&quot;2026-09-11&quot;:1.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85027"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Spawning Pit
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.69
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Spawning Pit" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/d/2d50685e-1905-4a48-a7bf-82afcf5b6838.jpg?1783910012" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Spawning Pit
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Spawning Pit" src="https://cards.scryfall.io/large/front/2/d/2d50685e-1905-4a48-a7bf-82afcf5b6838.jpg?1783910012" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.69
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.83},{&quot;2026-06-14&quot;:1.83},{&quot;2026-06-15&quot;:1.87},{&quot;2026-06-16&quot;:1.87},{&quot;2026-06-17&quot;:1.89},{&quot;2026-06-18&quot;:1.91},{&quot;2026-06-19&quot;:1.9},{&quot;2026-06-20&quot;:1.92},{&quot;2026-06-21&quot;:1.92},{&quot;2026-06-22&quot;:1.92},{&quot;2026-06-23&quot;:1.92},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.95},{&quot;2026-06-27&quot;:1.96},{&quot;2026-06-28&quot;:1.96},{&quot;2026-06-29&quot;:1.97},{&quot;2026-06-30&quot;:1.98},{&quot;2026-07-01&quot;:1.98},{&quot;2026-07-02&quot;:1.89},{&quot;2026-07-03&quot;:1.89},{&quot;2026-07-04&quot;:1.88},{&quot;2026-07-05&quot;:1.88},{&quot;2026-07-06&quot;:1.89},{&quot;2026-07-07&quot;:1.86},{&quot;2026-07-08&quot;:1.89},{&quot;2026-07-09&quot;:1.88},{&quot;2026-07-10&quot;:1.87},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.82},{&quot;2026-07-13&quot;:1.8},{&quot;2026-07-14&quot;:1.8},{&quot;2026-07-15&quot;:1.78},{&quot;2026-07-16&quot;:1.77},{&quot;2026-07-17&quot;:1.77},{&quot;2026-07-18&quot;:1.76},{&quot;2026-07-19&quot;:1.77},{&quot;2026-07-20&quot;:1.77},{&quot;2026-07-21&quot;:1.75},{&quot;2026-07-22&quot;:1.72},{&quot;2026-07-23&quot;:1.72},{&quot;2026-07-24&quot;:1.75},{&quot;2026-07-25&quot;:1.75},{&quot;2026-07-26&quot;:1.82},{&quot;2026-07-27&quot;:1.79},{&quot;2026-07-28&quot;:1.78},{&quot;2026-07-29&quot;:1.78},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.74},{&quot;2026-08-01&quot;:1.72},{&quot;2026-08-02&quot;:1.72},{&quot;2026-08-03&quot;:1.72},{&quot;2026-08-04&quot;:1.72},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.66},{&quot;2026-08-08&quot;:1.68},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.65},{&quot;2026-08-11&quot;:1.65},{&quot;2026-08-12&quot;:1.58},{&quot;2026-08-13&quot;:1.59},{&quot;2026-08-14&quot;:1.59},{&quot;2026-08-15&quot;:1.59},{&quot;2026-08-16&quot;:1.56},{&quot;2026-08-17&quot;:1.54},{&quot;2026-08-18&quot;:1.54},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.55},{&quot;2026-08-21&quot;:1.58},{&quot;2026-08-22&quot;:1.59},{&quot;2026-08-23&quot;:1.59},{&quot;2026-08-24&quot;:1.58},{&quot;2026-08-25&quot;:1.58},{&quot;2026-08-26&quot;:1.58},{&quot;2026-08-27&quot;:1.58},{&quot;2026-08-28&quot;:1.6},{&quot;2026-08-29&quot;:1.6},{&quot;2026-08-30&quot;:1.6},{&quot;2026-08-31&quot;:1.61},{&quot;2026-09-01&quot;:1.61},{&quot;2026-09-02&quot;:1.59},{&quot;2026-09-03&quot;:1.59},{&quot;2026-09-04&quot;:1.59},{&quot;2026-09-05&quot;:1.61},{&quot;2026-09-06&quot;:1.58},{&quot;2026-09-07&quot;:1.63},{&quot;2026-09-08&quot;:1.7},{&quot;2026-09-09&quot;:1.7},{&quot;2026-09-10&quot;:1.69},{&quot;2026-09-11&quot;:1.69}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53386"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Tormod&#39;s Crypt
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.58
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tormod&#39;s Crypt" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/d/3d75c583-4150-406b-b0e2-5c7610e77a6b.jpg?1783910548" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Tormod&#39;s Crypt
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tormod&#39;s Crypt" src="https://cards.scryfall.io/large/front/3/d/3d75c583-4150-406b-b0e2-5c7610e77a6b.jpg?1783910548" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.58
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  5%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $27.93
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.00</span>
              <span class="text-xs text-grey-text">Credit: $1.30</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:26.67},{&quot;2026-06-14&quot;:26.67},{&quot;2026-06-15&quot;:26.67},{&quot;2026-06-16&quot;:26.67},{&quot;2026-06-17&quot;:26.67},{&quot;2026-06-18&quot;:26.67},{&quot;2026-06-19&quot;:26.8},{&quot;2026-06-20&quot;:26.8},{&quot;2026-06-21&quot;:26.8},{&quot;2026-06-22&quot;:26.8},{&quot;2026-06-23&quot;:26.97},{&quot;2026-06-24&quot;:26.97},{&quot;2026-06-25&quot;:26.97},{&quot;2026-06-26&quot;:26.97},{&quot;2026-06-27&quot;:26.97},{&quot;2026-06-28&quot;:26.97},{&quot;2026-06-29&quot;:26.97},{&quot;2026-06-30&quot;:26.97},{&quot;2026-07-01&quot;:26.97},{&quot;2026-07-02&quot;:26.97},{&quot;2026-07-03&quot;:27.12},{&quot;2026-07-04&quot;:27.12},{&quot;2026-07-05&quot;:27.12},{&quot;2026-07-06&quot;:27.12},{&quot;2026-07-07&quot;:27.12},{&quot;2026-07-08&quot;:27.12},{&quot;2026-07-09&quot;:27.12},{&quot;2026-07-10&quot;:27.12},{&quot;2026-07-11&quot;:27.12},{&quot;2026-07-12&quot;:27.12},{&quot;2026-07-13&quot;:27.12},{&quot;2026-07-14&quot;:27.12},{&quot;2026-07-15&quot;:27.12},{&quot;2026-07-16&quot;:27.12},{&quot;2026-07-17&quot;:27.12},{&quot;2026-07-18&quot;:27.12},{&quot;2026-07-19&quot;:27.12},{&quot;2026-07-20&quot;:27.12},{&quot;2026-07-21&quot;:27.12},{&quot;2026-07-22&quot;:27.12},{&quot;2026-07-23&quot;:27.12},{&quot;2026-07-24&quot;:27.12},{&quot;2026-07-25&quot;:27.15},{&quot;2026-07-26&quot;:27.15},{&quot;2026-07-27&quot;:27.45},{&quot;2026-07-28&quot;:27.45},{&quot;2026-07-29&quot;:27.45},{&quot;2026-07-30&quot;:27.45},{&quot;2026-07-31&quot;:27.45},{&quot;2026-08-01&quot;:27.45},{&quot;2026-08-02&quot;:27.45},{&quot;2026-08-03&quot;:27.45},{&quot;2026-08-04&quot;:27.45},{&quot;2026-08-05&quot;:27.45},{&quot;2026-08-07&quot;:27.45},{&quot;2026-08-08&quot;:27.45},{&quot;2026-08-09&quot;:27.45},{&quot;2026-08-10&quot;:27.45},{&quot;2026-08-11&quot;:27.45},{&quot;2026-08-12&quot;:27.45},{&quot;2026-08-13&quot;:27.45},{&quot;2026-08-14&quot;:27.45},{&quot;2026-08-15&quot;:27.45},{&quot;2026-08-16&quot;:27.45},{&quot;2026-08-17&quot;:27.45},{&quot;2026-08-18&quot;:27.45},{&quot;2026-08-19&quot;:27.45},{&quot;2026-08-20&quot;:27.45},{&quot;2026-08-21&quot;:27.45},{&quot;2026-08-22&quot;:27.83},{&quot;2026-08-23&quot;:27.83},{&quot;2026-08-24&quot;:27.83},{&quot;2026-08-25&quot;:27.83},{&quot;2026-08-26&quot;:27.83},{&quot;2026-08-27&quot;:27.83},{&quot;2026-08-28&quot;:27.83},{&quot;2026-08-29&quot;:27.83},{&quot;2026-08-30&quot;:27.83},{&quot;2026-08-31&quot;:27.83},{&quot;2026-09-01&quot;:27.93},{&quot;2026-09-02&quot;:27.93},{&quot;2026-09-03&quot;:27.93},{&quot;2026-09-04&quot;:27.93},{&quot;2026-09-05&quot;:27.93},{&quot;2026-09-06&quot;:27.93},{&quot;2026-09-07&quot;:27.93},{&quot;2026-09-08&quot;:27.93},{&quot;2026-09-09&quot;:27.93},{&quot;2026-09-10&quot;:27.93},{&quot;2026-09-11&quot;:27.93}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.53},{&quot;2026-06-14&quot;:1.53},{&quot;2026-06-15&quot;:1.53},{&quot;2026-06-16&quot;:1.53},{&quot;2026-06-17&quot;:1.57},{&quot;2026-06-18&quot;:1.56},{&quot;2026-06-19&quot;:1.6},{&quot;2026-06-20&quot;:1.58},{&quot;2026-06-21&quot;:1.58},{&quot;2026-06-22&quot;:1.63},{&quot;2026-06-23&quot;:1.63},{&quot;2026-06-24&quot;:1.63},{&quot;2026-06-25&quot;:1.56},{&quot;2026-06-26&quot;:1.75},{&quot;2026-06-27&quot;:1.79},{&quot;2026-06-28&quot;:1.76},{&quot;2026-06-29&quot;:1.79},{&quot;2026-06-30&quot;:1.89},{&quot;2026-07-01&quot;:1.86},{&quot;2026-07-02&quot;:1.86},{&quot;2026-07-03&quot;:1.9},{&quot;2026-07-04&quot;:1.9},{&quot;2026-07-05&quot;:1.9},{&quot;2026-07-06&quot;:1.9},{&quot;2026-07-07&quot;:1.92},{&quot;2026-07-08&quot;:1.92},{&quot;2026-07-09&quot;:1.92},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.93},{&quot;2026-07-12&quot;:1.95},{&quot;2026-07-13&quot;:1.96},{&quot;2026-07-14&quot;:2.01},{&quot;2026-07-15&quot;:2.07},{&quot;2026-07-16&quot;:2.07},{&quot;2026-07-17&quot;:2.13},{&quot;2026-07-18&quot;:2.13},{&quot;2026-07-19&quot;:2.13},{&quot;2026-07-20&quot;:2.13},{&quot;2026-07-21&quot;:2.13},{&quot;2026-07-22&quot;:2.08},{&quot;2026-07-23&quot;:1.96},{&quot;2026-07-24&quot;:2.04},{&quot;2026-07-25&quot;:2.04},{&quot;2026-07-26&quot;:2.05},{&quot;2026-07-27&quot;:2.12},{&quot;2026-07-28&quot;:2.08},{&quot;2026-07-29&quot;:2.08},{&quot;2026-07-30&quot;:2.08},{&quot;2026-07-31&quot;:2.02},{&quot;2026-08-01&quot;:1.99},{&quot;2026-08-02&quot;:2.07},{&quot;2026-08-03&quot;:2.07},{&quot;2026-08-04&quot;:1.98},{&quot;2026-08-05&quot;:2.04},{&quot;2026-08-07&quot;:1.93},{&quot;2026-08-08&quot;:1.89},{&quot;2026-08-09&quot;:1.85},{&quot;2026-08-10&quot;:1.99},{&quot;2026-08-11&quot;:1.99},{&quot;2026-08-12&quot;:1.99},{&quot;2026-08-13&quot;:1.93},{&quot;2026-08-14&quot;:1.93},{&quot;2026-08-15&quot;:1.93},{&quot;2026-08-16&quot;:1.9},{&quot;2026-08-17&quot;:1.75},{&quot;2026-08-18&quot;:1.77},{&quot;2026-08-19&quot;:1.77},{&quot;2026-08-20&quot;:1.76},{&quot;2026-08-21&quot;:1.77},{&quot;2026-08-22&quot;:1.76},{&quot;2026-08-23&quot;:1.75},{&quot;2026-08-24&quot;:1.72},{&quot;2026-08-25&quot;:1.72},{&quot;2026-08-26&quot;:1.74},{&quot;2026-08-27&quot;:1.62},{&quot;2026-08-28&quot;:1.62},{&quot;2026-08-29&quot;:1.62},{&quot;2026-08-30&quot;:1.7},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.68},{&quot;2026-09-02&quot;:1.59},{&quot;2026-09-03&quot;:1.63},{&quot;2026-09-04&quot;:1.6},{&quot;2026-09-05&quot;:1.66},{&quot;2026-09-06&quot;:1.66},{&quot;2026-09-07&quot;:1.64},{&quot;2026-09-08&quot;:1.66},{&quot;2026-09-09&quot;:1.63},{&quot;2026-09-10&quot;:1.66},{&quot;2026-09-11&quot;:1.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83292"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Corpsejack Menace
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Fungus
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              8%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.54
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Corpsejack Menace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aa537ff3-cc8c-448f-a1da-609133e74e30.jpg?1783931969" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Corpsejack Menace
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Fungus</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Corpsejack Menace" src="https://cards.scryfall.io/large/front/a/a/aa537ff3-cc8c-448f-a1da-609133e74e30.jpg?1783931969" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.54
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  8%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.17</span>
              <span class="text-xs text-grey-text">Credit: $0.22</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.97},{&quot;2026-06-14&quot;:0.97},{&quot;2026-06-15&quot;:0.97},{&quot;2026-06-16&quot;:0.97},{&quot;2026-06-17&quot;:0.97},{&quot;2026-06-18&quot;:0.98},{&quot;2026-06-19&quot;:0.98},{&quot;2026-06-20&quot;:1.1},{&quot;2026-06-21&quot;:1.14},{&quot;2026-06-22&quot;:1.14},{&quot;2026-06-23&quot;:1.14},{&quot;2026-06-24&quot;:1.14},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.14},{&quot;2026-06-27&quot;:1.17},{&quot;2026-06-28&quot;:1.17},{&quot;2026-06-29&quot;:1.17},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.17},{&quot;2026-07-02&quot;:1.23},{&quot;2026-07-03&quot;:1.23},{&quot;2026-07-04&quot;:1.43},{&quot;2026-07-05&quot;:1.43},{&quot;2026-07-06&quot;:1.43},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.42},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.41},{&quot;2026-07-11&quot;:1.43},{&quot;2026-07-12&quot;:1.43},{&quot;2026-07-13&quot;:1.43},{&quot;2026-07-14&quot;:1.43},{&quot;2026-07-15&quot;:1.43},{&quot;2026-07-16&quot;:1.46},{&quot;2026-07-17&quot;:1.46},{&quot;2026-07-18&quot;:1.46},{&quot;2026-07-19&quot;:1.46},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.46},{&quot;2026-07-22&quot;:1.46},{&quot;2026-07-23&quot;:1.42},{&quot;2026-07-24&quot;:1.37},{&quot;2026-07-25&quot;:1.37},{&quot;2026-07-26&quot;:1.37},{&quot;2026-07-27&quot;:1.37},{&quot;2026-07-28&quot;:1.39},{&quot;2026-07-29&quot;:1.4},{&quot;2026-07-30&quot;:1.38},{&quot;2026-07-31&quot;:1.38},{&quot;2026-08-01&quot;:1.38},{&quot;2026-08-02&quot;:1.4},{&quot;2026-08-03&quot;:1.4},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.35},{&quot;2026-08-08&quot;:1.3},{&quot;2026-08-09&quot;:1.26},{&quot;2026-08-10&quot;:1.26},{&quot;2026-08-11&quot;:1.26},{&quot;2026-08-12&quot;:1.26},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.26},{&quot;2026-08-15&quot;:1.26},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.26},{&quot;2026-08-18&quot;:1.2},{&quot;2026-08-19&quot;:1.17},{&quot;2026-08-20&quot;:1.17},{&quot;2026-08-21&quot;:1.17},{&quot;2026-08-22&quot;:1.17},{&quot;2026-08-23&quot;:1.22},{&quot;2026-08-24&quot;:1.22},{&quot;2026-08-25&quot;:1.22},{&quot;2026-08-26&quot;:1.22},{&quot;2026-08-27&quot;:1.21},{&quot;2026-08-28&quot;:1.21},{&quot;2026-08-29&quot;:1.21},{&quot;2026-08-30&quot;:1.26},{&quot;2026-08-31&quot;:1.33},{&quot;2026-09-01&quot;:1.36},{&quot;2026-09-02&quot;:1.35},{&quot;2026-09-03&quot;:1.43},{&quot;2026-09-04&quot;:1.43},{&quot;2026-09-05&quot;:1.43},{&quot;2026-09-06&quot;:1.44},{&quot;2026-09-07&quot;:1.54},{&quot;2026-09-08&quot;:1.54},{&quot;2026-09-09&quot;:1.54},{&quot;2026-09-10&quot;:1.54},{&quot;2026-09-11&quot;:1.54}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79222"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Soothsaying
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.50
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Soothsaying" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b74388fe-73a5-43d5-8826-eb077596a4a9.jpg?1783932179" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Soothsaying
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Soothsaying" src="https://cards.scryfall.io/large/front/b/7/b74388fe-73a5-43d5-8826-eb077596a4a9.jpg?1783932179" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.50
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.85</span>
              <span class="text-xs text-grey-text">Credit: $1.11</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.41},{&quot;2026-06-13&quot;:1.41},{&quot;2026-06-14&quot;:1.42},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.42},{&quot;2026-06-19&quot;:1.42},{&quot;2026-06-20&quot;:1.42},{&quot;2026-06-21&quot;:1.42},{&quot;2026-06-22&quot;:1.42},{&quot;2026-06-23&quot;:1.43},{&quot;2026-06-24&quot;:1.43},{&quot;2026-06-25&quot;:1.43},{&quot;2026-06-26&quot;:1.43},{&quot;2026-06-27&quot;:1.43},{&quot;2026-06-28&quot;:1.43},{&quot;2026-06-29&quot;:1.43},{&quot;2026-06-30&quot;:1.43},{&quot;2026-07-01&quot;:1.43},{&quot;2026-07-02&quot;:1.43},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.44},{&quot;2026-07-05&quot;:1.44},{&quot;2026-07-06&quot;:1.44},{&quot;2026-07-07&quot;:1.44},{&quot;2026-07-08&quot;:1.38},{&quot;2026-07-09&quot;:1.38},{&quot;2026-07-10&quot;:1.38},{&quot;2026-07-11&quot;:1.4},{&quot;2026-07-12&quot;:1.4},{&quot;2026-07-13&quot;:1.4},{&quot;2026-07-14&quot;:1.4},{&quot;2026-07-15&quot;:1.4},{&quot;2026-07-16&quot;:1.4},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.39},{&quot;2026-07-19&quot;:1.39},{&quot;2026-07-20&quot;:1.4},{&quot;2026-07-21&quot;:1.4},{&quot;2026-07-23&quot;:1.4},{&quot;2026-07-24&quot;:1.4},{&quot;2026-07-25&quot;:1.4},{&quot;2026-07-26&quot;:1.4},{&quot;2026-07-27&quot;:1.4},{&quot;2026-07-28&quot;:1.4},{&quot;2026-07-29&quot;:1.4},{&quot;2026-07-30&quot;:1.4},{&quot;2026-07-31&quot;:1.4},{&quot;2026-08-01&quot;:1.4},{&quot;2026-08-02&quot;:1.4},{&quot;2026-08-03&quot;:1.4},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.42},{&quot;2026-08-07&quot;:1.48},{&quot;2026-08-08&quot;:1.48},{&quot;2026-08-09&quot;:1.48},{&quot;2026-08-10&quot;:1.48},{&quot;2026-08-11&quot;:1.48},{&quot;2026-08-12&quot;:1.49},{&quot;2026-08-13&quot;:1.52},{&quot;2026-08-14&quot;:1.52},{&quot;2026-08-15&quot;:1.52},{&quot;2026-08-16&quot;:1.52},{&quot;2026-08-17&quot;:1.52},{&quot;2026-08-18&quot;:1.47},{&quot;2026-08-19&quot;:1.47},{&quot;2026-08-20&quot;:1.47},{&quot;2026-08-21&quot;:1.47},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.48},{&quot;2026-08-24&quot;:1.48},{&quot;2026-08-25&quot;:1.48},{&quot;2026-08-26&quot;:1.48},{&quot;2026-08-27&quot;:1.48},{&quot;2026-08-28&quot;:1.48},{&quot;2026-08-29&quot;:1.48},{&quot;2026-08-30&quot;:1.48},{&quot;2026-08-31&quot;:1.48},{&quot;2026-09-01&quot;:1.48},{&quot;2026-09-02&quot;:1.48},{&quot;2026-09-03&quot;:1.49},{&quot;2026-09-04&quot;:1.49},{&quot;2026-09-05&quot;:1.49},{&quot;2026-09-06&quot;:1.49},{&quot;2026-09-07&quot;:1.5},{&quot;2026-09-08&quot;:1.5},{&quot;2026-09-09&quot;:1.5},{&quot;2026-09-10&quot;:1.5},{&quot;2026-09-11&quot;:1.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76784"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Guttural Response
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.49
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Guttural Response" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/112a0bbb-a094-4212-9737-95640b74442c.jpg?1783926581" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Guttural Response
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-rg'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Guttural Response" src="https://cards.scryfall.io/large/front/1/1/112a0bbb-a094-4212-9737-95640b74442c.jpg?1783926581" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.49
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  6%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.72</span>
              <span class="text-xs text-grey-text">Credit: $0.94</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.34},{&quot;2026-06-11&quot;:1.34},{&quot;2026-06-12&quot;:1.34},{&quot;2026-06-13&quot;:1.33},{&quot;2026-06-14&quot;:1.35},{&quot;2026-06-15&quot;:1.35},{&quot;2026-06-16&quot;:1.37},{&quot;2026-06-17&quot;:1.37},{&quot;2026-06-18&quot;:1.37},{&quot;2026-06-19&quot;:1.39},{&quot;2026-06-20&quot;:1.39},{&quot;2026-06-21&quot;:1.42},{&quot;2026-06-22&quot;:1.41},{&quot;2026-06-23&quot;:1.45},{&quot;2026-06-24&quot;:1.54},{&quot;2026-06-25&quot;:1.53},{&quot;2026-06-26&quot;:1.56},{&quot;2026-06-27&quot;:1.61},{&quot;2026-06-28&quot;:1.63},{&quot;2026-06-29&quot;:1.61},{&quot;2026-06-30&quot;:1.61},{&quot;2026-07-01&quot;:1.62},{&quot;2026-07-02&quot;:1.58},{&quot;2026-07-03&quot;:1.56},{&quot;2026-07-04&quot;:1.56},{&quot;2026-07-05&quot;:1.56},{&quot;2026-07-06&quot;:1.56},{&quot;2026-07-07&quot;:1.6},{&quot;2026-07-08&quot;:1.66},{&quot;2026-07-09&quot;:1.66},{&quot;2026-07-10&quot;:1.66},{&quot;2026-07-11&quot;:1.64},{&quot;2026-07-12&quot;:1.66},{&quot;2026-07-13&quot;:1.68},{&quot;2026-07-14&quot;:1.58},{&quot;2026-07-15&quot;:1.64},{&quot;2026-07-16&quot;:1.68},{&quot;2026-07-17&quot;:1.72},{&quot;2026-07-18&quot;:1.86},{&quot;2026-07-19&quot;:1.88},{&quot;2026-07-20&quot;:1.88},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-23&quot;:1.93},{&quot;2026-07-25&quot;:1.93},{&quot;2026-07-26&quot;:1.93},{&quot;2026-07-27&quot;:1.96},{&quot;2026-07-29&quot;:1.97},{&quot;2026-07-30&quot;:1.97},{&quot;2026-07-31&quot;:1.96},{&quot;2026-08-01&quot;:1.96},{&quot;2026-08-02&quot;:2.1},{&quot;2026-08-03&quot;:2.1},{&quot;2026-08-04&quot;:2.16},{&quot;2026-08-05&quot;:2.16},{&quot;2026-08-07&quot;:2.19},{&quot;2026-08-08&quot;:2.19},{&quot;2026-08-09&quot;:2.19},{&quot;2026-08-10&quot;:2.24},{&quot;2026-08-11&quot;:2.26},{&quot;2026-08-12&quot;:2.32},{&quot;2026-08-13&quot;:2.32},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.27},{&quot;2026-08-16&quot;:2.27},{&quot;2026-08-17&quot;:2.22},{&quot;2026-08-18&quot;:2.22},{&quot;2026-08-19&quot;:2.22},{&quot;2026-08-20&quot;:2.22},{&quot;2026-08-21&quot;:2.22},{&quot;2026-08-22&quot;:2.22},{&quot;2026-08-23&quot;:2.19},{&quot;2026-08-24&quot;:2.19},{&quot;2026-08-25&quot;:2.19},{&quot;2026-08-26&quot;:2.15},{&quot;2026-08-27&quot;:2.15},{&quot;2026-08-28&quot;:2.0},{&quot;2026-08-29&quot;:2.0},{&quot;2026-08-30&quot;:1.9},{&quot;2026-08-31&quot;:1.9},{&quot;2026-09-01&quot;:1.9},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.62},{&quot;2026-09-04&quot;:1.59},{&quot;2026-09-05&quot;:1.59},{&quot;2026-09-06&quot;:1.48},{&quot;2026-09-07&quot;:1.5},{&quot;2026-09-08&quot;:1.5},{&quot;2026-09-09&quot;:1.53},{&quot;2026-09-10&quot;:1.53},{&quot;2026-09-11&quot;:1.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="88177"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Serum Visions
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.45
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Serum Visions" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/c/5c75ec73-0f6a-4392-b058-ab40a07dcd3a.jpg?1783924594" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Serum Visions
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Serum Visions" src="https://cards.scryfall.io/large/front/5/c/5c75ec73-0f6a-4392-b058-ab40a07dcd3a.jpg?1783924594" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.45
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.52</span>
              <span class="text-xs text-grey-text">Credit: $0.68</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.73},{&quot;2026-06-11&quot;:1.53},{&quot;2026-06-12&quot;:1.53},{&quot;2026-06-13&quot;:1.53},{&quot;2026-06-14&quot;:1.58},{&quot;2026-06-15&quot;:1.48},{&quot;2026-06-16&quot;:1.31},{&quot;2026-06-17&quot;:1.31},{&quot;2026-06-18&quot;:1.31},{&quot;2026-06-19&quot;:1.3},{&quot;2026-06-20&quot;:1.3},{&quot;2026-06-21&quot;:1.29},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-23&quot;:1.22},{&quot;2026-06-24&quot;:1.23},{&quot;2026-06-25&quot;:1.19},{&quot;2026-06-26&quot;:1.21},{&quot;2026-06-27&quot;:1.22},{&quot;2026-06-28&quot;:1.24},{&quot;2026-06-29&quot;:1.26},{&quot;2026-06-30&quot;:1.22},{&quot;2026-07-01&quot;:1.22},{&quot;2026-07-02&quot;:1.21},{&quot;2026-07-03&quot;:1.21},{&quot;2026-07-04&quot;:1.21},{&quot;2026-07-05&quot;:1.21},{&quot;2026-07-06&quot;:1.21},{&quot;2026-07-07&quot;:1.21},{&quot;2026-07-08&quot;:1.21},{&quot;2026-07-09&quot;:1.28},{&quot;2026-07-10&quot;:1.28},{&quot;2026-07-11&quot;:1.28},{&quot;2026-07-12&quot;:1.28},{&quot;2026-07-13&quot;:1.24},{&quot;2026-07-14&quot;:1.24},{&quot;2026-07-15&quot;:1.24},{&quot;2026-07-16&quot;:1.17},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.11},{&quot;2026-07-20&quot;:1.11},{&quot;2026-07-21&quot;:1.21},{&quot;2026-07-23&quot;:1.19},{&quot;2026-07-25&quot;:1.15},{&quot;2026-07-26&quot;:1.15},{&quot;2026-07-27&quot;:1.15},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.09},{&quot;2026-07-31&quot;:1.17},{&quot;2026-08-01&quot;:1.15},{&quot;2026-08-02&quot;:1.12},{&quot;2026-08-03&quot;:1.47},{&quot;2026-08-04&quot;:1.6},{&quot;2026-08-05&quot;:1.85},{&quot;2026-08-07&quot;:2.74},{&quot;2026-08-08&quot;:2.51},{&quot;2026-08-09&quot;:2.52},{&quot;2026-08-10&quot;:2.5},{&quot;2026-08-11&quot;:2.5},{&quot;2026-08-12&quot;:2.6},{&quot;2026-08-13&quot;:2.38},{&quot;2026-08-14&quot;:2.31},{&quot;2026-08-15&quot;:2.31},{&quot;2026-08-16&quot;:2.31},{&quot;2026-08-17&quot;:2.31},{&quot;2026-08-18&quot;:2.17},{&quot;2026-08-19&quot;:2.17},{&quot;2026-08-20&quot;:2.17},{&quot;2026-08-21&quot;:1.82},{&quot;2026-08-22&quot;:1.82},{&quot;2026-08-23&quot;:1.68},{&quot;2026-08-24&quot;:1.68},{&quot;2026-08-25&quot;:1.68},{&quot;2026-08-26&quot;:1.52},{&quot;2026-08-27&quot;:1.52},{&quot;2026-08-28&quot;:1.52},{&quot;2026-08-29&quot;:1.52},{&quot;2026-08-30&quot;:1.26},{&quot;2026-08-31&quot;:1.34},{&quot;2026-09-01&quot;:1.34},{&quot;2026-09-02&quot;:1.31},{&quot;2026-09-03&quot;:1.44},{&quot;2026-09-04&quot;:1.44},{&quot;2026-09-05&quot;:1.5},{&quot;2026-09-06&quot;:1.5},{&quot;2026-09-07&quot;:1.5},{&quot;2026-09-08&quot;:1.38},{&quot;2026-09-09&quot;:1.38},{&quot;2026-09-10&quot;:1.38},{&quot;2026-09-11&quot;:1.45}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="80080"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dauthi Embrace
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.32
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dauthi Embrace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/9/99bd14c5-4004-4f76-b0cd-7db9aecf6af2.jpg?1783910186" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Dauthi Embrace
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dauthi Embrace" src="https://cards.scryfall.io/large/front/9/9/99bd14c5-4004-4f76-b0cd-7db9aecf6af2.jpg?1783910186" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.32
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  4%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.80</span>
              <span class="text-xs text-grey-text">Credit: $1.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.92},{&quot;2026-06-14&quot;:1.9},{&quot;2026-06-15&quot;:1.9},{&quot;2026-06-16&quot;:1.92},{&quot;2026-06-17&quot;:1.92},{&quot;2026-06-18&quot;:1.91},{&quot;2026-06-19&quot;:1.9},{&quot;2026-06-20&quot;:1.88},{&quot;2026-06-21&quot;:1.88},{&quot;2026-06-22&quot;:1.88},{&quot;2026-06-23&quot;:1.88},{&quot;2026-06-24&quot;:1.86},{&quot;2026-06-25&quot;:1.86},{&quot;2026-06-26&quot;:1.84},{&quot;2026-06-27&quot;:1.85},{&quot;2026-06-28&quot;:1.85},{&quot;2026-06-29&quot;:1.87},{&quot;2026-06-30&quot;:1.88},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:1.89},{&quot;2026-07-03&quot;:1.87},{&quot;2026-07-04&quot;:1.87},{&quot;2026-07-05&quot;:1.85},{&quot;2026-07-06&quot;:1.82},{&quot;2026-07-07&quot;:1.82},{&quot;2026-07-08&quot;:1.8},{&quot;2026-07-09&quot;:1.77},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.77},{&quot;2026-07-12&quot;:1.77},{&quot;2026-07-13&quot;:1.74},{&quot;2026-07-14&quot;:1.74},{&quot;2026-07-15&quot;:1.73},{&quot;2026-07-16&quot;:1.74},{&quot;2026-07-17&quot;:1.72},{&quot;2026-07-18&quot;:1.72},{&quot;2026-07-19&quot;:1.72},{&quot;2026-07-20&quot;:1.72},{&quot;2026-07-21&quot;:1.73},{&quot;2026-07-22&quot;:1.71},{&quot;2026-07-23&quot;:1.71},{&quot;2026-07-24&quot;:1.72},{&quot;2026-07-25&quot;:1.68},{&quot;2026-07-26&quot;:1.68},{&quot;2026-07-27&quot;:1.68},{&quot;2026-07-28&quot;:1.6},{&quot;2026-07-29&quot;:1.62},{&quot;2026-07-30&quot;:1.6},{&quot;2026-07-31&quot;:1.56},{&quot;2026-08-01&quot;:1.56},{&quot;2026-08-02&quot;:1.56},{&quot;2026-08-03&quot;:1.53},{&quot;2026-08-04&quot;:1.5},{&quot;2026-08-05&quot;:1.51},{&quot;2026-08-07&quot;:1.46},{&quot;2026-08-08&quot;:1.46},{&quot;2026-08-09&quot;:1.45},{&quot;2026-08-10&quot;:1.45},{&quot;2026-08-11&quot;:1.44},{&quot;2026-08-12&quot;:1.43},{&quot;2026-08-13&quot;:1.43},{&quot;2026-08-14&quot;:1.41},{&quot;2026-08-15&quot;:1.41},{&quot;2026-08-16&quot;:1.38},{&quot;2026-08-17&quot;:1.35},{&quot;2026-08-18&quot;:1.34},{&quot;2026-08-19&quot;:1.35},{&quot;2026-08-20&quot;:1.35},{&quot;2026-08-21&quot;:1.35},{&quot;2026-08-22&quot;:1.3},{&quot;2026-08-23&quot;:1.29},{&quot;2026-08-24&quot;:1.29},{&quot;2026-08-25&quot;:1.26},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.33},{&quot;2026-08-28&quot;:1.33},{&quot;2026-08-29&quot;:1.33},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.34},{&quot;2026-09-01&quot;:1.36},{&quot;2026-09-02&quot;:1.36},{&quot;2026-09-03&quot;:1.36},{&quot;2026-09-04&quot;:1.34},{&quot;2026-09-05&quot;:1.37},{&quot;2026-09-06&quot;:1.39},{&quot;2026-09-07&quot;:1.39},{&quot;2026-09-08&quot;:1.38},{&quot;2026-09-09&quot;:1.32},{&quot;2026-09-10&quot;:1.32},{&quot;2026-09-11&quot;:1.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77841"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Noxious Ghoul
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Zombie
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.28
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Noxious Ghoul" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/8/f83c17b6-9990-409c-85cc-709ad2201b29.jpg?1783926376" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Noxious Ghoul
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Zombie</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Noxious Ghoul" src="https://cards.scryfall.io/large/front/f/8/f83c17b6-9990-409c-85cc-709ad2201b29.jpg?1783926376" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.28
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.80</span>
              <span class="text-xs text-grey-text">Credit: $1.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.45},{&quot;2026-06-12&quot;:1.46},{&quot;2026-06-13&quot;:1.53},{&quot;2026-06-14&quot;:1.61},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.27},{&quot;2026-06-18&quot;:1.28},{&quot;2026-06-19&quot;:1.23},{&quot;2026-06-20&quot;:1.21},{&quot;2026-06-21&quot;:1.24},{&quot;2026-06-22&quot;:1.16},{&quot;2026-06-23&quot;:1.14},{&quot;2026-06-24&quot;:1.16},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.15},{&quot;2026-06-27&quot;:1.19},{&quot;2026-06-28&quot;:1.16},{&quot;2026-06-29&quot;:1.1},{&quot;2026-06-30&quot;:1.1},{&quot;2026-07-01&quot;:1.11},{&quot;2026-07-02&quot;:1.23},{&quot;2026-07-03&quot;:1.34},{&quot;2026-07-04&quot;:1.56},{&quot;2026-07-05&quot;:1.67},{&quot;2026-07-06&quot;:1.67},{&quot;2026-07-07&quot;:1.71},{&quot;2026-07-08&quot;:1.71},{&quot;2026-07-09&quot;:1.74},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.77},{&quot;2026-07-12&quot;:1.66},{&quot;2026-07-13&quot;:1.39},{&quot;2026-07-14&quot;:1.22},{&quot;2026-07-15&quot;:1.23},{&quot;2026-07-16&quot;:1.25},{&quot;2026-07-17&quot;:1.27},{&quot;2026-07-18&quot;:1.23},{&quot;2026-07-19&quot;:1.2},{&quot;2026-07-20&quot;:1.23},{&quot;2026-07-21&quot;:1.26},{&quot;2026-07-23&quot;:1.29},{&quot;2026-07-25&quot;:1.29},{&quot;2026-07-26&quot;:1.29},{&quot;2026-07-27&quot;:1.66},{&quot;2026-07-28&quot;:1.66},{&quot;2026-07-29&quot;:1.64},{&quot;2026-07-30&quot;:1.65},{&quot;2026-07-31&quot;:1.66},{&quot;2026-08-01&quot;:1.68},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.66},{&quot;2026-08-04&quot;:1.65},{&quot;2026-08-05&quot;:1.67},{&quot;2026-08-07&quot;:1.71},{&quot;2026-08-08&quot;:1.7},{&quot;2026-08-09&quot;:1.62},{&quot;2026-08-10&quot;:1.5},{&quot;2026-08-11&quot;:1.39},{&quot;2026-08-12&quot;:1.41},{&quot;2026-08-13&quot;:1.38},{&quot;2026-08-14&quot;:1.38},{&quot;2026-08-15&quot;:1.35},{&quot;2026-08-16&quot;:1.38},{&quot;2026-08-17&quot;:1.38},{&quot;2026-08-18&quot;:1.4},{&quot;2026-08-19&quot;:1.38},{&quot;2026-08-20&quot;:1.38},{&quot;2026-08-21&quot;:1.37},{&quot;2026-08-22&quot;:1.37},{&quot;2026-08-23&quot;:1.37},{&quot;2026-08-24&quot;:1.4},{&quot;2026-08-25&quot;:1.4},{&quot;2026-08-26&quot;:1.4},{&quot;2026-08-27&quot;:1.41},{&quot;2026-08-28&quot;:1.41},{&quot;2026-08-29&quot;:1.41},{&quot;2026-08-30&quot;:1.43},{&quot;2026-08-31&quot;:1.43},{&quot;2026-09-01&quot;:1.43},{&quot;2026-09-02&quot;:1.34},{&quot;2026-09-03&quot;:1.34},{&quot;2026-09-04&quot;:1.3},{&quot;2026-09-05&quot;:1.3},{&quot;2026-09-06&quot;:1.33},{&quot;2026-09-07&quot;:1.33},{&quot;2026-09-08&quot;:1.28},{&quot;2026-09-09&quot;:1.28},{&quot;2026-09-10&quot;:1.28},{&quot;2026-09-11&quot;:1.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83109"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Joraga Treespeaker
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elf Druid
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.28
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Joraga Treespeaker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/e/de6b6d2d-c2b0-421b-aad6-41e80d325fff.jpg?1783925025" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Joraga Treespeaker
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Elf Druid</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Joraga Treespeaker" src="https://cards.scryfall.io/large/front/d/e/de6b6d2d-c2b0-421b-aad6-41e80d325fff.jpg?1783925025" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.28
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  12%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.50</span>
              <span class="text-xs text-grey-text">Credit: $0.65</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.13},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.25},{&quot;2026-06-16&quot;:1.25},{&quot;2026-06-17&quot;:1.25},{&quot;2026-06-18&quot;:1.32},{&quot;2026-06-19&quot;:1.33},{&quot;2026-06-20&quot;:1.42},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.54},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.55},{&quot;2026-06-25&quot;:1.55},{&quot;2026-06-26&quot;:1.55},{&quot;2026-06-27&quot;:1.55},{&quot;2026-06-28&quot;:1.55},{&quot;2026-06-29&quot;:1.56},{&quot;2026-06-30&quot;:1.52},{&quot;2026-07-01&quot;:1.5},{&quot;2026-07-02&quot;:1.5},{&quot;2026-07-03&quot;:1.48},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.51},{&quot;2026-07-06&quot;:1.47},{&quot;2026-07-07&quot;:1.47},{&quot;2026-07-08&quot;:1.42},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.4},{&quot;2026-07-11&quot;:1.34},{&quot;2026-07-12&quot;:1.34},{&quot;2026-07-13&quot;:1.39},{&quot;2026-07-14&quot;:1.37},{&quot;2026-07-15&quot;:1.45},{&quot;2026-07-16&quot;:1.51},{&quot;2026-07-17&quot;:1.53},{&quot;2026-07-18&quot;:1.65},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.5},{&quot;2026-07-21&quot;:1.53},{&quot;2026-07-22&quot;:1.49},{&quot;2026-07-23&quot;:1.51},{&quot;2026-07-24&quot;:1.48},{&quot;2026-07-25&quot;:1.46},{&quot;2026-07-26&quot;:1.38},{&quot;2026-07-27&quot;:1.49},{&quot;2026-07-28&quot;:1.47},{&quot;2026-07-29&quot;:1.41},{&quot;2026-07-30&quot;:1.36},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.36},{&quot;2026-08-02&quot;:1.27},{&quot;2026-08-03&quot;:1.25},{&quot;2026-08-04&quot;:1.36},{&quot;2026-08-05&quot;:1.48},{&quot;2026-08-07&quot;:1.66},{&quot;2026-08-08&quot;:1.67},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.73},{&quot;2026-08-11&quot;:1.71},{&quot;2026-08-12&quot;:1.67},{&quot;2026-08-13&quot;:1.61},{&quot;2026-08-14&quot;:1.65},{&quot;2026-08-15&quot;:1.59},{&quot;2026-08-16&quot;:1.59},{&quot;2026-08-17&quot;:1.61},{&quot;2026-08-18&quot;:1.46},{&quot;2026-08-19&quot;:1.46},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.45},{&quot;2026-08-22&quot;:1.58},{&quot;2026-08-23&quot;:1.58},{&quot;2026-08-24&quot;:1.6},{&quot;2026-08-25&quot;:1.56},{&quot;2026-08-26&quot;:1.63},{&quot;2026-08-27&quot;:1.63},{&quot;2026-08-28&quot;:1.62},{&quot;2026-08-29&quot;:1.62},{&quot;2026-08-30&quot;:1.42},{&quot;2026-08-31&quot;:1.45},{&quot;2026-09-01&quot;:1.44},{&quot;2026-09-02&quot;:1.44},{&quot;2026-09-03&quot;:1.44},{&quot;2026-09-04&quot;:1.46},{&quot;2026-09-05&quot;:1.46},{&quot;2026-09-06&quot;:1.4},{&quot;2026-09-07&quot;:1.36},{&quot;2026-09-08&quot;:1.37},{&quot;2026-09-09&quot;:1.32},{&quot;2026-09-10&quot;:1.28},{&quot;2026-09-11&quot;:1.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79358"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Syr Konrad, the Grim
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Knight
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.21
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Syr Konrad, the Grim" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/a/5a891d9a-0cb0-4f9a-91c4-c8e4b395d944.jpg?1783912596" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Syr Konrad, the Grim
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Knight</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Syr Konrad, the Grim" src="https://cards.scryfall.io/large/front/5/a/5a891d9a-0cb0-4f9a-91c4-c8e4b395d944.jpg?1783912596" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.21
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  4%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.72</span>
              <span class="text-xs text-grey-text">Credit: $0.94</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.62},{&quot;2026-06-12&quot;:0.61},{&quot;2026-06-13&quot;:0.6},{&quot;2026-06-14&quot;:0.66},{&quot;2026-06-15&quot;:0.74},{&quot;2026-06-16&quot;:0.74},{&quot;2026-06-17&quot;:0.74},{&quot;2026-06-18&quot;:0.74},{&quot;2026-06-19&quot;:0.74},{&quot;2026-06-20&quot;:0.74},{&quot;2026-06-21&quot;:0.74},{&quot;2026-06-22&quot;:0.72},{&quot;2026-06-23&quot;:0.7},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.64},{&quot;2026-06-27&quot;:0.63},{&quot;2026-06-28&quot;:0.63},{&quot;2026-06-29&quot;:0.7},{&quot;2026-06-30&quot;:0.7},{&quot;2026-07-01&quot;:0.69},{&quot;2026-07-02&quot;:0.68},{&quot;2026-07-03&quot;:0.67},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.66},{&quot;2026-07-06&quot;:0.65},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.66},{&quot;2026-07-09&quot;:0.66},{&quot;2026-07-10&quot;:0.74},{&quot;2026-07-11&quot;:0.79},{&quot;2026-07-12&quot;:0.81},{&quot;2026-07-13&quot;:0.81},{&quot;2026-07-14&quot;:0.81},{&quot;2026-07-15&quot;:0.81},{&quot;2026-07-16&quot;:0.81},{&quot;2026-07-17&quot;:0.81},{&quot;2026-07-18&quot;:0.83},{&quot;2026-07-19&quot;:0.85},{&quot;2026-07-20&quot;:0.88},{&quot;2026-07-21&quot;:0.88},{&quot;2026-07-23&quot;:0.86},{&quot;2026-07-25&quot;:0.96},{&quot;2026-07-26&quot;:0.97},{&quot;2026-07-27&quot;:0.95},{&quot;2026-07-28&quot;:0.95},{&quot;2026-07-29&quot;:0.95},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:1.02},{&quot;2026-08-01&quot;:1.02},{&quot;2026-08-02&quot;:1.02},{&quot;2026-08-03&quot;:1.03},{&quot;2026-08-04&quot;:0.98},{&quot;2026-08-05&quot;:0.95},{&quot;2026-08-07&quot;:0.94},{&quot;2026-08-08&quot;:0.95},{&quot;2026-08-09&quot;:0.96},{&quot;2026-08-10&quot;:0.99},{&quot;2026-08-11&quot;:0.99},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.9},{&quot;2026-08-14&quot;:0.94},{&quot;2026-08-15&quot;:0.94},{&quot;2026-08-16&quot;:0.88},{&quot;2026-08-17&quot;:0.93},{&quot;2026-08-18&quot;:0.88},{&quot;2026-08-19&quot;:0.84},{&quot;2026-08-20&quot;:0.84},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.94},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.88},{&quot;2026-08-25&quot;:0.88},{&quot;2026-08-26&quot;:0.97},{&quot;2026-08-27&quot;:0.99},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.02},{&quot;2026-08-31&quot;:1.1},{&quot;2026-09-01&quot;:1.1},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.15},{&quot;2026-09-04&quot;:1.15},{&quot;2026-09-05&quot;:1.16},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.19},{&quot;2026-09-08&quot;:1.15},{&quot;2026-09-09&quot;:1.1},{&quot;2026-09-10&quot;:1.21},{&quot;2026-09-11&quot;:1.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="80544"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Diabolic Tutor
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.13
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Diabolic Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/d/dd14df0b-026d-473f-bfba-f57a2ccfd771.jpg?1783910168" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Diabolic Tutor
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Diabolic Tutor" src="https://cards.scryfall.io/large/front/d/d/dd14df0b-026d-473f-bfba-f57a2ccfd771.jpg?1783910168" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.13
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.05</span>
              <span class="text-xs text-grey-text">Credit: $1.37</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.2},{&quot;2026-06-14&quot;:1.2},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.19},{&quot;2026-06-21&quot;:1.18},{&quot;2026-06-22&quot;:1.18},{&quot;2026-06-23&quot;:1.18},{&quot;2026-06-24&quot;:1.18},{&quot;2026-06-25&quot;:1.17},{&quot;2026-06-26&quot;:1.16},{&quot;2026-06-27&quot;:1.16},{&quot;2026-06-28&quot;:1.13},{&quot;2026-06-29&quot;:1.13},{&quot;2026-06-30&quot;:1.14},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.14},{&quot;2026-07-03&quot;:1.17},{&quot;2026-07-04&quot;:1.17},{&quot;2026-07-05&quot;:1.18},{&quot;2026-07-06&quot;:1.18},{&quot;2026-07-07&quot;:1.17},{&quot;2026-07-08&quot;:1.17},{&quot;2026-07-09&quot;:1.15},{&quot;2026-07-10&quot;:1.15},{&quot;2026-07-11&quot;:1.18},{&quot;2026-07-12&quot;:1.18},{&quot;2026-07-13&quot;:1.25},{&quot;2026-07-14&quot;:1.27},{&quot;2026-07-15&quot;:1.26},{&quot;2026-07-16&quot;:1.26},{&quot;2026-07-17&quot;:1.26},{&quot;2026-07-18&quot;:1.24},{&quot;2026-07-19&quot;:1.24},{&quot;2026-07-20&quot;:1.27},{&quot;2026-07-21&quot;:1.27},{&quot;2026-07-22&quot;:1.27},{&quot;2026-07-23&quot;:1.27},{&quot;2026-07-24&quot;:1.27},{&quot;2026-07-25&quot;:1.27},{&quot;2026-07-26&quot;:1.27},{&quot;2026-07-27&quot;:1.29},{&quot;2026-07-28&quot;:1.3},{&quot;2026-07-29&quot;:1.26},{&quot;2026-07-30&quot;:1.25},{&quot;2026-07-31&quot;:1.22},{&quot;2026-08-01&quot;:1.22},{&quot;2026-08-02&quot;:1.19},{&quot;2026-08-03&quot;:1.15},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.11},{&quot;2026-08-07&quot;:1.1},{&quot;2026-08-08&quot;:1.09},{&quot;2026-08-09&quot;:1.08},{&quot;2026-08-10&quot;:1.08},{&quot;2026-08-11&quot;:1.05},{&quot;2026-08-12&quot;:1.04},{&quot;2026-08-13&quot;:1.05},{&quot;2026-08-14&quot;:1.06},{&quot;2026-08-15&quot;:1.04},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.06},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.06},{&quot;2026-08-21&quot;:1.07},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.12},{&quot;2026-08-24&quot;:1.13},{&quot;2026-08-25&quot;:1.13},{&quot;2026-08-26&quot;:1.13},{&quot;2026-08-27&quot;:1.14},{&quot;2026-08-28&quot;:1.13},{&quot;2026-08-29&quot;:1.13},{&quot;2026-08-30&quot;:1.09},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.11},{&quot;2026-09-02&quot;:1.11},{&quot;2026-09-03&quot;:1.11},{&quot;2026-09-04&quot;:1.1},{&quot;2026-09-05&quot;:1.1},{&quot;2026-09-06&quot;:1.1},{&quot;2026-09-07&quot;:1.1},{&quot;2026-09-08&quot;:1.11},{&quot;2026-09-09&quot;:1.12},{&quot;2026-09-10&quot;:1.13},{&quot;2026-09-11&quot;:1.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="84346"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Relic of Legends
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.13
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Relic of Legends" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/f/4f4bfcf3-55c7-4d5b-9e4a-bc7a574126b4.jpg?1783910035" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Relic of Legends
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Relic of Legends" src="https://cards.scryfall.io/large/front/4/f/4f4bfcf3-55c7-4d5b-9e4a-bc7a574126b4.jpg?1783910035" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.13
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.19</span>
              <span class="text-xs text-grey-text">Credit: $0.25</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.51},{&quot;2026-06-10&quot;:1.55},{&quot;2026-06-11&quot;:1.53},{&quot;2026-06-12&quot;:1.6},{&quot;2026-06-13&quot;:1.6},{&quot;2026-06-14&quot;:1.6},{&quot;2026-06-15&quot;:1.63},{&quot;2026-06-16&quot;:1.63},{&quot;2026-06-17&quot;:1.65},{&quot;2026-06-18&quot;:1.64},{&quot;2026-06-19&quot;:1.64},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.64},{&quot;2026-06-22&quot;:1.64},{&quot;2026-06-24&quot;:1.64},{&quot;2026-06-25&quot;:1.65},{&quot;2026-06-26&quot;:1.65},{&quot;2026-06-27&quot;:1.65},{&quot;2026-06-28&quot;:1.65},{&quot;2026-06-29&quot;:1.65},{&quot;2026-06-30&quot;:1.65},{&quot;2026-07-01&quot;:1.55},{&quot;2026-07-02&quot;:1.56},{&quot;2026-07-03&quot;:1.55},{&quot;2026-07-04&quot;:1.55},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.55},{&quot;2026-07-09&quot;:1.56},{&quot;2026-07-10&quot;:1.56},{&quot;2026-07-11&quot;:1.5},{&quot;2026-07-12&quot;:1.5},{&quot;2026-07-13&quot;:1.5},{&quot;2026-07-14&quot;:1.5},{&quot;2026-07-15&quot;:1.5},{&quot;2026-07-16&quot;:1.5},{&quot;2026-07-17&quot;:1.5},{&quot;2026-07-18&quot;:1.5},{&quot;2026-07-19&quot;:1.5},{&quot;2026-07-20&quot;:1.5},{&quot;2026-07-21&quot;:1.5},{&quot;2026-07-23&quot;:1.49},{&quot;2026-07-25&quot;:1.51},{&quot;2026-07-26&quot;:1.49},{&quot;2026-07-27&quot;:1.49},{&quot;2026-07-29&quot;:1.48},{&quot;2026-07-30&quot;:1.48},{&quot;2026-07-31&quot;:1.46},{&quot;2026-08-01&quot;:1.44},{&quot;2026-08-02&quot;:1.42},{&quot;2026-08-03&quot;:1.4},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.42},{&quot;2026-08-07&quot;:1.43},{&quot;2026-08-08&quot;:1.38},{&quot;2026-08-09&quot;:1.36},{&quot;2026-08-10&quot;:1.36},{&quot;2026-08-11&quot;:1.33},{&quot;2026-08-12&quot;:1.3},{&quot;2026-08-13&quot;:1.3},{&quot;2026-08-14&quot;:1.25},{&quot;2026-08-15&quot;:1.26},{&quot;2026-08-16&quot;:1.23},{&quot;2026-08-17&quot;:1.21},{&quot;2026-08-18&quot;:1.21},{&quot;2026-08-19&quot;:1.21},{&quot;2026-08-20&quot;:1.21},{&quot;2026-08-21&quot;:1.28},{&quot;2026-08-22&quot;:1.27},{&quot;2026-08-23&quot;:1.26},{&quot;2026-08-24&quot;:1.26},{&quot;2026-08-25&quot;:1.26},{&quot;2026-08-26&quot;:1.25},{&quot;2026-08-27&quot;:1.19},{&quot;2026-08-28&quot;:1.19},{&quot;2026-08-29&quot;:1.19},{&quot;2026-08-30&quot;:1.18},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.14},{&quot;2026-09-04&quot;:1.14},{&quot;2026-09-05&quot;:1.14},{&quot;2026-09-06&quot;:1.14},{&quot;2026-09-07&quot;:1.13},{&quot;2026-09-08&quot;:1.14},{&quot;2026-09-09&quot;:1.14},{&quot;2026-09-10&quot;:1.14},{&quot;2026-09-11&quot;:1.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82580"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Titanoth Rex
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dinosaur Beast
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.10
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Titanoth Rex" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/84d34815-a52b-4358-bb62-a6b2e9ab9f8c.jpg?1783913652" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Titanoth Rex
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Dinosaur Beast</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Titanoth Rex" src="https://cards.scryfall.io/large/front/8/4/84d34815-a52b-4358-bb62-a6b2e9ab9f8c.jpg?1783913652" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.10
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  4%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.24</span>
              <span class="text-xs text-grey-text">Credit: $0.31</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.84},{&quot;2026-06-13&quot;:2.99},{&quot;2026-06-14&quot;:3.0},{&quot;2026-06-15&quot;:3.0},{&quot;2026-06-16&quot;:3.0},{&quot;2026-06-17&quot;:3.0},{&quot;2026-06-18&quot;:2.86},{&quot;2026-06-19&quot;:2.86},{&quot;2026-06-20&quot;:2.86},{&quot;2026-06-21&quot;:2.86},{&quot;2026-06-22&quot;:2.88},{&quot;2026-06-23&quot;:2.85},{&quot;2026-06-24&quot;:2.68},{&quot;2026-06-25&quot;:2.84},{&quot;2026-06-26&quot;:2.84},{&quot;2026-06-27&quot;:2.74},{&quot;2026-06-28&quot;:2.74},{&quot;2026-06-29&quot;:2.69},{&quot;2026-06-30&quot;:2.53},{&quot;2026-07-01&quot;:2.53},{&quot;2026-07-02&quot;:2.53},{&quot;2026-07-03&quot;:2.53},{&quot;2026-07-04&quot;:2.53},{&quot;2026-07-05&quot;:2.53},{&quot;2026-07-06&quot;:2.53},{&quot;2026-07-07&quot;:2.53},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.29},{&quot;2026-07-10&quot;:2.14},{&quot;2026-07-11&quot;:2.29},{&quot;2026-07-12&quot;:2.29},{&quot;2026-07-13&quot;:2.29},{&quot;2026-07-14&quot;:2.29},{&quot;2026-07-15&quot;:2.29},{&quot;2026-07-16&quot;:2.11},{&quot;2026-07-17&quot;:1.92},{&quot;2026-07-18&quot;:1.92},{&quot;2026-07-19&quot;:2.22},{&quot;2026-07-20&quot;:2.22},{&quot;2026-07-21&quot;:2.31},{&quot;2026-07-23&quot;:2.33},{&quot;2026-07-24&quot;:2.33},{&quot;2026-07-25&quot;:2.33},{&quot;2026-07-26&quot;:2.32},{&quot;2026-07-27&quot;:2.32},{&quot;2026-07-28&quot;:2.32},{&quot;2026-07-29&quot;:2.27},{&quot;2026-07-30&quot;:2.22},{&quot;2026-07-31&quot;:2.2},{&quot;2026-08-01&quot;:2.2},{&quot;2026-08-02&quot;:2.2},{&quot;2026-08-03&quot;:2.06},{&quot;2026-08-04&quot;:2.09},{&quot;2026-08-05&quot;:2.09},{&quot;2026-08-07&quot;:1.97},{&quot;2026-08-08&quot;:1.91},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.89},{&quot;2026-08-11&quot;:1.82},{&quot;2026-08-12&quot;:1.82},{&quot;2026-08-13&quot;:1.84},{&quot;2026-08-14&quot;:1.98},{&quot;2026-08-15&quot;:1.55},{&quot;2026-08-16&quot;:1.55},{&quot;2026-08-17&quot;:1.55},{&quot;2026-08-18&quot;:1.53},{&quot;2026-08-19&quot;:1.51},{&quot;2026-08-20&quot;:1.51},{&quot;2026-08-21&quot;:1.48},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.48},{&quot;2026-08-24&quot;:1.48},{&quot;2026-08-25&quot;:1.48},{&quot;2026-08-26&quot;:1.46},{&quot;2026-08-27&quot;:1.46},{&quot;2026-08-28&quot;:1.38},{&quot;2026-08-29&quot;:1.38},{&quot;2026-08-30&quot;:1.25},{&quot;2026-08-31&quot;:1.25},{&quot;2026-09-01&quot;:1.25},{&quot;2026-09-02&quot;:1.25},{&quot;2026-09-03&quot;:1.25},{&quot;2026-09-04&quot;:1.25},{&quot;2026-09-05&quot;:1.14},{&quot;2026-09-06&quot;:1.14},{&quot;2026-09-07&quot;:1.14},{&quot;2026-09-08&quot;:1.1},{&quot;2026-09-09&quot;:1.1},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.1}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="82866"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Inspired Tinkering
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.09
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Inspired Tinkering" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/e/8e4cfc1f-5075-481e-9314-8a99fe6f0f07.jpg?1783910083" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Inspired Tinkering
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Inspired Tinkering" src="https://cards.scryfall.io/large/front/8/e/8e4cfc1f-5075-481e-9314-8a99fe6f0f07.jpg?1783910083" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.09
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  5%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.72},{&quot;2026-06-14&quot;:0.72},{&quot;2026-06-15&quot;:0.72},{&quot;2026-06-16&quot;:0.72},{&quot;2026-06-17&quot;:0.73},{&quot;2026-06-18&quot;:0.74},{&quot;2026-06-19&quot;:0.74},{&quot;2026-06-20&quot;:0.74},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-23&quot;:0.73},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.75},{&quot;2026-06-26&quot;:0.75},{&quot;2026-06-27&quot;:0.7},{&quot;2026-06-28&quot;:0.7},{&quot;2026-06-29&quot;:0.71},{&quot;2026-06-30&quot;:0.72},{&quot;2026-07-01&quot;:0.73},{&quot;2026-07-02&quot;:0.77},{&quot;2026-07-03&quot;:0.77},{&quot;2026-07-04&quot;:0.77},{&quot;2026-07-05&quot;:0.77},{&quot;2026-07-06&quot;:0.78},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.8},{&quot;2026-07-09&quot;:0.8},{&quot;2026-07-10&quot;:0.8},{&quot;2026-07-11&quot;:0.81},{&quot;2026-07-12&quot;:0.82},{&quot;2026-07-13&quot;:0.82},{&quot;2026-07-14&quot;:0.82},{&quot;2026-07-15&quot;:0.82},{&quot;2026-07-16&quot;:0.87},{&quot;2026-07-17&quot;:0.87},{&quot;2026-07-18&quot;:0.9},{&quot;2026-07-19&quot;:0.92},{&quot;2026-07-20&quot;:0.92},{&quot;2026-07-21&quot;:0.92},{&quot;2026-07-22&quot;:0.92},{&quot;2026-07-23&quot;:0.92},{&quot;2026-07-24&quot;:0.93},{&quot;2026-07-25&quot;:0.96},{&quot;2026-07-26&quot;:0.99},{&quot;2026-07-27&quot;:1.01},{&quot;2026-07-28&quot;:0.98},{&quot;2026-07-29&quot;:0.99},{&quot;2026-07-30&quot;:1.02},{&quot;2026-07-31&quot;:1.02},{&quot;2026-08-01&quot;:1.02},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.05},{&quot;2026-08-04&quot;:1.1},{&quot;2026-08-05&quot;:1.06},{&quot;2026-08-07&quot;:1.07},{&quot;2026-08-08&quot;:1.07},{&quot;2026-08-09&quot;:1.07},{&quot;2026-08-10&quot;:1.07},{&quot;2026-08-11&quot;:1.05},{&quot;2026-08-12&quot;:1.05},{&quot;2026-08-13&quot;:1.07},{&quot;2026-08-14&quot;:1.07},{&quot;2026-08-15&quot;:1.07},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.06},{&quot;2026-08-18&quot;:1.06},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.06},{&quot;2026-08-21&quot;:1.06},{&quot;2026-08-22&quot;:1.06},{&quot;2026-08-23&quot;:1.08},{&quot;2026-08-24&quot;:1.14},{&quot;2026-08-25&quot;:1.15},{&quot;2026-08-26&quot;:1.15},{&quot;2026-08-27&quot;:1.15},{&quot;2026-08-28&quot;:1.15},{&quot;2026-08-29&quot;:1.15},{&quot;2026-08-30&quot;:1.13},{&quot;2026-08-31&quot;:1.15},{&quot;2026-09-01&quot;:1.15},{&quot;2026-09-02&quot;:1.15},{&quot;2026-09-03&quot;:1.15},{&quot;2026-09-04&quot;:1.15},{&quot;2026-09-05&quot;:1.15},{&quot;2026-09-06&quot;:1.15},{&quot;2026-09-07&quot;:1.15},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.09},{&quot;2026-09-10&quot;:1.09},{&quot;2026-09-11&quot;:1.09}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying items 1-50 of 630 in total</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=13">13</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=card_number&amp;username=denvermullets">
  #

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=name&amp;username=denvermullets">
  Name

</a>
          </th>

          <th
            class="
              hidden px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text lg:table-cell
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=card_type&amp;username=denvermullets">
  Type

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=mana_value&amp;username=denvermullets">
  Mana

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=normal_price&amp;username=denvermullets">
  Regular

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=foil_price&amp;username=denvermullets">
  Foil

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=ck_buylist_normal_price&amp;username=denvermullets">
  Sell Regular

</a>
          </th>

          <th
            class="
              px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=ck_buylist_foil_price&amp;username=denvermullets">
  Sell Foil

</a>
          </th>

          <th
            class="
              hidden px-4 py-2 text-xs font-normal tracking-wider text-left
              normal-case lg:table-cell text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=309&amp;direction=asc&amp;sort=edhrec_saltiness&amp;username=denvermullets">
  Salt

</a>
          </th>
      </tr>
    </thead>

    <tbody class="bg-background" data-controller="expandable-row">

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77886"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CLB-78
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Irenicus&#39;s Vile Duplication


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77886"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77886" src="/boxset_card/77886?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53227"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              183
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Eater of the Dead


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Horror
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.60

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53227"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53227" src="/boxset_card/53227?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82986"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ODY-186
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Dwarven Recruiter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dwarf
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.52

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82986"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82986" src="/boxset_card/82986?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80735"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ONS-132
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Chain of Smog


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80735"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80735" src="/boxset_card/80735?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74152"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              PLC-12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Rebuff the Wicked


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74152"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74152" src="/boxset_card/74152?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78143"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              EMA-83
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Cabal Therapy


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.90

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78143"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78143" src="/boxset_card/78143?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53259"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              193
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Goblin Recruiter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Goblin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.69
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53259"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53259" src="/boxset_card/53259?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74008"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CHK-10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Ghostly Prison


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74008"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74008" src="/boxset_card/74008?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79562"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              USG-111
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Windfall


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.84
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79562"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79562" src="/boxset_card/79562?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85578"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CLB-332
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Patriar&#39;s Seal


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.36

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85578"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85578" src="/boxset_card/85578?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76868"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              SHM-57
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Beseech the Queen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2b'></i><i class='no-tailwind ms ms-cost ml-0 ms-2b'></i><i class='no-tailwind ms ms-cost ml-0 ms-2b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.94

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76868"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76868" src="/boxset_card/76868?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87230"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              10E-173
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Relentless Rats


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.73

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87230"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87230" src="/boxset_card/87230?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86336"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              M19-68
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Psychic Corrosion


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.61
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86336"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86336" src="/boxset_card/86336?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82815"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MH1-81
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Carrion Feeder


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.51

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82815"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82815" src="/boxset_card/82815?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83682"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              INV-213
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tangle


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83682"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83682" src="/boxset_card/83682?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53328"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              217
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Basalt Monolith


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.87

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53328"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53328" src="/boxset_card/53328?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84140"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MRD-229
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Power Conduit


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="84140"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_84140" src="/boxset_card/84140?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78051"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              EVE-81
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Batwing Brume


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-wb'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78051"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78051" src="/boxset_card/78051?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82592"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              SOM-174
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Memnite


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Construct
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82592"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82592" src="/boxset_card/82592?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53188"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              170
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Reset


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.07

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53188"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53188" src="/boxset_card/53188?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78425"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              BOK-88
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Throat Slitter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat Ninja
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78425"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78425" src="/boxset_card/78425?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77211"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ONS-64
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Aphetto Alchemist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.43

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77211"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77211" src="/boxset_card/77211?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="52935"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              87
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Lim-Dûl&#39;s Vault


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="52935"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_52935" src="/boxset_card/52935?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86497"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MH2-121
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Dragon&#39;s Rage Channeler


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.37

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86497"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86497" src="/boxset_card/86497?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86701"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MH2-180
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tireless Provisioner


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Scout
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86701"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86701" src="/boxset_card/86701?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80436"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              STH-127
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Crystalline Sliver


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Sliver
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.88
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80436"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80436" src="/boxset_card/80436?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76621"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              WAR-52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Flux Channeler


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76621"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76621" src="/boxset_card/76621?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="81698"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              PLC-152
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Keen Sense


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.12

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="81698"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_81698" src="/boxset_card/81698?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77189"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              WTH-63
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Buried Alive


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.11

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      27%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.72
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77189"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77189" src="/boxset_card/77189?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53193"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              172
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Standstill


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.09

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.63
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53193"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53193" src="/boxset_card/53193?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78104"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MRD-82
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Wall of Blood


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Wall
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.06

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.23
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78104"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78104" src="/boxset_card/78104?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82228"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              WTH-164
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Gemstone Mine


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82228"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82228" src="/boxset_card/82228?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85759"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              H09-26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Heartstone


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85759"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85759" src="/boxset_card/85759?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84298"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              TMP-234
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Horned Sliver


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Sliver
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.91

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.54
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="84298"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_84298" src="/boxset_card/84298?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79797"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              STX-115
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Storm-Kiln Artist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dwarf Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.79

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79797"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79797" src="/boxset_card/79797?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83256"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              M19-6
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Ajani&#39;s Welcome


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83256"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83256" src="/boxset_card/83256?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85027"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              TD2-69
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Spawning Pit


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.69

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85027"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85027" src="/boxset_card/85027?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53386"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              235
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tormod&#39;s Crypt


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53386"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53386" src="/boxset_card/53386?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83292"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              IMA-197
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Corpsejack Menace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Fungus
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83292"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83292" src="/boxset_card/83292?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79222"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MMQ-104
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Soothsaying


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79222"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79222" src="/boxset_card/79222?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76784"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              DDS-56
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Guttural Response


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-rg'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76784"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76784" src="/boxset_card/76784?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="88177"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              C21-129
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Serum Visions


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="88177"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_88177" src="/boxset_card/88177?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80080"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              TMP-120
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Dauthi Embrace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80080"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80080" src="/boxset_card/80080?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77841"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              LGN-77
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Noxious Ghoul


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.39
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77841"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77841" src="/boxset_card/77841?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83109"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ROE-190
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Joraga Treespeaker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83109"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83109" src="/boxset_card/83109?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79358"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ELD-107
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Syr Konrad, the Grim


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.21

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.93
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79358"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79358" src="/boxset_card/79358?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80544"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ODY-129
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Diabolic Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80544"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80544" src="/boxset_card/80544?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84346"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              DMU-236
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Relic of Legends


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="84346"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_84346" src="/boxset_card/84346?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82580"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              IKO-174
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Titanoth Rex


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur Beast
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.10

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.24
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82580"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82580" src="/boxset_card/82580?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82866"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CLB-183
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Inspired Tinkering


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.09

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82866"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82866" src="/boxset_card/82866?collection_id=309&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 630 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=13">13</a><a href="/load_collection?collection_id=309&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>