<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="206" 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="108375"
  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-tmc ss-rare 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">
            City of Brass
        </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-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $12.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="City of Brass" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c21565d0-fc40-4d89-9b27-87c03385e0af.jpg?1783904153" />

        <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">
            City of Brass
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="City of Brass" src="https://cards.scryfall.io/large/front/c/2/c21565d0-fc40-4d89-9b27-87c03385e0af.jpg?1783904153" />
    </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">
                $12.09
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $31.53
              </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">$8.25</span>
              <span class="text-xs text-grey-text">Credit: $10.73</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-08-19&quot;:31.98},{&quot;2026-08-20&quot;:31.98},{&quot;2026-08-21&quot;:32.01},{&quot;2026-08-22&quot;:32.01},{&quot;2026-08-23&quot;:31.96},{&quot;2026-08-24&quot;:31.96},{&quot;2026-08-25&quot;:31.96},{&quot;2026-08-26&quot;:31.9},{&quot;2026-08-27&quot;:31.9},{&quot;2026-08-28&quot;:31.9},{&quot;2026-08-29&quot;:31.9},{&quot;2026-08-30&quot;:31.85},{&quot;2026-08-31&quot;:31.85},{&quot;2026-09-01&quot;:31.85},{&quot;2026-09-02&quot;:31.85},{&quot;2026-09-03&quot;:31.85},{&quot;2026-09-04&quot;:31.85},{&quot;2026-09-05&quot;:31.78},{&quot;2026-09-06&quot;:31.78},{&quot;2026-09-07&quot;:31.8},{&quot;2026-09-08&quot;:31.79},{&quot;2026-09-09&quot;:31.79},{&quot;2026-09-10&quot;:31.79},{&quot;2026-09-11&quot;:31.53}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:10.05},{&quot;2026-06-12&quot;:9.83},{&quot;2026-06-13&quot;:10.48},{&quot;2026-06-14&quot;:10.53},{&quot;2026-06-15&quot;:10.61},{&quot;2026-06-16&quot;:10.57},{&quot;2026-06-17&quot;:10.36},{&quot;2026-06-18&quot;:10.44},{&quot;2026-06-19&quot;:11.2},{&quot;2026-06-20&quot;:11.34},{&quot;2026-06-21&quot;:10.98},{&quot;2026-06-22&quot;:10.9},{&quot;2026-06-23&quot;:11.36},{&quot;2026-06-24&quot;:10.86},{&quot;2026-06-25&quot;:10.08},{&quot;2026-06-26&quot;:10.82},{&quot;2026-06-27&quot;:11.03},{&quot;2026-06-28&quot;:11.67},{&quot;2026-06-29&quot;:11.78},{&quot;2026-06-30&quot;:11.39},{&quot;2026-07-01&quot;:11.52},{&quot;2026-07-02&quot;:11.36},{&quot;2026-07-03&quot;:12.11},{&quot;2026-07-04&quot;:12.03},{&quot;2026-07-05&quot;:11.49},{&quot;2026-07-06&quot;:11.24},{&quot;2026-07-07&quot;:11.53},{&quot;2026-07-08&quot;:11.46},{&quot;2026-07-09&quot;:11.45},{&quot;2026-07-10&quot;:10.92},{&quot;2026-07-11&quot;:10.97},{&quot;2026-07-12&quot;:11.49},{&quot;2026-07-13&quot;:11.44},{&quot;2026-07-14&quot;:11.42},{&quot;2026-07-15&quot;:11.58},{&quot;2026-07-16&quot;:11.41},{&quot;2026-07-17&quot;:11.29},{&quot;2026-07-18&quot;:11.48},{&quot;2026-07-19&quot;:11.73},{&quot;2026-07-20&quot;:11.81},{&quot;2026-07-21&quot;:11.34},{&quot;2026-07-23&quot;:11.83},{&quot;2026-07-25&quot;:11.99},{&quot;2026-07-26&quot;:11.29},{&quot;2026-07-27&quot;:11.25},{&quot;2026-07-28&quot;:12.17},{&quot;2026-07-29&quot;:12.18},{&quot;2026-07-30&quot;:12.38},{&quot;2026-07-31&quot;:12.11},{&quot;2026-08-01&quot;:12.21},{&quot;2026-08-02&quot;:12.3},{&quot;2026-08-03&quot;:12.07},{&quot;2026-08-04&quot;:11.97},{&quot;2026-08-05&quot;:11.74},{&quot;2026-08-07&quot;:10.73},{&quot;2026-08-08&quot;:11.03},{&quot;2026-08-09&quot;:11.18},{&quot;2026-08-10&quot;:11.37},{&quot;2026-08-11&quot;:11.14},{&quot;2026-08-12&quot;:11.63},{&quot;2026-08-13&quot;:11.87},{&quot;2026-08-14&quot;:11.99},{&quot;2026-08-15&quot;:11.84},{&quot;2026-08-16&quot;:11.85},{&quot;2026-08-17&quot;:12.27},{&quot;2026-08-18&quot;:12.44},{&quot;2026-08-19&quot;:12.4},{&quot;2026-08-20&quot;:12.4},{&quot;2026-08-21&quot;:11.77},{&quot;2026-08-22&quot;:11.11},{&quot;2026-08-23&quot;:11.59},{&quot;2026-08-24&quot;:12.05},{&quot;2026-08-25&quot;:12.05},{&quot;2026-08-26&quot;:11.96},{&quot;2026-08-27&quot;:12.04},{&quot;2026-08-28&quot;:12.07},{&quot;2026-08-29&quot;:12.07},{&quot;2026-08-30&quot;:12.37},{&quot;2026-08-31&quot;:12.07},{&quot;2026-09-01&quot;:12.07},{&quot;2026-09-02&quot;:11.88},{&quot;2026-09-03&quot;:12.14},{&quot;2026-09-04&quot;:12.1},{&quot;2026-09-05&quot;:12.42},{&quot;2026-09-06&quot;:12.32},{&quot;2026-09-07&quot;:12.05},{&quot;2026-09-08&quot;:12.07},{&quot;2026-09-09&quot;:12.05},{&quot;2026-09-10&quot;:12.05},{&quot;2026-09-11&quot;:12.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="108388"
  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-tmc ss-rare 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">
            Spire Garden
        </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-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.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="Spire Garden" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/48444c3e-2068-4961-a9cd-9398052e5bd6.jpg?1783904149" />

        <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">
            Spire Garden
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Spire Garden" src="https://cards.scryfall.io/large/front/4/8/48444c3e-2068-4961-a9cd-9398052e5bd6.jpg?1783904149" />
    </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">
                $6.38
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $14.79
              </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">$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;2026-08-19&quot;:14.49},{&quot;2026-08-20&quot;:14.49},{&quot;2026-08-21&quot;:14.49},{&quot;2026-08-22&quot;:14.49},{&quot;2026-08-23&quot;:14.76},{&quot;2026-08-24&quot;:14.79},{&quot;2026-08-25&quot;:14.79},{&quot;2026-08-26&quot;:14.79},{&quot;2026-08-27&quot;:14.89},{&quot;2026-08-28&quot;:14.87},{&quot;2026-08-29&quot;:14.87},{&quot;2026-08-30&quot;:14.79},{&quot;2026-08-31&quot;:14.79},{&quot;2026-09-01&quot;:14.79},{&quot;2026-09-02&quot;:14.79},{&quot;2026-09-03&quot;:14.79},{&quot;2026-09-04&quot;:15.01},{&quot;2026-09-05&quot;:15.01},{&quot;2026-09-06&quot;:15.01},{&quot;2026-09-07&quot;:14.94},{&quot;2026-09-08&quot;:14.79},{&quot;2026-09-09&quot;:14.79},{&quot;2026-09-10&quot;:14.79},{&quot;2026-09-11&quot;:14.79}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.61},{&quot;2026-06-14&quot;:5.26},{&quot;2026-06-15&quot;:5.0},{&quot;2026-06-16&quot;:4.85},{&quot;2026-06-17&quot;:5.04},{&quot;2026-06-18&quot;:5.33},{&quot;2026-06-19&quot;:5.54},{&quot;2026-06-20&quot;:5.49},{&quot;2026-06-21&quot;:5.77},{&quot;2026-06-22&quot;:6.0},{&quot;2026-06-23&quot;:5.79},{&quot;2026-06-24&quot;:5.71},{&quot;2026-06-25&quot;:5.79},{&quot;2026-06-26&quot;:5.63},{&quot;2026-06-27&quot;:5.38},{&quot;2026-06-28&quot;:5.81},{&quot;2026-06-29&quot;:5.89},{&quot;2026-06-30&quot;:6.44},{&quot;2026-07-01&quot;:6.18},{&quot;2026-07-02&quot;:5.69},{&quot;2026-07-03&quot;:5.78},{&quot;2026-07-04&quot;:5.64},{&quot;2026-07-05&quot;:5.68},{&quot;2026-07-06&quot;:6.04},{&quot;2026-07-07&quot;:6.24},{&quot;2026-07-08&quot;:6.06},{&quot;2026-07-09&quot;:6.01},{&quot;2026-07-10&quot;:6.39},{&quot;2026-07-11&quot;:6.0},{&quot;2026-07-12&quot;:5.8},{&quot;2026-07-13&quot;:5.77},{&quot;2026-07-14&quot;:5.97},{&quot;2026-07-15&quot;:6.2},{&quot;2026-07-16&quot;:6.26},{&quot;2026-07-17&quot;:6.24},{&quot;2026-07-18&quot;:6.33},{&quot;2026-07-19&quot;:6.02},{&quot;2026-07-20&quot;:6.03},{&quot;2026-07-21&quot;:6.1},{&quot;2026-07-22&quot;:6.38},{&quot;2026-07-23&quot;:6.35},{&quot;2026-07-24&quot;:6.43},{&quot;2026-07-25&quot;:6.38},{&quot;2026-07-26&quot;:6.36},{&quot;2026-07-27&quot;:6.28},{&quot;2026-07-28&quot;:6.41},{&quot;2026-07-29&quot;:6.4},{&quot;2026-07-30&quot;:6.37},{&quot;2026-07-31&quot;:6.18},{&quot;2026-08-01&quot;:6.16},{&quot;2026-08-02&quot;:6.09},{&quot;2026-08-03&quot;:6.07},{&quot;2026-08-04&quot;:6.32},{&quot;2026-08-05&quot;:6.45},{&quot;2026-08-07&quot;:6.05},{&quot;2026-08-08&quot;:6.09},{&quot;2026-08-09&quot;:6.09},{&quot;2026-08-10&quot;:6.37},{&quot;2026-08-11&quot;:6.24},{&quot;2026-08-12&quot;:6.28},{&quot;2026-08-13&quot;:6.29},{&quot;2026-08-14&quot;:6.29},{&quot;2026-08-15&quot;:6.29},{&quot;2026-08-16&quot;:6.36},{&quot;2026-08-17&quot;:6.35},{&quot;2026-08-18&quot;:6.44},{&quot;2026-08-19&quot;:6.45},{&quot;2026-08-20&quot;:6.51},{&quot;2026-08-21&quot;:6.53},{&quot;2026-08-22&quot;:6.58},{&quot;2026-08-23&quot;:6.64},{&quot;2026-08-24&quot;:6.73},{&quot;2026-08-25&quot;:6.73},{&quot;2026-08-26&quot;:6.72},{&quot;2026-08-27&quot;:6.58},{&quot;2026-08-28&quot;:6.55},{&quot;2026-08-29&quot;:6.55},{&quot;2026-08-30&quot;:6.73},{&quot;2026-08-31&quot;:6.62},{&quot;2026-09-01&quot;:6.5},{&quot;2026-09-02&quot;:6.46},{&quot;2026-09-03&quot;:6.45},{&quot;2026-09-04&quot;:6.44},{&quot;2026-09-05&quot;:6.52},{&quot;2026-09-06&quot;:6.25},{&quot;2026-09-07&quot;:6.33},{&quot;2026-09-08&quot;:6.3},{&quot;2026-09-09&quot;:6.06},{&quot;2026-09-10&quot;:6.19},{&quot;2026-09-11&quot;:6.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="108393"
  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-tmc ss-rare 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">
            Undergrowth Stadium
        </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">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.17
          </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="Undergrowth Stadium" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/2/f25aa8aa-e2f7-4634-8a96-2082e76c6503.jpg?1783904148" />

        <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">
            Undergrowth Stadium
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Undergrowth Stadium" src="https://cards.scryfall.io/large/front/f/2/f25aa8aa-e2f7-4634-8a96-2082e76c6503.jpg?1783904148" />
    </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">
                $6.17
              </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">
                $11.20
              </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">$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;2026-08-19&quot;:11.06},{&quot;2026-08-20&quot;:11.06},{&quot;2026-08-21&quot;:11.06},{&quot;2026-08-22&quot;:11.06},{&quot;2026-08-23&quot;:11.06},{&quot;2026-08-24&quot;:11.06},{&quot;2026-08-25&quot;:11.39},{&quot;2026-08-26&quot;:11.39},{&quot;2026-08-27&quot;:11.39},{&quot;2026-08-28&quot;:11.39},{&quot;2026-08-29&quot;:11.39},{&quot;2026-08-30&quot;:11.39},{&quot;2026-08-31&quot;:11.39},{&quot;2026-09-01&quot;:11.39},{&quot;2026-09-02&quot;:11.32},{&quot;2026-09-03&quot;:11.32},{&quot;2026-09-04&quot;:11.32},{&quot;2026-09-05&quot;:11.28},{&quot;2026-09-06&quot;:11.2},{&quot;2026-09-07&quot;:11.2},{&quot;2026-09-08&quot;:11.2},{&quot;2026-09-09&quot;:11.2},{&quot;2026-09-10&quot;:11.2},{&quot;2026-09-11&quot;:11.2}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.64},{&quot;2026-06-14&quot;:5.7},{&quot;2026-06-15&quot;:5.51},{&quot;2026-06-16&quot;:5.45},{&quot;2026-06-17&quot;:5.71},{&quot;2026-06-18&quot;:5.73},{&quot;2026-06-19&quot;:5.83},{&quot;2026-06-20&quot;:5.95},{&quot;2026-06-21&quot;:5.92},{&quot;2026-06-22&quot;:6.04},{&quot;2026-06-23&quot;:5.96},{&quot;2026-06-24&quot;:6.01},{&quot;2026-06-25&quot;:5.9},{&quot;2026-06-26&quot;:5.63},{&quot;2026-06-27&quot;:5.77},{&quot;2026-06-28&quot;:5.92},{&quot;2026-06-29&quot;:5.9},{&quot;2026-06-30&quot;:5.96},{&quot;2026-07-01&quot;:5.24},{&quot;2026-07-02&quot;:5.3},{&quot;2026-07-03&quot;:5.7},{&quot;2026-07-04&quot;:5.77},{&quot;2026-07-05&quot;:5.61},{&quot;2026-07-06&quot;:5.84},{&quot;2026-07-07&quot;:5.77},{&quot;2026-07-08&quot;:5.56},{&quot;2026-07-09&quot;:5.65},{&quot;2026-07-10&quot;:5.69},{&quot;2026-07-11&quot;:5.69},{&quot;2026-07-12&quot;:5.19},{&quot;2026-07-13&quot;:5.31},{&quot;2026-07-14&quot;:5.52},{&quot;2026-07-15&quot;:5.72},{&quot;2026-07-16&quot;:5.77},{&quot;2026-07-17&quot;:5.69},{&quot;2026-07-18&quot;:5.79},{&quot;2026-07-19&quot;:6.19},{&quot;2026-07-20&quot;:6.05},{&quot;2026-07-21&quot;:6.04},{&quot;2026-07-22&quot;:6.04},{&quot;2026-07-23&quot;:5.88},{&quot;2026-07-24&quot;:5.87},{&quot;2026-07-25&quot;:5.96},{&quot;2026-07-26&quot;:5.88},{&quot;2026-07-27&quot;:6.06},{&quot;2026-07-28&quot;:6.32},{&quot;2026-07-29&quot;:6.21},{&quot;2026-07-30&quot;:6.18},{&quot;2026-07-31&quot;:5.57},{&quot;2026-08-01&quot;:5.38},{&quot;2026-08-02&quot;:5.42},{&quot;2026-08-03&quot;:5.59},{&quot;2026-08-04&quot;:5.7},{&quot;2026-08-05&quot;:5.79},{&quot;2026-08-07&quot;:5.92},{&quot;2026-08-08&quot;:6.04},{&quot;2026-08-09&quot;:5.98},{&quot;2026-08-10&quot;:5.81},{&quot;2026-08-11&quot;:5.83},{&quot;2026-08-12&quot;:5.64},{&quot;2026-08-13&quot;:6.01},{&quot;2026-08-14&quot;:6.01},{&quot;2026-08-15&quot;:5.98},{&quot;2026-08-16&quot;:6.03},{&quot;2026-08-17&quot;:6.14},{&quot;2026-08-18&quot;:6.13},{&quot;2026-08-19&quot;:6.23},{&quot;2026-08-20&quot;:6.28},{&quot;2026-08-21&quot;:6.09},{&quot;2026-08-22&quot;:6.09},{&quot;2026-08-23&quot;:6.33},{&quot;2026-08-24&quot;:6.2},{&quot;2026-08-25&quot;:6.36},{&quot;2026-08-26&quot;:6.31},{&quot;2026-08-27&quot;:6.22},{&quot;2026-08-28&quot;:6.16},{&quot;2026-08-29&quot;:6.16},{&quot;2026-08-30&quot;:6.47},{&quot;2026-08-31&quot;:6.46},{&quot;2026-09-01&quot;:6.41},{&quot;2026-09-02&quot;:6.25},{&quot;2026-09-03&quot;:6.39},{&quot;2026-09-04&quot;:6.44},{&quot;2026-09-05&quot;:5.99},{&quot;2026-09-06&quot;:5.57},{&quot;2026-09-07&quot;:5.84},{&quot;2026-09-08&quot;:6.04},{&quot;2026-09-09&quot;:6.06},{&quot;2026-09-10&quot;:6.11},{&quot;2026-09-11&quot;:6.17}]}"
        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="108324"
  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-tmc ss-rare 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">
            Irma, Part-Time Mutant
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Mutant Shapeshifter
      </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">
            $5.15
          </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="Irma, Part-Time Mutant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c3128529-4ccd-4809-8388-03f7faa0eabe.jpg?1783904172" />

        <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">
            Irma, Part-Time Mutant
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Mutant Shapeshifter</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="Irma, Part-Time Mutant" src="https://cards.scryfall.io/large/front/c/3/c3128529-4ccd-4809-8388-03f7faa0eabe.jpg?1783904172" />
    </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.15
              </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">
                $46.19
              </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;2026-06-14&quot;:12.69},{&quot;2026-06-15&quot;:12.69},{&quot;2026-06-16&quot;:12.69},{&quot;2026-06-17&quot;:12.69},{&quot;2026-06-18&quot;:12.69},{&quot;2026-06-19&quot;:12.69},{&quot;2026-06-20&quot;:12.69},{&quot;2026-06-21&quot;:12.69},{&quot;2026-06-22&quot;:12.69},{&quot;2026-06-23&quot;:12.69},{&quot;2026-06-24&quot;:12.69},{&quot;2026-06-25&quot;:12.69},{&quot;2026-06-26&quot;:12.69},{&quot;2026-06-27&quot;:12.69},{&quot;2026-06-28&quot;:12.69},{&quot;2026-06-29&quot;:12.69},{&quot;2026-06-30&quot;:12.69},{&quot;2026-07-01&quot;:12.69},{&quot;2026-07-02&quot;:12.69},{&quot;2026-07-03&quot;:12.69},{&quot;2026-07-04&quot;:12.69},{&quot;2026-07-05&quot;:12.69},{&quot;2026-07-06&quot;:12.69},{&quot;2026-07-07&quot;:12.69},{&quot;2026-07-08&quot;:12.69},{&quot;2026-07-09&quot;:12.69},{&quot;2026-07-10&quot;:12.69},{&quot;2026-07-11&quot;:12.69},{&quot;2026-07-12&quot;:12.69},{&quot;2026-07-13&quot;:12.69},{&quot;2026-07-14&quot;:12.69},{&quot;2026-07-15&quot;:12.69},{&quot;2026-07-16&quot;:12.69},{&quot;2026-07-17&quot;:12.69},{&quot;2026-07-18&quot;:12.69},{&quot;2026-07-19&quot;:12.69},{&quot;2026-07-20&quot;:12.69},{&quot;2026-07-21&quot;:12.69},{&quot;2026-07-22&quot;:12.69},{&quot;2026-07-23&quot;:12.69},{&quot;2026-07-24&quot;:12.69},{&quot;2026-07-25&quot;:12.69},{&quot;2026-07-26&quot;:12.69},{&quot;2026-07-27&quot;:12.69},{&quot;2026-07-28&quot;:12.69},{&quot;2026-07-29&quot;:12.69},{&quot;2026-07-30&quot;:12.69},{&quot;2026-07-31&quot;:12.69},{&quot;2026-08-01&quot;:12.69},{&quot;2026-08-02&quot;:12.69},{&quot;2026-08-03&quot;:12.69},{&quot;2026-08-04&quot;:12.69},{&quot;2026-08-05&quot;:12.69},{&quot;2026-08-06&quot;:12.69},{&quot;2026-08-07&quot;:12.69},{&quot;2026-08-08&quot;:12.69},{&quot;2026-08-09&quot;:12.69},{&quot;2026-08-10&quot;:12.69},{&quot;2026-08-11&quot;:12.69},{&quot;2026-08-12&quot;:12.69},{&quot;2026-08-13&quot;:12.69},{&quot;2026-08-14&quot;:12.69},{&quot;2026-08-15&quot;:12.69},{&quot;2026-08-16&quot;:12.69},{&quot;2026-08-17&quot;:12.69},{&quot;2026-08-18&quot;:12.69},{&quot;2026-08-19&quot;:45.5},{&quot;2026-08-20&quot;:45.5},{&quot;2026-08-21&quot;:45.5},{&quot;2026-08-22&quot;:45.42},{&quot;2026-08-23&quot;:45.42},{&quot;2026-08-24&quot;:45.76},{&quot;2026-08-25&quot;:45.84},{&quot;2026-08-26&quot;:45.84},{&quot;2026-08-27&quot;:45.84},{&quot;2026-08-28&quot;:45.9},{&quot;2026-08-29&quot;:45.9},{&quot;2026-08-30&quot;:45.74},{&quot;2026-08-31&quot;:45.74},{&quot;2026-09-01&quot;:45.81},{&quot;2026-09-02&quot;:45.81},{&quot;2026-09-03&quot;:45.81},{&quot;2026-09-04&quot;:45.97},{&quot;2026-09-05&quot;:45.97},{&quot;2026-09-06&quot;:46.06},{&quot;2026-09-07&quot;:46.06},{&quot;2026-09-08&quot;:46.06},{&quot;2026-09-09&quot;:45.97},{&quot;2026-09-10&quot;:45.97},{&quot;2026-09-11&quot;:46.19}],&quot;normal&quot;:[{&quot;2026-03-05&quot;:10.04},{&quot;2026-03-06&quot;:9.36},{&quot;2026-07-31&quot;:4.89},{&quot;2026-08-01&quot;:4.94},{&quot;2026-08-02&quot;:5.22},{&quot;2026-08-03&quot;:5.3},{&quot;2026-08-04&quot;:4.93},{&quot;2026-08-05&quot;:4.87},{&quot;2026-08-07&quot;:4.91},{&quot;2026-08-08&quot;:4.9},{&quot;2026-08-09&quot;:5.09},{&quot;2026-08-10&quot;:5.07},{&quot;2026-08-11&quot;:5.01},{&quot;2026-08-12&quot;:5.06},{&quot;2026-08-13&quot;:4.97},{&quot;2026-08-14&quot;:4.99},{&quot;2026-08-15&quot;:5.45},{&quot;2026-08-16&quot;:5.49},{&quot;2026-08-17&quot;:5.42},{&quot;2026-08-18&quot;:5.23},{&quot;2026-08-19&quot;:5.06},{&quot;2026-08-20&quot;:5.28},{&quot;2026-08-21&quot;:5.36},{&quot;2026-08-22&quot;:5.39},{&quot;2026-08-23&quot;:5.19},{&quot;2026-08-24&quot;:5.15},{&quot;2026-08-25&quot;:5.03},{&quot;2026-08-26&quot;:4.85},{&quot;2026-08-27&quot;:5.05},{&quot;2026-08-28&quot;:5.01},{&quot;2026-08-29&quot;:5.01},{&quot;2026-08-30&quot;:5.26},{&quot;2026-08-31&quot;:5.45},{&quot;2026-09-01&quot;:5.53},{&quot;2026-09-02&quot;:5.3},{&quot;2026-09-03&quot;:5.04},{&quot;2026-09-04&quot;:4.61},{&quot;2026-09-05&quot;:4.55},{&quot;2026-09-06&quot;:4.52},{&quot;2026-09-07&quot;:4.59},{&quot;2026-09-08&quot;:4.82},{&quot;2026-09-09&quot;:5.1},{&quot;2026-09-10&quot;:5.21},{&quot;2026-09-11&quot;:5.15}]}"
        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="108344"
  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-tmc ss-rare 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">
            Ninja Pizza
        </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">
              ↑
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.93
          </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="Ninja Pizza" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/4/74c24ff9-d3d2-4ffb-bf8b-dba803481a99.jpg?1783904164" />

        <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">
            Ninja Pizza
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-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="Ninja Pizza" src="https://cards.scryfall.io/large/front/7/4/74c24ff9-d3d2-4ffb-bf8b-dba803481a99.jpg?1783904164" />
    </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.93
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  9%
                </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">
                $18.04
              </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-14&quot;:12.0},{&quot;2026-06-15&quot;:12.0},{&quot;2026-06-16&quot;:12.0},{&quot;2026-06-17&quot;:12.0},{&quot;2026-06-18&quot;:12.0},{&quot;2026-06-19&quot;:12.0},{&quot;2026-06-20&quot;:12.0},{&quot;2026-06-21&quot;:12.0},{&quot;2026-06-22&quot;:12.0},{&quot;2026-06-23&quot;:12.0},{&quot;2026-06-24&quot;:12.0},{&quot;2026-06-25&quot;:12.0},{&quot;2026-06-26&quot;:12.0},{&quot;2026-06-27&quot;:12.0},{&quot;2026-06-28&quot;:12.0},{&quot;2026-06-29&quot;:12.0},{&quot;2026-06-30&quot;:12.0},{&quot;2026-07-01&quot;:12.0},{&quot;2026-07-02&quot;:12.0},{&quot;2026-07-03&quot;:12.0},{&quot;2026-07-04&quot;:12.0},{&quot;2026-07-05&quot;:12.0},{&quot;2026-07-06&quot;:12.0},{&quot;2026-07-07&quot;:12.0},{&quot;2026-07-08&quot;:12.0},{&quot;2026-07-09&quot;:12.0},{&quot;2026-07-10&quot;:12.0},{&quot;2026-07-11&quot;:12.0},{&quot;2026-07-12&quot;:12.0},{&quot;2026-07-13&quot;:12.0},{&quot;2026-07-14&quot;:12.0},{&quot;2026-07-15&quot;:12.0},{&quot;2026-07-16&quot;:12.0},{&quot;2026-07-17&quot;:12.0},{&quot;2026-07-18&quot;:12.0},{&quot;2026-07-19&quot;:12.0},{&quot;2026-07-20&quot;:12.0},{&quot;2026-07-21&quot;:12.0},{&quot;2026-07-22&quot;:12.0},{&quot;2026-07-23&quot;:12.0},{&quot;2026-07-24&quot;:12.0},{&quot;2026-07-25&quot;:12.0},{&quot;2026-07-26&quot;:12.0},{&quot;2026-07-27&quot;:12.0},{&quot;2026-07-28&quot;:12.0},{&quot;2026-07-29&quot;:12.0},{&quot;2026-07-30&quot;:12.0},{&quot;2026-07-31&quot;:12.0},{&quot;2026-08-01&quot;:12.0},{&quot;2026-08-02&quot;:12.0},{&quot;2026-08-03&quot;:12.0},{&quot;2026-08-04&quot;:12.0},{&quot;2026-08-05&quot;:12.0},{&quot;2026-08-06&quot;:12.0},{&quot;2026-08-07&quot;:12.0},{&quot;2026-08-08&quot;:12.0},{&quot;2026-08-09&quot;:12.0},{&quot;2026-08-10&quot;:12.0},{&quot;2026-08-11&quot;:12.0},{&quot;2026-08-12&quot;:12.0},{&quot;2026-08-13&quot;:12.0},{&quot;2026-08-14&quot;:12.0},{&quot;2026-08-15&quot;:12.0},{&quot;2026-08-16&quot;:12.0},{&quot;2026-08-17&quot;:12.0},{&quot;2026-08-18&quot;:12.0},{&quot;2026-08-19&quot;:17.74},{&quot;2026-08-20&quot;:17.74},{&quot;2026-08-21&quot;:17.86},{&quot;2026-08-22&quot;:17.97},{&quot;2026-08-23&quot;:17.97},{&quot;2026-08-24&quot;:17.97},{&quot;2026-08-25&quot;:17.97},{&quot;2026-08-26&quot;:17.97},{&quot;2026-08-27&quot;:17.97},{&quot;2026-08-28&quot;:17.97},{&quot;2026-08-29&quot;:17.97},{&quot;2026-08-30&quot;:17.98},{&quot;2026-08-31&quot;:17.98},{&quot;2026-09-01&quot;:17.98},{&quot;2026-09-02&quot;:18.12},{&quot;2026-09-03&quot;:17.99},{&quot;2026-09-04&quot;:18.04},{&quot;2026-09-05&quot;:18.04},{&quot;2026-09-06&quot;:18.04},{&quot;2026-09-07&quot;:18.04},{&quot;2026-09-08&quot;:18.04},{&quot;2026-09-09&quot;:18.04},{&quot;2026-09-10&quot;:18.04},{&quot;2026-09-11&quot;:18.04}],&quot;normal&quot;:[{&quot;2026-02-28&quot;:7.21},{&quot;2026-07-31&quot;:3.76},{&quot;2026-08-01&quot;:3.65},{&quot;2026-08-02&quot;:3.81},{&quot;2026-08-03&quot;:3.69},{&quot;2026-08-04&quot;:3.7},{&quot;2026-08-05&quot;:3.75},{&quot;2026-08-07&quot;:3.56},{&quot;2026-08-08&quot;:3.62},{&quot;2026-08-09&quot;:3.52},{&quot;2026-08-10&quot;:3.59},{&quot;2026-08-11&quot;:3.36},{&quot;2026-08-12&quot;:3.51},{&quot;2026-08-13&quot;:3.64},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.69},{&quot;2026-08-16&quot;:3.93},{&quot;2026-08-17&quot;:3.8},{&quot;2026-08-18&quot;:3.69},{&quot;2026-08-19&quot;:3.5},{&quot;2026-08-20&quot;:3.43},{&quot;2026-08-21&quot;:3.43},{&quot;2026-08-22&quot;:3.51},{&quot;2026-08-23&quot;:3.7},{&quot;2026-08-24&quot;:3.84},{&quot;2026-08-25&quot;:3.62},{&quot;2026-08-26&quot;:3.48},{&quot;2026-08-27&quot;:3.53},{&quot;2026-08-28&quot;:3.56},{&quot;2026-08-29&quot;:3.56},{&quot;2026-08-30&quot;:3.58},{&quot;2026-08-31&quot;:3.67},{&quot;2026-09-01&quot;:3.62},{&quot;2026-09-02&quot;:3.63},{&quot;2026-09-03&quot;:3.52},{&quot;2026-09-04&quot;:3.59},{&quot;2026-09-05&quot;:3.61},{&quot;2026-09-06&quot;:3.77},{&quot;2026-09-07&quot;:3.65},{&quot;2026-09-08&quot;:3.79},{&quot;2026-09-09&quot;:3.76},{&quot;2026-09-10&quot;:3.84},{&quot;2026-09-11&quot;:3.93}]}"
        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="108356"
  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-tmc ss-rare 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">
            Hidden Hideout
        </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-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.35
          </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="Hidden Hideout" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/3/f356522c-018d-43c7-988a-9ef9829ae75c.jpg?1783904160" />

        <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">
            Hidden Hideout
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Hidden Hideout" src="https://cards.scryfall.io/large/front/f/3/f356522c-018d-43c7-988a-9ef9829ae75c.jpg?1783904160" />
    </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.35
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $21.00
              </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">$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-08-19&quot;:21.58},{&quot;2026-08-20&quot;:21.58},{&quot;2026-08-21&quot;:21.58},{&quot;2026-08-22&quot;:21.58},{&quot;2026-08-23&quot;:21.58},{&quot;2026-08-24&quot;:21.5},{&quot;2026-08-25&quot;:21.5},{&quot;2026-08-26&quot;:21.5},{&quot;2026-08-27&quot;:21.5},{&quot;2026-08-28&quot;:21.5},{&quot;2026-08-29&quot;:21.5},{&quot;2026-08-30&quot;:21.3},{&quot;2026-08-31&quot;:21.3},{&quot;2026-09-01&quot;:21.3},{&quot;2026-09-02&quot;:21.3},{&quot;2026-09-03&quot;:21.3},{&quot;2026-09-04&quot;:21.3},{&quot;2026-09-05&quot;:21.3},{&quot;2026-09-06&quot;:21.0},{&quot;2026-09-07&quot;:21.0},{&quot;2026-09-08&quot;:21.0},{&quot;2026-09-09&quot;:21.0},{&quot;2026-09-10&quot;:21.0},{&quot;2026-09-11&quot;:21.0}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.9},{&quot;2026-06-14&quot;:2.89},{&quot;2026-06-15&quot;:3.02},{&quot;2026-06-16&quot;:3.06},{&quot;2026-06-17&quot;:3.22},{&quot;2026-06-18&quot;:3.29},{&quot;2026-06-19&quot;:3.28},{&quot;2026-06-20&quot;:3.42},{&quot;2026-06-21&quot;:3.36},{&quot;2026-06-22&quot;:3.43},{&quot;2026-06-23&quot;:3.19},{&quot;2026-06-24&quot;:3.1},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.04},{&quot;2026-06-27&quot;:3.17},{&quot;2026-06-28&quot;:3.07},{&quot;2026-06-29&quot;:3.14},{&quot;2026-06-30&quot;:3.17},{&quot;2026-07-01&quot;:3.1},{&quot;2026-07-02&quot;:3.09},{&quot;2026-07-03&quot;:2.97},{&quot;2026-07-04&quot;:2.9},{&quot;2026-07-05&quot;:2.98},{&quot;2026-07-06&quot;:3.01},{&quot;2026-07-07&quot;:3.04},{&quot;2026-07-08&quot;:2.82},{&quot;2026-07-09&quot;:2.71},{&quot;2026-07-10&quot;:2.61},{&quot;2026-07-11&quot;:2.59},{&quot;2026-07-12&quot;:2.52},{&quot;2026-07-13&quot;:2.62},{&quot;2026-07-14&quot;:2.89},{&quot;2026-07-15&quot;:2.97},{&quot;2026-07-16&quot;:2.86},{&quot;2026-07-17&quot;:2.8},{&quot;2026-07-18&quot;:2.77},{&quot;2026-07-19&quot;:2.65},{&quot;2026-07-20&quot;:2.37},{&quot;2026-07-21&quot;:2.53},{&quot;2026-07-22&quot;:2.62},{&quot;2026-07-23&quot;:2.75},{&quot;2026-07-24&quot;:2.84},{&quot;2026-07-25&quot;:3.0},{&quot;2026-07-26&quot;:3.04},{&quot;2026-07-27&quot;:3.15},{&quot;2026-07-28&quot;:3.0},{&quot;2026-07-29&quot;:2.9},{&quot;2026-07-30&quot;:2.72},{&quot;2026-07-31&quot;:2.87},{&quot;2026-08-01&quot;:2.85},{&quot;2026-08-02&quot;:2.91},{&quot;2026-08-03&quot;:2.91},{&quot;2026-08-04&quot;:3.11},{&quot;2026-08-05&quot;:2.85},{&quot;2026-08-07&quot;:2.93},{&quot;2026-08-08&quot;:2.84},{&quot;2026-08-09&quot;:2.71},{&quot;2026-08-10&quot;:2.61},{&quot;2026-08-11&quot;:2.51},{&quot;2026-08-12&quot;:2.52},{&quot;2026-08-13&quot;:2.39},{&quot;2026-08-14&quot;:2.24},{&quot;2026-08-15&quot;:2.2},{&quot;2026-08-16&quot;:2.27},{&quot;2026-08-17&quot;:2.53},{&quot;2026-08-18&quot;:2.61},{&quot;2026-08-19&quot;:2.9},{&quot;2026-08-20&quot;:3.18},{&quot;2026-08-21&quot;:3.05},{&quot;2026-08-22&quot;:3.1},{&quot;2026-08-23&quot;:3.11},{&quot;2026-08-24&quot;:3.02},{&quot;2026-08-25&quot;:3.25},{&quot;2026-08-26&quot;:3.19},{&quot;2026-08-27&quot;:3.01},{&quot;2026-08-28&quot;:3.18},{&quot;2026-08-29&quot;:3.18},{&quot;2026-08-30&quot;:3.14},{&quot;2026-08-31&quot;:3.3},{&quot;2026-09-01&quot;:3.23},{&quot;2026-09-02&quot;:3.13},{&quot;2026-09-03&quot;:3.15},{&quot;2026-09-04&quot;:3.32},{&quot;2026-09-05&quot;:3.42},{&quot;2026-09-06&quot;:3.58},{&quot;2026-09-07&quot;:3.44},{&quot;2026-09-08&quot;:3.48},{&quot;2026-09-09&quot;:3.53},{&quot;2026-09-10&quot;:3.46},{&quot;2026-09-11&quot;:3.35}]}"
        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="108320"
  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-tmc ss-rare 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">
            Endless Foot Assault
        </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">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Endless Foot Assault" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/8/387f6f60-69da-4965-9ab9-57bdb763a013.jpg?1783904172" />

        <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">
            Endless Foot Assault
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Endless Foot Assault" src="https://cards.scryfall.io/large/front/3/8/387f6f60-69da-4965-9ab9-57bdb763a013.jpg?1783904172" />
    </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.79
              </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">
                $23.92
              </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">$1.10</span>
              <span class="text-xs text-grey-text">Credit: $1.43</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-14&quot;:20.0},{&quot;2026-06-15&quot;:20.0},{&quot;2026-06-16&quot;:20.0},{&quot;2026-06-17&quot;:20.0},{&quot;2026-06-18&quot;:20.0},{&quot;2026-06-19&quot;:20.0},{&quot;2026-06-20&quot;:20.0},{&quot;2026-06-21&quot;:20.0},{&quot;2026-06-22&quot;:20.0},{&quot;2026-06-23&quot;:20.0},{&quot;2026-06-24&quot;:20.0},{&quot;2026-06-25&quot;:20.0},{&quot;2026-06-26&quot;:20.0},{&quot;2026-06-27&quot;:20.0},{&quot;2026-06-28&quot;:20.0},{&quot;2026-06-29&quot;:20.0},{&quot;2026-06-30&quot;:20.0},{&quot;2026-07-01&quot;:20.0},{&quot;2026-07-02&quot;:20.0},{&quot;2026-07-03&quot;:20.0},{&quot;2026-07-04&quot;:20.0},{&quot;2026-07-05&quot;:20.0},{&quot;2026-07-06&quot;:20.0},{&quot;2026-07-07&quot;:20.0},{&quot;2026-07-08&quot;:20.0},{&quot;2026-07-09&quot;:20.0},{&quot;2026-07-10&quot;:20.0},{&quot;2026-07-11&quot;:20.0},{&quot;2026-07-12&quot;:20.0},{&quot;2026-07-13&quot;:20.0},{&quot;2026-07-14&quot;:20.0},{&quot;2026-07-15&quot;:20.0},{&quot;2026-07-16&quot;:20.0},{&quot;2026-07-17&quot;:20.0},{&quot;2026-07-18&quot;:20.0},{&quot;2026-07-19&quot;:20.0},{&quot;2026-07-20&quot;:20.0},{&quot;2026-07-21&quot;:20.0},{&quot;2026-07-22&quot;:20.0},{&quot;2026-07-23&quot;:20.0},{&quot;2026-07-24&quot;:20.0},{&quot;2026-07-25&quot;:20.0},{&quot;2026-07-26&quot;:20.0},{&quot;2026-07-27&quot;:20.0},{&quot;2026-07-28&quot;:20.0},{&quot;2026-07-29&quot;:20.0},{&quot;2026-07-30&quot;:20.0},{&quot;2026-07-31&quot;:20.0},{&quot;2026-08-01&quot;:20.0},{&quot;2026-08-02&quot;:20.0},{&quot;2026-08-03&quot;:20.0},{&quot;2026-08-04&quot;:20.0},{&quot;2026-08-05&quot;:20.0},{&quot;2026-08-06&quot;:20.0},{&quot;2026-08-07&quot;:20.0},{&quot;2026-08-08&quot;:20.0},{&quot;2026-08-09&quot;:20.0},{&quot;2026-08-10&quot;:20.0},{&quot;2026-08-11&quot;:20.0},{&quot;2026-08-12&quot;:20.0},{&quot;2026-08-13&quot;:20.0},{&quot;2026-08-14&quot;:20.0},{&quot;2026-08-15&quot;:20.0},{&quot;2026-08-16&quot;:20.0},{&quot;2026-08-17&quot;:20.0},{&quot;2026-08-18&quot;:20.0},{&quot;2026-08-19&quot;:23.14},{&quot;2026-08-20&quot;:23.14},{&quot;2026-08-21&quot;:23.17},{&quot;2026-08-22&quot;:23.25},{&quot;2026-08-23&quot;:23.25},{&quot;2026-08-24&quot;:23.25},{&quot;2026-08-25&quot;:23.25},{&quot;2026-08-26&quot;:23.14},{&quot;2026-08-27&quot;:23.14},{&quot;2026-08-28&quot;:23.21},{&quot;2026-08-29&quot;:23.21},{&quot;2026-08-30&quot;:23.21},{&quot;2026-08-31&quot;:23.21},{&quot;2026-09-01&quot;:23.21},{&quot;2026-09-02&quot;:23.29},{&quot;2026-09-03&quot;:23.29},{&quot;2026-09-04&quot;:23.29},{&quot;2026-09-05&quot;:23.47},{&quot;2026-09-06&quot;:23.79},{&quot;2026-09-07&quot;:23.79},{&quot;2026-09-08&quot;:23.79},{&quot;2026-09-09&quot;:23.92},{&quot;2026-09-10&quot;:23.92},{&quot;2026-09-11&quot;:23.92}],&quot;normal&quot;:[{&quot;2026-03-01&quot;:2.16},{&quot;2026-03-02&quot;:2.13},{&quot;2026-03-03&quot;:2.1},{&quot;2026-03-04&quot;:2.33},{&quot;2026-03-05&quot;:2.08},{&quot;2026-03-06&quot;:2.04},{&quot;2026-07-31&quot;:2.83},{&quot;2026-08-01&quot;:2.88},{&quot;2026-08-02&quot;:2.86},{&quot;2026-08-03&quot;:2.92},{&quot;2026-08-04&quot;:2.97},{&quot;2026-08-05&quot;:2.94},{&quot;2026-08-07&quot;:2.73},{&quot;2026-08-08&quot;:2.6},{&quot;2026-08-09&quot;:2.55},{&quot;2026-08-10&quot;:2.52},{&quot;2026-08-11&quot;:2.72},{&quot;2026-08-12&quot;:2.77},{&quot;2026-08-13&quot;:2.93},{&quot;2026-08-14&quot;:3.1},{&quot;2026-08-15&quot;:3.25},{&quot;2026-08-16&quot;:3.08},{&quot;2026-08-17&quot;:3.08},{&quot;2026-08-18&quot;:3.02},{&quot;2026-08-19&quot;:3.03},{&quot;2026-08-20&quot;:3.03},{&quot;2026-08-21&quot;:2.8},{&quot;2026-08-22&quot;:2.51},{&quot;2026-08-23&quot;:2.54},{&quot;2026-08-24&quot;:2.59},{&quot;2026-08-25&quot;:2.59},{&quot;2026-08-26&quot;:2.75},{&quot;2026-08-27&quot;:2.72},{&quot;2026-08-28&quot;:2.65},{&quot;2026-08-29&quot;:2.65},{&quot;2026-08-30&quot;:3.27},{&quot;2026-08-31&quot;:3.4},{&quot;2026-09-01&quot;:3.4},{&quot;2026-09-02&quot;:3.17},{&quot;2026-09-03&quot;:3.0},{&quot;2026-09-04&quot;:3.24},{&quot;2026-09-05&quot;:2.93},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.87},{&quot;2026-09-08&quot;:2.99},{&quot;2026-09-09&quot;:2.84},{&quot;2026-09-10&quot;:2.74},{&quot;2026-09-11&quot;:2.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="108366"
  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-tmc ss-rare 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">
            Vigor
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elemental Incarnation
      </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">
            $2.72
          </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="Vigor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/9/6952b1c3-2a18-4ad5-8130-861fce1cb422.jpg?1783904156" />

        <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">
            Vigor
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Elemental Incarnation</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-g'></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="Vigor" src="https://cards.scryfall.io/large/front/6/9/6952b1c3-2a18-4ad5-8130-861fce1cb422.jpg?1783904156" />
    </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.72
              </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">
                $9.65
              </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.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;2026-08-19&quot;:9.2},{&quot;2026-08-20&quot;:9.2},{&quot;2026-08-21&quot;:9.2},{&quot;2026-08-22&quot;:9.2},{&quot;2026-08-23&quot;:9.2},{&quot;2026-08-24&quot;:9.2},{&quot;2026-08-25&quot;:9.2},{&quot;2026-08-26&quot;:9.28},{&quot;2026-08-27&quot;:9.28},{&quot;2026-08-28&quot;:9.31},{&quot;2026-08-29&quot;:9.31},{&quot;2026-08-30&quot;:9.4},{&quot;2026-08-31&quot;:9.4},{&quot;2026-09-01&quot;:9.4},{&quot;2026-09-02&quot;:9.4},{&quot;2026-09-03&quot;:9.56},{&quot;2026-09-04&quot;:9.56},{&quot;2026-09-05&quot;:9.56},{&quot;2026-09-06&quot;:9.56},{&quot;2026-09-07&quot;:9.56},{&quot;2026-09-08&quot;:9.56},{&quot;2026-09-09&quot;:9.56},{&quot;2026-09-10&quot;:9.56},{&quot;2026-09-11&quot;:9.65}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.12},{&quot;2026-06-14&quot;:2.22},{&quot;2026-06-15&quot;:2.25},{&quot;2026-06-16&quot;:2.16},{&quot;2026-06-17&quot;:2.02},{&quot;2026-06-18&quot;:1.94},{&quot;2026-06-19&quot;:1.7},{&quot;2026-06-20&quot;:1.61},{&quot;2026-06-21&quot;:1.67},{&quot;2026-06-22&quot;:1.75},{&quot;2026-06-23&quot;:2.27},{&quot;2026-06-24&quot;:2.28},{&quot;2026-06-25&quot;:2.33},{&quot;2026-06-26&quot;:2.38},{&quot;2026-06-27&quot;:2.37},{&quot;2026-06-28&quot;:2.39},{&quot;2026-06-29&quot;:2.41},{&quot;2026-06-30&quot;:2.38},{&quot;2026-07-01&quot;:2.11},{&quot;2026-07-02&quot;:2.07},{&quot;2026-07-03&quot;:2.07},{&quot;2026-07-04&quot;:1.98},{&quot;2026-07-05&quot;:1.96},{&quot;2026-07-06&quot;:2.07},{&quot;2026-07-07&quot;:2.02},{&quot;2026-07-08&quot;:2.33},{&quot;2026-07-09&quot;:2.35},{&quot;2026-07-10&quot;:2.67},{&quot;2026-07-11&quot;:2.62},{&quot;2026-07-12&quot;:2.72},{&quot;2026-07-13&quot;:2.51},{&quot;2026-07-14&quot;:2.18},{&quot;2026-07-15&quot;:2.1},{&quot;2026-07-16&quot;:2.12},{&quot;2026-07-17&quot;:2.12},{&quot;2026-07-18&quot;:2.12},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.19},{&quot;2026-07-21&quot;:2.28},{&quot;2026-07-22&quot;:2.35},{&quot;2026-07-23&quot;:2.37},{&quot;2026-07-24&quot;:2.37},{&quot;2026-07-25&quot;:2.38},{&quot;2026-07-26&quot;:2.31},{&quot;2026-07-27&quot;:2.29},{&quot;2026-07-28&quot;:2.25},{&quot;2026-07-29&quot;:2.2},{&quot;2026-07-30&quot;:2.12},{&quot;2026-07-31&quot;:2.1},{&quot;2026-08-01&quot;:2.12},{&quot;2026-08-02&quot;:2.07},{&quot;2026-08-03&quot;:2.02},{&quot;2026-08-04&quot;:2.01},{&quot;2026-08-05&quot;:2.01},{&quot;2026-08-07&quot;:2.13},{&quot;2026-08-08&quot;:2.15},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.17},{&quot;2026-08-11&quot;:2.11},{&quot;2026-08-12&quot;:2.05},{&quot;2026-08-13&quot;:2.21},{&quot;2026-08-14&quot;:2.11},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:2.09},{&quot;2026-08-17&quot;:2.13},{&quot;2026-08-18&quot;:2.14},{&quot;2026-08-19&quot;:1.94},{&quot;2026-08-20&quot;:2.01},{&quot;2026-08-21&quot;:1.95},{&quot;2026-08-22&quot;:1.92},{&quot;2026-08-23&quot;:2.21},{&quot;2026-08-24&quot;:2.32},{&quot;2026-08-25&quot;:2.61},{&quot;2026-08-26&quot;:2.65},{&quot;2026-08-27&quot;:2.64},{&quot;2026-08-28&quot;:2.67},{&quot;2026-08-29&quot;:2.67},{&quot;2026-08-30&quot;:2.53},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.49},{&quot;2026-09-02&quot;:2.58},{&quot;2026-09-03&quot;:2.61},{&quot;2026-09-04&quot;:2.65},{&quot;2026-09-05&quot;:2.62},{&quot;2026-09-06&quot;:2.68},{&quot;2026-09-07&quot;:2.55},{&quot;2026-09-08&quot;:2.71},{&quot;2026-09-09&quot;:2.71},{&quot;2026-09-10&quot;:2.71},{&quot;2026-09-11&quot;:2.72}]}"
        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="108343"
  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-tmc ss-rare 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">
            Level Up
        </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-50 text-badge-text">
              ↑
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.64
          </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="Level Up" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d4398907-17d2-4fad-bfa9-56925fb75834.jpg?1783904165" />

        <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">
            Level Up
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-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="Level Up" src="https://cards.scryfall.io/large/front/d/4/d4398907-17d2-4fad-bfa9-56925fb75834.jpg?1783904165" />
    </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.64
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  14%
                </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">
                $18.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">$0.90</span>
              <span class="text-xs text-grey-text">Credit: $1.17</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-14&quot;:5.0},{&quot;2026-06-15&quot;:5.0},{&quot;2026-06-16&quot;:5.0},{&quot;2026-06-17&quot;:5.0},{&quot;2026-06-18&quot;:5.0},{&quot;2026-06-19&quot;:5.0},{&quot;2026-06-20&quot;:5.0},{&quot;2026-06-21&quot;:5.0},{&quot;2026-06-22&quot;:5.0},{&quot;2026-06-23&quot;:5.0},{&quot;2026-06-24&quot;:5.0},{&quot;2026-06-25&quot;:5.0},{&quot;2026-06-26&quot;:5.0},{&quot;2026-06-27&quot;:5.0},{&quot;2026-06-28&quot;:5.0},{&quot;2026-06-29&quot;:5.0},{&quot;2026-06-30&quot;:5.0},{&quot;2026-07-01&quot;:5.0},{&quot;2026-07-02&quot;:5.0},{&quot;2026-07-03&quot;:5.0},{&quot;2026-07-04&quot;:5.0},{&quot;2026-07-05&quot;:5.0},{&quot;2026-07-06&quot;:5.0},{&quot;2026-07-07&quot;:5.0},{&quot;2026-07-08&quot;:5.0},{&quot;2026-07-09&quot;:5.0},{&quot;2026-07-10&quot;:5.0},{&quot;2026-07-11&quot;:5.0},{&quot;2026-07-12&quot;:5.0},{&quot;2026-07-13&quot;:5.0},{&quot;2026-07-14&quot;:5.0},{&quot;2026-07-15&quot;:5.0},{&quot;2026-07-16&quot;:5.0},{&quot;2026-07-17&quot;:5.0},{&quot;2026-07-18&quot;:5.0},{&quot;2026-07-19&quot;:5.0},{&quot;2026-07-20&quot;:5.0},{&quot;2026-07-21&quot;:5.0},{&quot;2026-07-22&quot;:5.0},{&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;:5.0},{&quot;2026-07-27&quot;:5.0},{&quot;2026-07-28&quot;:5.0},{&quot;2026-07-29&quot;:5.0},{&quot;2026-07-30&quot;:5.0},{&quot;2026-07-31&quot;:5.0},{&quot;2026-08-01&quot;:5.0},{&quot;2026-08-02&quot;:5.0},{&quot;2026-08-03&quot;:5.0},{&quot;2026-08-04&quot;:5.0},{&quot;2026-08-05&quot;:5.0},{&quot;2026-08-06&quot;:5.0},{&quot;2026-08-07&quot;:5.0},{&quot;2026-08-08&quot;:5.0},{&quot;2026-08-09&quot;:5.0},{&quot;2026-08-10&quot;:5.0},{&quot;2026-08-11&quot;:5.0},{&quot;2026-08-12&quot;:5.0},{&quot;2026-08-13&quot;:5.0},{&quot;2026-08-14&quot;:5.0},{&quot;2026-08-15&quot;:5.0},{&quot;2026-08-16&quot;:5.0},{&quot;2026-08-17&quot;:5.0},{&quot;2026-08-18&quot;:5.0},{&quot;2026-08-19&quot;:19.02},{&quot;2026-08-20&quot;:19.02},{&quot;2026-08-21&quot;:19.02},{&quot;2026-08-22&quot;:19.02},{&quot;2026-08-23&quot;:18.99},{&quot;2026-08-24&quot;:18.99},{&quot;2026-08-25&quot;:18.99},{&quot;2026-08-26&quot;:18.78},{&quot;2026-08-27&quot;:18.78},{&quot;2026-08-28&quot;:18.53},{&quot;2026-08-29&quot;:18.53},{&quot;2026-08-30&quot;:18.37},{&quot;2026-08-31&quot;:18.37},{&quot;2026-09-01&quot;:18.21},{&quot;2026-09-02&quot;:18.25},{&quot;2026-09-03&quot;:18.25},{&quot;2026-09-04&quot;:18.25},{&quot;2026-09-05&quot;:18.25},{&quot;2026-09-06&quot;:18.25},{&quot;2026-09-07&quot;:18.31},{&quot;2026-09-08&quot;:18.33},{&quot;2026-09-09&quot;:18.27},{&quot;2026-09-10&quot;:18.27},{&quot;2026-09-11&quot;:18.27}],&quot;normal&quot;:[{&quot;2026-03-01&quot;:1.67},{&quot;2026-07-31&quot;:2.43},{&quot;2026-08-01&quot;:2.41},{&quot;2026-08-02&quot;:2.43},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.48},{&quot;2026-08-05&quot;:2.49},{&quot;2026-08-07&quot;:2.41},{&quot;2026-08-08&quot;:2.48},{&quot;2026-08-09&quot;:2.47},{&quot;2026-08-10&quot;:2.44},{&quot;2026-08-11&quot;:2.46},{&quot;2026-08-12&quot;:2.58},{&quot;2026-08-13&quot;:2.69},{&quot;2026-08-14&quot;:2.64},{&quot;2026-08-15&quot;:2.64},{&quot;2026-08-16&quot;:2.57},{&quot;2026-08-17&quot;:2.61},{&quot;2026-08-18&quot;:2.65},{&quot;2026-08-19&quot;:2.58},{&quot;2026-08-20&quot;:2.6},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.33},{&quot;2026-08-23&quot;:2.29},{&quot;2026-08-24&quot;:2.46},{&quot;2026-08-25&quot;:2.58},{&quot;2026-08-26&quot;:2.52},{&quot;2026-08-27&quot;:2.45},{&quot;2026-08-28&quot;:2.53},{&quot;2026-08-29&quot;:2.53},{&quot;2026-08-30&quot;:2.68},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.34},{&quot;2026-09-02&quot;:2.29},{&quot;2026-09-03&quot;:2.32},{&quot;2026-09-04&quot;:2.39},{&quot;2026-09-05&quot;:2.31},{&quot;2026-09-06&quot;:2.42},{&quot;2026-09-07&quot;:2.47},{&quot;2026-09-08&quot;:2.59},{&quot;2026-09-09&quot;:2.55},{&quot;2026-09-10&quot;:2.6},{&quot;2026-09-11&quot;:2.64}]}"
        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="108359"
  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-tmc ss-rare 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">
            Wave Goodbye
        </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">
              ↑
              7%
            </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="Wave Goodbye" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/f/8fb141d9-addd-47ad-bfc1-b5b376d4c950.jpg?1783904160" />

        <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">
            Wave Goodbye
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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><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="Wave Goodbye" src="https://cards.scryfall.io/large/front/8/f/8fb141d9-addd-47ad-bfc1-b5b376d4c950.jpg?1783904160" />
    </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.13
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  7%
                </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">
                $9.42
              </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">$0.60</span>
              <span class="text-xs text-grey-text">Credit: $0.78</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-14&quot;:1.0},{&quot;2026-06-15&quot;:1.0},{&quot;2026-06-16&quot;:1.0},{&quot;2026-06-17&quot;:1.0},{&quot;2026-06-18&quot;:1.0},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:1.0},{&quot;2026-06-22&quot;:1.0},{&quot;2026-06-23&quot;:1.0},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:1.0},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.0},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:1.0},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:1.0},{&quot;2026-07-08&quot;:1.0},{&quot;2026-07-09&quot;:1.0},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.0},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.0},{&quot;2026-07-20&quot;:1.0},{&quot;2026-07-21&quot;:1.0},{&quot;2026-07-22&quot;:1.0},{&quot;2026-07-23&quot;:1.0},{&quot;2026-07-24&quot;:1.0},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:1.0},{&quot;2026-07-27&quot;:1.0},{&quot;2026-07-28&quot;:1.0},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:1.0},{&quot;2026-07-31&quot;:1.0},{&quot;2026-08-01&quot;:1.0},{&quot;2026-08-02&quot;:1.0},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.0},{&quot;2026-08-06&quot;:1.0},{&quot;2026-08-07&quot;:1.0},{&quot;2026-08-08&quot;:1.0},{&quot;2026-08-09&quot;:1.0},{&quot;2026-08-10&quot;:1.0},{&quot;2026-08-11&quot;:1.0},{&quot;2026-08-12&quot;:1.0},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:1.0},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:9.02},{&quot;2026-08-20&quot;:9.02},{&quot;2026-08-21&quot;:9.02},{&quot;2026-08-22&quot;:9.02},{&quot;2026-08-23&quot;:9.02},{&quot;2026-08-24&quot;:8.96},{&quot;2026-08-25&quot;:9.03},{&quot;2026-08-26&quot;:9.03},{&quot;2026-08-27&quot;:9.03},{&quot;2026-08-28&quot;:9.06},{&quot;2026-08-29&quot;:9.06},{&quot;2026-08-30&quot;:9.06},{&quot;2026-08-31&quot;:9.06},{&quot;2026-09-01&quot;:9.06},{&quot;2026-09-02&quot;:9.06},{&quot;2026-09-03&quot;:9.06},{&quot;2026-09-04&quot;:9.06},{&quot;2026-09-05&quot;:9.25},{&quot;2026-09-06&quot;:9.25},{&quot;2026-09-07&quot;:9.25},{&quot;2026-09-08&quot;:9.25},{&quot;2026-09-09&quot;:9.42},{&quot;2026-09-10&quot;:9.42},{&quot;2026-09-11&quot;:9.42}],&quot;normal&quot;:[{&quot;2026-03-06&quot;:0.49},{&quot;2026-07-31&quot;:1.8},{&quot;2026-08-01&quot;:1.59},{&quot;2026-08-02&quot;:2.08},{&quot;2026-08-03&quot;:2.16},{&quot;2026-08-04&quot;:2.19},{&quot;2026-08-05&quot;:1.97},{&quot;2026-08-07&quot;:1.95},{&quot;2026-08-08&quot;:2.12},{&quot;2026-08-09&quot;:2.24},{&quot;2026-08-10&quot;:2.26},{&quot;2026-08-11&quot;:1.98},{&quot;2026-08-12&quot;:2.03},{&quot;2026-08-13&quot;:2.06},{&quot;2026-08-14&quot;:2.0},{&quot;2026-08-15&quot;:2.29},{&quot;2026-08-16&quot;:2.31},{&quot;2026-08-17&quot;:2.5},{&quot;2026-08-18&quot;:2.63},{&quot;2026-08-19&quot;:2.53},{&quot;2026-08-20&quot;:2.62},{&quot;2026-08-21&quot;:2.49},{&quot;2026-08-22&quot;:2.18},{&quot;2026-08-23&quot;:2.0},{&quot;2026-08-24&quot;:2.06},{&quot;2026-08-25&quot;:2.01},{&quot;2026-08-26&quot;:2.07},{&quot;2026-08-27&quot;:2.03},{&quot;2026-08-28&quot;:1.92},{&quot;2026-08-29&quot;:1.92},{&quot;2026-08-30&quot;:2.07},{&quot;2026-08-31&quot;:2.06},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:2.12},{&quot;2026-09-03&quot;:2.22},{&quot;2026-09-04&quot;:2.01},{&quot;2026-09-05&quot;:2.0},{&quot;2026-09-06&quot;:2.04},{&quot;2026-09-07&quot;:2.06},{&quot;2026-09-08&quot;:2.27},{&quot;2026-09-09&quot;:2.26},{&quot;2026-09-10&quot;:2.31},{&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="108351"
  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-tmc ss-rare 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">
            Coin of Mastery
        </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">
              ↓
              8%
            </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="Coin of Mastery" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/a/ca053574-2ac9-4814-955d-87a97e0aca7e.jpg?1783904161" />

        <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">
            Coin of Mastery
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-4'></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="Coin of Mastery" src="https://cards.scryfall.io/large/front/c/a/ca053574-2ac9-4814-955d-87a97e0aca7e.jpg?1783904161" />
    </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-100">
                  ↓
                  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">
                $21.98
              </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-14&quot;:3.06},{&quot;2026-06-15&quot;:3.06},{&quot;2026-06-16&quot;:3.06},{&quot;2026-06-17&quot;:3.06},{&quot;2026-06-18&quot;:3.06},{&quot;2026-06-19&quot;:3.06},{&quot;2026-06-20&quot;:3.06},{&quot;2026-06-21&quot;:3.06},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-23&quot;:3.06},{&quot;2026-06-24&quot;:3.06},{&quot;2026-06-25&quot;:3.06},{&quot;2026-06-26&quot;:3.06},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.06},{&quot;2026-06-30&quot;:3.06},{&quot;2026-07-01&quot;:3.06},{&quot;2026-07-02&quot;:3.06},{&quot;2026-07-03&quot;:3.06},{&quot;2026-07-04&quot;:3.06},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.06},{&quot;2026-07-07&quot;:3.06},{&quot;2026-07-08&quot;:3.06},{&quot;2026-07-09&quot;:3.06},{&quot;2026-07-10&quot;:3.06},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.06},{&quot;2026-07-13&quot;:3.06},{&quot;2026-07-14&quot;:3.06},{&quot;2026-07-15&quot;:3.06},{&quot;2026-07-16&quot;:3.06},{&quot;2026-07-17&quot;:3.06},{&quot;2026-07-18&quot;:3.06},{&quot;2026-07-19&quot;:3.06},{&quot;2026-07-20&quot;:3.06},{&quot;2026-07-21&quot;:3.06},{&quot;2026-07-22&quot;:3.06},{&quot;2026-07-23&quot;:3.06},{&quot;2026-07-24&quot;:3.06},{&quot;2026-07-25&quot;:3.06},{&quot;2026-07-26&quot;:3.06},{&quot;2026-07-27&quot;:3.06},{&quot;2026-07-28&quot;:3.06},{&quot;2026-07-29&quot;:3.06},{&quot;2026-07-30&quot;:3.06},{&quot;2026-07-31&quot;:3.06},{&quot;2026-08-01&quot;:3.06},{&quot;2026-08-02&quot;:3.06},{&quot;2026-08-03&quot;:3.06},{&quot;2026-08-04&quot;:3.06},{&quot;2026-08-05&quot;:3.06},{&quot;2026-08-06&quot;:3.06},{&quot;2026-08-07&quot;:3.06},{&quot;2026-08-08&quot;:3.06},{&quot;2026-08-09&quot;:3.06},{&quot;2026-08-10&quot;:3.06},{&quot;2026-08-11&quot;:3.06},{&quot;2026-08-12&quot;:3.06},{&quot;2026-08-13&quot;:3.06},{&quot;2026-08-14&quot;:3.06},{&quot;2026-08-15&quot;:3.06},{&quot;2026-08-16&quot;:3.06},{&quot;2026-08-17&quot;:3.06},{&quot;2026-08-18&quot;:3.06},{&quot;2026-08-19&quot;:22.43},{&quot;2026-08-20&quot;:22.43},{&quot;2026-08-21&quot;:22.35},{&quot;2026-08-22&quot;:22.35},{&quot;2026-08-23&quot;:22.35},{&quot;2026-08-24&quot;:22.28},{&quot;2026-08-25&quot;:22.28},{&quot;2026-08-26&quot;:22.28},{&quot;2026-08-27&quot;:22.28},{&quot;2026-08-28&quot;:22.17},{&quot;2026-08-29&quot;:22.17},{&quot;2026-08-30&quot;:21.92},{&quot;2026-08-31&quot;:21.87},{&quot;2026-09-01&quot;:21.87},{&quot;2026-09-02&quot;:21.87},{&quot;2026-09-03&quot;:21.87},{&quot;2026-09-04&quot;:21.87},{&quot;2026-09-05&quot;:21.98},{&quot;2026-09-06&quot;:21.98},{&quot;2026-09-07&quot;:21.98},{&quot;2026-09-08&quot;:21.98},{&quot;2026-09-09&quot;:21.98},{&quot;2026-09-10&quot;:21.98},{&quot;2026-09-11&quot;:21.98}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:2.84},{&quot;2026-03-03&quot;:2.55},{&quot;2026-03-04&quot;:2.54},{&quot;2026-03-05&quot;:2.35},{&quot;2026-03-06&quot;:2.27},{&quot;2026-07-31&quot;:1.97},{&quot;2026-08-01&quot;:1.95},{&quot;2026-08-02&quot;:2.02},{&quot;2026-08-03&quot;:1.92},{&quot;2026-08-04&quot;:2.03},{&quot;2026-08-05&quot;:2.05},{&quot;2026-08-07&quot;:2.11},{&quot;2026-08-08&quot;:2.21},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.19},{&quot;2026-08-11&quot;:2.31},{&quot;2026-08-12&quot;:2.2},{&quot;2026-08-13&quot;:2.32},{&quot;2026-08-14&quot;:2.06},{&quot;2026-08-15&quot;:2.11},{&quot;2026-08-16&quot;:2.14},{&quot;2026-08-17&quot;:2.13},{&quot;2026-08-18&quot;:2.06},{&quot;2026-08-19&quot;:2.06},{&quot;2026-08-20&quot;:2.06},{&quot;2026-08-21&quot;:2.11},{&quot;2026-08-22&quot;:2.1},{&quot;2026-08-23&quot;:2.02},{&quot;2026-08-24&quot;:2.1},{&quot;2026-08-25&quot;:2.1},{&quot;2026-08-26&quot;:2.01},{&quot;2026-08-27&quot;:2.12},{&quot;2026-08-28&quot;:2.17},{&quot;2026-08-29&quot;:2.17},{&quot;2026-08-30&quot;:2.09},{&quot;2026-08-31&quot;:2.13},{&quot;2026-09-01&quot;:2.13},{&quot;2026-09-02&quot;:2.41},{&quot;2026-09-03&quot;:2.38},{&quot;2026-09-04&quot;:2.18},{&quot;2026-09-05&quot;:2.28},{&quot;2026-09-06&quot;:2.29},{&quot;2026-09-07&quot;:2.22},{&quot;2026-09-08&quot;:2.18},{&quot;2026-09-09&quot;:2.0},{&quot;2026-09-10&quot;:1.97},{&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="108350"
  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-tmc ss-rare 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">
            Big Mother Mouser
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Robot
      </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">
              ↑
              7%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Big Mother Mouser" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/9/c9ae6898-6b5a-43bd-8c84-4d8add285f7d.jpg?1783904160" />

        <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">
            Big Mother Mouser
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Robot</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>
          </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="Big Mother Mouser" src="https://cards.scryfall.io/large/front/c/9/c9ae6898-6b5a-43bd-8c84-4d8add285f7d.jpg?1783904160" />
    </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.07
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  7%
                </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">
                $9.92
              </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.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-08-19&quot;:9.85},{&quot;2026-08-20&quot;:9.85},{&quot;2026-08-21&quot;:9.92},{&quot;2026-08-22&quot;:9.92},{&quot;2026-08-23&quot;:9.86},{&quot;2026-08-24&quot;:10.13},{&quot;2026-08-25&quot;:10.13},{&quot;2026-08-26&quot;:10.13},{&quot;2026-08-27&quot;:10.13},{&quot;2026-08-28&quot;:10.13},{&quot;2026-08-29&quot;:10.13},{&quot;2026-08-30&quot;:10.13},{&quot;2026-08-31&quot;:10.13},{&quot;2026-09-01&quot;:10.13},{&quot;2026-09-02&quot;:10.13},{&quot;2026-09-03&quot;:10.13},{&quot;2026-09-04&quot;:10.13},{&quot;2026-09-05&quot;:10.01},{&quot;2026-09-06&quot;:9.93},{&quot;2026-09-07&quot;:9.93},{&quot;2026-09-08&quot;:9.99},{&quot;2026-09-09&quot;:9.99},{&quot;2026-09-10&quot;:9.92},{&quot;2026-09-11&quot;:9.92}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.98},{&quot;2026-06-12&quot;:0.95},{&quot;2026-06-13&quot;:0.98},{&quot;2026-06-14&quot;:0.97},{&quot;2026-06-15&quot;:0.96},{&quot;2026-06-16&quot;:1.02},{&quot;2026-06-17&quot;:1.04},{&quot;2026-06-18&quot;:1.06},{&quot;2026-06-19&quot;:1.08},{&quot;2026-06-20&quot;:1.12},{&quot;2026-06-21&quot;:1.16},{&quot;2026-06-22&quot;:1.18},{&quot;2026-06-23&quot;:1.24},{&quot;2026-06-24&quot;:1.22},{&quot;2026-06-25&quot;:1.23},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.47},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.5},{&quot;2026-06-30&quot;:1.45},{&quot;2026-07-01&quot;:1.49},{&quot;2026-07-02&quot;:1.4},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.38},{&quot;2026-07-05&quot;:1.36},{&quot;2026-07-06&quot;:1.38},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.53},{&quot;2026-07-09&quot;:1.56},{&quot;2026-07-10&quot;:1.65},{&quot;2026-07-11&quot;:1.79},{&quot;2026-07-12&quot;:1.67},{&quot;2026-07-13&quot;:1.86},{&quot;2026-07-14&quot;:1.93},{&quot;2026-07-15&quot;:2.0},{&quot;2026-07-16&quot;:2.17},{&quot;2026-07-17&quot;:2.07},{&quot;2026-07-18&quot;:2.31},{&quot;2026-07-19&quot;:2.77},{&quot;2026-07-20&quot;:2.91},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-23&quot;:1.94},{&quot;2026-07-25&quot;:2.31},{&quot;2026-07-26&quot;:2.49},{&quot;2026-07-27&quot;:2.89},{&quot;2026-07-28&quot;:3.22},{&quot;2026-07-29&quot;:2.97},{&quot;2026-07-30&quot;:2.64},{&quot;2026-07-31&quot;:2.63},{&quot;2026-08-01&quot;:2.63},{&quot;2026-08-02&quot;:2.71},{&quot;2026-08-03&quot;:2.81},{&quot;2026-08-04&quot;:2.45},{&quot;2026-08-05&quot;:2.19},{&quot;2026-08-07&quot;:2.12},{&quot;2026-08-08&quot;:2.23},{&quot;2026-08-09&quot;:2.17},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:2.02},{&quot;2026-08-12&quot;:2.1},{&quot;2026-08-13&quot;:2.09},{&quot;2026-08-14&quot;:2.1},{&quot;2026-08-15&quot;:2.07},{&quot;2026-08-16&quot;:2.02},{&quot;2026-08-17&quot;:2.07},{&quot;2026-08-18&quot;:2.02},{&quot;2026-08-19&quot;:2.12},{&quot;2026-08-20&quot;:2.12},{&quot;2026-08-21&quot;:2.16},{&quot;2026-08-22&quot;:2.16},{&quot;2026-08-23&quot;:2.05},{&quot;2026-08-24&quot;:2.1},{&quot;2026-08-25&quot;:2.1},{&quot;2026-08-26&quot;:2.04},{&quot;2026-08-27&quot;:2.08},{&quot;2026-08-28&quot;:2.07},{&quot;2026-08-29&quot;:2.07},{&quot;2026-08-30&quot;:2.06},{&quot;2026-08-31&quot;:2.04},{&quot;2026-09-01&quot;:2.04},{&quot;2026-09-02&quot;:2.01},{&quot;2026-09-03&quot;:2.01},{&quot;2026-09-04&quot;:2.09},{&quot;2026-09-05&quot;:1.94},{&quot;2026-09-06&quot;:1.89},{&quot;2026-09-07&quot;:1.86},{&quot;2026-09-08&quot;:1.99},{&quot;2026-09-09&quot;:2.06},{&quot;2026-09-10&quot;:2.04},{&quot;2026-09-11&quot;:2.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="108319"
  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-tmc ss-rare 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">
            Continue?
        </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">
              ↓
              7%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Continue?" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/c/2c99c472-8820-43d8-9dfa-508dc3d07478.jpg?1783904172" />

        <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">
            Continue?
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-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="Continue?" src="https://cards.scryfall.io/large/front/2/c/2c99c472-8820-43d8-9dfa-508dc3d07478.jpg?1783904172" />
    </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.02
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  7%
                </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">
                $25.35
              </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.70</span>
              <span class="text-xs text-grey-text">Credit: $0.91</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-08-19&quot;:25.35},{&quot;2026-08-20&quot;:25.35},{&quot;2026-08-21&quot;:25.55},{&quot;2026-08-22&quot;:25.55},{&quot;2026-08-23&quot;:25.55},{&quot;2026-08-24&quot;:25.55},{&quot;2026-08-25&quot;:25.55},{&quot;2026-08-26&quot;:25.55},{&quot;2026-08-27&quot;:25.55},{&quot;2026-08-28&quot;:25.57},{&quot;2026-08-29&quot;:25.57},{&quot;2026-08-30&quot;:25.35},{&quot;2026-08-31&quot;:25.35},{&quot;2026-09-01&quot;:25.35},{&quot;2026-09-02&quot;:25.35},{&quot;2026-09-03&quot;:25.35},{&quot;2026-09-04&quot;:25.35},{&quot;2026-09-05&quot;:25.35},{&quot;2026-09-06&quot;:25.35},{&quot;2026-09-07&quot;:25.35},{&quot;2026-09-08&quot;:25.35},{&quot;2026-09-09&quot;:25.35},{&quot;2026-09-10&quot;:25.35},{&quot;2026-09-11&quot;:25.35}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.86},{&quot;2026-06-12&quot;:2.88},{&quot;2026-06-13&quot;:2.82},{&quot;2026-06-14&quot;:2.83},{&quot;2026-06-15&quot;:2.82},{&quot;2026-06-16&quot;:2.85},{&quot;2026-06-17&quot;:2.87},{&quot;2026-06-18&quot;:2.82},{&quot;2026-06-19&quot;:2.61},{&quot;2026-06-20&quot;:2.55},{&quot;2026-06-21&quot;:2.51},{&quot;2026-06-22&quot;:2.52},{&quot;2026-06-23&quot;:2.52},{&quot;2026-06-24&quot;:2.49},{&quot;2026-06-25&quot;:2.53},{&quot;2026-06-26&quot;:2.51},{&quot;2026-06-27&quot;:2.47},{&quot;2026-06-28&quot;:2.41},{&quot;2026-06-29&quot;:2.43},{&quot;2026-06-30&quot;:2.5},{&quot;2026-07-01&quot;:2.56},{&quot;2026-07-02&quot;:2.5},{&quot;2026-07-03&quot;:2.45},{&quot;2026-07-04&quot;:2.32},{&quot;2026-07-05&quot;:2.34},{&quot;2026-07-06&quot;:2.19},{&quot;2026-07-07&quot;:2.18},{&quot;2026-07-08&quot;:2.24},{&quot;2026-07-09&quot;:2.26},{&quot;2026-07-10&quot;:2.27},{&quot;2026-07-11&quot;:2.29},{&quot;2026-07-12&quot;:2.34},{&quot;2026-07-13&quot;:2.32},{&quot;2026-07-14&quot;:2.29},{&quot;2026-07-15&quot;:2.27},{&quot;2026-07-16&quot;:2.27},{&quot;2026-07-17&quot;:2.35},{&quot;2026-07-18&quot;:2.42},{&quot;2026-07-19&quot;:2.42},{&quot;2026-07-20&quot;:2.27},{&quot;2026-07-21&quot;:2.13},{&quot;2026-07-23&quot;:2.38},{&quot;2026-07-25&quot;:2.37},{&quot;2026-07-26&quot;:2.32},{&quot;2026-07-27&quot;:2.3},{&quot;2026-07-28&quot;:2.32},{&quot;2026-07-29&quot;:2.34},{&quot;2026-07-30&quot;:2.25},{&quot;2026-07-31&quot;:2.19},{&quot;2026-08-01&quot;:2.09},{&quot;2026-08-02&quot;:2.17},{&quot;2026-08-03&quot;:2.11},{&quot;2026-08-04&quot;:2.05},{&quot;2026-08-05&quot;:2.18},{&quot;2026-08-07&quot;:2.24},{&quot;2026-08-08&quot;:2.41},{&quot;2026-08-09&quot;:2.29},{&quot;2026-08-10&quot;:2.22},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.18},{&quot;2026-08-13&quot;:2.26},{&quot;2026-08-14&quot;:2.35},{&quot;2026-08-15&quot;:2.34},{&quot;2026-08-16&quot;:2.3},{&quot;2026-08-17&quot;:2.28},{&quot;2026-08-18&quot;:2.33},{&quot;2026-08-19&quot;:2.3},{&quot;2026-08-20&quot;:2.3},{&quot;2026-08-21&quot;:2.32},{&quot;2026-08-22&quot;:2.22},{&quot;2026-08-23&quot;:2.17},{&quot;2026-08-24&quot;:1.99},{&quot;2026-08-25&quot;:1.99},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:1.84},{&quot;2026-08-28&quot;:1.77},{&quot;2026-08-29&quot;:1.77},{&quot;2026-08-30&quot;:1.93},{&quot;2026-08-31&quot;:1.95},{&quot;2026-09-01&quot;:1.95},{&quot;2026-09-02&quot;:2.18},{&quot;2026-09-03&quot;:2.2},{&quot;2026-09-04&quot;:2.24},{&quot;2026-09-05&quot;:2.17},{&quot;2026-09-06&quot;:1.96},{&quot;2026-09-07&quot;:1.85},{&quot;2026-09-08&quot;:1.76},{&quot;2026-09-09&quot;:2.02},{&quot;2026-09-10&quot;:2.05},{&quot;2026-09-11&quot;:2.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="108380"
  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-tmc ss-rare 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">
            Fabled Passage
        </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-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.76
          </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="Fabled Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7c787c6b-b6c7-47a0-8f8d-761629f5568e.jpg?1783904151" />

        <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">
            Fabled Passage
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Fabled Passage" src="https://cards.scryfall.io/large/front/7/c/7c787c6b-b6c7-47a0-8f8d-761629f5568e.jpg?1783904151" />
    </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.76
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </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">
                $9.80
              </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;2026-08-19&quot;:9.87},{&quot;2026-08-20&quot;:9.87},{&quot;2026-08-21&quot;:9.87},{&quot;2026-08-22&quot;:9.87},{&quot;2026-08-23&quot;:9.87},{&quot;2026-08-24&quot;:9.87},{&quot;2026-08-25&quot;:9.87},{&quot;2026-08-26&quot;:9.87},{&quot;2026-08-27&quot;:9.87},{&quot;2026-08-28&quot;:9.87},{&quot;2026-08-29&quot;:9.87},{&quot;2026-08-30&quot;:9.86},{&quot;2026-08-31&quot;:9.86},{&quot;2026-09-01&quot;:9.86},{&quot;2026-09-02&quot;:9.86},{&quot;2026-09-03&quot;:9.8},{&quot;2026-09-04&quot;:9.8},{&quot;2026-09-05&quot;:9.8},{&quot;2026-09-06&quot;:9.8},{&quot;2026-09-07&quot;:9.8},{&quot;2026-09-08&quot;:9.8},{&quot;2026-09-09&quot;:9.8},{&quot;2026-09-10&quot;:9.8},{&quot;2026-09-11&quot;:9.8}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.99},{&quot;2026-06-11&quot;:1.94},{&quot;2026-06-12&quot;:1.87},{&quot;2026-06-13&quot;:1.86},{&quot;2026-06-14&quot;:1.69},{&quot;2026-06-15&quot;:1.75},{&quot;2026-06-16&quot;:1.8},{&quot;2026-06-17&quot;:1.81},{&quot;2026-06-18&quot;:1.83},{&quot;2026-06-19&quot;:1.83},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.61},{&quot;2026-06-22&quot;:1.77},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.73},{&quot;2026-06-25&quot;:1.71},{&quot;2026-06-26&quot;:1.75},{&quot;2026-06-27&quot;:1.72},{&quot;2026-06-28&quot;:1.73},{&quot;2026-06-29&quot;:1.75},{&quot;2026-06-30&quot;:1.8},{&quot;2026-07-01&quot;:1.84},{&quot;2026-07-02&quot;:1.78},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.59},{&quot;2026-07-05&quot;:1.51},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.61},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.74},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.59},{&quot;2026-07-12&quot;:1.66},{&quot;2026-07-13&quot;:1.58},{&quot;2026-07-14&quot;:1.57},{&quot;2026-07-15&quot;:1.49},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.57},{&quot;2026-07-18&quot;:1.52},{&quot;2026-07-19&quot;:1.5},{&quot;2026-07-20&quot;:1.51},{&quot;2026-07-21&quot;:1.5},{&quot;2026-07-23&quot;:1.54},{&quot;2026-07-25&quot;:1.59},{&quot;2026-07-26&quot;:1.59},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-29&quot;:1.51},{&quot;2026-07-30&quot;:1.51},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.34},{&quot;2026-08-02&quot;:1.46},{&quot;2026-08-03&quot;:1.43},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.82},{&quot;2026-08-09&quot;:1.88},{&quot;2026-08-10&quot;:1.88},{&quot;2026-08-11&quot;:1.83},{&quot;2026-08-12&quot;:1.84},{&quot;2026-08-13&quot;:1.77},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.65},{&quot;2026-08-16&quot;:1.75},{&quot;2026-08-17&quot;:1.79},{&quot;2026-08-18&quot;:1.75},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.7},{&quot;2026-08-21&quot;:1.43},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.47},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.9},{&quot;2026-08-27&quot;:1.87},{&quot;2026-08-28&quot;:1.88},{&quot;2026-08-29&quot;:1.88},{&quot;2026-08-30&quot;:2.61},{&quot;2026-08-31&quot;:2.79},{&quot;2026-09-01&quot;:2.79},{&quot;2026-09-02&quot;:2.52},{&quot;2026-09-03&quot;:2.19},{&quot;2026-09-04&quot;:1.79},{&quot;2026-09-05&quot;:1.77},{&quot;2026-09-06&quot;:1.69},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:1.69},{&quot;2026-09-09&quot;:1.63},{&quot;2026-09-10&quot;:1.74},{&quot;2026-09-11&quot;:1.76}]}"
        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="108372"
  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-tmc 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">
            Sol Ring
        </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">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.75
          </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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/4/14dbce79-1fcc-4cc9-bf38-7729e44a411e.jpg?1783904155" />

        <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">
            Sol Ring
        </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-1'></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="Sol Ring" src="https://cards.scryfall.io/large/front/1/4/14dbce79-1fcc-4cc9-bf38-7729e44a411e.jpg?1783904155" />
    </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.75
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $3.53
              </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">$0.65</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-08-19&quot;:4.03},{&quot;2026-08-20&quot;:4.02},{&quot;2026-08-21&quot;:3.93},{&quot;2026-08-22&quot;:3.93},{&quot;2026-08-23&quot;:4.02},{&quot;2026-08-24&quot;:4.03},{&quot;2026-08-25&quot;:3.99},{&quot;2026-08-26&quot;:3.91},{&quot;2026-08-27&quot;:3.88},{&quot;2026-08-28&quot;:3.91},{&quot;2026-08-29&quot;:3.91},{&quot;2026-08-30&quot;:3.79},{&quot;2026-08-31&quot;:3.79},{&quot;2026-09-01&quot;:3.72},{&quot;2026-09-02&quot;:3.48},{&quot;2026-09-03&quot;:3.48},{&quot;2026-09-04&quot;:3.36},{&quot;2026-09-05&quot;:3.33},{&quot;2026-09-06&quot;:3.35},{&quot;2026-09-07&quot;:3.38},{&quot;2026-09-08&quot;:3.38},{&quot;2026-09-09&quot;:3.38},{&quot;2026-09-10&quot;:3.38},{&quot;2026-09-11&quot;:3.53}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.75},{&quot;2026-06-14&quot;:1.71},{&quot;2026-06-15&quot;:1.62},{&quot;2026-06-16&quot;:1.64},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.76},{&quot;2026-06-19&quot;:1.76},{&quot;2026-06-20&quot;:1.81},{&quot;2026-06-21&quot;:1.78},{&quot;2026-06-22&quot;:1.75},{&quot;2026-06-23&quot;:1.62},{&quot;2026-06-24&quot;:1.69},{&quot;2026-06-25&quot;:1.7},{&quot;2026-06-26&quot;:1.73},{&quot;2026-06-27&quot;:1.84},{&quot;2026-06-28&quot;:1.84},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.67},{&quot;2026-07-02&quot;:1.76},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.8},{&quot;2026-07-05&quot;:1.77},{&quot;2026-07-06&quot;:1.76},{&quot;2026-07-07&quot;:1.77},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.8},{&quot;2026-07-10&quot;:1.84},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.87},{&quot;2026-07-13&quot;:1.76},{&quot;2026-07-14&quot;:1.75},{&quot;2026-07-15&quot;:1.86},{&quot;2026-07-16&quot;:1.91},{&quot;2026-07-17&quot;:1.83},{&quot;2026-07-18&quot;:1.91},{&quot;2026-07-19&quot;:1.96},{&quot;2026-07-20&quot;:1.84},{&quot;2026-07-21&quot;:1.83},{&quot;2026-07-22&quot;:1.72},{&quot;2026-07-23&quot;:1.73},{&quot;2026-07-24&quot;:1.7},{&quot;2026-07-25&quot;:1.65},{&quot;2026-07-26&quot;:1.87},{&quot;2026-07-27&quot;:2.02},{&quot;2026-07-28&quot;:2.06},{&quot;2026-07-29&quot;:2.0},{&quot;2026-07-30&quot;:1.99},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.73},{&quot;2026-08-02&quot;:1.88},{&quot;2026-08-03&quot;:1.82},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.9},{&quot;2026-08-07&quot;:1.99},{&quot;2026-08-08&quot;:2.03},{&quot;2026-08-09&quot;:2.02},{&quot;2026-08-10&quot;:1.95},{&quot;2026-08-11&quot;:1.83},{&quot;2026-08-12&quot;:1.9},{&quot;2026-08-13&quot;:1.81},{&quot;2026-08-14&quot;:1.82},{&quot;2026-08-15&quot;:1.83},{&quot;2026-08-16&quot;:1.91},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.89},{&quot;2026-08-19&quot;:1.85},{&quot;2026-08-20&quot;:1.73},{&quot;2026-08-21&quot;:1.73},{&quot;2026-08-22&quot;:1.77},{&quot;2026-08-23&quot;:1.86},{&quot;2026-08-24&quot;:1.86},{&quot;2026-08-25&quot;:1.95},{&quot;2026-08-26&quot;:2.0},{&quot;2026-08-27&quot;:1.99},{&quot;2026-08-28&quot;:2.02},{&quot;2026-08-29&quot;:2.02},{&quot;2026-08-30&quot;:2.04},{&quot;2026-08-31&quot;:1.96},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:1.98},{&quot;2026-09-03&quot;:2.02},{&quot;2026-09-04&quot;:1.84},{&quot;2026-09-05&quot;:1.81},{&quot;2026-09-06&quot;:1.84},{&quot;2026-09-07&quot;:1.94},{&quot;2026-09-08&quot;:2.07},{&quot;2026-09-09&quot;:1.95},{&quot;2026-09-10&quot;:1.93},{&quot;2026-09-11&quot;:1.75}]}"
        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="108332"
  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-tmc ss-rare 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">
            Shredder, Shadow Master
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human 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-50 text-badge-text">
              ↑
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.66
          </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="Shredder, Shadow Master" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/d/ddf4d3c9-bef9-4796-91ef-3d5beebae571.jpg?1783904169" />

        <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">
            Shredder, Shadow Master
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Ninja</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="Shredder, Shadow Master" src="https://cards.scryfall.io/large/front/d/d/ddf4d3c9-bef9-4796-91ef-3d5beebae571.jpg?1783904169" />
    </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.66
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </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">
                $16.94
              </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.40</span>
              <span class="text-xs text-grey-text">Credit: $0.52</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-08-19&quot;:16.54},{&quot;2026-08-20&quot;:16.54},{&quot;2026-08-21&quot;:16.58},{&quot;2026-08-22&quot;:16.62},{&quot;2026-08-23&quot;:16.75},{&quot;2026-08-24&quot;:16.75},{&quot;2026-08-25&quot;:16.75},{&quot;2026-08-26&quot;:16.75},{&quot;2026-08-27&quot;:16.75},{&quot;2026-08-28&quot;:16.75},{&quot;2026-08-29&quot;:16.75},{&quot;2026-08-30&quot;:16.75},{&quot;2026-08-31&quot;:16.79},{&quot;2026-09-01&quot;:16.79},{&quot;2026-09-02&quot;:16.79},{&quot;2026-09-03&quot;:16.79},{&quot;2026-09-04&quot;:16.79},{&quot;2026-09-05&quot;:16.99},{&quot;2026-09-06&quot;:16.99},{&quot;2026-09-07&quot;:16.99},{&quot;2026-09-08&quot;:16.85},{&quot;2026-09-09&quot;:16.85},{&quot;2026-09-10&quot;:16.85},{&quot;2026-09-11&quot;:16.94}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.71},{&quot;2026-06-11&quot;:0.7},{&quot;2026-06-12&quot;:0.75},{&quot;2026-06-13&quot;:0.78},{&quot;2026-06-14&quot;:0.77},{&quot;2026-06-15&quot;:0.78},{&quot;2026-06-16&quot;:0.78},{&quot;2026-06-17&quot;:0.78},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.9},{&quot;2026-06-20&quot;:0.91},{&quot;2026-06-21&quot;:0.87},{&quot;2026-06-22&quot;:0.81},{&quot;2026-06-23&quot;:0.73},{&quot;2026-06-24&quot;:0.67},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.63},{&quot;2026-06-27&quot;:0.69},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.69},{&quot;2026-06-30&quot;:0.71},{&quot;2026-07-01&quot;:0.74},{&quot;2026-07-02&quot;:0.73},{&quot;2026-07-03&quot;:0.7},{&quot;2026-07-04&quot;:0.69},{&quot;2026-07-05&quot;:0.63},{&quot;2026-07-06&quot;:0.6},{&quot;2026-07-07&quot;:0.62},{&quot;2026-07-08&quot;:0.66},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.74},{&quot;2026-07-11&quot;:0.74},{&quot;2026-07-12&quot;:0.76},{&quot;2026-07-13&quot;:0.79},{&quot;2026-07-14&quot;:0.79},{&quot;2026-07-15&quot;:0.81},{&quot;2026-07-16&quot;:0.86},{&quot;2026-07-17&quot;:0.92},{&quot;2026-07-18&quot;:0.98},{&quot;2026-07-19&quot;:0.98},{&quot;2026-07-20&quot;:0.95},{&quot;2026-07-21&quot;:0.86},{&quot;2026-07-23&quot;:0.91},{&quot;2026-07-25&quot;:0.95},{&quot;2026-07-26&quot;:0.91},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-29&quot;:0.9},{&quot;2026-07-30&quot;:0.98},{&quot;2026-07-31&quot;:1.1},{&quot;2026-08-01&quot;:1.1},{&quot;2026-08-02&quot;:1.17},{&quot;2026-08-03&quot;:1.19},{&quot;2026-08-04&quot;:1.15},{&quot;2026-08-05&quot;:1.08},{&quot;2026-08-07&quot;:1.08},{&quot;2026-08-08&quot;:1.07},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.18},{&quot;2026-08-11&quot;:1.31},{&quot;2026-08-12&quot;:1.35},{&quot;2026-08-13&quot;:1.42},{&quot;2026-08-14&quot;:1.43},{&quot;2026-08-15&quot;:1.37},{&quot;2026-08-16&quot;:1.65},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.62},{&quot;2026-08-19&quot;:1.6},{&quot;2026-08-20&quot;:1.6},{&quot;2026-08-21&quot;:1.65},{&quot;2026-08-22&quot;:1.15},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:1.0},{&quot;2026-08-25&quot;:1.0},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.09},{&quot;2026-08-28&quot;:1.3},{&quot;2026-08-29&quot;:1.3},{&quot;2026-08-30&quot;:1.9},{&quot;2026-08-31&quot;:1.84},{&quot;2026-09-01&quot;:1.84},{&quot;2026-09-02&quot;:1.58},{&quot;2026-09-03&quot;:1.64},{&quot;2026-09-04&quot;:1.6},{&quot;2026-09-05&quot;:1.57},{&quot;2026-09-06&quot;:1.74},{&quot;2026-09-07&quot;:1.6},{&quot;2026-09-08&quot;:1.78},{&quot;2026-09-09&quot;:1.79},{&quot;2026-09-10&quot;:1.59},{&quot;2026-09-11&quot;:1.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="108368"
  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-tmc ss-rare 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">
            Assassin&#39;s Trophy
        </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">
              ↑
              46%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.33
          </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="Assassin&#39;s Trophy" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/3/932efc19-9bfd-4501-a623-ff6765a356d8.jpg?1783904156" />

        <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">
            Assassin&#39;s Trophy
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-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="Assassin&#39;s Trophy" src="https://cards.scryfall.io/large/front/9/3/932efc19-9bfd-4501-a623-ff6765a356d8.jpg?1783904156" />
    </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.33
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  46%
                </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">
                $4.83
              </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.36</span>
              <span class="text-xs text-grey-text">Credit: $0.47</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-08-19&quot;:4.75},{&quot;2026-08-20&quot;:4.75},{&quot;2026-08-21&quot;:4.75},{&quot;2026-08-22&quot;:4.75},{&quot;2026-08-23&quot;:4.75},{&quot;2026-08-24&quot;:4.75},{&quot;2026-08-25&quot;:4.75},{&quot;2026-08-26&quot;:4.8},{&quot;2026-08-27&quot;:4.8},{&quot;2026-08-28&quot;:4.8},{&quot;2026-08-29&quot;:4.8},{&quot;2026-08-30&quot;:4.8},{&quot;2026-08-31&quot;:4.8},{&quot;2026-09-01&quot;:4.8},{&quot;2026-09-02&quot;:4.83},{&quot;2026-09-03&quot;:4.83},{&quot;2026-09-04&quot;:4.83},{&quot;2026-09-05&quot;:4.83},{&quot;2026-09-06&quot;:4.83},{&quot;2026-09-07&quot;:4.83},{&quot;2026-09-08&quot;:4.83},{&quot;2026-09-09&quot;:4.83},{&quot;2026-09-10&quot;:4.83},{&quot;2026-09-11&quot;:4.83}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.8},{&quot;2026-06-11&quot;:0.79},{&quot;2026-06-12&quot;:0.86},{&quot;2026-06-13&quot;:0.85},{&quot;2026-06-14&quot;:0.82},{&quot;2026-06-15&quot;:0.76},{&quot;2026-06-16&quot;:0.79},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.8},{&quot;2026-06-19&quot;:0.81},{&quot;2026-06-20&quot;:0.8},{&quot;2026-06-21&quot;:0.8},{&quot;2026-06-22&quot;:0.79},{&quot;2026-06-23&quot;:0.83},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.87},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.86},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.89},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.83},{&quot;2026-07-04&quot;:0.86},{&quot;2026-07-05&quot;:0.86},{&quot;2026-07-06&quot;:0.82},{&quot;2026-07-07&quot;:0.84},{&quot;2026-07-08&quot;:0.84},{&quot;2026-07-09&quot;:0.83},{&quot;2026-07-10&quot;:0.83},{&quot;2026-07-11&quot;:0.82},{&quot;2026-07-12&quot;:0.8},{&quot;2026-07-13&quot;:0.78},{&quot;2026-07-14&quot;:0.78},{&quot;2026-07-15&quot;:0.81},{&quot;2026-07-16&quot;:0.81},{&quot;2026-07-17&quot;:0.83},{&quot;2026-07-18&quot;:0.83},{&quot;2026-07-19&quot;:0.83},{&quot;2026-07-20&quot;:0.84},{&quot;2026-07-21&quot;:0.78},{&quot;2026-07-23&quot;:0.76},{&quot;2026-07-25&quot;:0.78},{&quot;2026-07-26&quot;:0.81},{&quot;2026-07-27&quot;:0.86},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:0.85},{&quot;2026-07-31&quot;:0.88},{&quot;2026-08-01&quot;:0.91},{&quot;2026-08-02&quot;:0.88},{&quot;2026-08-03&quot;:0.89},{&quot;2026-08-04&quot;:0.88},{&quot;2026-08-05&quot;:0.86},{&quot;2026-08-07&quot;:0.91},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:1.09},{&quot;2026-08-10&quot;:1.17},{&quot;2026-08-11&quot;:1.15},{&quot;2026-08-12&quot;:1.16},{&quot;2026-08-13&quot;:1.18},{&quot;2026-08-14&quot;:1.21},{&quot;2026-08-15&quot;:1.06},{&quot;2026-08-16&quot;:1.08},{&quot;2026-08-17&quot;:1.01},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.06},{&quot;2026-08-21&quot;:0.83},{&quot;2026-08-22&quot;:0.77},{&quot;2026-08-23&quot;:0.86},{&quot;2026-08-24&quot;:0.99},{&quot;2026-08-25&quot;:0.99},{&quot;2026-08-26&quot;:1.01},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.17},{&quot;2026-08-29&quot;:1.17},{&quot;2026-08-30&quot;:1.17},{&quot;2026-08-31&quot;:1.19},{&quot;2026-09-01&quot;:1.19},{&quot;2026-09-02&quot;:1.15},{&quot;2026-09-03&quot;:1.1},{&quot;2026-09-04&quot;:1.0},{&quot;2026-09-05&quot;:0.91},{&quot;2026-09-06&quot;:1.0},{&quot;2026-09-07&quot;:1.27},{&quot;2026-09-08&quot;:1.5},{&quot;2026-09-09&quot;:1.48},{&quot;2026-09-10&quot;:1.4},{&quot;2026-09-11&quot;:1.33}]}"
        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="108341"
  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-tmc ss-rare 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">
            High Score
        </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">
              ↑
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.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="High Score" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b9077ef5-d19a-4106-950b-bb49b3b37510.jpg?1783904165" />

        <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">
            High Score
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-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="High Score" src="https://cards.scryfall.io/large/front/b/9/b9077ef5-d19a-4106-950b-bb49b3b37510.jpg?1783904165" />
    </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.31
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  10%
                </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">
                $15.78
              </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.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</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-08-19&quot;:16.41},{&quot;2026-08-20&quot;:16.41},{&quot;2026-08-21&quot;:16.41},{&quot;2026-08-22&quot;:16.41},{&quot;2026-08-23&quot;:16.41},{&quot;2026-08-24&quot;:16.1},{&quot;2026-08-25&quot;:16.1},{&quot;2026-08-26&quot;:16.1},{&quot;2026-08-27&quot;:16.1},{&quot;2026-08-28&quot;:16.12},{&quot;2026-08-29&quot;:16.12},{&quot;2026-08-30&quot;:16.12},{&quot;2026-08-31&quot;:16.12},{&quot;2026-09-01&quot;:16.12},{&quot;2026-09-02&quot;:16.12},{&quot;2026-09-03&quot;:16.12},{&quot;2026-09-04&quot;:16.12},{&quot;2026-09-05&quot;:16.26},{&quot;2026-09-06&quot;:16.26},{&quot;2026-09-07&quot;:16.19},{&quot;2026-09-08&quot;:16.19},{&quot;2026-09-09&quot;:16.06},{&quot;2026-09-10&quot;:15.78},{&quot;2026-09-11&quot;:15.78}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.19},{&quot;2026-06-14&quot;:1.18},{&quot;2026-06-15&quot;:1.17},{&quot;2026-06-16&quot;:1.16},{&quot;2026-06-17&quot;:1.17},{&quot;2026-06-18&quot;:1.18},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.14},{&quot;2026-06-21&quot;:1.08},{&quot;2026-06-22&quot;:1.05},{&quot;2026-06-23&quot;:1.08},{&quot;2026-06-24&quot;:1.1},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.16},{&quot;2026-06-27&quot;:1.23},{&quot;2026-06-28&quot;:1.4},{&quot;2026-06-29&quot;:1.37},{&quot;2026-06-30&quot;:1.29},{&quot;2026-07-01&quot;:1.3},{&quot;2026-07-02&quot;:1.19},{&quot;2026-07-03&quot;:1.2},{&quot;2026-07-04&quot;:1.21},{&quot;2026-07-05&quot;:1.23},{&quot;2026-07-06&quot;:1.2},{&quot;2026-07-07&quot;:1.23},{&quot;2026-07-08&quot;:1.26},{&quot;2026-07-09&quot;:1.34},{&quot;2026-07-10&quot;:1.32},{&quot;2026-07-11&quot;:1.24},{&quot;2026-07-12&quot;:1.22},{&quot;2026-07-13&quot;:1.22},{&quot;2026-07-14&quot;:1.22},{&quot;2026-07-15&quot;:1.17},{&quot;2026-07-16&quot;:1.19},{&quot;2026-07-17&quot;:1.18},{&quot;2026-07-18&quot;:1.22},{&quot;2026-07-19&quot;:1.21},{&quot;2026-07-20&quot;:1.25},{&quot;2026-07-21&quot;:1.33},{&quot;2026-07-22&quot;:1.35},{&quot;2026-07-23&quot;:1.33},{&quot;2026-07-24&quot;:1.29},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.39},{&quot;2026-07-27&quot;:1.45},{&quot;2026-07-28&quot;:1.52},{&quot;2026-07-29&quot;:1.51},{&quot;2026-07-30&quot;:1.42},{&quot;2026-07-31&quot;:1.42},{&quot;2026-08-01&quot;:1.41},{&quot;2026-08-02&quot;:1.49},{&quot;2026-08-03&quot;:1.53},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.49},{&quot;2026-08-07&quot;:1.39},{&quot;2026-08-08&quot;:1.4},{&quot;2026-08-09&quot;:1.45},{&quot;2026-08-10&quot;:1.44},{&quot;2026-08-11&quot;:1.49},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.55},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.51},{&quot;2026-08-16&quot;:1.42},{&quot;2026-08-17&quot;:1.43},{&quot;2026-08-18&quot;:1.4},{&quot;2026-08-19&quot;:1.39},{&quot;2026-08-20&quot;:1.42},{&quot;2026-08-21&quot;:1.44},{&quot;2026-08-22&quot;:1.41},{&quot;2026-08-23&quot;:1.42},{&quot;2026-08-24&quot;:1.38},{&quot;2026-08-25&quot;:1.27},{&quot;2026-08-26&quot;:1.29},{&quot;2026-08-27&quot;:1.29},{&quot;2026-08-28&quot;:1.33},{&quot;2026-08-29&quot;:1.33},{&quot;2026-08-30&quot;:1.26},{&quot;2026-08-31&quot;:1.29},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.19},{&quot;2026-09-03&quot;:1.22},{&quot;2026-09-04&quot;:1.27},{&quot;2026-09-05&quot;:1.19},{&quot;2026-09-06&quot;:1.24},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.31},{&quot;2026-09-09&quot;:1.31},{&quot;2026-09-10&quot;:1.28},{&quot;2026-09-11&quot;:1.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="98231"
  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-tmc ss-mythic 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">
            Heroes in a Half Shell
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja Turtle
      </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">
              ↑
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.29
          </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="Heroes in a Half Shell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/c/ccc2a4e6-f505-4040-9d8a-c7b8e1a2b55e.jpg?1783904172" />

        <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">
            Heroes in a Half Shell
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja Turtle</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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Heroes in a Half Shell" src="https://cards.scryfall.io/large/front/c/c/ccc2a4e6-f505-4040-9d8a-c7b8e1a2b55e.jpg?1783904172" />
    </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">
                $1.62
              </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">
                $1.29
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  9%
                </span>
            </div>
          </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;:0.75},{&quot;2026-06-14&quot;:0.74},{&quot;2026-06-15&quot;:0.75},{&quot;2026-06-16&quot;:0.77},{&quot;2026-06-17&quot;:0.78},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.84},{&quot;2026-06-20&quot;:0.97},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.92},{&quot;2026-06-23&quot;:0.91},{&quot;2026-06-24&quot;:0.94},{&quot;2026-06-25&quot;:0.83},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.85},{&quot;2026-06-28&quot;:0.86},{&quot;2026-06-29&quot;:0.85},{&quot;2026-06-30&quot;:0.88},{&quot;2026-07-01&quot;:0.86},{&quot;2026-07-02&quot;:0.87},{&quot;2026-07-03&quot;:0.92},{&quot;2026-07-04&quot;:0.92},{&quot;2026-07-05&quot;:0.95},{&quot;2026-07-06&quot;:0.98},{&quot;2026-07-07&quot;:0.94},{&quot;2026-07-08&quot;:0.96},{&quot;2026-07-09&quot;:0.95},{&quot;2026-07-10&quot;:0.97},{&quot;2026-07-11&quot;:0.94},{&quot;2026-07-12&quot;:0.92},{&quot;2026-07-13&quot;:0.88},{&quot;2026-07-14&quot;:0.86},{&quot;2026-07-15&quot;:0.83},{&quot;2026-07-16&quot;:0.88},{&quot;2026-07-17&quot;:0.89},{&quot;2026-07-18&quot;:0.77},{&quot;2026-07-19&quot;:0.8},{&quot;2026-07-20&quot;:0.8},{&quot;2026-07-21&quot;:0.76},{&quot;2026-07-22&quot;:0.73},{&quot;2026-07-23&quot;:0.73},{&quot;2026-07-24&quot;:0.66},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.87},{&quot;2026-07-27&quot;:0.87},{&quot;2026-07-28&quot;:0.9},{&quot;2026-07-29&quot;:0.64},{&quot;2026-07-30&quot;:0.67},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.76},{&quot;2026-08-02&quot;:0.71},{&quot;2026-08-03&quot;:0.73},{&quot;2026-08-04&quot;:0.71},{&quot;2026-08-05&quot;:0.96},{&quot;2026-08-07&quot;:1.02},{&quot;2026-08-08&quot;:1.08},{&quot;2026-08-09&quot;:1.15},{&quot;2026-08-10&quot;:1.11},{&quot;2026-08-11&quot;:1.05},{&quot;2026-08-12&quot;:1.13},{&quot;2026-08-13&quot;:1.19},{&quot;2026-08-14&quot;:1.22},{&quot;2026-08-15&quot;:1.21},{&quot;2026-08-16&quot;:1.24},{&quot;2026-08-17&quot;:1.35},{&quot;2026-08-18&quot;:1.76},{&quot;2026-08-19&quot;:1.81},{&quot;2026-08-20&quot;:1.87},{&quot;2026-08-21&quot;:1.83},{&quot;2026-08-22&quot;:1.77},{&quot;2026-08-23&quot;:1.47},{&quot;2026-08-24&quot;:1.38},{&quot;2026-08-25&quot;:1.24},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.16},{&quot;2026-08-28&quot;:1.19},{&quot;2026-08-29&quot;:1.19},{&quot;2026-08-30&quot;:1.3},{&quot;2026-08-31&quot;:1.37},{&quot;2026-09-01&quot;:1.35},{&quot;2026-09-02&quot;:1.33},{&quot;2026-09-03&quot;:1.34},{&quot;2026-09-04&quot;:1.25},{&quot;2026-09-05&quot;:1.18},{&quot;2026-09-06&quot;:1.14},{&quot;2026-09-07&quot;:1.15},{&quot;2026-09-08&quot;:1.17},{&quot;2026-09-09&quot;:1.23},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.29}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.39},{&quot;2026-06-14&quot;:2.39},{&quot;2026-06-15&quot;:2.39},{&quot;2026-06-16&quot;:2.39},{&quot;2026-06-17&quot;:2.39},{&quot;2026-06-18&quot;:2.34},{&quot;2026-06-19&quot;:2.39},{&quot;2026-06-20&quot;:2.34},{&quot;2026-06-21&quot;:2.39},{&quot;2026-06-22&quot;:2.34},{&quot;2026-06-23&quot;:2.34},{&quot;2026-06-24&quot;:2.34},{&quot;2026-06-25&quot;:2.33},{&quot;2026-06-26&quot;:2.37},{&quot;2026-06-27&quot;:2.38},{&quot;2026-06-28&quot;:2.43},{&quot;2026-06-29&quot;:2.46},{&quot;2026-06-30&quot;:2.5},{&quot;2026-07-01&quot;:2.5},{&quot;2026-07-02&quot;:2.48},{&quot;2026-07-03&quot;:2.48},{&quot;2026-07-04&quot;:2.48},{&quot;2026-07-05&quot;:2.48},{&quot;2026-07-06&quot;:2.45},{&quot;2026-07-07&quot;:2.39},{&quot;2026-07-08&quot;:2.37},{&quot;2026-07-09&quot;:2.28},{&quot;2026-07-10&quot;:2.06},{&quot;2026-07-11&quot;:2.09},{&quot;2026-07-12&quot;:2.09},{&quot;2026-07-13&quot;:2.07},{&quot;2026-07-14&quot;:2.1},{&quot;2026-07-15&quot;:2.12},{&quot;2026-07-16&quot;:2.14},{&quot;2026-07-17&quot;:2.04},{&quot;2026-07-18&quot;:1.96},{&quot;2026-07-19&quot;:1.85},{&quot;2026-07-20&quot;:1.85},{&quot;2026-07-21&quot;:1.85},{&quot;2026-07-22&quot;:1.81},{&quot;2026-07-23&quot;:1.81},{&quot;2026-07-24&quot;:1.71},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.71},{&quot;2026-07-27&quot;:1.68},{&quot;2026-07-28&quot;:1.68},{&quot;2026-07-29&quot;:1.66},{&quot;2026-07-30&quot;:1.66},{&quot;2026-07-31&quot;:1.66},{&quot;2026-08-01&quot;:1.66},{&quot;2026-08-02&quot;:1.6},{&quot;2026-08-03&quot;:1.6},{&quot;2026-08-04&quot;:1.56},{&quot;2026-08-05&quot;:1.56},{&quot;2026-08-07&quot;:1.55},{&quot;2026-08-08&quot;:1.56},{&quot;2026-08-09&quot;:1.52},{&quot;2026-08-10&quot;:1.52},{&quot;2026-08-11&quot;:1.52},{&quot;2026-08-12&quot;:1.61},{&quot;2026-08-13&quot;:1.57},{&quot;2026-08-14&quot;:1.57},{&quot;2026-08-15&quot;:1.63},{&quot;2026-08-16&quot;:1.66},{&quot;2026-08-17&quot;:1.63},{&quot;2026-08-18&quot;:1.57},{&quot;2026-08-19&quot;:1.63},{&quot;2026-08-20&quot;:1.65},{&quot;2026-08-21&quot;:1.65},{&quot;2026-08-22&quot;:1.65},{&quot;2026-08-23&quot;:1.68},{&quot;2026-08-24&quot;:1.67},{&quot;2026-08-25&quot;:1.64},{&quot;2026-08-26&quot;:1.57},{&quot;2026-08-27&quot;:1.59},{&quot;2026-08-28&quot;:1.56},{&quot;2026-08-29&quot;:1.56},{&quot;2026-08-30&quot;:1.62},{&quot;2026-08-31&quot;:1.62},{&quot;2026-09-01&quot;:1.62},{&quot;2026-09-02&quot;:1.62},{&quot;2026-09-03&quot;:1.62},{&quot;2026-09-04&quot;:1.62},{&quot;2026-09-05&quot;:1.62},{&quot;2026-09-06&quot;:1.62},{&quot;2026-09-07&quot;:1.62},{&quot;2026-09-08&quot;:1.62},{&quot;2026-09-09&quot;:1.62},{&quot;2026-09-10&quot;:1.62},{&quot;2026-09-11&quot;:1.62}]}"
        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="98229"
  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-tmc ss-mythic 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">
            Michelangelo, the Heart
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja Turtle
      </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.26
          </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="Michelangelo, the Heart" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/a/bac2d744-db65-4b56-8634-c87fd00c090e.jpg?1783904173" />

        <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">
            Michelangelo, the Heart
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja Turtle</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="Michelangelo, the Heart" src="https://cards.scryfall.io/large/front/b/a/bac2d744-db65-4b56-8634-c87fd00c090e.jpg?1783904173" />
    </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">
                $2.67
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $1.26
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</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;:0.99},{&quot;2026-06-12&quot;:1.0},{&quot;2026-06-13&quot;:1.0},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.12},{&quot;2026-06-17&quot;:1.13},{&quot;2026-06-18&quot;:1.03},{&quot;2026-06-19&quot;:1.07},{&quot;2026-06-20&quot;:1.07},{&quot;2026-06-21&quot;:1.05},{&quot;2026-06-22&quot;:0.97},{&quot;2026-06-23&quot;:0.99},{&quot;2026-06-24&quot;:1.01},{&quot;2026-06-25&quot;:1.08},{&quot;2026-06-26&quot;:1.1},{&quot;2026-06-27&quot;:1.07},{&quot;2026-06-28&quot;:1.14},{&quot;2026-06-29&quot;:1.13},{&quot;2026-06-30&quot;:1.14},{&quot;2026-07-01&quot;:1.11},{&quot;2026-07-02&quot;:1.12},{&quot;2026-07-03&quot;:1.13},{&quot;2026-07-04&quot;:1.28},{&quot;2026-07-05&quot;:1.27},{&quot;2026-07-06&quot;:1.28},{&quot;2026-07-07&quot;:1.28},{&quot;2026-07-08&quot;:1.18},{&quot;2026-07-09&quot;:1.18},{&quot;2026-07-10&quot;:1.19},{&quot;2026-07-11&quot;:1.13},{&quot;2026-07-12&quot;:1.08},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.08},{&quot;2026-07-15&quot;:1.07},{&quot;2026-07-16&quot;:1.08},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.06},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.07},{&quot;2026-07-21&quot;:1.12},{&quot;2026-07-23&quot;:1.14},{&quot;2026-07-25&quot;:1.54},{&quot;2026-07-26&quot;:1.56},{&quot;2026-07-27&quot;:1.28},{&quot;2026-07-28&quot;:1.25},{&quot;2026-07-29&quot;:1.26},{&quot;2026-07-30&quot;:1.19},{&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.29},{&quot;2026-08-05&quot;:1.29},{&quot;2026-08-07&quot;:1.27},{&quot;2026-08-08&quot;:1.24},{&quot;2026-08-09&quot;:1.24},{&quot;2026-08-10&quot;:1.24},{&quot;2026-08-11&quot;:1.24},{&quot;2026-08-12&quot;:1.25},{&quot;2026-08-13&quot;:1.23},{&quot;2026-08-14&quot;:1.26},{&quot;2026-08-15&quot;:1.27},{&quot;2026-08-16&quot;:1.29},{&quot;2026-08-17&quot;:1.26},{&quot;2026-08-18&quot;:1.26},{&quot;2026-08-19&quot;:1.27},{&quot;2026-08-20&quot;:1.27},{&quot;2026-08-21&quot;:1.27},{&quot;2026-08-22&quot;:1.26},{&quot;2026-08-23&quot;:1.26},{&quot;2026-08-24&quot;:1.25},{&quot;2026-08-25&quot;:1.25},{&quot;2026-08-26&quot;:1.25},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.25},{&quot;2026-08-29&quot;:1.25},{&quot;2026-08-30&quot;:1.24},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.12},{&quot;2026-09-04&quot;:1.19},{&quot;2026-09-05&quot;:1.17},{&quot;2026-09-06&quot;:1.19},{&quot;2026-09-07&quot;:1.18},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.23},{&quot;2026-09-10&quot;:1.24},{&quot;2026-09-11&quot;:1.26}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:4.95},{&quot;2026-06-12&quot;:4.95},{&quot;2026-06-13&quot;:4.98},{&quot;2026-06-14&quot;:4.98},{&quot;2026-06-15&quot;:4.98},{&quot;2026-06-16&quot;:4.98},{&quot;2026-06-17&quot;:4.98},{&quot;2026-06-18&quot;:4.98},{&quot;2026-06-19&quot;:4.98},{&quot;2026-06-20&quot;:4.98},{&quot;2026-06-21&quot;:5.12},{&quot;2026-06-22&quot;:5.12},{&quot;2026-06-23&quot;:5.12},{&quot;2026-06-24&quot;:4.97},{&quot;2026-06-25&quot;:4.84},{&quot;2026-06-26&quot;:4.7},{&quot;2026-06-27&quot;:4.92},{&quot;2026-06-28&quot;:4.92},{&quot;2026-06-29&quot;:4.63},{&quot;2026-06-30&quot;:4.63},{&quot;2026-07-01&quot;:4.47},{&quot;2026-07-02&quot;:4.33},{&quot;2026-07-03&quot;:4.06},{&quot;2026-07-04&quot;:4.13},{&quot;2026-07-05&quot;:4.04},{&quot;2026-07-06&quot;:3.92},{&quot;2026-07-07&quot;:3.78},{&quot;2026-07-08&quot;:3.7},{&quot;2026-07-09&quot;:3.59},{&quot;2026-07-10&quot;:3.59},{&quot;2026-07-11&quot;:3.59},{&quot;2026-07-12&quot;:3.59},{&quot;2026-07-13&quot;:3.61},{&quot;2026-07-14&quot;:3.64},{&quot;2026-07-15&quot;:3.64},{&quot;2026-07-16&quot;:3.64},{&quot;2026-07-17&quot;:3.73},{&quot;2026-07-18&quot;:3.73},{&quot;2026-07-19&quot;:3.63},{&quot;2026-07-20&quot;:3.57},{&quot;2026-07-21&quot;:3.58},{&quot;2026-07-23&quot;:3.61},{&quot;2026-07-25&quot;:3.52},{&quot;2026-07-26&quot;:3.51},{&quot;2026-07-27&quot;:3.51},{&quot;2026-07-28&quot;:3.51},{&quot;2026-07-29&quot;:3.38},{&quot;2026-07-30&quot;:3.38},{&quot;2026-07-31&quot;:3.45},{&quot;2026-08-01&quot;:3.45},{&quot;2026-08-02&quot;:3.43},{&quot;2026-08-03&quot;:3.43},{&quot;2026-08-04&quot;:3.44},{&quot;2026-08-05&quot;:3.24},{&quot;2026-08-07&quot;:3.19},{&quot;2026-08-08&quot;:3.19},{&quot;2026-08-09&quot;:2.98},{&quot;2026-08-10&quot;:2.98},{&quot;2026-08-11&quot;:2.9},{&quot;2026-08-12&quot;:2.7},{&quot;2026-08-13&quot;:2.71},{&quot;2026-08-14&quot;:2.71},{&quot;2026-08-15&quot;:2.71},{&quot;2026-08-16&quot;:2.65},{&quot;2026-08-17&quot;:2.71},{&quot;2026-08-18&quot;:2.71},{&quot;2026-08-19&quot;:2.65},{&quot;2026-08-20&quot;:2.65},{&quot;2026-08-21&quot;:2.6},{&quot;2026-08-22&quot;:2.6},{&quot;2026-08-23&quot;:2.6},{&quot;2026-08-24&quot;:2.53},{&quot;2026-08-25&quot;:2.53},{&quot;2026-08-26&quot;:2.6},{&quot;2026-08-27&quot;:2.6},{&quot;2026-08-28&quot;:2.68},{&quot;2026-08-29&quot;:2.68},{&quot;2026-08-30&quot;:2.49},{&quot;2026-08-31&quot;:2.55},{&quot;2026-09-01&quot;:2.55},{&quot;2026-09-02&quot;:2.65},{&quot;2026-09-03&quot;:2.69},{&quot;2026-09-04&quot;:2.74},{&quot;2026-09-05&quot;:2.74},{&quot;2026-09-06&quot;:2.74},{&quot;2026-09-07&quot;:2.74},{&quot;2026-09-08&quot;:2.67},{&quot;2026-09-09&quot;:2.67},{&quot;2026-09-10&quot;:2.67},{&quot;2026-09-11&quot;:2.67}]}"
        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="108371"
  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-tmc ss-rare 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">
            Chromatic Lantern
        </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">
              ↑
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.20
          </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="Chromatic Lantern" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/8/68625010-3e4e-4400-b503-bf381a7fd81b.jpg?1783904155" />

        <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">
            Chromatic Lantern
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Chromatic Lantern" src="https://cards.scryfall.io/large/front/6/8/68625010-3e4e-4400-b503-bf381a7fd81b.jpg?1783904155" />
    </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.20
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  10%
                </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.04
              </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.60</span>
              <span class="text-xs text-grey-text">Credit: $0.78</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-08-19&quot;:8.06},{&quot;2026-08-20&quot;:8.06},{&quot;2026-08-21&quot;:8.04},{&quot;2026-08-22&quot;:8.04},{&quot;2026-08-23&quot;:8.04},{&quot;2026-08-24&quot;:8.04},{&quot;2026-08-25&quot;:8.04},{&quot;2026-08-26&quot;:8.04},{&quot;2026-08-27&quot;:8.04},{&quot;2026-08-28&quot;:8.04},{&quot;2026-08-29&quot;:8.04},{&quot;2026-08-30&quot;:8.04},{&quot;2026-08-31&quot;:8.04},{&quot;2026-09-01&quot;:8.04},{&quot;2026-09-02&quot;:8.04},{&quot;2026-09-03&quot;:8.04},{&quot;2026-09-04&quot;:8.04},{&quot;2026-09-05&quot;:8.04},{&quot;2026-09-06&quot;:8.04},{&quot;2026-09-07&quot;:8.04},{&quot;2026-09-08&quot;:8.04},{&quot;2026-09-09&quot;:8.04},{&quot;2026-09-10&quot;:8.04},{&quot;2026-09-11&quot;:8.04}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.41},{&quot;2026-06-12&quot;:1.36},{&quot;2026-06-13&quot;:1.4},{&quot;2026-06-14&quot;:1.36},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.43},{&quot;2026-06-17&quot;:1.55},{&quot;2026-06-18&quot;:1.58},{&quot;2026-06-19&quot;:1.48},{&quot;2026-06-20&quot;:1.48},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.55},{&quot;2026-06-23&quot;:1.51},{&quot;2026-06-24&quot;:1.51},{&quot;2026-06-25&quot;:1.49},{&quot;2026-06-26&quot;:1.48},{&quot;2026-06-27&quot;:1.42},{&quot;2026-06-28&quot;:1.45},{&quot;2026-06-29&quot;:1.45},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.41},{&quot;2026-07-02&quot;:1.53},{&quot;2026-07-03&quot;:1.56},{&quot;2026-07-04&quot;:1.54},{&quot;2026-07-05&quot;:1.54},{&quot;2026-07-06&quot;:1.46},{&quot;2026-07-07&quot;:1.29},{&quot;2026-07-08&quot;:1.29},{&quot;2026-07-09&quot;:1.38},{&quot;2026-07-10&quot;:1.41},{&quot;2026-07-11&quot;:1.5},{&quot;2026-07-12&quot;:1.46},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.55},{&quot;2026-07-15&quot;:1.58},{&quot;2026-07-16&quot;:1.61},{&quot;2026-07-17&quot;:1.64},{&quot;2026-07-18&quot;:1.65},{&quot;2026-07-19&quot;:1.66},{&quot;2026-07-20&quot;:1.62},{&quot;2026-07-21&quot;:1.69},{&quot;2026-07-23&quot;:1.59},{&quot;2026-07-25&quot;:1.62},{&quot;2026-07-26&quot;:1.63},{&quot;2026-07-27&quot;:1.54},{&quot;2026-07-28&quot;:1.53},{&quot;2026-07-29&quot;:1.5},{&quot;2026-07-30&quot;:1.49},{&quot;2026-07-31&quot;:1.34},{&quot;2026-08-01&quot;:1.3},{&quot;2026-08-02&quot;:1.3},{&quot;2026-08-03&quot;:1.25},{&quot;2026-08-04&quot;:1.24},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.19},{&quot;2026-08-08&quot;:1.16},{&quot;2026-08-09&quot;:1.23},{&quot;2026-08-10&quot;:1.29},{&quot;2026-08-11&quot;:1.33},{&quot;2026-08-12&quot;:1.36},{&quot;2026-08-13&quot;:1.37},{&quot;2026-08-14&quot;:1.36},{&quot;2026-08-15&quot;:1.28},{&quot;2026-08-16&quot;:1.29},{&quot;2026-08-17&quot;:1.22},{&quot;2026-08-18&quot;:1.3},{&quot;2026-08-19&quot;:1.31},{&quot;2026-08-20&quot;:1.31},{&quot;2026-08-21&quot;:1.13},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.02},{&quot;2026-08-24&quot;:1.1},{&quot;2026-08-25&quot;:1.13},{&quot;2026-08-26&quot;:1.22},{&quot;2026-08-27&quot;:1.29},{&quot;2026-08-28&quot;:1.45},{&quot;2026-08-29&quot;:1.45},{&quot;2026-08-30&quot;:1.48},{&quot;2026-08-31&quot;:1.29},{&quot;2026-09-01&quot;:1.2},{&quot;2026-09-02&quot;:1.17},{&quot;2026-09-03&quot;:1.1},{&quot;2026-09-04&quot;:1.12},{&quot;2026-09-05&quot;:1.09},{&quot;2026-09-06&quot;:1.13},{&quot;2026-09-07&quot;:1.25},{&quot;2026-09-08&quot;:1.31},{&quot;2026-09-09&quot;:1.35},{&quot;2026-09-10&quot;:1.27},{&quot;2026-09-11&quot;:1.2}]}"
        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="108360"
  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-tmc ss-rare 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">
            Blasphemous Act
        </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">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.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="Blasphemous Act" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/c/dc6c4337-7d3e-4700-9473-26185c109166.jpg?1783904159" />

        <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">
            Blasphemous Act
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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-8'></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="Blasphemous Act" src="https://cards.scryfall.io/large/front/d/c/dc6c4337-7d3e-4700-9473-26185c109166.jpg?1783904159" />
    </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.07
              </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">
                $5.87
              </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;2026-08-19&quot;:5.99},{&quot;2026-08-20&quot;:5.99},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:5.99},{&quot;2026-08-23&quot;:5.99},{&quot;2026-08-24&quot;:5.96},{&quot;2026-08-25&quot;:5.96},{&quot;2026-08-26&quot;:5.96},{&quot;2026-08-27&quot;:5.91},{&quot;2026-08-28&quot;:5.91},{&quot;2026-08-29&quot;:5.91},{&quot;2026-08-30&quot;:5.86},{&quot;2026-08-31&quot;:5.86},{&quot;2026-09-01&quot;:5.86},{&quot;2026-09-02&quot;:5.86},{&quot;2026-09-03&quot;:5.86},{&quot;2026-09-04&quot;:5.86},{&quot;2026-09-05&quot;:5.86},{&quot;2026-09-06&quot;:5.86},{&quot;2026-09-07&quot;:5.86},{&quot;2026-09-08&quot;:5.86},{&quot;2026-09-09&quot;:5.86},{&quot;2026-09-10&quot;:5.87},{&quot;2026-09-11&quot;:5.87}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.92},{&quot;2026-06-12&quot;:0.9},{&quot;2026-06-13&quot;:0.9},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.88},{&quot;2026-06-16&quot;:0.87},{&quot;2026-06-17&quot;:0.88},{&quot;2026-06-18&quot;:0.92},{&quot;2026-06-19&quot;:0.92},{&quot;2026-06-20&quot;:0.88},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.86},{&quot;2026-06-23&quot;:0.87},{&quot;2026-06-24&quot;:0.88},{&quot;2026-06-25&quot;:0.89},{&quot;2026-06-26&quot;:0.88},{&quot;2026-06-27&quot;:0.87},{&quot;2026-06-28&quot;:0.89},{&quot;2026-06-29&quot;:0.9},{&quot;2026-06-30&quot;:0.88},{&quot;2026-07-01&quot;:0.89},{&quot;2026-07-02&quot;:0.92},{&quot;2026-07-03&quot;:0.94},{&quot;2026-07-04&quot;:0.9},{&quot;2026-07-05&quot;:0.9},{&quot;2026-07-06&quot;:0.89},{&quot;2026-07-07&quot;:0.86},{&quot;2026-07-08&quot;:0.89},{&quot;2026-07-09&quot;:0.86},{&quot;2026-07-10&quot;:0.87},{&quot;2026-07-11&quot;:0.88},{&quot;2026-07-12&quot;:0.84},{&quot;2026-07-13&quot;:0.82},{&quot;2026-07-14&quot;:0.82},{&quot;2026-07-15&quot;:0.84},{&quot;2026-07-16&quot;:0.9},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.01},{&quot;2026-07-20&quot;:0.97},{&quot;2026-07-21&quot;:0.85},{&quot;2026-07-23&quot;:0.83},{&quot;2026-07-25&quot;:0.87},{&quot;2026-07-26&quot;:0.86},{&quot;2026-07-27&quot;:0.89},{&quot;2026-07-28&quot;:0.9},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.89},{&quot;2026-07-31&quot;:0.91},{&quot;2026-08-01&quot;:0.89},{&quot;2026-08-02&quot;:0.85},{&quot;2026-08-03&quot;:0.93},{&quot;2026-08-04&quot;:0.92},{&quot;2026-08-05&quot;:0.91},{&quot;2026-08-07&quot;:0.95},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.05},{&quot;2026-08-11&quot;:1.01},{&quot;2026-08-12&quot;:1.01},{&quot;2026-08-13&quot;:0.96},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.92},{&quot;2026-08-16&quot;:0.93},{&quot;2026-08-17&quot;:0.94},{&quot;2026-08-18&quot;:0.97},{&quot;2026-08-19&quot;:0.97},{&quot;2026-08-20&quot;:0.97},{&quot;2026-08-21&quot;:0.91},{&quot;2026-08-22&quot;:0.92},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.91},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:0.94},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.04},{&quot;2026-08-31&quot;:1.09},{&quot;2026-09-01&quot;:1.09},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.08},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.02},{&quot;2026-09-06&quot;:0.95},{&quot;2026-09-07&quot;:1.04},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.1},{&quot;2026-09-10&quot;:1.09},{&quot;2026-09-11&quot;:1.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="98227"
  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-tmc ss-mythic 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">
            Raphael, the Muscle
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja Turtle
      </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">
              ↑
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Raphael, the Muscle" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/c/bccdd54c-e64b-44d2-87b3-e80029672529.jpg?1783904174" />

        <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">
            Raphael, the Muscle
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja Turtle</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="Raphael, the Muscle" src="https://cards.scryfall.io/large/front/b/c/bccdd54c-e64b-44d2-87b3-e80029672529.jpg?1783904174" />
    </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">
                $1.56
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </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">
                $0.84
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  14%
                </span>
            </div>
          </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;:0.58},{&quot;2026-06-12&quot;:0.61},{&quot;2026-06-13&quot;:0.6},{&quot;2026-06-14&quot;:0.64},{&quot;2026-06-15&quot;:0.67},{&quot;2026-06-16&quot;:0.64},{&quot;2026-06-17&quot;:0.59},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.6},{&quot;2026-06-20&quot;:0.61},{&quot;2026-06-21&quot;:0.62},{&quot;2026-06-22&quot;:0.57},{&quot;2026-06-23&quot;:0.59},{&quot;2026-06-24&quot;:0.64},{&quot;2026-06-25&quot;:0.7},{&quot;2026-06-26&quot;:0.71},{&quot;2026-06-27&quot;:0.7},{&quot;2026-06-28&quot;:0.69},{&quot;2026-06-29&quot;:0.67},{&quot;2026-06-30&quot;:0.65},{&quot;2026-07-01&quot;:0.67},{&quot;2026-07-02&quot;:0.68},{&quot;2026-07-03&quot;:0.67},{&quot;2026-07-04&quot;:0.64},{&quot;2026-07-05&quot;:0.61},{&quot;2026-07-06&quot;:0.62},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.67},{&quot;2026-07-12&quot;:0.65},{&quot;2026-07-13&quot;:0.64},{&quot;2026-07-14&quot;:0.69},{&quot;2026-07-15&quot;:0.63},{&quot;2026-07-16&quot;:0.62},{&quot;2026-07-17&quot;:0.62},{&quot;2026-07-18&quot;:0.85},{&quot;2026-07-19&quot;:0.86},{&quot;2026-07-20&quot;:0.89},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-23&quot;:0.78},{&quot;2026-07-25&quot;:0.71},{&quot;2026-07-26&quot;:0.71},{&quot;2026-07-27&quot;:0.66},{&quot;2026-07-28&quot;:0.66},{&quot;2026-07-29&quot;:0.67},{&quot;2026-07-30&quot;:0.66},{&quot;2026-07-31&quot;:0.95},{&quot;2026-08-01&quot;:0.96},{&quot;2026-08-02&quot;:0.96},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:0.71},{&quot;2026-08-05&quot;:0.75},{&quot;2026-08-07&quot;:0.74},{&quot;2026-08-08&quot;:0.78},{&quot;2026-08-09&quot;:0.78},{&quot;2026-08-10&quot;:0.78},{&quot;2026-08-11&quot;:0.77},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.7},{&quot;2026-08-14&quot;:0.73},{&quot;2026-08-15&quot;:0.72},{&quot;2026-08-16&quot;:0.76},{&quot;2026-08-17&quot;:0.87},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.85},{&quot;2026-08-20&quot;:0.85},{&quot;2026-08-21&quot;:0.84},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.67},{&quot;2026-08-24&quot;:0.7},{&quot;2026-08-25&quot;:0.7},{&quot;2026-08-26&quot;:0.61},{&quot;2026-08-27&quot;:0.68},{&quot;2026-08-28&quot;:0.65},{&quot;2026-08-29&quot;:0.65},{&quot;2026-08-30&quot;:0.67},{&quot;2026-08-31&quot;:0.67},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.64},{&quot;2026-09-03&quot;:0.67},{&quot;2026-09-04&quot;:0.69},{&quot;2026-09-05&quot;:0.74},{&quot;2026-09-06&quot;:0.75},{&quot;2026-09-07&quot;:0.74},{&quot;2026-09-08&quot;:0.72},{&quot;2026-09-09&quot;:0.75},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.84}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.67},{&quot;2026-06-12&quot;:1.67},{&quot;2026-06-13&quot;:1.61},{&quot;2026-06-14&quot;:1.62},{&quot;2026-06-15&quot;:1.54},{&quot;2026-06-16&quot;:1.52},{&quot;2026-06-17&quot;:1.5},{&quot;2026-06-18&quot;:1.44},{&quot;2026-06-19&quot;:1.44},{&quot;2026-06-20&quot;:1.44},{&quot;2026-06-21&quot;:1.53},{&quot;2026-06-22&quot;:1.53},{&quot;2026-06-23&quot;:1.44},{&quot;2026-06-24&quot;:1.37},{&quot;2026-06-25&quot;:1.38},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.44},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.5},{&quot;2026-06-30&quot;:1.5},{&quot;2026-07-01&quot;:1.54},{&quot;2026-07-02&quot;:1.66},{&quot;2026-07-03&quot;:1.64},{&quot;2026-07-04&quot;:1.61},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.64},{&quot;2026-07-07&quot;:1.64},{&quot;2026-07-08&quot;:1.67},{&quot;2026-07-09&quot;:1.61},{&quot;2026-07-10&quot;:1.65},{&quot;2026-07-11&quot;:1.67},{&quot;2026-07-12&quot;:1.67},{&quot;2026-07-13&quot;:1.7},{&quot;2026-07-14&quot;:1.72},{&quot;2026-07-15&quot;:1.67},{&quot;2026-07-16&quot;:1.67},{&quot;2026-07-17&quot;:1.7},{&quot;2026-07-18&quot;:1.7},{&quot;2026-07-19&quot;:1.69},{&quot;2026-07-20&quot;:1.71},{&quot;2026-07-21&quot;:1.71},{&quot;2026-07-23&quot;:1.67},{&quot;2026-07-25&quot;:1.6},{&quot;2026-07-26&quot;:1.6},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-28&quot;:1.6},{&quot;2026-07-29&quot;:1.6},{&quot;2026-07-30&quot;:1.6},{&quot;2026-07-31&quot;:1.6},{&quot;2026-08-01&quot;:1.66},{&quot;2026-08-02&quot;:1.7},{&quot;2026-08-03&quot;:1.7},{&quot;2026-08-04&quot;:1.69},{&quot;2026-08-05&quot;:1.67},{&quot;2026-08-07&quot;:1.71},{&quot;2026-08-08&quot;:1.73},{&quot;2026-08-09&quot;:1.77},{&quot;2026-08-10&quot;:1.75},{&quot;2026-08-11&quot;:1.75},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.75},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.75},{&quot;2026-08-16&quot;:1.76},{&quot;2026-08-17&quot;:1.74},{&quot;2026-08-18&quot;:1.74},{&quot;2026-08-19&quot;:1.6},{&quot;2026-08-20&quot;:1.6},{&quot;2026-08-21&quot;:1.64},{&quot;2026-08-22&quot;:1.57},{&quot;2026-08-23&quot;:1.57},{&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.59},{&quot;2026-08-28&quot;:1.55},{&quot;2026-08-29&quot;:1.55},{&quot;2026-08-30&quot;:1.6},{&quot;2026-08-31&quot;:1.6},{&quot;2026-09-01&quot;:1.6},{&quot;2026-09-02&quot;:1.6},{&quot;2026-09-03&quot;:1.59},{&quot;2026-09-04&quot;:1.59},{&quot;2026-09-05&quot;:1.55},{&quot;2026-09-06&quot;:1.48},{&quot;2026-09-07&quot;:1.48},{&quot;2026-09-08&quot;:1.48},{&quot;2026-09-09&quot;:1.55},{&quot;2026-09-10&quot;:1.56},{&quot;2026-09-11&quot;:1.56}]}"
        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="98221"
  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-tmc ss-mythic 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">
            Leonardo, the Balance
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja Turtle
      </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">
              ↑
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.82
          </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="Leonardo, the Balance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/2/72e637db-7112-406f-809b-0eda248488b5.jpg?1783904176" />

        <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">
            Leonardo, the Balance
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja Turtle</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-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="Leonardo, the Balance" src="https://cards.scryfall.io/large/front/7/2/72e637db-7112-406f-809b-0eda248488b5.jpg?1783904176" />
    </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">
                $1.63
              </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">
                $0.82
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  14%
                </span>
            </div>
          </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;:0.75},{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.75},{&quot;2026-06-15&quot;:0.76},{&quot;2026-06-16&quot;:0.79},{&quot;2026-06-17&quot;:0.79},{&quot;2026-06-18&quot;:0.77},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.79},{&quot;2026-06-21&quot;:0.81},{&quot;2026-06-22&quot;:0.81},{&quot;2026-06-23&quot;:0.81},{&quot;2026-06-24&quot;:0.78},{&quot;2026-06-25&quot;:0.77},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.74},{&quot;2026-06-28&quot;:0.74},{&quot;2026-06-29&quot;:0.77},{&quot;2026-06-30&quot;:0.76},{&quot;2026-07-01&quot;:0.77},{&quot;2026-07-02&quot;:0.78},{&quot;2026-07-03&quot;:0.76},{&quot;2026-07-04&quot;:0.77},{&quot;2026-07-05&quot;:0.77},{&quot;2026-07-06&quot;:0.77},{&quot;2026-07-07&quot;:0.77},{&quot;2026-07-08&quot;:0.77},{&quot;2026-07-09&quot;:0.77},{&quot;2026-07-10&quot;:0.77},{&quot;2026-07-11&quot;:0.76},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.71},{&quot;2026-07-14&quot;:0.78},{&quot;2026-07-15&quot;:0.71},{&quot;2026-07-16&quot;:0.71},{&quot;2026-07-17&quot;:0.71},{&quot;2026-07-18&quot;:0.73},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.74},{&quot;2026-07-21&quot;:0.74},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-24&quot;:0.75},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.83},{&quot;2026-07-27&quot;:0.75},{&quot;2026-07-28&quot;:0.75},{&quot;2026-07-29&quot;:0.77},{&quot;2026-07-30&quot;:0.78},{&quot;2026-07-31&quot;:0.79},{&quot;2026-08-01&quot;:0.78},{&quot;2026-08-02&quot;:0.78},{&quot;2026-08-03&quot;:0.78},{&quot;2026-08-04&quot;:0.78},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.78},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.82},{&quot;2026-08-11&quot;:0.8},{&quot;2026-08-12&quot;:0.8},{&quot;2026-08-13&quot;:0.77},{&quot;2026-08-14&quot;:0.77},{&quot;2026-08-15&quot;:0.78},{&quot;2026-08-16&quot;:0.8},{&quot;2026-08-17&quot;:0.8},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:0.91},{&quot;2026-08-22&quot;:0.9},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.79},{&quot;2026-08-26&quot;:0.77},{&quot;2026-08-27&quot;:0.75},{&quot;2026-08-28&quot;:0.75},{&quot;2026-08-29&quot;:0.75},{&quot;2026-08-30&quot;:0.77},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.75},{&quot;2026-09-02&quot;:0.74},{&quot;2026-09-03&quot;:0.72},{&quot;2026-09-04&quot;:0.74},{&quot;2026-09-05&quot;:0.72},{&quot;2026-09-06&quot;:0.73},{&quot;2026-09-07&quot;:0.75},{&quot;2026-09-08&quot;:0.81},{&quot;2026-09-09&quot;:0.8},{&quot;2026-09-10&quot;:0.82},{&quot;2026-09-11&quot;:0.82}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.87},{&quot;2026-06-13&quot;:2.87},{&quot;2026-06-14&quot;:2.86},{&quot;2026-06-15&quot;:2.86},{&quot;2026-06-16&quot;:2.86},{&quot;2026-06-17&quot;:2.86},{&quot;2026-06-18&quot;:2.86},{&quot;2026-06-19&quot;:2.86},{&quot;2026-06-20&quot;:2.91},{&quot;2026-06-21&quot;:2.91},{&quot;2026-06-22&quot;:2.91},{&quot;2026-06-23&quot;:2.91},{&quot;2026-06-24&quot;:2.84},{&quot;2026-06-25&quot;:2.72},{&quot;2026-06-26&quot;:2.71},{&quot;2026-06-27&quot;:2.76},{&quot;2026-06-28&quot;:2.76},{&quot;2026-06-29&quot;:2.76},{&quot;2026-06-30&quot;:2.76},{&quot;2026-07-01&quot;:2.74},{&quot;2026-07-02&quot;:2.74},{&quot;2026-07-03&quot;:2.74},{&quot;2026-07-04&quot;:2.62},{&quot;2026-07-05&quot;:2.62},{&quot;2026-07-06&quot;:2.62},{&quot;2026-07-07&quot;:2.6},{&quot;2026-07-08&quot;:2.56},{&quot;2026-07-09&quot;:2.5},{&quot;2026-07-10&quot;:2.6},{&quot;2026-07-11&quot;:2.48},{&quot;2026-07-12&quot;:2.48},{&quot;2026-07-13&quot;:2.51},{&quot;2026-07-14&quot;:2.54},{&quot;2026-07-15&quot;:2.54},{&quot;2026-07-16&quot;:2.54},{&quot;2026-07-17&quot;:2.54},{&quot;2026-07-18&quot;:2.54},{&quot;2026-07-19&quot;:2.47},{&quot;2026-07-20&quot;:2.5},{&quot;2026-07-21&quot;:2.5},{&quot;2026-07-23&quot;:2.49},{&quot;2026-07-24&quot;:2.57},{&quot;2026-07-25&quot;:2.47},{&quot;2026-07-26&quot;:2.41},{&quot;2026-07-27&quot;:2.41},{&quot;2026-07-28&quot;:2.43},{&quot;2026-07-29&quot;:2.35},{&quot;2026-07-30&quot;:2.35},{&quot;2026-07-31&quot;:2.37},{&quot;2026-08-01&quot;:2.27},{&quot;2026-08-02&quot;:2.27},{&quot;2026-08-03&quot;:2.27},{&quot;2026-08-04&quot;:2.19},{&quot;2026-08-05&quot;:2.2},{&quot;2026-08-07&quot;:2.18},{&quot;2026-08-08&quot;:2.21},{&quot;2026-08-09&quot;:2.19},{&quot;2026-08-10&quot;:2.19},{&quot;2026-08-11&quot;:2.13},{&quot;2026-08-12&quot;:2.13},{&quot;2026-08-13&quot;:2.16},{&quot;2026-08-14&quot;:2.16},{&quot;2026-08-15&quot;:2.16},{&quot;2026-08-16&quot;:2.06},{&quot;2026-08-17&quot;:2.1},{&quot;2026-08-18&quot;:2.1},{&quot;2026-08-19&quot;:2.03},{&quot;2026-08-20&quot;:2.03},{&quot;2026-08-21&quot;:1.88},{&quot;2026-08-22&quot;:1.78},{&quot;2026-08-23&quot;:1.73},{&quot;2026-08-24&quot;:1.64},{&quot;2026-08-25&quot;:1.64},{&quot;2026-08-26&quot;:1.64},{&quot;2026-08-27&quot;:1.64},{&quot;2026-08-28&quot;:1.68},{&quot;2026-08-29&quot;:1.68},{&quot;2026-08-30&quot;:1.65},{&quot;2026-08-31&quot;:1.64},{&quot;2026-09-01&quot;:1.6},{&quot;2026-09-02&quot;:1.6},{&quot;2026-09-03&quot;:1.6},{&quot;2026-09-04&quot;:1.6},{&quot;2026-09-05&quot;:1.6},{&quot;2026-09-06&quot;:1.56},{&quot;2026-09-07&quot;:1.58},{&quot;2026-09-08&quot;:1.58},{&quot;2026-09-09&quot;:1.63},{&quot;2026-09-10&quot;:1.63},{&quot;2026-09-11&quot;:1.63}]}"
        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="108377"
  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-tmc ss-rare 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">
            Dragonskull Summit
        </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">
              ↑
              21%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.81
          </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="Dragonskull Summit" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/9/897976cb-a242-493e-b215-843bcdb6b44d.jpg?1783904153" />

        <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">
            Dragonskull Summit
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Dragonskull Summit" src="https://cards.scryfall.io/large/front/8/9/897976cb-a242-493e-b215-843bcdb6b44d.jpg?1783904153" />
    </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">
                $0.81
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  21%
                </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">
                $3.66
              </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;2026-08-19&quot;:3.63},{&quot;2026-08-20&quot;:3.63},{&quot;2026-08-21&quot;:3.63},{&quot;2026-08-22&quot;:3.63},{&quot;2026-08-23&quot;:3.63},{&quot;2026-08-24&quot;:3.63},{&quot;2026-08-25&quot;:3.63},{&quot;2026-08-26&quot;:3.63},{&quot;2026-08-27&quot;:3.63},{&quot;2026-08-28&quot;:3.63},{&quot;2026-08-29&quot;:3.63},{&quot;2026-08-30&quot;:3.63},{&quot;2026-08-31&quot;:3.63},{&quot;2026-09-01&quot;:3.63},{&quot;2026-09-02&quot;:3.63},{&quot;2026-09-03&quot;:3.66},{&quot;2026-09-04&quot;:3.66},{&quot;2026-09-05&quot;:3.66},{&quot;2026-09-06&quot;:3.66},{&quot;2026-09-07&quot;:3.66},{&quot;2026-09-08&quot;:3.66},{&quot;2026-09-09&quot;:3.66},{&quot;2026-09-10&quot;:3.66},{&quot;2026-09-11&quot;:3.66}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.57},{&quot;2026-06-15&quot;:0.53},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.58},{&quot;2026-06-18&quot;:0.58},{&quot;2026-06-19&quot;:0.57},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.54},{&quot;2026-06-22&quot;:0.54},{&quot;2026-06-23&quot;:0.54},{&quot;2026-06-24&quot;:0.54},{&quot;2026-06-25&quot;:0.52},{&quot;2026-06-26&quot;:0.57},{&quot;2026-06-27&quot;:0.55},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.57},{&quot;2026-06-30&quot;:0.58},{&quot;2026-07-01&quot;:0.58},{&quot;2026-07-02&quot;:0.58},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.57},{&quot;2026-07-05&quot;:0.56},{&quot;2026-07-06&quot;:0.56},{&quot;2026-07-07&quot;:0.56},{&quot;2026-07-08&quot;:0.57},{&quot;2026-07-09&quot;:0.58},{&quot;2026-07-10&quot;:0.58},{&quot;2026-07-11&quot;:0.57},{&quot;2026-07-12&quot;:0.57},{&quot;2026-07-13&quot;:0.56},{&quot;2026-07-14&quot;:0.57},{&quot;2026-07-15&quot;:0.56},{&quot;2026-07-16&quot;:0.56},{&quot;2026-07-17&quot;:0.57},{&quot;2026-07-18&quot;:0.56},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.61},{&quot;2026-07-22&quot;:0.63},{&quot;2026-07-23&quot;:0.62},{&quot;2026-07-24&quot;:0.62},{&quot;2026-07-25&quot;:0.62},{&quot;2026-07-26&quot;:0.62},{&quot;2026-07-27&quot;:0.62},{&quot;2026-07-28&quot;:0.61},{&quot;2026-07-29&quot;:0.61},{&quot;2026-07-30&quot;:0.61},{&quot;2026-07-31&quot;:0.61},{&quot;2026-08-01&quot;:0.61},{&quot;2026-08-02&quot;:0.63},{&quot;2026-08-03&quot;:0.7},{&quot;2026-08-04&quot;:0.7},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.65},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.6},{&quot;2026-08-10&quot;:0.61},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.55},{&quot;2026-08-13&quot;:0.56},{&quot;2026-08-14&quot;:0.56},{&quot;2026-08-15&quot;:0.56},{&quot;2026-08-16&quot;:0.56},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.59},{&quot;2026-08-19&quot;:0.58},{&quot;2026-08-20&quot;:0.56},{&quot;2026-08-21&quot;:0.53},{&quot;2026-08-22&quot;:0.57},{&quot;2026-08-23&quot;:0.61},{&quot;2026-08-24&quot;:0.63},{&quot;2026-08-25&quot;:0.6},{&quot;2026-08-26&quot;:0.61},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:1.06},{&quot;2026-08-29&quot;:1.06},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:0.97},{&quot;2026-09-01&quot;:0.97},{&quot;2026-09-02&quot;:0.96},{&quot;2026-09-03&quot;:0.59},{&quot;2026-09-04&quot;:0.58},{&quot;2026-09-05&quot;:0.67},{&quot;2026-09-06&quot;:0.62},{&quot;2026-09-07&quot;:0.66},{&quot;2026-09-08&quot;:0.81},{&quot;2026-09-09&quot;:0.85},{&quot;2026-09-10&quot;:0.84},{&quot;2026-09-11&quot;:0.81}]}"
        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="108370"
  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-tmc 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">
            Arcane Signet
        </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">
              ↑
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.77
          </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="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/049ca0ff-0ca4-44f7-b144-731cf453afa9.jpg?1783904156" />

        <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">
            Arcane Signet
        </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="Arcane Signet" src="https://cards.scryfall.io/large/front/0/4/049ca0ff-0ca4-44f7-b144-731cf453afa9.jpg?1783904156" />
    </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">
                $0.77
              </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">
                $1.85
              </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.40</span>
              <span class="text-xs text-grey-text">Credit: $0.52</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-14&quot;:2.98},{&quot;2026-06-15&quot;:2.98},{&quot;2026-06-16&quot;:2.98},{&quot;2026-06-17&quot;:2.98},{&quot;2026-06-18&quot;:2.98},{&quot;2026-06-19&quot;:2.98},{&quot;2026-06-20&quot;:2.98},{&quot;2026-06-21&quot;:2.98},{&quot;2026-06-22&quot;:2.98},{&quot;2026-06-23&quot;:2.98},{&quot;2026-06-24&quot;:2.98},{&quot;2026-06-25&quot;:2.98},{&quot;2026-06-26&quot;:2.98},{&quot;2026-06-27&quot;:2.98},{&quot;2026-06-28&quot;:2.98},{&quot;2026-06-29&quot;:2.98},{&quot;2026-06-30&quot;:2.98},{&quot;2026-07-01&quot;:2.98},{&quot;2026-07-02&quot;:2.98},{&quot;2026-07-03&quot;:2.98},{&quot;2026-07-04&quot;:2.98},{&quot;2026-07-05&quot;:2.98},{&quot;2026-07-06&quot;:2.98},{&quot;2026-07-07&quot;:2.98},{&quot;2026-07-08&quot;:2.98},{&quot;2026-07-09&quot;:2.98},{&quot;2026-07-10&quot;:2.98},{&quot;2026-07-11&quot;:2.98},{&quot;2026-07-12&quot;:2.98},{&quot;2026-07-13&quot;:2.98},{&quot;2026-07-14&quot;:2.98},{&quot;2026-07-15&quot;:2.98},{&quot;2026-07-16&quot;:2.98},{&quot;2026-07-17&quot;:2.98},{&quot;2026-07-18&quot;:2.98},{&quot;2026-07-19&quot;:2.98},{&quot;2026-07-20&quot;:2.98},{&quot;2026-07-21&quot;:2.98},{&quot;2026-07-22&quot;:2.98},{&quot;2026-07-23&quot;:2.98},{&quot;2026-07-24&quot;:2.98},{&quot;2026-07-25&quot;:2.98},{&quot;2026-07-26&quot;:2.98},{&quot;2026-07-27&quot;:2.98},{&quot;2026-07-28&quot;:2.98},{&quot;2026-07-29&quot;:2.98},{&quot;2026-07-30&quot;:2.98},{&quot;2026-07-31&quot;:2.98},{&quot;2026-08-01&quot;:2.98},{&quot;2026-08-02&quot;:2.98},{&quot;2026-08-03&quot;:2.98},{&quot;2026-08-04&quot;:2.98},{&quot;2026-08-05&quot;:2.98},{&quot;2026-08-06&quot;:2.98},{&quot;2026-08-07&quot;:2.98},{&quot;2026-08-08&quot;:2.98},{&quot;2026-08-09&quot;:2.98},{&quot;2026-08-10&quot;:2.98},{&quot;2026-08-11&quot;:2.98},{&quot;2026-08-12&quot;:2.98},{&quot;2026-08-13&quot;:2.98},{&quot;2026-08-14&quot;:2.98},{&quot;2026-08-15&quot;:2.98},{&quot;2026-08-16&quot;:2.98},{&quot;2026-08-17&quot;:2.98},{&quot;2026-08-18&quot;:2.98},{&quot;2026-08-19&quot;:1.91},{&quot;2026-08-20&quot;:1.96},{&quot;2026-08-21&quot;:1.96},{&quot;2026-08-22&quot;:1.96},{&quot;2026-08-23&quot;:1.86},{&quot;2026-08-24&quot;:1.86},{&quot;2026-08-25&quot;:1.87},{&quot;2026-08-26&quot;:1.89},{&quot;2026-08-27&quot;:1.89},{&quot;2026-08-28&quot;:1.89},{&quot;2026-08-29&quot;:1.89},{&quot;2026-08-30&quot;:1.92},{&quot;2026-08-31&quot;:1.89},{&quot;2026-09-01&quot;:1.89},{&quot;2026-09-02&quot;:1.89},{&quot;2026-09-03&quot;:1.89},{&quot;2026-09-04&quot;:1.89},{&quot;2026-09-05&quot;:1.91},{&quot;2026-09-06&quot;:1.91},{&quot;2026-09-07&quot;:1.98},{&quot;2026-09-08&quot;:1.98},{&quot;2026-09-09&quot;:1.95},{&quot;2026-09-10&quot;:1.95},{&quot;2026-09-11&quot;:1.85}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:0.45},{&quot;2026-03-03&quot;:0.45},{&quot;2026-03-04&quot;:0.42},{&quot;2026-07-31&quot;:0.69},{&quot;2026-08-01&quot;:0.7},{&quot;2026-08-02&quot;:0.64},{&quot;2026-08-03&quot;:0.62},{&quot;2026-08-04&quot;:0.61},{&quot;2026-08-05&quot;:0.61},{&quot;2026-08-07&quot;:0.71},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.72},{&quot;2026-08-10&quot;:0.73},{&quot;2026-08-11&quot;:0.7},{&quot;2026-08-12&quot;:0.71},{&quot;2026-08-13&quot;:0.71},{&quot;2026-08-14&quot;:0.69},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.72},{&quot;2026-08-17&quot;:0.71},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.8},{&quot;2026-08-20&quot;:0.8},{&quot;2026-08-21&quot;:0.71},{&quot;2026-08-22&quot;:0.66},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.65},{&quot;2026-08-25&quot;:0.67},{&quot;2026-08-26&quot;:0.66},{&quot;2026-08-27&quot;:0.64},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.76},{&quot;2026-08-31&quot;:0.77},{&quot;2026-09-01&quot;:0.79},{&quot;2026-09-02&quot;:0.78},{&quot;2026-09-03&quot;:0.77},{&quot;2026-09-04&quot;:0.73},{&quot;2026-09-05&quot;:0.74},{&quot;2026-09-06&quot;:0.69},{&quot;2026-09-07&quot;:0.67},{&quot;2026-09-08&quot;:0.73},{&quot;2026-09-09&quot;:0.74},{&quot;2026-09-10&quot;:0.76},{&quot;2026-09-11&quot;:0.77}]}"
        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="98223"
  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-tmc ss-mythic 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">
            Donatello, the Brains
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja Turtle
      </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">
              ↑
              15%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.71
          </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="Donatello, the Brains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/7/774716f4-d211-497a-be91-69cd700edbf2.jpg?1783904175" />

        <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">
            Donatello, the Brains
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja Turtle</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="Donatello, the Brains" src="https://cards.scryfall.io/large/front/7/7/774716f4-d211-497a-be91-69cd700edbf2.jpg?1783904175" />
    </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">
                $1.24
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $0.71
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  15%
                </span>
            </div>
          </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;:0.68},{&quot;2026-06-13&quot;:0.67},{&quot;2026-06-14&quot;:0.66},{&quot;2026-06-15&quot;:0.72},{&quot;2026-06-16&quot;:0.71},{&quot;2026-06-17&quot;:0.7},{&quot;2026-06-18&quot;:0.75},{&quot;2026-06-19&quot;:0.73},{&quot;2026-06-20&quot;:0.72},{&quot;2026-06-21&quot;:0.7},{&quot;2026-06-22&quot;:0.66},{&quot;2026-06-23&quot;:0.65},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.64},{&quot;2026-06-26&quot;:0.63},{&quot;2026-06-27&quot;:0.62},{&quot;2026-06-28&quot;:0.61},{&quot;2026-06-29&quot;:0.61},{&quot;2026-06-30&quot;:0.65},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.67},{&quot;2026-07-03&quot;:0.65},{&quot;2026-07-04&quot;:0.65},{&quot;2026-07-05&quot;:0.66},{&quot;2026-07-06&quot;:0.66},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.66},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.64},{&quot;2026-07-11&quot;:0.63},{&quot;2026-07-12&quot;:0.61},{&quot;2026-07-13&quot;:0.59},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.59},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.56},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.54},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-23&quot;:0.56},{&quot;2026-07-24&quot;:0.56},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.55},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.56},{&quot;2026-07-29&quot;:0.56},{&quot;2026-07-30&quot;:0.57},{&quot;2026-07-31&quot;:0.58},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.56},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.55},{&quot;2026-08-07&quot;:0.57},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.6},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.59},{&quot;2026-08-13&quot;:0.57},{&quot;2026-08-14&quot;:0.62},{&quot;2026-08-15&quot;:0.61},{&quot;2026-08-16&quot;:0.62},{&quot;2026-08-17&quot;:0.95},{&quot;2026-08-18&quot;:0.93},{&quot;2026-08-19&quot;:0.93},{&quot;2026-08-20&quot;:0.93},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.57},{&quot;2026-08-23&quot;:0.55},{&quot;2026-08-24&quot;:0.54},{&quot;2026-08-25&quot;:0.53},{&quot;2026-08-26&quot;:0.54},{&quot;2026-08-27&quot;:0.56},{&quot;2026-08-28&quot;:0.58},{&quot;2026-08-29&quot;:0.58},{&quot;2026-08-30&quot;:0.6},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.61},{&quot;2026-09-02&quot;:0.61},{&quot;2026-09-03&quot;:0.62},{&quot;2026-09-04&quot;:0.62},{&quot;2026-09-05&quot;:0.62},{&quot;2026-09-06&quot;:0.6},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.61},{&quot;2026-09-09&quot;:0.64},{&quot;2026-09-10&quot;:0.69},{&quot;2026-09-11&quot;:0.71}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.77},{&quot;2026-06-13&quot;:1.77},{&quot;2026-06-14&quot;:1.77},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.77},{&quot;2026-06-17&quot;:1.77},{&quot;2026-06-18&quot;:1.77},{&quot;2026-06-19&quot;:1.77},{&quot;2026-06-20&quot;:1.81},{&quot;2026-06-21&quot;:1.8},{&quot;2026-06-22&quot;:1.83},{&quot;2026-06-23&quot;:1.83},{&quot;2026-06-24&quot;:1.8},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.8},{&quot;2026-06-28&quot;:1.77},{&quot;2026-06-29&quot;:1.75},{&quot;2026-06-30&quot;:1.7},{&quot;2026-07-01&quot;:1.64},{&quot;2026-07-02&quot;:1.64},{&quot;2026-07-03&quot;:1.69},{&quot;2026-07-04&quot;:1.71},{&quot;2026-07-05&quot;:1.71},{&quot;2026-07-06&quot;:1.71},{&quot;2026-07-07&quot;:1.71},{&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.66},{&quot;2026-07-12&quot;:1.66},{&quot;2026-07-13&quot;:1.6},{&quot;2026-07-14&quot;:1.63},{&quot;2026-07-15&quot;:1.59},{&quot;2026-07-16&quot;:1.59},{&quot;2026-07-17&quot;:1.57},{&quot;2026-07-18&quot;:1.57},{&quot;2026-07-19&quot;:1.56},{&quot;2026-07-20&quot;:1.56},{&quot;2026-07-21&quot;:1.56},{&quot;2026-07-23&quot;:1.55},{&quot;2026-07-24&quot;:1.58},{&quot;2026-07-25&quot;:1.6},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.62},{&quot;2026-07-28&quot;:1.62},{&quot;2026-07-29&quot;:1.58},{&quot;2026-07-30&quot;:1.58},{&quot;2026-07-31&quot;:1.61},{&quot;2026-08-01&quot;:1.61},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.61},{&quot;2026-08-04&quot;:1.64},{&quot;2026-08-05&quot;:1.64},{&quot;2026-08-07&quot;:1.64},{&quot;2026-08-08&quot;:1.64},{&quot;2026-08-09&quot;:1.63},{&quot;2026-08-10&quot;:1.63},{&quot;2026-08-11&quot;:1.63},{&quot;2026-08-12&quot;:1.65},{&quot;2026-08-13&quot;:1.62},{&quot;2026-08-14&quot;:1.62},{&quot;2026-08-15&quot;:1.62},{&quot;2026-08-16&quot;:1.55},{&quot;2026-08-17&quot;:1.54},{&quot;2026-08-18&quot;:1.58},{&quot;2026-08-19&quot;:1.57},{&quot;2026-08-20&quot;:1.57},{&quot;2026-08-21&quot;:1.42},{&quot;2026-08-22&quot;:1.33},{&quot;2026-08-23&quot;:1.33},{&quot;2026-08-24&quot;:1.29},{&quot;2026-08-25&quot;:1.29},{&quot;2026-08-26&quot;:1.31},{&quot;2026-08-27&quot;:1.27},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.25},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.27},{&quot;2026-09-03&quot;:1.28},{&quot;2026-09-04&quot;:1.28},{&quot;2026-09-05&quot;:1.28},{&quot;2026-09-06&quot;:1.28},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.28},{&quot;2026-09-09&quot;:1.28},{&quot;2026-09-10&quot;:1.24},{&quot;2026-09-11&quot;:1.24}]}"
        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="98225"
  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-tmc ss-mythic 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">
            Splinter, the Mentor
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Mutant Ninja 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="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">
            $0.56
          </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="Splinter, the Mentor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/6/06c595fa-55ff-46f3-afaf-17edae465864.jpg?1783904174" />

        <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">
            Splinter, the Mentor
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Mutant Ninja 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>
          </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="Splinter, the Mentor" src="https://cards.scryfall.io/large/front/0/6/06c595fa-55ff-46f3-afaf-17edae465864.jpg?1783904174" />
    </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">
                $1.98
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  1%
                </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">
                $0.56
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </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;:0.61},{&quot;2026-06-10&quot;:0.66},{&quot;2026-06-11&quot;:0.65},{&quot;2026-06-12&quot;:0.63},{&quot;2026-06-13&quot;:0.63},{&quot;2026-06-14&quot;:0.64},{&quot;2026-06-15&quot;:0.63},{&quot;2026-06-16&quot;:0.6},{&quot;2026-06-17&quot;:0.58},{&quot;2026-06-18&quot;:0.64},{&quot;2026-06-19&quot;:0.66},{&quot;2026-06-20&quot;:0.66},{&quot;2026-06-21&quot;:0.66},{&quot;2026-06-22&quot;:0.61},{&quot;2026-06-24&quot;:0.85},{&quot;2026-06-25&quot;:0.84},{&quot;2026-06-26&quot;:0.85},{&quot;2026-06-27&quot;:0.87},{&quot;2026-06-28&quot;:0.57},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.61},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.66},{&quot;2026-07-03&quot;:0.65},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.64},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.63},{&quot;2026-07-13&quot;:0.62},{&quot;2026-07-14&quot;:0.75},{&quot;2026-07-15&quot;:0.72},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.79},{&quot;2026-07-18&quot;:0.78},{&quot;2026-07-19&quot;:0.74},{&quot;2026-07-20&quot;:0.7},{&quot;2026-07-21&quot;:0.65},{&quot;2026-07-23&quot;:0.68},{&quot;2026-07-25&quot;:0.64},{&quot;2026-07-26&quot;:0.64},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-29&quot;:0.62},{&quot;2026-07-30&quot;:0.62},{&quot;2026-07-31&quot;:0.61},{&quot;2026-08-01&quot;:0.59},{&quot;2026-08-02&quot;:0.62},{&quot;2026-08-03&quot;:0.63},{&quot;2026-08-04&quot;:0.64},{&quot;2026-08-05&quot;:0.64},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.95},{&quot;2026-08-12&quot;:0.95},{&quot;2026-08-13&quot;:0.94},{&quot;2026-08-14&quot;:0.69},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.68},{&quot;2026-08-17&quot;:0.69},{&quot;2026-08-18&quot;:0.71},{&quot;2026-08-19&quot;:0.68},{&quot;2026-08-20&quot;:0.68},{&quot;2026-08-21&quot;:0.69},{&quot;2026-08-22&quot;:0.7},{&quot;2026-08-23&quot;:0.63},{&quot;2026-08-24&quot;:0.59},{&quot;2026-08-25&quot;:0.59},{&quot;2026-08-26&quot;:0.53},{&quot;2026-08-27&quot;:0.51},{&quot;2026-08-28&quot;:0.83},{&quot;2026-08-29&quot;:0.83},{&quot;2026-08-30&quot;:0.86},{&quot;2026-08-31&quot;:0.84},{&quot;2026-09-01&quot;:0.84},{&quot;2026-09-02&quot;:0.84},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.58},{&quot;2026-09-06&quot;:0.56},{&quot;2026-09-07&quot;:0.56},{&quot;2026-09-08&quot;:0.55},{&quot;2026-09-09&quot;:0.56},{&quot;2026-09-10&quot;:0.58},{&quot;2026-09-11&quot;:0.56}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.45},{&quot;2026-06-10&quot;:2.45},{&quot;2026-06-11&quot;:2.45},{&quot;2026-06-12&quot;:2.45},{&quot;2026-06-13&quot;:2.45},{&quot;2026-06-14&quot;:2.45},{&quot;2026-06-15&quot;:2.45},{&quot;2026-06-16&quot;:2.4},{&quot;2026-06-17&quot;:2.4},{&quot;2026-06-18&quot;:2.38},{&quot;2026-06-19&quot;:2.35},{&quot;2026-06-20&quot;:2.21},{&quot;2026-06-21&quot;:2.38},{&quot;2026-06-22&quot;:2.21},{&quot;2026-06-24&quot;:2.25},{&quot;2026-06-25&quot;:2.25},{&quot;2026-06-26&quot;:2.23},{&quot;2026-06-27&quot;:2.31},{&quot;2026-06-28&quot;:2.28},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.26},{&quot;2026-07-01&quot;:2.28},{&quot;2026-07-02&quot;:2.28},{&quot;2026-07-03&quot;:2.27},{&quot;2026-07-04&quot;:2.28},{&quot;2026-07-05&quot;:2.28},{&quot;2026-07-06&quot;:2.28},{&quot;2026-07-07&quot;:2.28},{&quot;2026-07-08&quot;:2.23},{&quot;2026-07-09&quot;:2.17},{&quot;2026-07-10&quot;:2.2},{&quot;2026-07-11&quot;:2.2},{&quot;2026-07-12&quot;:2.2},{&quot;2026-07-13&quot;:2.2},{&quot;2026-07-14&quot;:2.18},{&quot;2026-07-15&quot;:2.18},{&quot;2026-07-16&quot;:2.23},{&quot;2026-07-17&quot;:2.23},{&quot;2026-07-18&quot;:2.23},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.21},{&quot;2026-07-21&quot;:2.21},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.16},{&quot;2026-07-27&quot;:2.16},{&quot;2026-07-29&quot;:2.14},{&quot;2026-07-30&quot;:2.14},{&quot;2026-07-31&quot;:2.2},{&quot;2026-08-01&quot;:2.21},{&quot;2026-08-02&quot;:2.13},{&quot;2026-08-03&quot;:2.08},{&quot;2026-08-04&quot;:2.13},{&quot;2026-08-05&quot;:2.13},{&quot;2026-08-07&quot;:2.08},{&quot;2026-08-08&quot;:2.08},{&quot;2026-08-09&quot;:2.08},{&quot;2026-08-10&quot;:2.04},{&quot;2026-08-11&quot;:2.04},{&quot;2026-08-12&quot;:2.04},{&quot;2026-08-13&quot;:2.03},{&quot;2026-08-14&quot;:2.02},{&quot;2026-08-15&quot;:2.0},{&quot;2026-08-16&quot;:1.99},{&quot;2026-08-17&quot;:2.02},{&quot;2026-08-18&quot;:2.02},{&quot;2026-08-19&quot;:2.02},{&quot;2026-08-20&quot;:2.02},{&quot;2026-08-21&quot;:1.98},{&quot;2026-08-22&quot;:1.93},{&quot;2026-08-23&quot;:1.93},{&quot;2026-08-24&quot;:1.88},{&quot;2026-08-25&quot;:1.88},{&quot;2026-08-26&quot;:1.88},{&quot;2026-08-27&quot;:1.88},{&quot;2026-08-28&quot;:1.85},{&quot;2026-08-29&quot;:1.85},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.93},{&quot;2026-09-01&quot;:1.93},{&quot;2026-09-02&quot;:1.95},{&quot;2026-09-03&quot;:1.97},{&quot;2026-09-04&quot;:1.97},{&quot;2026-09-05&quot;:1.97},{&quot;2026-09-06&quot;:1.97},{&quot;2026-09-07&quot;:1.97},{&quot;2026-09-08&quot;:1.94},{&quot;2026-09-09&quot;:1.98},{&quot;2026-09-10&quot;:1.98},{&quot;2026-09-11&quot;:1.98}]}"
        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="108394"
  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-tmc ss-rare 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">
            Vernal Fen
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Swamp Forest
      </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">
              ↑
              19%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Vernal Fen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/a/ba8f92ec-cd84-4958-9b31-b89598cb274d.jpg?1783904147" />

        <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">
            Vernal Fen
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Swamp Forest</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="Vernal Fen" src="https://cards.scryfall.io/large/front/b/a/ba8f92ec-cd84-4958-9b31-b89598cb274d.jpg?1783904147" />
    </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">
                $0.50
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  19%
                </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">
                $5.36
              </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.40</span>
              <span class="text-xs text-grey-text">Credit: $0.52</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-14&quot;:1.0},{&quot;2026-06-15&quot;:1.0},{&quot;2026-06-16&quot;:1.0},{&quot;2026-06-17&quot;:1.0},{&quot;2026-06-18&quot;:1.0},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:1.0},{&quot;2026-06-22&quot;:1.0},{&quot;2026-06-23&quot;:1.0},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:1.0},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.0},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:1.0},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:1.0},{&quot;2026-07-08&quot;:1.0},{&quot;2026-07-09&quot;:1.0},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.0},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.0},{&quot;2026-07-20&quot;:1.0},{&quot;2026-07-21&quot;:1.0},{&quot;2026-07-22&quot;:1.0},{&quot;2026-07-23&quot;:1.0},{&quot;2026-07-24&quot;:1.0},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:1.0},{&quot;2026-07-27&quot;:1.0},{&quot;2026-07-28&quot;:1.0},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:1.0},{&quot;2026-07-31&quot;:1.0},{&quot;2026-08-01&quot;:1.0},{&quot;2026-08-02&quot;:1.0},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.0},{&quot;2026-08-06&quot;:1.0},{&quot;2026-08-07&quot;:1.0},{&quot;2026-08-08&quot;:1.0},{&quot;2026-08-09&quot;:1.0},{&quot;2026-08-10&quot;:1.0},{&quot;2026-08-11&quot;:1.0},{&quot;2026-08-12&quot;:1.0},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:1.0},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:5.21},{&quot;2026-08-20&quot;:5.21},{&quot;2026-08-21&quot;:5.25},{&quot;2026-08-22&quot;:5.25},{&quot;2026-08-23&quot;:5.25},{&quot;2026-08-24&quot;:5.3},{&quot;2026-08-25&quot;:5.3},{&quot;2026-08-26&quot;:5.3},{&quot;2026-08-27&quot;:5.42},{&quot;2026-08-28&quot;:5.42},{&quot;2026-08-29&quot;:5.42},{&quot;2026-08-30&quot;:5.42},{&quot;2026-08-31&quot;:5.26},{&quot;2026-09-01&quot;:5.26},{&quot;2026-09-02&quot;:5.26},{&quot;2026-09-03&quot;:5.36},{&quot;2026-09-04&quot;:5.34},{&quot;2026-09-05&quot;:5.34},{&quot;2026-09-06&quot;:5.34},{&quot;2026-09-07&quot;:5.34},{&quot;2026-09-08&quot;:5.34},{&quot;2026-09-09&quot;:5.36},{&quot;2026-09-10&quot;:5.36},{&quot;2026-09-11&quot;:5.36}],&quot;normal&quot;:[{&quot;2026-02-28&quot;:1.24},{&quot;2026-03-01&quot;:0.84},{&quot;2026-03-02&quot;:0.58},{&quot;2026-03-03&quot;:0.51},{&quot;2026-03-04&quot;:0.42},{&quot;2026-03-05&quot;:0.4},{&quot;2026-03-06&quot;:0.38},{&quot;2026-07-31&quot;:0.45},{&quot;2026-08-01&quot;:0.45},{&quot;2026-08-02&quot;:0.46},{&quot;2026-08-03&quot;:0.48},{&quot;2026-08-04&quot;:0.48},{&quot;2026-08-05&quot;:0.48},{&quot;2026-08-07&quot;:0.48},{&quot;2026-08-08&quot;:0.48},{&quot;2026-08-09&quot;:0.47},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.44},{&quot;2026-08-12&quot;:0.45},{&quot;2026-08-13&quot;:0.49},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.52},{&quot;2026-08-16&quot;:0.53},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.48},{&quot;2026-08-20&quot;:0.48},{&quot;2026-08-21&quot;:0.48},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.45},{&quot;2026-08-25&quot;:0.45},{&quot;2026-08-26&quot;:0.49},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.49},{&quot;2026-08-29&quot;:0.49},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.44},{&quot;2026-09-01&quot;:0.44},{&quot;2026-09-02&quot;:0.45},{&quot;2026-09-03&quot;:0.44},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.42},{&quot;2026-09-06&quot;:0.42},{&quot;2026-09-07&quot;:0.43},{&quot;2026-09-08&quot;:0.48},{&quot;2026-09-09&quot;:0.48},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.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="108325"
  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-tmc ss-rare 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">
            Krang, the All-Powerful
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Artifact Creature — Utrom Robot
      </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">
            $0.41
          </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="Krang, the All-Powerful" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08a0ca58-e29e-477e-9377-f8b00e4b28a0.jpg?1783904172" />

        <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">
            Krang, the All-Powerful
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Artifact Creature — Utrom Robot</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-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="Krang, the All-Powerful" src="https://cards.scryfall.io/large/front/0/8/08a0ca58-e29e-477e-9377-f8b00e4b28a0.jpg?1783904172" />
    </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">
                $0.41
              </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.24
              </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.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</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-08-19&quot;:8.53},{&quot;2026-08-20&quot;:8.46},{&quot;2026-08-21&quot;:8.46},{&quot;2026-08-22&quot;:8.46},{&quot;2026-08-23&quot;:8.5},{&quot;2026-08-24&quot;:8.5},{&quot;2026-08-25&quot;:8.5},{&quot;2026-08-26&quot;:8.5},{&quot;2026-08-27&quot;:8.5},{&quot;2026-08-28&quot;:8.53},{&quot;2026-08-29&quot;:8.53},{&quot;2026-08-30&quot;:8.37},{&quot;2026-08-31&quot;:8.37},{&quot;2026-09-01&quot;:8.37},{&quot;2026-09-02&quot;:8.21},{&quot;2026-09-03&quot;:8.18},{&quot;2026-09-04&quot;:8.18},{&quot;2026-09-05&quot;:8.18},{&quot;2026-09-06&quot;:8.18},{&quot;2026-09-07&quot;:8.18},{&quot;2026-09-08&quot;:8.18},{&quot;2026-09-09&quot;:8.24},{&quot;2026-09-10&quot;:8.24},{&quot;2026-09-11&quot;:8.24}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.38},{&quot;2026-06-15&quot;:0.38},{&quot;2026-06-16&quot;:0.38},{&quot;2026-06-17&quot;:0.39},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.4},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.42},{&quot;2026-06-23&quot;:0.42},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.43},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.41},{&quot;2026-06-29&quot;:0.42},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.41},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.41},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.43},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.4},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.42},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.42},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.41},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-22&quot;:0.4},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-24&quot;:0.38},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.39},{&quot;2026-07-28&quot;:0.38},{&quot;2026-07-29&quot;:0.41},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.44},{&quot;2026-08-01&quot;:0.43},{&quot;2026-08-02&quot;:0.43},{&quot;2026-08-03&quot;:0.42},{&quot;2026-08-04&quot;:0.41},{&quot;2026-08-05&quot;:0.42},{&quot;2026-08-07&quot;:0.41},{&quot;2026-08-08&quot;:0.41},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.41},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.73},{&quot;2026-08-14&quot;:0.72},{&quot;2026-08-15&quot;:0.4},{&quot;2026-08-16&quot;:0.73},{&quot;2026-08-17&quot;:0.73},{&quot;2026-08-18&quot;:0.72},{&quot;2026-08-19&quot;:0.73},{&quot;2026-08-20&quot;:0.44},{&quot;2026-08-21&quot;:0.41},{&quot;2026-08-22&quot;:0.39},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.39},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.4},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.47},{&quot;2026-08-31&quot;:0.48},{&quot;2026-09-01&quot;:0.41},{&quot;2026-09-02&quot;:0.43},{&quot;2026-09-03&quot;:0.42},{&quot;2026-09-04&quot;:0.42},{&quot;2026-09-05&quot;:0.41},{&quot;2026-09-06&quot;:0.41},{&quot;2026-09-07&quot;:0.39},{&quot;2026-09-08&quot;:0.4},{&quot;2026-09-09&quot;:0.41},{&quot;2026-09-10&quot;:0.42},{&quot;2026-09-11&quot;:0.41}]}"
        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="108381"
  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-tmc ss-rare 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">
            Grand Coliseum
        </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">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.39
          </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="Grand Coliseum" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/0/b07eb189-559a-4cd5-95ac-f6612fd11cf1.jpg?1783904151" />

        <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">
            Grand Coliseum
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Grand Coliseum" src="https://cards.scryfall.io/large/front/b/0/b07eb189-559a-4cd5-95ac-f6612fd11cf1.jpg?1783904151" />
    </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">
                $0.39
              </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">
                $4.88
              </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;2026-08-19&quot;:4.85},{&quot;2026-08-20&quot;:4.85},{&quot;2026-08-21&quot;:4.85},{&quot;2026-08-22&quot;:4.89},{&quot;2026-08-23&quot;:4.89},{&quot;2026-08-24&quot;:4.89},{&quot;2026-08-25&quot;:4.89},{&quot;2026-08-26&quot;:4.89},{&quot;2026-08-27&quot;:4.89},{&quot;2026-08-28&quot;:4.89},{&quot;2026-08-29&quot;:4.89},{&quot;2026-08-30&quot;:4.89},{&quot;2026-08-31&quot;:4.89},{&quot;2026-09-01&quot;:4.89},{&quot;2026-09-02&quot;:4.89},{&quot;2026-09-03&quot;:4.89},{&quot;2026-09-04&quot;:4.89},{&quot;2026-09-05&quot;:4.89},{&quot;2026-09-06&quot;:4.89},{&quot;2026-09-07&quot;:4.89},{&quot;2026-09-08&quot;:4.89},{&quot;2026-09-09&quot;:4.89},{&quot;2026-09-10&quot;:4.89},{&quot;2026-09-11&quot;:4.88}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.38},{&quot;2026-06-14&quot;:0.38},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.35},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.35},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.34},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.36},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.38},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.38},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.35},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.35},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.35},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.4},{&quot;2026-08-16&quot;:0.4},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.39},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.41},{&quot;2026-09-10&quot;:0.4},{&quot;2026-09-11&quot;:0.39}]}"
        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="108349"
  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-tmc ss-rare 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">
            Arcade Cabinet
        </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="text-sm font-medium text-nine-white">
            $0.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="Arcade Cabinet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/2/b2fd1df8-cc67-4209-af9d-5cf18c68cca9.jpg?1783904163" />

        <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">
            Arcade Cabinet
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Arcade Cabinet" src="https://cards.scryfall.io/large/front/b/2/b2fd1df8-cc67-4209-af9d-5cf18c68cca9.jpg?1783904163" />
    </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">
                $0.38
              </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">
                $12.50
              </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;2026-08-19&quot;:12.39},{&quot;2026-08-20&quot;:12.39},{&quot;2026-08-21&quot;:12.49},{&quot;2026-08-22&quot;:12.49},{&quot;2026-08-23&quot;:12.52},{&quot;2026-08-24&quot;:12.55},{&quot;2026-08-25&quot;:12.55},{&quot;2026-08-26&quot;:12.55},{&quot;2026-08-27&quot;:12.55},{&quot;2026-08-28&quot;:12.53},{&quot;2026-08-29&quot;:12.53},{&quot;2026-08-30&quot;:12.53},{&quot;2026-08-31&quot;:12.55},{&quot;2026-09-01&quot;:12.55},{&quot;2026-09-02&quot;:12.55},{&quot;2026-09-03&quot;:12.55},{&quot;2026-09-04&quot;:12.55},{&quot;2026-09-05&quot;:12.55},{&quot;2026-09-06&quot;:12.55},{&quot;2026-09-07&quot;:12.55},{&quot;2026-09-08&quot;:12.55},{&quot;2026-09-09&quot;:12.55},{&quot;2026-09-10&quot;:12.5},{&quot;2026-09-11&quot;:12.5}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.44},{&quot;2026-06-13&quot;:0.43},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.42},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.47},{&quot;2026-06-18&quot;:0.53},{&quot;2026-06-19&quot;:0.54},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.5},{&quot;2026-06-22&quot;:0.48},{&quot;2026-06-23&quot;:0.53},{&quot;2026-06-24&quot;:0.49},{&quot;2026-06-25&quot;:0.46},{&quot;2026-06-26&quot;:0.45},{&quot;2026-06-27&quot;:0.45},{&quot;2026-06-28&quot;:0.44},{&quot;2026-06-29&quot;:0.43},{&quot;2026-06-30&quot;:0.46},{&quot;2026-07-01&quot;:0.45},{&quot;2026-07-02&quot;:0.45},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.47},{&quot;2026-07-05&quot;:0.48},{&quot;2026-07-06&quot;:0.48},{&quot;2026-07-07&quot;:0.48},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.45},{&quot;2026-07-10&quot;:0.45},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.41},{&quot;2026-07-18&quot;:0.41},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.43},{&quot;2026-07-24&quot;:0.43},{&quot;2026-07-25&quot;:0.42},{&quot;2026-07-26&quot;:0.43},{&quot;2026-07-27&quot;:0.42},{&quot;2026-07-28&quot;:0.39},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.41},{&quot;2026-08-01&quot;:0.41},{&quot;2026-08-02&quot;:0.41},{&quot;2026-08-03&quot;:0.41},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.41},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.38},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.38},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.37},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.4},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.4},{&quot;2026-08-24&quot;:0.4},{&quot;2026-08-25&quot;:0.4},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.4},{&quot;2026-08-31&quot;:0.4},{&quot;2026-09-01&quot;:0.41},{&quot;2026-09-02&quot;:0.41},{&quot;2026-09-03&quot;:0.41},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.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="108363"
  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-tmc ss-common 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">
            Cultivate
        </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">
              ↓
              7%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Cultivate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/4824ad7c-e533-4357-b486-9e908721db65.jpg?1783904158" />

        <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">
            Cultivate
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </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-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="Cultivate" src="https://cards.scryfall.io/large/front/4/8/4824ad7c-e533-4357-b486-9e908721db65.jpg?1783904158" />
    </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">
                $0.38
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  7%
                </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">
                $0.64
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  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.15</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-06-14&quot;:5.0},{&quot;2026-06-15&quot;:5.0},{&quot;2026-06-16&quot;:5.0},{&quot;2026-06-17&quot;:5.0},{&quot;2026-06-18&quot;:5.0},{&quot;2026-06-19&quot;:5.0},{&quot;2026-06-20&quot;:5.0},{&quot;2026-06-21&quot;:5.0},{&quot;2026-06-22&quot;:5.0},{&quot;2026-06-23&quot;:5.0},{&quot;2026-06-24&quot;:5.0},{&quot;2026-06-25&quot;:5.0},{&quot;2026-06-26&quot;:5.0},{&quot;2026-06-27&quot;:5.0},{&quot;2026-06-28&quot;:5.0},{&quot;2026-06-29&quot;:5.0},{&quot;2026-06-30&quot;:5.0},{&quot;2026-07-01&quot;:5.0},{&quot;2026-07-02&quot;:5.0},{&quot;2026-07-03&quot;:5.0},{&quot;2026-07-04&quot;:5.0},{&quot;2026-07-05&quot;:5.0},{&quot;2026-07-06&quot;:5.0},{&quot;2026-07-07&quot;:5.0},{&quot;2026-07-08&quot;:5.0},{&quot;2026-07-09&quot;:5.0},{&quot;2026-07-10&quot;:5.0},{&quot;2026-07-11&quot;:5.0},{&quot;2026-07-12&quot;:5.0},{&quot;2026-07-13&quot;:5.0},{&quot;2026-07-14&quot;:5.0},{&quot;2026-07-15&quot;:5.0},{&quot;2026-07-16&quot;:5.0},{&quot;2026-07-17&quot;:5.0},{&quot;2026-07-18&quot;:5.0},{&quot;2026-07-19&quot;:5.0},{&quot;2026-07-20&quot;:5.0},{&quot;2026-07-21&quot;:5.0},{&quot;2026-07-22&quot;:5.0},{&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;:5.0},{&quot;2026-07-27&quot;:5.0},{&quot;2026-07-28&quot;:5.0},{&quot;2026-07-29&quot;:5.0},{&quot;2026-07-30&quot;:5.0},{&quot;2026-07-31&quot;:5.0},{&quot;2026-08-01&quot;:5.0},{&quot;2026-08-02&quot;:5.0},{&quot;2026-08-03&quot;:5.0},{&quot;2026-08-04&quot;:5.0},{&quot;2026-08-05&quot;:5.0},{&quot;2026-08-06&quot;:5.0},{&quot;2026-08-07&quot;:5.0},{&quot;2026-08-08&quot;:5.0},{&quot;2026-08-09&quot;:5.0},{&quot;2026-08-10&quot;:5.0},{&quot;2026-08-11&quot;:5.0},{&quot;2026-08-12&quot;:5.0},{&quot;2026-08-13&quot;:5.0},{&quot;2026-08-14&quot;:5.0},{&quot;2026-08-15&quot;:5.0},{&quot;2026-08-16&quot;:5.0},{&quot;2026-08-17&quot;:5.0},{&quot;2026-08-18&quot;:5.0},{&quot;2026-08-19&quot;:0.64},{&quot;2026-08-20&quot;:0.64},{&quot;2026-08-21&quot;:0.62},{&quot;2026-08-22&quot;:0.62},{&quot;2026-08-23&quot;:0.62},{&quot;2026-08-24&quot;:0.64},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.62},{&quot;2026-08-27&quot;:0.62},{&quot;2026-08-28&quot;:0.62},{&quot;2026-08-29&quot;:0.62},{&quot;2026-08-30&quot;:0.64},{&quot;2026-08-31&quot;:0.64},{&quot;2026-09-01&quot;:0.64},{&quot;2026-09-02&quot;:0.62},{&quot;2026-09-03&quot;:0.61},{&quot;2026-09-04&quot;:0.58},{&quot;2026-09-05&quot;:0.57},{&quot;2026-09-06&quot;:0.57},{&quot;2026-09-07&quot;:0.6},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.64},{&quot;2026-09-10&quot;:0.63},{&quot;2026-09-11&quot;:0.64}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:0.42},{&quot;2026-03-03&quot;:0.42},{&quot;2026-03-04&quot;:0.37},{&quot;2026-03-05&quot;:0.39},{&quot;2026-03-06&quot;:0.38},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.42},{&quot;2026-08-02&quot;:0.39},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.35},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.4},{&quot;2026-08-15&quot;:0.41},{&quot;2026-08-16&quot;:0.4},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.39},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.37},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.38},{&quot;2026-09-02&quot;:0.38},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.41},{&quot;2026-09-06&quot;:0.41},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="108378"
  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-tmc ss-common 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">
            Evolving Wilds
        </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">
              ↑
              65%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Evolving Wilds" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/3/a30f5555-2fbe-4c88-9e4f-1f2e81ea6cfd.jpg?1783904154" />

        <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">
            Evolving Wilds
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </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="Evolving Wilds" src="https://cards.scryfall.io/large/front/a/3/a30f5555-2fbe-4c88-9e4f-1f2e81ea6cfd.jpg?1783904154" />
    </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">
                $0.38
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  65%
                </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">
                $0.36
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </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-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.36},{&quot;2026-08-22&quot;:0.36},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.36}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.37},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.38},{&quot;2026-06-17&quot;:0.38},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.29},{&quot;2026-06-25&quot;:0.28},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.32},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.24},{&quot;2026-07-14&quot;:0.24},{&quot;2026-07-15&quot;:0.25},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.21},{&quot;2026-07-19&quot;:0.2},{&quot;2026-07-20&quot;:0.19},{&quot;2026-07-21&quot;:0.2},{&quot;2026-07-23&quot;:0.26},{&quot;2026-07-24&quot;:0.26},{&quot;2026-07-25&quot;:0.26},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.29},{&quot;2026-07-28&quot;:0.3},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.3},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.27},{&quot;2026-08-10&quot;:0.26},{&quot;2026-08-11&quot;:0.26},{&quot;2026-08-12&quot;:0.26},{&quot;2026-08-13&quot;:0.25},{&quot;2026-08-14&quot;:0.24},{&quot;2026-08-15&quot;:0.22},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.24},{&quot;2026-08-18&quot;:0.23},{&quot;2026-08-19&quot;:0.24},{&quot;2026-08-20&quot;:0.24},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.36},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.26},{&quot;2026-09-02&quot;:0.23},{&quot;2026-09-03&quot;:0.22},{&quot;2026-09-04&quot;:0.21},{&quot;2026-09-05&quot;:0.23},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="108382"
  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-tmc ss-rare 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">
            Hinterland Harbor
        </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">
              ↑
              41%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Hinterland Harbor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/5/7598a728-796b-4b82-b269-217ecca44c2c.jpg?1783904152" />

        <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">
            Hinterland Harbor
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Hinterland Harbor" src="https://cards.scryfall.io/large/front/7/5/7598a728-796b-4b82-b269-217ecca44c2c.jpg?1783904152" />
    </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">
                $0.38
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  41%
                </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">
                $3.15
              </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.12</span>
              <span class="text-xs text-grey-text">Credit: $0.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-08-19&quot;:3.27},{&quot;2026-08-20&quot;:3.27},{&quot;2026-08-21&quot;:3.27},{&quot;2026-08-22&quot;:3.17},{&quot;2026-08-23&quot;:3.17},{&quot;2026-08-24&quot;:3.17},{&quot;2026-08-25&quot;:3.17},{&quot;2026-08-26&quot;:3.17},{&quot;2026-08-27&quot;:3.17},{&quot;2026-08-28&quot;:3.17},{&quot;2026-08-29&quot;:3.17},{&quot;2026-08-30&quot;:3.18},{&quot;2026-08-31&quot;:3.18},{&quot;2026-09-01&quot;:3.18},{&quot;2026-09-02&quot;:3.18},{&quot;2026-09-03&quot;:3.12},{&quot;2026-09-04&quot;:3.14},{&quot;2026-09-05&quot;:3.14},{&quot;2026-09-06&quot;:3.12},{&quot;2026-09-07&quot;:3.12},{&quot;2026-09-08&quot;:3.15},{&quot;2026-09-09&quot;:3.15},{&quot;2026-09-10&quot;:3.15},{&quot;2026-09-11&quot;:3.15}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.32},{&quot;2026-06-11&quot;:0.3},{&quot;2026-06-12&quot;:0.31},{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.25},{&quot;2026-06-15&quot;:0.26},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.35},{&quot;2026-06-26&quot;:0.69},{&quot;2026-06-27&quot;:0.72},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.71},{&quot;2026-06-30&quot;:0.71},{&quot;2026-07-01&quot;:0.72},{&quot;2026-07-02&quot;:0.4},{&quot;2026-07-03&quot;:0.38},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-29&quot;:0.42},{&quot;2026-07-30&quot;:0.42},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.68},{&quot;2026-08-02&quot;:0.7},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.35},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.27},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="108385"
  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-tmc ss-rare 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">
            Rootbound Crag
        </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">
              ↑
              19%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rootbound Crag" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/0/f01bb3fd-14c6-47cb-aba3-e3069da56c9f.jpg?1783904150" />

        <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">
            Rootbound Crag
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Rootbound Crag" src="https://cards.scryfall.io/large/front/f/0/f01bb3fd-14c6-47cb-aba3-e3069da56c9f.jpg?1783904150" />
    </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">
                $0.38
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  19%
                </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">
                $3.55
              </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.08</span>
              <span class="text-xs text-grey-text">Credit: $0.10</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-08-19&quot;:3.41},{&quot;2026-08-20&quot;:3.41},{&quot;2026-08-21&quot;:3.41},{&quot;2026-08-22&quot;:3.41},{&quot;2026-08-23&quot;:3.41},{&quot;2026-08-24&quot;:3.41},{&quot;2026-08-25&quot;:3.41},{&quot;2026-08-26&quot;:3.41},{&quot;2026-08-27&quot;:3.41},{&quot;2026-08-28&quot;:3.41},{&quot;2026-08-29&quot;:3.41},{&quot;2026-08-30&quot;:3.48},{&quot;2026-08-31&quot;:3.48},{&quot;2026-09-01&quot;:3.48},{&quot;2026-09-02&quot;:3.48},{&quot;2026-09-03&quot;:3.48},{&quot;2026-09-04&quot;:3.48},{&quot;2026-09-05&quot;:3.54},{&quot;2026-09-06&quot;:3.54},{&quot;2026-09-07&quot;:3.54},{&quot;2026-09-08&quot;:3.54},{&quot;2026-09-09&quot;:3.54},{&quot;2026-09-10&quot;:3.55},{&quot;2026-09-11&quot;:3.55}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.34},{&quot;2026-06-11&quot;:0.34},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.38},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.43},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.35},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.35},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.36},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.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="108383"
  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-tmc ss-common 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">
            Path of Ancestry
        </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">
              ↑
              28%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Path of Ancestry" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d4c1c9ba-d930-435c-8978-f10a2adb3d4c.jpg?1783904150" />

        <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">
            Path of Ancestry
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </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="Path of Ancestry" src="https://cards.scryfall.io/large/front/d/4/d4c1c9ba-d930-435c-8978-f10a2adb3d4c.jpg?1783904150" />
    </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">
                $0.37
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  28%
                </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">
                $0.45
              </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.02</span>
              <span class="text-xs text-grey-text">Credit: $0.03</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-08-19&quot;:0.47},{&quot;2026-08-20&quot;:0.47},{&quot;2026-08-21&quot;:0.47},{&quot;2026-08-22&quot;:0.47},{&quot;2026-08-23&quot;:0.47},{&quot;2026-08-24&quot;:0.47},{&quot;2026-08-25&quot;:0.47},{&quot;2026-08-26&quot;:0.47},{&quot;2026-08-27&quot;:0.45},{&quot;2026-08-28&quot;:0.45},{&quot;2026-08-29&quot;:0.45},{&quot;2026-08-30&quot;:0.47},{&quot;2026-08-31&quot;:0.47},{&quot;2026-09-01&quot;:0.47},{&quot;2026-09-02&quot;:0.47},{&quot;2026-09-03&quot;:0.47},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.48},{&quot;2026-09-06&quot;:0.49},{&quot;2026-09-07&quot;:0.46},{&quot;2026-09-08&quot;:0.44},{&quot;2026-09-09&quot;:0.44},{&quot;2026-09-10&quot;:0.45},{&quot;2026-09-11&quot;:0.45}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.32},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.35},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.28},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.29},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.29},{&quot;2026-07-07&quot;:0.29},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.27},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.24},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-23&quot;:0.31},{&quot;2026-07-24&quot;:0.34},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.38},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.29},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.24},{&quot;2026-08-12&quot;:0.25},{&quot;2026-08-13&quot;:0.25},{&quot;2026-08-14&quot;:0.27},{&quot;2026-08-15&quot;:0.26},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.31},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.29},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.27},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.27},{&quot;2026-08-31&quot;:0.3},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.36},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.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="108389"
  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-tmc ss-rare 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">
            Sunken Hollow
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Island Swamp
      </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">
              ↑
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Sunken Hollow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/a/7ab0a5f2-5260-403d-9522-954efc91e96d.jpg?1783904149" />

        <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">
            Sunken Hollow
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Island Swamp</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="Sunken Hollow" src="https://cards.scryfall.io/large/front/7/a/7ab0a5f2-5260-403d-9522-954efc91e96d.jpg?1783904149" />
    </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">
                $0.37
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  9%
                </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">
                $3.52
              </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.12</span>
              <span class="text-xs text-grey-text">Credit: $0.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-14&quot;:4.0},{&quot;2026-06-15&quot;:4.0},{&quot;2026-06-16&quot;:4.0},{&quot;2026-06-17&quot;:4.0},{&quot;2026-06-18&quot;:4.0},{&quot;2026-06-19&quot;:4.0},{&quot;2026-06-20&quot;:4.0},{&quot;2026-06-21&quot;:4.0},{&quot;2026-06-22&quot;:4.0},{&quot;2026-06-23&quot;:4.0},{&quot;2026-06-24&quot;:4.0},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:4.0},{&quot;2026-06-27&quot;:4.0},{&quot;2026-06-28&quot;:4.0},{&quot;2026-06-29&quot;:4.0},{&quot;2026-06-30&quot;:4.0},{&quot;2026-07-01&quot;:4.0},{&quot;2026-07-02&quot;:4.0},{&quot;2026-07-03&quot;:4.0},{&quot;2026-07-04&quot;:4.0},{&quot;2026-07-05&quot;:4.0},{&quot;2026-07-06&quot;:4.0},{&quot;2026-07-07&quot;:4.0},{&quot;2026-07-08&quot;:4.0},{&quot;2026-07-09&quot;:4.0},{&quot;2026-07-10&quot;:4.0},{&quot;2026-07-11&quot;:4.0},{&quot;2026-07-12&quot;:4.0},{&quot;2026-07-13&quot;:4.0},{&quot;2026-07-14&quot;:4.0},{&quot;2026-07-15&quot;:4.0},{&quot;2026-07-16&quot;:4.0},{&quot;2026-07-17&quot;:4.0},{&quot;2026-07-18&quot;:4.0},{&quot;2026-07-19&quot;:4.0},{&quot;2026-07-20&quot;:4.0},{&quot;2026-07-21&quot;:4.0},{&quot;2026-07-22&quot;:4.0},{&quot;2026-07-23&quot;:4.0},{&quot;2026-07-24&quot;:4.0},{&quot;2026-07-25&quot;:4.0},{&quot;2026-07-26&quot;:4.0},{&quot;2026-07-27&quot;:4.0},{&quot;2026-07-28&quot;:4.0},{&quot;2026-07-29&quot;:4.0},{&quot;2026-07-30&quot;:4.0},{&quot;2026-07-31&quot;:4.0},{&quot;2026-08-01&quot;:4.0},{&quot;2026-08-02&quot;:4.0},{&quot;2026-08-03&quot;:4.0},{&quot;2026-08-04&quot;:4.0},{&quot;2026-08-05&quot;:4.0},{&quot;2026-08-06&quot;:4.0},{&quot;2026-08-07&quot;:4.0},{&quot;2026-08-08&quot;:4.0},{&quot;2026-08-09&quot;:4.0},{&quot;2026-08-10&quot;:4.0},{&quot;2026-08-11&quot;:4.0},{&quot;2026-08-12&quot;:4.0},{&quot;2026-08-13&quot;:4.0},{&quot;2026-08-14&quot;:4.0},{&quot;2026-08-15&quot;:4.0},{&quot;2026-08-16&quot;:4.0},{&quot;2026-08-17&quot;:4.0},{&quot;2026-08-18&quot;:4.0},{&quot;2026-08-19&quot;:3.51},{&quot;2026-08-20&quot;:3.51},{&quot;2026-08-21&quot;:3.51},{&quot;2026-08-22&quot;:3.51},{&quot;2026-08-23&quot;:3.51},{&quot;2026-08-24&quot;:3.51},{&quot;2026-08-25&quot;:3.51},{&quot;2026-08-26&quot;:3.51},{&quot;2026-08-27&quot;:3.51},{&quot;2026-08-28&quot;:3.51},{&quot;2026-08-29&quot;:3.51},{&quot;2026-08-30&quot;:3.51},{&quot;2026-08-31&quot;:3.51},{&quot;2026-09-01&quot;:3.51},{&quot;2026-09-02&quot;:3.51},{&quot;2026-09-03&quot;:3.49},{&quot;2026-09-04&quot;:3.49},{&quot;2026-09-05&quot;:3.49},{&quot;2026-09-06&quot;:3.49},{&quot;2026-09-07&quot;:3.49},{&quot;2026-09-08&quot;:3.49},{&quot;2026-09-09&quot;:3.52},{&quot;2026-09-10&quot;:3.52},{&quot;2026-09-11&quot;:3.52}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:0.43},{&quot;2026-03-03&quot;:0.39},{&quot;2026-03-04&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.38},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.35},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.4},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.39},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.39},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.39},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="108373"
  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-tmc ss-common 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">
            Ash Barrens
        </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">
              ↑
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Ash Barrens" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/8/e8510205-4baa-4f1c-bf64-5d931e2ddf48.jpg?1783904155" />

        <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">
            Ash Barrens
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </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="Ash Barrens" src="https://cards.scryfall.io/large/front/e/8/e8510205-4baa-4f1c-bf64-5d931e2ddf48.jpg?1783904155" />
    </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">
                $0.36
              </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">
                $0.31
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  7%
                </span>
            </div>
          </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-14&quot;:1.0},{&quot;2026-06-15&quot;:1.0},{&quot;2026-06-16&quot;:1.0},{&quot;2026-06-17&quot;:1.0},{&quot;2026-06-18&quot;:1.0},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:1.0},{&quot;2026-06-22&quot;:1.0},{&quot;2026-06-23&quot;:1.0},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:1.0},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.0},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:1.0},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:1.0},{&quot;2026-07-08&quot;:1.0},{&quot;2026-07-09&quot;:1.0},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.0},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.0},{&quot;2026-07-20&quot;:1.0},{&quot;2026-07-21&quot;:1.0},{&quot;2026-07-22&quot;:1.0},{&quot;2026-07-23&quot;:1.0},{&quot;2026-07-24&quot;:1.0},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:1.0},{&quot;2026-07-27&quot;:1.0},{&quot;2026-07-28&quot;:1.0},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:1.0},{&quot;2026-07-31&quot;:1.0},{&quot;2026-08-01&quot;:1.0},{&quot;2026-08-02&quot;:1.0},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.0},{&quot;2026-08-06&quot;:1.0},{&quot;2026-08-07&quot;:1.0},{&quot;2026-08-08&quot;:1.0},{&quot;2026-08-09&quot;:1.0},{&quot;2026-08-10&quot;:1.0},{&quot;2026-08-11&quot;:1.0},{&quot;2026-08-12&quot;:1.0},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:1.0},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:0.28},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.28},{&quot;2026-08-29&quot;:0.28},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.31}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:0.63},{&quot;2026-03-03&quot;:0.57},{&quot;2026-03-04&quot;:0.59},{&quot;2026-03-05&quot;:0.59},{&quot;2026-03-06&quot;:0.59},{&quot;2026-07-31&quot;:0.32},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.4},{&quot;2026-08-12&quot;:0.4},{&quot;2026-08-13&quot;:0.4},{&quot;2026-08-14&quot;:0.4},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.27},{&quot;2026-08-27&quot;:0.27},{&quot;2026-08-28&quot;:0.27},{&quot;2026-08-29&quot;:0.27},{&quot;2026-08-30&quot;:0.26},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.26},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.36},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.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="108386"
  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-tmc ss-rare 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">
            Smoldering Marsh
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Swamp Mountain
      </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">
              ↑
              20%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Smoldering Marsh" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/4/a4746e54-974a-4743-ab9b-a9e49034b16d.jpg?1783904149" />

        <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">
            Smoldering Marsh
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Swamp Mountain</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="Smoldering Marsh" src="https://cards.scryfall.io/large/front/a/4/a4746e54-974a-4743-ab9b-a9e49034b16d.jpg?1783904149" />
    </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">
                $0.36
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  20%
                </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.20
              </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.32</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-06-14&quot;:2.5},{&quot;2026-06-15&quot;:2.5},{&quot;2026-06-16&quot;:2.5},{&quot;2026-06-17&quot;:2.5},{&quot;2026-06-18&quot;:2.5},{&quot;2026-06-19&quot;:2.5},{&quot;2026-06-20&quot;:2.5},{&quot;2026-06-21&quot;:2.5},{&quot;2026-06-22&quot;:2.5},{&quot;2026-06-23&quot;:2.5},{&quot;2026-06-24&quot;:2.5},{&quot;2026-06-25&quot;:2.5},{&quot;2026-06-26&quot;:2.5},{&quot;2026-06-27&quot;:2.5},{&quot;2026-06-28&quot;:2.5},{&quot;2026-06-29&quot;:2.5},{&quot;2026-06-30&quot;:2.5},{&quot;2026-07-01&quot;:2.5},{&quot;2026-07-02&quot;:2.5},{&quot;2026-07-03&quot;:2.5},{&quot;2026-07-04&quot;:2.5},{&quot;2026-07-05&quot;:2.5},{&quot;2026-07-06&quot;:2.5},{&quot;2026-07-07&quot;:2.5},{&quot;2026-07-08&quot;:2.5},{&quot;2026-07-09&quot;:2.5},{&quot;2026-07-10&quot;:2.5},{&quot;2026-07-11&quot;:2.5},{&quot;2026-07-12&quot;:2.5},{&quot;2026-07-13&quot;:2.5},{&quot;2026-07-14&quot;:2.5},{&quot;2026-07-15&quot;:2.5},{&quot;2026-07-16&quot;:2.5},{&quot;2026-07-17&quot;:2.5},{&quot;2026-07-18&quot;:2.5},{&quot;2026-07-19&quot;:2.5},{&quot;2026-07-20&quot;:2.5},{&quot;2026-07-21&quot;:2.5},{&quot;2026-07-22&quot;:2.5},{&quot;2026-07-23&quot;:2.5},{&quot;2026-07-24&quot;:2.5},{&quot;2026-07-25&quot;:2.5},{&quot;2026-07-26&quot;:2.5},{&quot;2026-07-27&quot;:2.5},{&quot;2026-07-28&quot;:2.5},{&quot;2026-07-29&quot;:2.5},{&quot;2026-07-30&quot;:2.5},{&quot;2026-07-31&quot;:2.5},{&quot;2026-08-01&quot;:2.5},{&quot;2026-08-02&quot;:2.5},{&quot;2026-08-03&quot;:2.5},{&quot;2026-08-04&quot;:2.5},{&quot;2026-08-05&quot;:2.5},{&quot;2026-08-06&quot;:2.5},{&quot;2026-08-07&quot;:2.5},{&quot;2026-08-08&quot;:2.5},{&quot;2026-08-09&quot;:2.5},{&quot;2026-08-10&quot;:2.5},{&quot;2026-08-11&quot;:2.5},{&quot;2026-08-12&quot;:2.5},{&quot;2026-08-13&quot;:2.5},{&quot;2026-08-14&quot;:2.5},{&quot;2026-08-15&quot;:2.5},{&quot;2026-08-16&quot;:2.5},{&quot;2026-08-17&quot;:2.5},{&quot;2026-08-18&quot;:2.5},{&quot;2026-08-19&quot;:2.14},{&quot;2026-08-20&quot;:2.14},{&quot;2026-08-21&quot;:2.14},{&quot;2026-08-22&quot;:2.14},{&quot;2026-08-23&quot;:2.14},{&quot;2026-08-24&quot;:2.14},{&quot;2026-08-25&quot;:2.14},{&quot;2026-08-26&quot;:2.14},{&quot;2026-08-27&quot;:2.14},{&quot;2026-08-28&quot;:2.14},{&quot;2026-08-29&quot;:2.14},{&quot;2026-08-30&quot;:2.14},{&quot;2026-08-31&quot;:2.14},{&quot;2026-09-01&quot;:2.14},{&quot;2026-09-02&quot;:2.14},{&quot;2026-09-03&quot;:2.2},{&quot;2026-09-04&quot;:2.2},{&quot;2026-09-05&quot;:2.2},{&quot;2026-09-06&quot;:2.2},{&quot;2026-09-07&quot;:2.2},{&quot;2026-09-08&quot;:2.2},{&quot;2026-09-09&quot;:2.2},{&quot;2026-09-10&quot;:2.2},{&quot;2026-09-11&quot;:2.2}],&quot;normal&quot;:[{&quot;2026-03-02&quot;:0.72},{&quot;2026-03-03&quot;:0.64},{&quot;2026-03-04&quot;:0.59},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.32},{&quot;2026-08-04&quot;:0.32},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.29},{&quot;2026-08-09&quot;:0.31},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.91},{&quot;2026-08-29&quot;:0.91},{&quot;2026-08-30&quot;:0.98},{&quot;2026-08-31&quot;:0.97},{&quot;2026-09-01&quot;:0.99},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="108387"
  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-tmc ss-rare 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">
            Sodden Verdure
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Forest Island
      </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">
            $0.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="Sodden Verdure" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/b/0b5e219b-28fa-40e3-8afb-355ae767326d.jpg?1783904150" />

        <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">
            Sodden Verdure
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Forest Island</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="Sodden Verdure" src="https://cards.scryfall.io/large/front/0/b/0b5e219b-28fa-40e3-8afb-355ae767326d.jpg?1783904150" />
    </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">
                $0.36
              </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">
                $9.24
              </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.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</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-08-19&quot;:9.24},{&quot;2026-08-20&quot;:9.24},{&quot;2026-08-21&quot;:9.24},{&quot;2026-08-22&quot;:9.24},{&quot;2026-08-23&quot;:9.24},{&quot;2026-08-24&quot;:9.24},{&quot;2026-08-25&quot;:9.24},{&quot;2026-08-26&quot;:9.24},{&quot;2026-08-27&quot;:9.24},{&quot;2026-08-28&quot;:9.24},{&quot;2026-08-29&quot;:9.24},{&quot;2026-08-30&quot;:9.24},{&quot;2026-08-31&quot;:9.24},{&quot;2026-09-01&quot;:9.24},{&quot;2026-09-02&quot;:9.24},{&quot;2026-09-03&quot;:9.24},{&quot;2026-09-04&quot;:9.24},{&quot;2026-09-05&quot;:9.24},{&quot;2026-09-06&quot;:9.24},{&quot;2026-09-07&quot;:9.24},{&quot;2026-09-08&quot;:9.24},{&quot;2026-09-09&quot;:9.24},{&quot;2026-09-10&quot;:9.24},{&quot;2026-09-11&quot;:9.24}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.51},{&quot;2026-06-14&quot;:0.54},{&quot;2026-06-15&quot;:0.54},{&quot;2026-06-16&quot;:0.55},{&quot;2026-06-17&quot;:0.55},{&quot;2026-06-18&quot;:0.55},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.63},{&quot;2026-06-21&quot;:0.62},{&quot;2026-06-22&quot;:0.64},{&quot;2026-06-23&quot;:0.59},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.62},{&quot;2026-06-28&quot;:0.6},{&quot;2026-06-29&quot;:0.58},{&quot;2026-06-30&quot;:0.57},{&quot;2026-07-01&quot;:0.62},{&quot;2026-07-02&quot;:0.59},{&quot;2026-07-03&quot;:0.6},{&quot;2026-07-04&quot;:0.6},{&quot;2026-07-05&quot;:0.6},{&quot;2026-07-06&quot;:0.56},{&quot;2026-07-07&quot;:0.56},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.57},{&quot;2026-07-10&quot;:0.56},{&quot;2026-07-11&quot;:0.56},{&quot;2026-07-12&quot;:0.6},{&quot;2026-07-13&quot;:0.65},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.62},{&quot;2026-07-16&quot;:0.61},{&quot;2026-07-17&quot;:0.62},{&quot;2026-07-18&quot;:0.61},{&quot;2026-07-19&quot;:0.61},{&quot;2026-07-20&quot;:0.62},{&quot;2026-07-21&quot;:0.62},{&quot;2026-07-22&quot;:0.62},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-24&quot;:0.61},{&quot;2026-07-25&quot;:0.61},{&quot;2026-07-26&quot;:0.62},{&quot;2026-07-27&quot;:0.62},{&quot;2026-07-28&quot;:0.6},{&quot;2026-07-29&quot;:0.6},{&quot;2026-07-30&quot;:0.58},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.55},{&quot;2026-08-02&quot;:0.55},{&quot;2026-08-03&quot;:0.53},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.59},{&quot;2026-08-07&quot;:0.6},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.59},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.58},{&quot;2026-08-13&quot;:0.57},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.45},{&quot;2026-08-16&quot;:0.46},{&quot;2026-08-17&quot;:0.47},{&quot;2026-08-18&quot;:0.44},{&quot;2026-08-19&quot;:0.45},{&quot;2026-08-20&quot;:0.5},{&quot;2026-08-21&quot;:0.46},{&quot;2026-08-22&quot;:0.46},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.45},{&quot;2026-08-25&quot;:0.43},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.39},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.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="108342"
  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-tmc ss-rare 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">
            Leatherhead, Iron Gator
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Crocodile Mutant Rogue
      </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">
              ↑
              25%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.35
          </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="Leatherhead, Iron Gator" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/0/c0cacd61-bdce-46c6-ac7f-b084987d9aec.jpg?1783904165" />

        <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">
            Leatherhead, Iron Gator
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Crocodile Mutant Rogue</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></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="Leatherhead, Iron Gator" src="https://cards.scryfall.io/large/front/c/0/c0cacd61-bdce-46c6-ac7f-b084987d9aec.jpg?1783904165" />
    </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">
                $0.35
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  25%
                </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">
                $5.38
              </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.06</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-08-19&quot;:5.44},{&quot;2026-08-20&quot;:5.42},{&quot;2026-08-21&quot;:5.42},{&quot;2026-08-22&quot;:5.42},{&quot;2026-08-23&quot;:5.38},{&quot;2026-08-24&quot;:5.38},{&quot;2026-08-25&quot;:5.38},{&quot;2026-08-26&quot;:5.38},{&quot;2026-08-27&quot;:5.38},{&quot;2026-08-28&quot;:5.37},{&quot;2026-08-29&quot;:5.37},{&quot;2026-08-30&quot;:5.37},{&quot;2026-08-31&quot;:5.37},{&quot;2026-09-01&quot;:5.35},{&quot;2026-09-02&quot;:5.35},{&quot;2026-09-03&quot;:5.35},{&quot;2026-09-04&quot;:5.38},{&quot;2026-09-05&quot;:5.38},{&quot;2026-09-06&quot;:5.38},{&quot;2026-09-07&quot;:5.38},{&quot;2026-09-08&quot;:5.38},{&quot;2026-09-09&quot;:5.38},{&quot;2026-09-10&quot;:5.38},{&quot;2026-09-11&quot;:5.38}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.35},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.3},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.34},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.38},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.37},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.32},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.31},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.28},{&quot;2026-09-06&quot;:0.24},{&quot;2026-09-07&quot;:0.25},{&quot;2026-09-08&quot;:0.27},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.35}]}"
        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="108369"
  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-tmc ss-rare 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">
              ↑
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.35
          </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/8/5/85caf05a-035b-47c0-975c-dec76799ffcf.jpg?1783904156" />

        <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">
            rare
          </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/8/5/85caf05a-035b-47c0-975c-dec76799ffcf.jpg?1783904156" />
    </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">
                $0.35
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </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">
                $7.02
              </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.09</span>
              <span class="text-xs text-grey-text">Credit: $0.12</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-08-19&quot;:6.45},{&quot;2026-08-20&quot;:6.45},{&quot;2026-08-21&quot;:6.4},{&quot;2026-08-22&quot;:6.4},{&quot;2026-08-23&quot;:6.46},{&quot;2026-08-24&quot;:6.74},{&quot;2026-08-25&quot;:6.74},{&quot;2026-08-26&quot;:6.74},{&quot;2026-08-27&quot;:6.85},{&quot;2026-08-28&quot;:6.9},{&quot;2026-08-29&quot;:6.9},{&quot;2026-08-30&quot;:6.88},{&quot;2026-08-31&quot;:6.92},{&quot;2026-09-01&quot;:6.92},{&quot;2026-09-02&quot;:6.92},{&quot;2026-09-03&quot;:6.87},{&quot;2026-09-04&quot;:7.01},{&quot;2026-09-05&quot;:7.01},{&quot;2026-09-06&quot;:7.01},{&quot;2026-09-07&quot;:7.01},{&quot;2026-09-08&quot;:7.01},{&quot;2026-09-09&quot;:7.01},{&quot;2026-09-10&quot;:7.01},{&quot;2026-09-11&quot;:7.02}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.34},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.29},{&quot;2026-06-27&quot;:0.29},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-22&quot;:0.29},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-24&quot;:0.29},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.3},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.35},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.3},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.35}]}"
        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="108379"
  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-tmc ss-rare 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">
            Exotic Orchard
        </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="text-sm font-medium text-nine-white">
            $0.35
          </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="Exotic Orchard" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/c/ac9d97ef-a64b-43ef-8e4d-f3ebe46d9932.jpg?1783904152" />

        <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">
            Exotic Orchard
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Exotic Orchard" src="https://cards.scryfall.io/large/front/a/c/ac9d97ef-a64b-43ef-8e4d-f3ebe46d9932.jpg?1783904152" />
    </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">
                $0.35
              </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">
                $5.91
              </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.06</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-08-19&quot;:5.32},{&quot;2026-08-20&quot;:5.32},{&quot;2026-08-21&quot;:5.32},{&quot;2026-08-22&quot;:5.32},{&quot;2026-08-23&quot;:5.32},{&quot;2026-08-24&quot;:5.4},{&quot;2026-08-25&quot;:5.4},{&quot;2026-08-26&quot;:5.4},{&quot;2026-08-27&quot;:5.91},{&quot;2026-08-28&quot;:5.91},{&quot;2026-08-29&quot;:5.91},{&quot;2026-08-30&quot;:5.91},{&quot;2026-08-31&quot;:5.91},{&quot;2026-09-01&quot;:5.91},{&quot;2026-09-02&quot;:5.91},{&quot;2026-09-03&quot;:5.91},{&quot;2026-09-04&quot;:5.91},{&quot;2026-09-05&quot;:5.91},{&quot;2026-09-06&quot;:5.87},{&quot;2026-09-07&quot;:5.9},{&quot;2026-09-08&quot;:5.91},{&quot;2026-09-09&quot;:5.91},{&quot;2026-09-10&quot;:5.91},{&quot;2026-09-11&quot;:5.91}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.35},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.4},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.39},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.35},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.35}]}"
        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="108326"
  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-tmc ss-rare 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">
            Ray Fillet, Wave Warrior
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Fish Mutant
      </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">
              ↑
              26%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.34
          </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="Ray Fillet, Wave Warrior" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/9/796c1b1c-c701-4c7e-922b-0964f04e03a6.jpg?1783904171" />

        <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">
            Ray Fillet, Wave Warrior
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Fish Mutant</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="Ray Fillet, Wave Warrior" src="https://cards.scryfall.io/large/front/7/9/796c1b1c-c701-4c7e-922b-0964f04e03a6.jpg?1783904171" />
    </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">
                $0.34
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  26%
                </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">
                $9.48
              </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.09</span>
              <span class="text-xs text-grey-text">Credit: $0.12</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-08-19&quot;:9.65},{&quot;2026-08-20&quot;:9.65},{&quot;2026-08-21&quot;:9.65},{&quot;2026-08-22&quot;:9.69},{&quot;2026-08-23&quot;:9.69},{&quot;2026-08-24&quot;:9.69},{&quot;2026-08-25&quot;:9.69},{&quot;2026-08-26&quot;:9.59},{&quot;2026-08-27&quot;:9.59},{&quot;2026-08-28&quot;:9.53},{&quot;2026-08-29&quot;:9.53},{&quot;2026-08-30&quot;:9.53},{&quot;2026-08-31&quot;:9.53},{&quot;2026-09-01&quot;:9.53},{&quot;2026-09-02&quot;:9.53},{&quot;2026-09-03&quot;:9.52},{&quot;2026-09-04&quot;:9.52},{&quot;2026-09-05&quot;:9.52},{&quot;2026-09-06&quot;:9.52},{&quot;2026-09-07&quot;:9.52},{&quot;2026-09-08&quot;:9.52},{&quot;2026-09-09&quot;:9.52},{&quot;2026-09-10&quot;:9.48},{&quot;2026-09-11&quot;:9.48}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.33},{&quot;2026-06-11&quot;:0.34},{&quot;2026-06-12&quot;:0.32},{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.32},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.35},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.35},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.37},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.39},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.35},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.35},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.36},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.27},{&quot;2026-09-05&quot;:0.27},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.34}]}"
        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="108374"
  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-tmc ss-rare 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">
            Cinder Glade
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Mountain Forest
      </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">
            $0.34
          </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="Cinder Glade" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/45f13a94-c693-4a3b-a0bb-f18ae9fb1ca0.jpg?1783904154" />

        <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">
            Cinder Glade
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Mountain Forest</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="Cinder Glade" src="https://cards.scryfall.io/large/front/4/5/45f13a94-c693-4a3b-a0bb-f18ae9fb1ca0.jpg?1783904154" />
    </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">
                $0.34
              </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.68
              </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.11</span>
              <span class="text-xs text-grey-text">Credit: $0.14</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-08-19&quot;:2.85},{&quot;2026-08-20&quot;:2.85},{&quot;2026-08-21&quot;:2.85},{&quot;2026-08-22&quot;:2.85},{&quot;2026-08-23&quot;:2.85},{&quot;2026-08-24&quot;:2.85},{&quot;2026-08-25&quot;:2.85},{&quot;2026-08-26&quot;:2.85},{&quot;2026-08-27&quot;:2.85},{&quot;2026-08-28&quot;:2.85},{&quot;2026-08-29&quot;:2.85},{&quot;2026-08-30&quot;:2.8},{&quot;2026-08-31&quot;:2.68},{&quot;2026-09-01&quot;:2.68},{&quot;2026-09-02&quot;:2.68},{&quot;2026-09-03&quot;:2.68},{&quot;2026-09-04&quot;:2.68},{&quot;2026-09-05&quot;:2.68},{&quot;2026-09-06&quot;:2.68},{&quot;2026-09-07&quot;:2.68},{&quot;2026-09-08&quot;:2.68},{&quot;2026-09-09&quot;:2.68},{&quot;2026-09-10&quot;:2.68},{&quot;2026-09-11&quot;:2.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.36},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.38},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.32},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.35},{&quot;2026-07-16&quot;:0.38},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-22&quot;:0.38},{&quot;2026-07-23&quot;:0.38},{&quot;2026-07-24&quot;:0.38},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.39},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.39},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.3},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.63},{&quot;2026-08-27&quot;:0.64},{&quot;2026-08-28&quot;:0.61},{&quot;2026-08-29&quot;:0.61},{&quot;2026-08-30&quot;:0.6},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.59},{&quot;2026-09-02&quot;:0.59},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.34}]}"
        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="108376"
  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-tmc ss-common 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">
            Command Tower
        </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="text-sm font-medium text-nine-white">
            $0.34
          </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="Command Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/d/4d51a621-be31-4b74-8e0b-3958180a8bc5.jpg?1783904153" />

        <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">
            Command Tower
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </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="Command Tower" src="https://cards.scryfall.io/large/front/4/d/4d51a621-be31-4b74-8e0b-3958180a8bc5.jpg?1783904153" />
    </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">
                $0.34
              </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">
                $1.39
              </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">$0.06</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-08-19&quot;:1.48},{&quot;2026-08-20&quot;:1.48},{&quot;2026-08-21&quot;:1.48},{&quot;2026-08-22&quot;:1.44},{&quot;2026-08-23&quot;:1.43},{&quot;2026-08-24&quot;:1.43},{&quot;2026-08-25&quot;:1.41},{&quot;2026-08-26&quot;:1.41},{&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.43},{&quot;2026-09-03&quot;:1.34},{&quot;2026-09-04&quot;:1.32},{&quot;2026-09-05&quot;:1.32},{&quot;2026-09-06&quot;:1.34},{&quot;2026-09-07&quot;:1.35},{&quot;2026-09-08&quot;:1.37},{&quot;2026-09-09&quot;:1.39},{&quot;2026-09-10&quot;:1.37},{&quot;2026-09-11&quot;:1.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.37},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.25},{&quot;2026-06-16&quot;:0.22},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.35},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.28},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.29},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.31},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-22&quot;:0.35},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.37},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.4},{&quot;2026-08-12&quot;:0.4},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.37},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.37},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.34}]}"
        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="108336"
  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-tmc ss-rare 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">
            Fast Forward
        </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">
              ↑
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.33
          </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="Fast Forward" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/e/fe07512e-46c1-4f45-a06f-5875acaf8928.jpg?1783904167" />

        <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">
            Fast Forward
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Fast Forward" src="https://cards.scryfall.io/large/front/f/e/fe07512e-46c1-4f45-a06f-5875acaf8928.jpg?1783904167" />
    </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">
                $0.33
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </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">
                $6.29
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  7%
                </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.15</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-06-14&quot;:0.5},{&quot;2026-06-15&quot;:0.5},{&quot;2026-06-16&quot;:0.5},{&quot;2026-06-17&quot;:0.5},{&quot;2026-06-18&quot;:0.5},{&quot;2026-06-19&quot;:0.5},{&quot;2026-06-20&quot;:0.5},{&quot;2026-06-21&quot;:0.5},{&quot;2026-06-22&quot;:0.5},{&quot;2026-06-23&quot;:0.5},{&quot;2026-06-24&quot;:0.5},{&quot;2026-06-25&quot;:0.5},{&quot;2026-06-26&quot;:0.5},{&quot;2026-06-27&quot;:0.5},{&quot;2026-06-28&quot;:0.5},{&quot;2026-06-29&quot;:0.5},{&quot;2026-06-30&quot;:0.5},{&quot;2026-07-01&quot;:0.5},{&quot;2026-07-02&quot;:0.5},{&quot;2026-07-03&quot;:0.5},{&quot;2026-07-04&quot;:0.5},{&quot;2026-07-05&quot;:0.5},{&quot;2026-07-06&quot;:0.5},{&quot;2026-07-07&quot;:0.5},{&quot;2026-07-08&quot;:0.5},{&quot;2026-07-09&quot;:0.5},{&quot;2026-07-10&quot;:0.5},{&quot;2026-07-11&quot;:0.5},{&quot;2026-07-12&quot;:0.5},{&quot;2026-07-13&quot;:0.5},{&quot;2026-07-14&quot;:0.5},{&quot;2026-07-15&quot;:0.5},{&quot;2026-07-16&quot;:0.5},{&quot;2026-07-17&quot;:0.5},{&quot;2026-07-18&quot;:0.5},{&quot;2026-07-19&quot;:0.5},{&quot;2026-07-20&quot;:0.5},{&quot;2026-07-21&quot;:0.5},{&quot;2026-07-22&quot;:0.5},{&quot;2026-07-23&quot;:0.5},{&quot;2026-07-24&quot;:0.5},{&quot;2026-07-25&quot;:0.5},{&quot;2026-07-26&quot;:0.5},{&quot;2026-07-27&quot;:0.5},{&quot;2026-07-28&quot;:0.5},{&quot;2026-07-29&quot;:0.5},{&quot;2026-07-30&quot;:0.5},{&quot;2026-07-31&quot;:0.5},{&quot;2026-08-01&quot;:0.5},{&quot;2026-08-02&quot;:0.5},{&quot;2026-08-03&quot;:0.5},{&quot;2026-08-04&quot;:0.5},{&quot;2026-08-05&quot;:0.5},{&quot;2026-08-06&quot;:0.5},{&quot;2026-08-07&quot;:0.5},{&quot;2026-08-08&quot;:0.5},{&quot;2026-08-09&quot;:0.5},{&quot;2026-08-10&quot;:0.5},{&quot;2026-08-11&quot;:0.5},{&quot;2026-08-12&quot;:0.5},{&quot;2026-08-13&quot;:0.5},{&quot;2026-08-14&quot;:0.5},{&quot;2026-08-15&quot;:0.5},{&quot;2026-08-16&quot;:0.5},{&quot;2026-08-17&quot;:0.5},{&quot;2026-08-18&quot;:0.5},{&quot;2026-08-19&quot;:5.65},{&quot;2026-08-20&quot;:5.65},{&quot;2026-08-21&quot;:5.65},{&quot;2026-08-22&quot;:5.74},{&quot;2026-08-23&quot;:5.74},{&quot;2026-08-24&quot;:5.67},{&quot;2026-08-25&quot;:5.67},{&quot;2026-08-26&quot;:5.67},{&quot;2026-08-27&quot;:5.67},{&quot;2026-08-28&quot;:5.67},{&quot;2026-08-29&quot;:5.67},{&quot;2026-08-30&quot;:5.67},{&quot;2026-08-31&quot;:5.67},{&quot;2026-09-01&quot;:5.67},{&quot;2026-09-02&quot;:5.72},{&quot;2026-09-03&quot;:5.72},{&quot;2026-09-04&quot;:5.86},{&quot;2026-09-05&quot;:5.86},{&quot;2026-09-06&quot;:5.86},{&quot;2026-09-07&quot;:5.86},{&quot;2026-09-08&quot;:6.19},{&quot;2026-09-09&quot;:6.19},{&quot;2026-09-10&quot;:6.19},{&quot;2026-09-11&quot;:6.29}],&quot;normal&quot;:[{&quot;2026-02-28&quot;:0.82},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.38},{&quot;2026-08-08&quot;:0.38},{&quot;2026-08-09&quot;:0.38},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.35},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.35},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.33}]}"
        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="108355"
  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-tmc ss-rare 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">
            Big Apple, 3 a.m.
        </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-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.33
          </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="Big Apple, 3 a.m." class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b9cc16f9-fea3-4527-9b81-3c84ce9c5e01.jpg?1783904160" />

        <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">
            Big Apple, 3 a.m.
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </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="Big Apple, 3 a.m." src="https://cards.scryfall.io/large/front/b/9/b9cc16f9-fea3-4527-9b81-3c84ce9c5e01.jpg?1783904160" />
    </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">
                $0.33
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  6%
                </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">
                $6.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">$0.05</span>
              <span class="text-xs text-grey-text">Credit: $0.07</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-08-19&quot;:7.16},{&quot;2026-08-20&quot;:7.16},{&quot;2026-08-21&quot;:7.16},{&quot;2026-08-22&quot;:7.16},{&quot;2026-08-23&quot;:7.04},{&quot;2026-08-24&quot;:7.03},{&quot;2026-08-25&quot;:7.03},{&quot;2026-08-26&quot;:7.02},{&quot;2026-08-27&quot;:7.02},{&quot;2026-08-28&quot;:7.02},{&quot;2026-08-29&quot;:7.02},{&quot;2026-08-30&quot;:6.98},{&quot;2026-08-31&quot;:6.98},{&quot;2026-09-01&quot;:6.98},{&quot;2026-09-02&quot;:6.98},{&quot;2026-09-03&quot;:6.98},{&quot;2026-09-04&quot;:6.98},{&quot;2026-09-05&quot;:6.98},{&quot;2026-09-06&quot;:7.06},{&quot;2026-09-07&quot;:7.06},{&quot;2026-09-08&quot;:6.99},{&quot;2026-09-09&quot;:6.99},{&quot;2026-09-10&quot;:6.98},{&quot;2026-09-11&quot;:6.99}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.41},{&quot;2026-06-12&quot;:0.38},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.38},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.38},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.4},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.39},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.42},{&quot;2026-07-11&quot;:0.41},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.39},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.41},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.37},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.38},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.42},{&quot;2026-08-07&quot;:0.41},{&quot;2026-08-08&quot;:0.4},{&quot;2026-08-09&quot;:0.4},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.41},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.4},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.39},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.33}]}"
        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="108331"
  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-tmc ss-rare 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">
            Rat King, Pale Piper
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Rat Avatar
      </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">
              ↓
              11%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rat King, Pale Piper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/b/9b215ce4-a085-4627-99b1-f4f1344ad41b.jpg?1783904169" />

        <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">
            Rat King, Pale Piper
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Rat Avatar</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>
          </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="Rat King, Pale Piper" src="https://cards.scryfall.io/large/front/9/b/9b215ce4-a085-4627-99b1-f4f1344ad41b.jpg?1783904169" />
    </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">
                $0.32
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  11%
                </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">
                $7.57
              </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.05</span>
              <span class="text-xs text-grey-text">Credit: $0.07</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-08-19&quot;:7.46},{&quot;2026-08-20&quot;:7.46},{&quot;2026-08-21&quot;:7.42},{&quot;2026-08-22&quot;:7.42},{&quot;2026-08-23&quot;:7.44},{&quot;2026-08-24&quot;:7.44},{&quot;2026-08-25&quot;:7.44},{&quot;2026-08-26&quot;:7.47},{&quot;2026-08-27&quot;:7.47},{&quot;2026-08-28&quot;:7.46},{&quot;2026-08-29&quot;:7.46},{&quot;2026-08-30&quot;:7.57},{&quot;2026-08-31&quot;:7.57},{&quot;2026-09-01&quot;:7.57},{&quot;2026-09-02&quot;:7.57},{&quot;2026-09-03&quot;:7.57},{&quot;2026-09-04&quot;:7.57},{&quot;2026-09-05&quot;:7.57},{&quot;2026-09-06&quot;:7.57},{&quot;2026-09-07&quot;:7.57},{&quot;2026-09-08&quot;:7.57},{&quot;2026-09-09&quot;:7.57},{&quot;2026-09-10&quot;:7.57},{&quot;2026-09-11&quot;:7.57}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.35},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.36},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.41},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.39},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.42},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.41},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.39},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.39},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.37},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.37},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.36},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.41},{&quot;2026-09-01&quot;:0.41},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.32}]}"
        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 93 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=206&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=206&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=206&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=206&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=206&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=206&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=206&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=206&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=206&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=206&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=206&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="108375"
          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">
              62
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              City of Brass


            </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">
                  $12.09

                    <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">
                $8.25
            </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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108375"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108375" src="/boxset_card/108375?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108388"
          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">
              75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Spire Garden


            </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">
                  $6.38

                    <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">
                $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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108388"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108388" src="/boxset_card/108388?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108393"
          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">
              80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Undergrowth Stadium


            </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">
                  $6.17

                    <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">
                $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.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108393"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108393" src="/boxset_card/108393?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108324"
          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">
              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-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Irma, Part-Time Mutant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Mutant Shapeshifter
            </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.15

                    <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">
                $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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108324"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108324" src="/boxset_card/108324?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108344"
          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">
              32
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Ninja Pizza


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.93

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108344"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108344" src="/boxset_card/108344?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108356"
          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">
              43
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Hidden Hideout


            </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">
                  $3.35

                    <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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108356"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108356" src="/boxset_card/108356?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108320"
          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">
              8
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Endless Foot Assault


            </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">
                  $2.79

                    <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.10
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108320"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108320" src="/boxset_card/108320?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108366"
          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">
              53
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Vigor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental Incarnation
            </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-g'></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">
                  $2.72

                    <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">
                $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.68
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108366"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108366" src="/boxset_card/108366?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108343"
          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">
              31
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Level Up


            </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-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">
                  $2.64

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </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.90
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108343"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108343" src="/boxset_card/108343?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108359"
          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">
              46
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Wave Goodbye


            </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><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-50 text-badge-text">
                      ↑
                      7%
                    </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.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.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108359"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108359" src="/boxset_card/108359?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108351"
          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">
              38
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Coin of Mastery


            </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-4'></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-100 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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108351"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108351" src="/boxset_card/108351?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108350"
          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">
              37
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Big Mother Mouser


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Robot
            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.07

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108350"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108350" src="/boxset_card/108350?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108319"
          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">
              7
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Continue?


            </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-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </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.70
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108319"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108319" src="/boxset_card/108319?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108380"
          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">
              67
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Fabled Passage


            </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.76

                    <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">
                $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.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108380"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108380" src="/boxset_card/108380?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108372"
          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">
              59
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </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-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.75

                    <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.65
            </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.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108372"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108372" src="/boxset_card/108372?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108332"
          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">
              20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Shredder, Shadow Master


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human 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-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.66

                    <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">
                $0.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108332"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108332" src="/boxset_card/108332?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108368"
          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">
              55
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Assassin&#39;s Trophy


            </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-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.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      46%
                    </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.36
            </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="108368"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108368" src="/boxset_card/108368?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108341"
          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">
              29
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              High Score


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </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.38
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108341"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108341" src="/boxset_card/108341?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98231"
          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">
              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-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Heroes in a Half Shell


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja Turtle
            </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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98231"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98231" src="/boxset_card/98231?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98229"
          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">
              5
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Michelangelo, the Heart


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja Turtle
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.26

                    <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.38
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98229"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98229" src="/boxset_card/98229?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108371"
          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">
              58
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Chromatic Lantern


            </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.20

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108371"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108371" src="/boxset_card/108371?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108360"
          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">
              47
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Blasphemous Act


            </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-8'></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.07

                    <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">
                $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.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108360"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108360" src="/boxset_card/108360?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98227"
          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">
              4
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Raphael, the Muscle


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja Turtle
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98227"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98227" src="/boxset_card/98227?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98221"
          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">
              1
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Leonardo, the Balance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja Turtle
            </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-w'></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">
                  $0.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98221"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98221" src="/boxset_card/98221?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108377"
          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">
              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-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Dragonskull Summit


            </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">
                  $0.81

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      21%
                    </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.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108377"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108377" src="/boxset_card/108377?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108370"
          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">
              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-tmc ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </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">
                  $0.77

                    <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.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108370"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108370" src="/boxset_card/108370?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98223"
          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">
              2
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Donatello, the Brains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja Turtle
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98223"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98223" src="/boxset_card/98223?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98225"
          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">
              3
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-mythic ss-fw ss-2x mr-4"></i>
              Splinter, the Mentor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Mutant Ninja 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>
              </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">
                  $0.56

                    <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">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98225"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98225" src="/boxset_card/98225?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108394"
          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">
              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-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Vernal Fen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Swamp Forest
            </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">
                  $0.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      19%
                    </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.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.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108394"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108394" src="/boxset_card/108394?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108325"
          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">
              13
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Krang, the All-Powerful


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact Creature — Utrom Robot
            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.41

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108325"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108325" src="/boxset_card/108325?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108381"
          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">
              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-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Grand Coliseum


            </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">
                  $0.39

                    <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">
                $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.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108381"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108381" src="/boxset_card/108381?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108349"
          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">
              36
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Arcade Cabinet


            </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">
                  $0.38

                </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108349"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108349" src="/boxset_card/108349?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108363"
          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">
              50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-common ss-fw ss-2x mr-4"></i>
              Cultivate


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </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.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108363"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108363" src="/boxset_card/108363?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108378"
          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">
              65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-common ss-fw ss-2x mr-4"></i>
              Evolving Wilds


            </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">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      65%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108378"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108378" src="/boxset_card/108378?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108382"
          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">
              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-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Hinterland Harbor


            </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">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      41%
                    </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.12
            </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="108382"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108382" src="/boxset_card/108382?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108385"
          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">
              72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Rootbound Crag


            </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">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      19%
                    </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.08
            </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="108385"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108385" src="/boxset_card/108385?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108383"
          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">
              70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-common ss-fw ss-2x mr-4"></i>
              Path of Ancestry


            </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">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      28%
                    </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.02
            </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.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108383"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108383" src="/boxset_card/108383?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108389"
          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">
              76
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Sunken Hollow


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island Swamp
            </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">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </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.12
            </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="108389"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108389" src="/boxset_card/108389?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108373"
          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">
              60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-common ss-fw ss-2x mr-4"></i>
              Ash Barrens


            </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">
                  $0.36

                    <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">
            </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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108373"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108373" src="/boxset_card/108373?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108386"
          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">
              73
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Smoldering Marsh


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Swamp Mountain
            </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">
                  $0.36

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      20%
                    </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.32
            </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.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108386"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108386" src="/boxset_card/108386?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108387"
          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">
              74
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Sodden Verdure


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Forest Island
            </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">
                  $0.36

                    <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">
                $0.10
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108387"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108387" src="/boxset_card/108387?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108342"
          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">
              30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Leatherhead, Iron Gator


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Crocodile Mutant Rogue
            </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-5'></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">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      25%
                    </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.06
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108342"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108342" src="/boxset_card/108342?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108369"
          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">
              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-tmc ss-rare 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">
                  $0.35

                    <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">
                $0.09
            </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="108369"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108369" src="/boxset_card/108369?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108379"
          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">
              66
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Exotic Orchard


            </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">
                  $0.35

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </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="108379"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108379" src="/boxset_card/108379?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108326"
          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">
              14
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Ray Fillet, Wave Warrior


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Fish Mutant
            </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">
                  $0.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      26%
                    </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.09
            </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108326"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108326" src="/boxset_card/108326?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108374"
          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">
              61
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Cinder Glade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain Forest
            </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">
                  $0.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.11
            </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="108374"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108374" src="/boxset_card/108374?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108376"
          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">
              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-tmc ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </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">
                  $0.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108376"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108376" src="/boxset_card/108376?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108336"
          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">
              24
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Fast Forward


            </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">
                  $0.33

                    <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">
                $0.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108336"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108336" src="/boxset_card/108336?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108355"
          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">
              42
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Big Apple, 3 a.m.


            </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">
                  $0.33

                    <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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108355"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108355" src="/boxset_card/108355?collection_id=206&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108331"
          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">
              19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tmc ss-rare ss-fw ss-2x mr-4"></i>
              Rat King, Pale Piper


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Rat Avatar
            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108331"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108331" src="/boxset_card/108331?collection_id=206&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 93 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=206&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=206&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>