<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="14" 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="80040"
  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-uma 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">
            Ulamog, the Infinite Gyre
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Eldrazi
      </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">
            $55.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="Ulamog, the Infinite Gyre" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/8/d8705c3e-d620-43fb-8773-65b412f555ef.jpg?1783933749" />

        <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">
            Ulamog, the Infinite Gyre
        </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 — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-11'></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="Ulamog, the Infinite Gyre" src="https://cards.scryfall.io/large/front/d/8/d8705c3e-d620-43fb-8773-65b412f555ef.jpg?1783933749" />
    </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">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $55.76
              </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">$28.00</span>
              <span class="text-xs text-grey-text">Credit: $36.40</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:55.09},{&quot;2026-06-14&quot;:55.38},{&quot;2026-06-15&quot;:55.38},{&quot;2026-06-16&quot;:55.38},{&quot;2026-06-17&quot;:55.57},{&quot;2026-06-18&quot;:55.57},{&quot;2026-06-19&quot;:55.57},{&quot;2026-06-20&quot;:55.49},{&quot;2026-06-21&quot;:55.62},{&quot;2026-06-22&quot;:55.62},{&quot;2026-06-23&quot;:55.62},{&quot;2026-06-24&quot;:55.53},{&quot;2026-06-25&quot;:55.53},{&quot;2026-06-26&quot;:55.53},{&quot;2026-06-27&quot;:55.53},{&quot;2026-06-28&quot;:55.53},{&quot;2026-06-29&quot;:55.53},{&quot;2026-06-30&quot;:55.53},{&quot;2026-07-01&quot;:55.53},{&quot;2026-07-02&quot;:55.53},{&quot;2026-07-03&quot;:55.65},{&quot;2026-07-04&quot;:55.65},{&quot;2026-07-05&quot;:55.65},{&quot;2026-07-06&quot;:55.65},{&quot;2026-07-07&quot;:55.65},{&quot;2026-07-08&quot;:55.65},{&quot;2026-07-09&quot;:55.65},{&quot;2026-07-10&quot;:55.65},{&quot;2026-07-11&quot;:55.65},{&quot;2026-07-12&quot;:55.65},{&quot;2026-07-13&quot;:55.64},{&quot;2026-07-14&quot;:55.64},{&quot;2026-07-15&quot;:55.64},{&quot;2026-07-16&quot;:55.64},{&quot;2026-07-17&quot;:55.64},{&quot;2026-07-18&quot;:55.64},{&quot;2026-07-19&quot;:55.64},{&quot;2026-07-20&quot;:55.64},{&quot;2026-07-21&quot;:55.64},{&quot;2026-07-22&quot;:55.62},{&quot;2026-07-23&quot;:55.62},{&quot;2026-07-24&quot;:55.62},{&quot;2026-07-25&quot;:55.56},{&quot;2026-07-26&quot;:55.56},{&quot;2026-07-27&quot;:55.56},{&quot;2026-07-28&quot;:55.56},{&quot;2026-07-29&quot;:55.56},{&quot;2026-07-30&quot;:55.56},{&quot;2026-07-31&quot;:55.33},{&quot;2026-08-01&quot;:55.33},{&quot;2026-08-02&quot;:55.39},{&quot;2026-08-03&quot;:55.39},{&quot;2026-08-04&quot;:55.39},{&quot;2026-08-05&quot;:55.39},{&quot;2026-08-07&quot;:55.39},{&quot;2026-08-08&quot;:55.39},{&quot;2026-08-09&quot;:55.39},{&quot;2026-08-10&quot;:55.39},{&quot;2026-08-11&quot;:55.39},{&quot;2026-08-12&quot;:55.39},{&quot;2026-08-13&quot;:55.39},{&quot;2026-08-14&quot;:55.46},{&quot;2026-08-15&quot;:55.46},{&quot;2026-08-16&quot;:55.46},{&quot;2026-08-17&quot;:55.46},{&quot;2026-08-18&quot;:55.46},{&quot;2026-08-19&quot;:55.62},{&quot;2026-08-20&quot;:55.62},{&quot;2026-08-21&quot;:55.62},{&quot;2026-08-22&quot;:55.62},{&quot;2026-08-23&quot;:55.62},{&quot;2026-08-24&quot;:55.62},{&quot;2026-08-25&quot;:55.62},{&quot;2026-08-26&quot;:55.62},{&quot;2026-08-27&quot;:55.97},{&quot;2026-08-28&quot;:55.97},{&quot;2026-08-29&quot;:55.97},{&quot;2026-08-30&quot;:56.02},{&quot;2026-08-31&quot;:56.02},{&quot;2026-09-01&quot;:56.02},{&quot;2026-09-02&quot;:56.02},{&quot;2026-09-03&quot;:56.02},{&quot;2026-09-04&quot;:56.02},{&quot;2026-09-05&quot;:56.02},{&quot;2026-09-06&quot;:56.02},{&quot;2026-09-07&quot;:56.22},{&quot;2026-09-08&quot;:56.22},{&quot;2026-09-09&quot;:56.22},{&quot;2026-09-10&quot;:55.76},{&quot;2026-09-11&quot;:55.76}],&quot;normal&quot;:[]}"
        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="14126"
  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-cmm 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">
            Zhulodok, Void Gorger
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Eldrazi
      </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">
            $48.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="Zhulodok, Void Gorger" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/0/a015461d-4214-4feb-8b04-519c537759eb.jpg?1783915492" />

        <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">
            Zhulodok, Void Gorger
        </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 — Eldrazi</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-c'></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="Zhulodok, Void Gorger" src="https://cards.scryfall.io/large/front/a/0/a015461d-4214-4feb-8b04-519c537759eb.jpg?1783915492" />
    </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">Foil</span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:45.9},{&quot;2026-06-14&quot;:45.77},{&quot;2026-06-15&quot;:45.84},{&quot;2026-06-16&quot;:46.18},{&quot;2026-06-17&quot;:46.08},{&quot;2026-06-18&quot;:46.32},{&quot;2026-06-19&quot;:46.14},{&quot;2026-06-20&quot;:46.72},{&quot;2026-06-21&quot;:46.45},{&quot;2026-06-22&quot;:46.12},{&quot;2026-06-23&quot;:46.49},{&quot;2026-06-24&quot;:48.61},{&quot;2026-06-25&quot;:49.35},{&quot;2026-06-26&quot;:49.64},{&quot;2026-06-27&quot;:49.81},{&quot;2026-06-28&quot;:50.69},{&quot;2026-06-29&quot;:50.29},{&quot;2026-06-30&quot;:50.69},{&quot;2026-07-01&quot;:50.57},{&quot;2026-07-02&quot;:50.57},{&quot;2026-07-03&quot;:50.21},{&quot;2026-07-04&quot;:50.09},{&quot;2026-07-05&quot;:50.19},{&quot;2026-07-06&quot;:50.38},{&quot;2026-07-07&quot;:49.81},{&quot;2026-07-08&quot;:48.56},{&quot;2026-07-09&quot;:47.67},{&quot;2026-07-10&quot;:47.58},{&quot;2026-07-11&quot;:47.58},{&quot;2026-07-12&quot;:46.71},{&quot;2026-07-13&quot;:46.26},{&quot;2026-07-14&quot;:46.3},{&quot;2026-07-15&quot;:46.69},{&quot;2026-07-16&quot;:46.82},{&quot;2026-07-17&quot;:47.25},{&quot;2026-07-18&quot;:46.79},{&quot;2026-07-19&quot;:46.63},{&quot;2026-07-20&quot;:46.63},{&quot;2026-07-21&quot;:46.71},{&quot;2026-07-22&quot;:46.71},{&quot;2026-07-23&quot;:47.09},{&quot;2026-07-24&quot;:47.02},{&quot;2026-07-25&quot;:47.16},{&quot;2026-07-26&quot;:47.21},{&quot;2026-07-27&quot;:47.15},{&quot;2026-07-28&quot;:46.82},{&quot;2026-07-29&quot;:46.82},{&quot;2026-07-30&quot;:46.75},{&quot;2026-07-31&quot;:46.46},{&quot;2026-08-01&quot;:46.84},{&quot;2026-08-02&quot;:46.32},{&quot;2026-08-03&quot;:46.51},{&quot;2026-08-04&quot;:46.79},{&quot;2026-08-05&quot;:47.1},{&quot;2026-08-07&quot;:47.1},{&quot;2026-08-08&quot;:47.06},{&quot;2026-08-09&quot;:47.06},{&quot;2026-08-10&quot;:47.06},{&quot;2026-08-11&quot;:47.03},{&quot;2026-08-12&quot;:47.34},{&quot;2026-08-13&quot;:48.0},{&quot;2026-08-14&quot;:48.0},{&quot;2026-08-15&quot;:47.93},{&quot;2026-08-16&quot;:47.93},{&quot;2026-08-17&quot;:47.86},{&quot;2026-08-18&quot;:48.28},{&quot;2026-08-19&quot;:48.28},{&quot;2026-08-20&quot;:48.1},{&quot;2026-08-21&quot;:48.63},{&quot;2026-08-22&quot;:48.99},{&quot;2026-08-23&quot;:48.99},{&quot;2026-08-24&quot;:48.87},{&quot;2026-08-25&quot;:48.87},{&quot;2026-08-26&quot;:48.8},{&quot;2026-08-27&quot;:48.76},{&quot;2026-08-28&quot;:48.64},{&quot;2026-08-29&quot;:48.64},{&quot;2026-08-30&quot;:48.13},{&quot;2026-08-31&quot;:48.72},{&quot;2026-09-01&quot;:49.05},{&quot;2026-09-02&quot;:49.9},{&quot;2026-09-03&quot;:49.34},{&quot;2026-09-04&quot;:49.78},{&quot;2026-09-05&quot;:49.5},{&quot;2026-09-06&quot;:49.5},{&quot;2026-09-07&quot;:49.47},{&quot;2026-09-08&quot;:49.47},{&quot;2026-09-09&quot;:48.67},{&quot;2026-09-10&quot;:48.59},{&quot;2026-09-11&quot;:48.39}],&quot;normal&quot;:[]}"
        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="94262"
  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-tdm 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">
            Ugin, Eye of the Storms 
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ugin
      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ugin, Eye of the Storms // Ugin, Eye of the Storms" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/53b11c30-1c4e-4238-9d42-2e1480df60c1.jpg?1782686988" />

        <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">
            Ugin, Eye of the Storms 
        </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 Planeswalker — Ugin</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Ugin, Eye of the Storms // Ugin, Eye of the Storms" src="https://cards.scryfall.io/large/front/5/3/53b11c30-1c4e-4238-9d42-2e1480df60c1.jpg?1782686988" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Ugin, Eye of the Storms // Ugin, Eye of the Storms" src="https://cards.scryfall.io/large/back/5/3/53b11c30-1c4e-4238-9d42-2e1480df60c1.jpg?1782686988" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </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">
                $47.73
              </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">
                $46.22
              </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">$38.00</span>
              <span class="text-xs text-grey-text">Credit: $49.40</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:48.24},{&quot;2026-06-14&quot;:48.24},{&quot;2026-06-15&quot;:48.24},{&quot;2026-06-16&quot;:47.79},{&quot;2026-06-17&quot;:48.26},{&quot;2026-06-18&quot;:48.26},{&quot;2026-06-19&quot;:48.26},{&quot;2026-06-20&quot;:48.26},{&quot;2026-06-21&quot;:48.41},{&quot;2026-06-22&quot;:48.41},{&quot;2026-06-23&quot;:48.41},{&quot;2026-06-24&quot;:48.39},{&quot;2026-06-25&quot;:48.39},{&quot;2026-06-26&quot;:48.13},{&quot;2026-06-27&quot;:48.13},{&quot;2026-06-28&quot;:48.74},{&quot;2026-06-29&quot;:48.74},{&quot;2026-06-30&quot;:48.7},{&quot;2026-07-01&quot;:48.42},{&quot;2026-07-02&quot;:48.96},{&quot;2026-07-03&quot;:49.1},{&quot;2026-07-04&quot;:48.66},{&quot;2026-07-05&quot;:48.66},{&quot;2026-07-06&quot;:48.55},{&quot;2026-07-07&quot;:48.28},{&quot;2026-07-08&quot;:48.19},{&quot;2026-07-09&quot;:47.98},{&quot;2026-07-10&quot;:48.53},{&quot;2026-07-11&quot;:48.53},{&quot;2026-07-12&quot;:48.43},{&quot;2026-07-13&quot;:48.09},{&quot;2026-07-14&quot;:46.35},{&quot;2026-07-15&quot;:46.26},{&quot;2026-07-16&quot;:46.25},{&quot;2026-07-17&quot;:46.21},{&quot;2026-07-18&quot;:46.25},{&quot;2026-07-19&quot;:46.07},{&quot;2026-07-20&quot;:45.91},{&quot;2026-07-21&quot;:45.91},{&quot;2026-07-22&quot;:46.12},{&quot;2026-07-23&quot;:46.61},{&quot;2026-07-24&quot;:47.16},{&quot;2026-07-25&quot;:47.15},{&quot;2026-07-26&quot;:45.65},{&quot;2026-07-27&quot;:46.17},{&quot;2026-07-28&quot;:46.17},{&quot;2026-07-29&quot;:46.07},{&quot;2026-07-30&quot;:46.07},{&quot;2026-07-31&quot;:46.77},{&quot;2026-08-01&quot;:46.77},{&quot;2026-08-02&quot;:46.49},{&quot;2026-08-03&quot;:46.38},{&quot;2026-08-04&quot;:46.38},{&quot;2026-08-05&quot;:46.38},{&quot;2026-08-07&quot;:46.46},{&quot;2026-08-08&quot;:46.46},{&quot;2026-08-09&quot;:45.57},{&quot;2026-08-10&quot;:45.57},{&quot;2026-08-11&quot;:45.57},{&quot;2026-08-12&quot;:46.12},{&quot;2026-08-13&quot;:46.17},{&quot;2026-08-14&quot;:46.62},{&quot;2026-08-15&quot;:46.62},{&quot;2026-08-16&quot;:46.62},{&quot;2026-08-17&quot;:46.62},{&quot;2026-08-18&quot;:46.62},{&quot;2026-08-19&quot;:46.57},{&quot;2026-08-20&quot;:46.57},{&quot;2026-08-21&quot;:46.48},{&quot;2026-08-22&quot;:46.48},{&quot;2026-08-23&quot;:46.48},{&quot;2026-08-24&quot;:46.2},{&quot;2026-08-25&quot;:45.91},{&quot;2026-08-26&quot;:45.84},{&quot;2026-08-27&quot;:45.73},{&quot;2026-08-28&quot;:45.47},{&quot;2026-08-29&quot;:45.47},{&quot;2026-08-30&quot;:45.35},{&quot;2026-08-31&quot;:44.83},{&quot;2026-09-01&quot;:45.46},{&quot;2026-09-02&quot;:44.64},{&quot;2026-09-03&quot;:45.55},{&quot;2026-09-04&quot;:45.55},{&quot;2026-09-05&quot;:45.55},{&quot;2026-09-06&quot;:45.55},{&quot;2026-09-07&quot;:45.67},{&quot;2026-09-08&quot;:46.2},{&quot;2026-09-09&quot;:46.2},{&quot;2026-09-10&quot;:46.28},{&quot;2026-09-11&quot;:46.22}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:46.47},{&quot;2026-06-14&quot;:46.37},{&quot;2026-06-15&quot;:46.33},{&quot;2026-06-16&quot;:46.33},{&quot;2026-06-17&quot;:46.24},{&quot;2026-06-18&quot;:46.24},{&quot;2026-06-19&quot;:45.89},{&quot;2026-06-20&quot;:46.15},{&quot;2026-06-21&quot;:46.15},{&quot;2026-06-22&quot;:44.73},{&quot;2026-06-23&quot;:46.16},{&quot;2026-06-24&quot;:45.8},{&quot;2026-06-25&quot;:45.8},{&quot;2026-06-26&quot;:45.79},{&quot;2026-06-27&quot;:45.74},{&quot;2026-06-28&quot;:43.78},{&quot;2026-06-29&quot;:44.0},{&quot;2026-06-30&quot;:44.61},{&quot;2026-07-01&quot;:44.28},{&quot;2026-07-02&quot;:44.28},{&quot;2026-07-03&quot;:44.43},{&quot;2026-07-04&quot;:44.51},{&quot;2026-07-05&quot;:44.6},{&quot;2026-07-06&quot;:43.93},{&quot;2026-07-07&quot;:42.7},{&quot;2026-07-08&quot;:42.9},{&quot;2026-07-09&quot;:42.9},{&quot;2026-07-10&quot;:42.95},{&quot;2026-07-11&quot;:42.89},{&quot;2026-07-12&quot;:43.42},{&quot;2026-07-13&quot;:43.42},{&quot;2026-07-14&quot;:43.3},{&quot;2026-07-15&quot;:43.01},{&quot;2026-07-16&quot;:43.14},{&quot;2026-07-17&quot;:43.44},{&quot;2026-07-18&quot;:43.94},{&quot;2026-07-19&quot;:43.94},{&quot;2026-07-20&quot;:43.72},{&quot;2026-07-21&quot;:43.96},{&quot;2026-07-22&quot;:44.61},{&quot;2026-07-23&quot;:44.04},{&quot;2026-07-24&quot;:43.87},{&quot;2026-07-25&quot;:43.77},{&quot;2026-07-26&quot;:43.99},{&quot;2026-07-27&quot;:43.72},{&quot;2026-07-28&quot;:43.72},{&quot;2026-07-29&quot;:43.68},{&quot;2026-07-30&quot;:43.68},{&quot;2026-07-31&quot;:44.24},{&quot;2026-08-01&quot;:44.22},{&quot;2026-08-02&quot;:44.34},{&quot;2026-08-03&quot;:44.73},{&quot;2026-08-04&quot;:44.73},{&quot;2026-08-05&quot;:44.73},{&quot;2026-08-07&quot;:45.03},{&quot;2026-08-08&quot;:45.04},{&quot;2026-08-09&quot;:44.79},{&quot;2026-08-10&quot;:45.33},{&quot;2026-08-11&quot;:45.12},{&quot;2026-08-12&quot;:45.12},{&quot;2026-08-13&quot;:44.74},{&quot;2026-08-14&quot;:44.9},{&quot;2026-08-15&quot;:44.86},{&quot;2026-08-16&quot;:44.75},{&quot;2026-08-17&quot;:44.65},{&quot;2026-08-18&quot;:44.29},{&quot;2026-08-19&quot;:44.2},{&quot;2026-08-20&quot;:44.2},{&quot;2026-08-21&quot;:43.77},{&quot;2026-08-22&quot;:43.5},{&quot;2026-08-23&quot;:43.5},{&quot;2026-08-24&quot;:44.15},{&quot;2026-08-25&quot;:44.21},{&quot;2026-08-26&quot;:44.78},{&quot;2026-08-27&quot;:45.3},{&quot;2026-08-28&quot;:45.3},{&quot;2026-08-29&quot;:45.3},{&quot;2026-08-30&quot;:45.5},{&quot;2026-08-31&quot;:45.63},{&quot;2026-09-01&quot;:45.57},{&quot;2026-09-02&quot;:45.68},{&quot;2026-09-03&quot;:45.68},{&quot;2026-09-04&quot;:46.16},{&quot;2026-09-05&quot;:46.61},{&quot;2026-09-06&quot;:47.15},{&quot;2026-09-07&quot;:47.12},{&quot;2026-09-08&quot;:47.57},{&quot;2026-09-09&quot;:47.01},{&quot;2026-09-10&quot;:47.84},{&quot;2026-09-11&quot;:47.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79464"
  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-tsr 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">
            Akroma&#39;s Memorial
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $36.98
          </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="Akroma&#39;s Memorial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/950ee61d-0bc1-4d7b-ba68-157061aa98eb.jpg?1783927758" />

        <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">
            Akroma&#39;s Memorial
        </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 Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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="Akroma&#39;s Memorial" src="https://cards.scryfall.io/large/front/9/5/950ee61d-0bc1-4d7b-ba68-157061aa98eb.jpg?1783927758" />
    </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">
                $36.98
              </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">
                $54.69
              </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">$23.00</span>
              <span class="text-xs text-grey-text">Credit: $29.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:51.59},{&quot;2026-06-11&quot;:51.59},{&quot;2026-06-12&quot;:51.59},{&quot;2026-06-13&quot;:51.59},{&quot;2026-06-14&quot;:51.59},{&quot;2026-06-15&quot;:51.59},{&quot;2026-06-16&quot;:52.11},{&quot;2026-06-17&quot;:52.11},{&quot;2026-06-18&quot;:52.11},{&quot;2026-06-19&quot;:52.34},{&quot;2026-06-20&quot;:52.34},{&quot;2026-06-21&quot;:52.34},{&quot;2026-06-22&quot;:52.92},{&quot;2026-06-23&quot;:52.92},{&quot;2026-06-24&quot;:52.92},{&quot;2026-06-25&quot;:53.17},{&quot;2026-06-26&quot;:53.17},{&quot;2026-06-27&quot;:53.17},{&quot;2026-06-28&quot;:53.05},{&quot;2026-06-29&quot;:53.05},{&quot;2026-06-30&quot;:53.05},{&quot;2026-07-01&quot;:53.05},{&quot;2026-07-02&quot;:53.05},{&quot;2026-07-03&quot;:53.05},{&quot;2026-07-04&quot;:53.05},{&quot;2026-07-05&quot;:53.05},{&quot;2026-07-06&quot;:53.05},{&quot;2026-07-07&quot;:53.05},{&quot;2026-07-08&quot;:53.05},{&quot;2026-07-09&quot;:53.05},{&quot;2026-07-10&quot;:53.05},{&quot;2026-07-11&quot;:53.39},{&quot;2026-07-12&quot;:53.39},{&quot;2026-07-13&quot;:53.57},{&quot;2026-07-14&quot;:53.57},{&quot;2026-07-15&quot;:54.0},{&quot;2026-07-16&quot;:54.0},{&quot;2026-07-17&quot;:54.0},{&quot;2026-07-18&quot;:54.33},{&quot;2026-07-19&quot;:54.33},{&quot;2026-07-20&quot;:54.33},{&quot;2026-07-21&quot;:54.33},{&quot;2026-07-23&quot;:54.37},{&quot;2026-07-25&quot;:54.37},{&quot;2026-07-26&quot;:54.37},{&quot;2026-07-27&quot;:54.37},{&quot;2026-07-29&quot;:54.37},{&quot;2026-07-30&quot;:54.37},{&quot;2026-07-31&quot;:54.37},{&quot;2026-08-01&quot;:54.37},{&quot;2026-08-02&quot;:54.37},{&quot;2026-08-03&quot;:54.37},{&quot;2026-08-04&quot;:54.37},{&quot;2026-08-05&quot;:54.37},{&quot;2026-08-07&quot;:54.37},{&quot;2026-08-08&quot;:54.37},{&quot;2026-08-09&quot;:54.37},{&quot;2026-08-10&quot;:54.37},{&quot;2026-08-11&quot;:54.37},{&quot;2026-08-12&quot;:54.37},{&quot;2026-08-13&quot;:54.37},{&quot;2026-08-14&quot;:54.69},{&quot;2026-08-15&quot;:54.69},{&quot;2026-08-16&quot;:54.69},{&quot;2026-08-17&quot;:54.69},{&quot;2026-08-18&quot;:54.69},{&quot;2026-08-19&quot;:54.69},{&quot;2026-08-20&quot;:54.69},{&quot;2026-08-21&quot;:54.69},{&quot;2026-08-22&quot;:54.69},{&quot;2026-08-23&quot;:54.69},{&quot;2026-08-24&quot;:54.69},{&quot;2026-08-25&quot;:54.69},{&quot;2026-08-26&quot;:54.69},{&quot;2026-08-27&quot;:54.69},{&quot;2026-08-28&quot;:54.69},{&quot;2026-08-29&quot;:54.69},{&quot;2026-08-30&quot;:54.69},{&quot;2026-08-31&quot;:54.69},{&quot;2026-09-01&quot;:54.69},{&quot;2026-09-02&quot;:54.69},{&quot;2026-09-03&quot;:54.69},{&quot;2026-09-04&quot;:54.69},{&quot;2026-09-05&quot;:54.69},{&quot;2026-09-06&quot;:54.69},{&quot;2026-09-07&quot;:54.69},{&quot;2026-09-08&quot;:54.69},{&quot;2026-09-09&quot;:54.69},{&quot;2026-09-10&quot;:54.69},{&quot;2026-09-11&quot;:54.69}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:32.46},{&quot;2026-06-11&quot;:32.46},{&quot;2026-06-12&quot;:32.78},{&quot;2026-06-13&quot;:32.78},{&quot;2026-06-14&quot;:33.07},{&quot;2026-06-15&quot;:33.29},{&quot;2026-06-16&quot;:33.45},{&quot;2026-06-17&quot;:33.45},{&quot;2026-06-18&quot;:33.89},{&quot;2026-06-19&quot;:33.89},{&quot;2026-06-20&quot;:34.25},{&quot;2026-06-21&quot;:34.25},{&quot;2026-06-22&quot;:34.16},{&quot;2026-06-23&quot;:34.3},{&quot;2026-06-24&quot;:34.27},{&quot;2026-06-25&quot;:34.39},{&quot;2026-06-26&quot;:34.25},{&quot;2026-06-27&quot;:34.41},{&quot;2026-06-28&quot;:34.83},{&quot;2026-06-29&quot;:35.84},{&quot;2026-06-30&quot;:36.1},{&quot;2026-07-01&quot;:35.78},{&quot;2026-07-02&quot;:35.78},{&quot;2026-07-03&quot;:36.28},{&quot;2026-07-04&quot;:36.24},{&quot;2026-07-05&quot;:36.1},{&quot;2026-07-06&quot;:35.95},{&quot;2026-07-07&quot;:35.7},{&quot;2026-07-08&quot;:35.7},{&quot;2026-07-09&quot;:35.42},{&quot;2026-07-10&quot;:35.18},{&quot;2026-07-11&quot;:34.79},{&quot;2026-07-12&quot;:34.62},{&quot;2026-07-13&quot;:34.66},{&quot;2026-07-14&quot;:34.33},{&quot;2026-07-15&quot;:34.33},{&quot;2026-07-16&quot;:34.17},{&quot;2026-07-17&quot;:34.17},{&quot;2026-07-18&quot;:34.17},{&quot;2026-07-19&quot;:34.09},{&quot;2026-07-20&quot;:34.13},{&quot;2026-07-21&quot;:32.67},{&quot;2026-07-23&quot;:31.97},{&quot;2026-07-25&quot;:32.69},{&quot;2026-07-26&quot;:32.69},{&quot;2026-07-27&quot;:33.0},{&quot;2026-07-29&quot;:32.95},{&quot;2026-07-30&quot;:32.98},{&quot;2026-07-31&quot;:33.9},{&quot;2026-08-01&quot;:33.9},{&quot;2026-08-02&quot;:33.71},{&quot;2026-08-03&quot;:33.63},{&quot;2026-08-04&quot;:33.63},{&quot;2026-08-05&quot;:33.69},{&quot;2026-08-07&quot;:34.02},{&quot;2026-08-08&quot;:34.51},{&quot;2026-08-09&quot;:34.87},{&quot;2026-08-10&quot;:34.33},{&quot;2026-08-11&quot;:34.78},{&quot;2026-08-12&quot;:34.5},{&quot;2026-08-13&quot;:33.91},{&quot;2026-08-14&quot;:34.47},{&quot;2026-08-15&quot;:34.47},{&quot;2026-08-16&quot;:34.72},{&quot;2026-08-17&quot;:34.72},{&quot;2026-08-18&quot;:34.81},{&quot;2026-08-19&quot;:34.67},{&quot;2026-08-20&quot;:34.67},{&quot;2026-08-21&quot;:35.03},{&quot;2026-08-22&quot;:34.32},{&quot;2026-08-23&quot;:34.77},{&quot;2026-08-24&quot;:33.95},{&quot;2026-08-25&quot;:33.95},{&quot;2026-08-26&quot;:34.54},{&quot;2026-08-27&quot;:34.54},{&quot;2026-08-28&quot;:34.7},{&quot;2026-08-29&quot;:34.7},{&quot;2026-08-30&quot;:35.27},{&quot;2026-08-31&quot;:35.38},{&quot;2026-09-01&quot;:35.38},{&quot;2026-09-02&quot;:35.6},{&quot;2026-09-03&quot;:35.97},{&quot;2026-09-04&quot;:36.28},{&quot;2026-09-05&quot;:36.23},{&quot;2026-09-06&quot;:36.16},{&quot;2026-09-07&quot;:36.16},{&quot;2026-09-08&quot;:36.07},{&quot;2026-09-09&quot;:36.26},{&quot;2026-09-10&quot;:36.42},{&quot;2026-09-11&quot;:36.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="14160"
  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-cmm 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">
            Rise of the Eldrazi
        </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="text-sm font-medium text-nine-white">
            $27.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="Rise of the Eldrazi" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/a/4a4d851b-1fa9-4f5d-a8f6-6967b1ee5b50.jpg?1783915486" />

        <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">
            Rise of the Eldrazi
        </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-9'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></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="Rise of the Eldrazi" src="https://cards.scryfall.io/large/front/4/a/4a4d851b-1fa9-4f5d-a8f6-6967b1ee5b50.jpg?1783915486" />
    </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">
                $27.64
              </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">$18.50</span>
              <span class="text-xs text-grey-text">Credit: $24.05</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:21.61},{&quot;2026-06-14&quot;:21.97},{&quot;2026-06-15&quot;:22.48},{&quot;2026-06-16&quot;:22.41},{&quot;2026-06-17&quot;:22.63},{&quot;2026-06-18&quot;:22.95},{&quot;2026-06-19&quot;:23.25},{&quot;2026-06-20&quot;:23.67},{&quot;2026-06-21&quot;:25.08},{&quot;2026-06-22&quot;:25.48},{&quot;2026-06-23&quot;:25.81},{&quot;2026-06-24&quot;:25.64},{&quot;2026-06-25&quot;:25.64},{&quot;2026-06-26&quot;:25.42},{&quot;2026-06-27&quot;:25.14},{&quot;2026-06-28&quot;:25.0},{&quot;2026-06-29&quot;:24.74},{&quot;2026-06-30&quot;:24.63},{&quot;2026-07-01&quot;:24.69},{&quot;2026-07-02&quot;:24.28},{&quot;2026-07-03&quot;:24.23},{&quot;2026-07-04&quot;:24.36},{&quot;2026-07-05&quot;:24.02},{&quot;2026-07-06&quot;:24.5},{&quot;2026-07-07&quot;:24.29},{&quot;2026-07-08&quot;:24.8},{&quot;2026-07-09&quot;:24.99},{&quot;2026-07-10&quot;:24.92},{&quot;2026-07-11&quot;:24.92},{&quot;2026-07-12&quot;:25.37},{&quot;2026-07-13&quot;:25.92},{&quot;2026-07-14&quot;:26.0},{&quot;2026-07-15&quot;:26.64},{&quot;2026-07-16&quot;:26.53},{&quot;2026-07-17&quot;:26.5},{&quot;2026-07-18&quot;:26.63},{&quot;2026-07-19&quot;:26.27},{&quot;2026-07-20&quot;:26.37},{&quot;2026-07-21&quot;:26.37},{&quot;2026-07-22&quot;:26.61},{&quot;2026-07-23&quot;:26.55},{&quot;2026-07-24&quot;:26.32},{&quot;2026-07-25&quot;:26.19},{&quot;2026-07-26&quot;:26.73},{&quot;2026-07-27&quot;:26.45},{&quot;2026-07-28&quot;:26.42},{&quot;2026-07-29&quot;:26.45},{&quot;2026-07-30&quot;:26.39},{&quot;2026-07-31&quot;:26.64},{&quot;2026-08-01&quot;:26.88},{&quot;2026-08-02&quot;:26.83},{&quot;2026-08-03&quot;:26.95},{&quot;2026-08-04&quot;:26.89},{&quot;2026-08-05&quot;:26.78},{&quot;2026-08-07&quot;:27.06},{&quot;2026-08-08&quot;:27.28},{&quot;2026-08-09&quot;:27.45},{&quot;2026-08-10&quot;:27.64},{&quot;2026-08-11&quot;:27.63},{&quot;2026-08-12&quot;:27.77},{&quot;2026-08-13&quot;:27.78},{&quot;2026-08-14&quot;:27.84},{&quot;2026-08-15&quot;:27.68},{&quot;2026-08-16&quot;:27.69},{&quot;2026-08-17&quot;:27.64},{&quot;2026-08-18&quot;:27.59},{&quot;2026-08-19&quot;:27.58},{&quot;2026-08-20&quot;:27.58},{&quot;2026-08-21&quot;:27.57},{&quot;2026-08-22&quot;:27.58},{&quot;2026-08-23&quot;:27.58},{&quot;2026-08-24&quot;:27.61},{&quot;2026-08-25&quot;:27.61},{&quot;2026-08-26&quot;:27.69},{&quot;2026-08-27&quot;:27.61},{&quot;2026-08-28&quot;:27.61},{&quot;2026-08-29&quot;:27.61},{&quot;2026-08-30&quot;:27.25},{&quot;2026-08-31&quot;:27.35},{&quot;2026-09-01&quot;:27.51},{&quot;2026-09-02&quot;:27.6},{&quot;2026-09-03&quot;:27.63},{&quot;2026-09-04&quot;:27.56},{&quot;2026-09-05&quot;:27.56},{&quot;2026-09-06&quot;:27.46},{&quot;2026-09-07&quot;:27.6},{&quot;2026-09-08&quot;:27.72},{&quot;2026-09-09&quot;:27.84},{&quot;2026-09-10&quot;:27.72},{&quot;2026-09-11&quot;:27.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="14242"
  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-cmm 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">
            Darksteel Monolith
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $26.01
          </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="Darksteel Monolith" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/5/f5b7d3df-4e9b-422b-a88c-43650a67a9c6.jpg?1783915478" />

        <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">
            Darksteel Monolith
        </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-8'></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="Darksteel Monolith" src="https://cards.scryfall.io/large/front/f/5/f5b7d3df-4e9b-422b-a88c-43650a67a9c6.jpg?1783915478" />
    </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">
                $26.01
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:21.49},{&quot;2026-06-14&quot;:22.74},{&quot;2026-06-15&quot;:22.72},{&quot;2026-06-16&quot;:22.6},{&quot;2026-06-17&quot;:22.68},{&quot;2026-06-18&quot;:23.38},{&quot;2026-06-19&quot;:23.3},{&quot;2026-06-20&quot;:23.72},{&quot;2026-06-21&quot;:23.7},{&quot;2026-06-22&quot;:24.4},{&quot;2026-06-23&quot;:25.21},{&quot;2026-06-24&quot;:25.34},{&quot;2026-06-25&quot;:25.25},{&quot;2026-06-26&quot;:25.03},{&quot;2026-06-27&quot;:24.65},{&quot;2026-06-28&quot;:24.43},{&quot;2026-06-29&quot;:24.52},{&quot;2026-06-30&quot;:24.86},{&quot;2026-07-01&quot;:24.7},{&quot;2026-07-02&quot;:24.69},{&quot;2026-07-03&quot;:24.6},{&quot;2026-07-04&quot;:24.6},{&quot;2026-07-05&quot;:24.72},{&quot;2026-07-06&quot;:25.06},{&quot;2026-07-07&quot;:25.3},{&quot;2026-07-08&quot;:25.77},{&quot;2026-07-09&quot;:25.84},{&quot;2026-07-10&quot;:25.7},{&quot;2026-07-11&quot;:25.7},{&quot;2026-07-12&quot;:26.25},{&quot;2026-07-13&quot;:26.6},{&quot;2026-07-14&quot;:26.7},{&quot;2026-07-15&quot;:26.8},{&quot;2026-07-16&quot;:26.87},{&quot;2026-07-17&quot;:26.92},{&quot;2026-07-18&quot;:26.98},{&quot;2026-07-19&quot;:26.71},{&quot;2026-07-20&quot;:26.7},{&quot;2026-07-21&quot;:26.87},{&quot;2026-07-22&quot;:26.98},{&quot;2026-07-23&quot;:26.71},{&quot;2026-07-24&quot;:26.87},{&quot;2026-07-25&quot;:26.87},{&quot;2026-07-26&quot;:26.65},{&quot;2026-07-27&quot;:26.68},{&quot;2026-07-28&quot;:26.74},{&quot;2026-07-29&quot;:26.54},{&quot;2026-07-30&quot;:26.37},{&quot;2026-07-31&quot;:26.64},{&quot;2026-08-01&quot;:26.82},{&quot;2026-08-02&quot;:27.24},{&quot;2026-08-03&quot;:27.61},{&quot;2026-08-04&quot;:27.93},{&quot;2026-08-05&quot;:27.87},{&quot;2026-08-07&quot;:28.08},{&quot;2026-08-08&quot;:27.77},{&quot;2026-08-09&quot;:27.72},{&quot;2026-08-10&quot;:27.72},{&quot;2026-08-11&quot;:27.72},{&quot;2026-08-12&quot;:27.72},{&quot;2026-08-13&quot;:27.8},{&quot;2026-08-14&quot;:27.8},{&quot;2026-08-15&quot;:27.65},{&quot;2026-08-16&quot;:27.6},{&quot;2026-08-17&quot;:27.53},{&quot;2026-08-18&quot;:27.53},{&quot;2026-08-19&quot;:27.28},{&quot;2026-08-20&quot;:27.28},{&quot;2026-08-21&quot;:27.69},{&quot;2026-08-22&quot;:26.8},{&quot;2026-08-23&quot;:26.79},{&quot;2026-08-24&quot;:26.94},{&quot;2026-08-25&quot;:27.03},{&quot;2026-08-26&quot;:27.08},{&quot;2026-08-27&quot;:27.16},{&quot;2026-08-28&quot;:27.01},{&quot;2026-08-29&quot;:27.01},{&quot;2026-08-30&quot;:27.21},{&quot;2026-08-31&quot;:27.13},{&quot;2026-09-01&quot;:26.98},{&quot;2026-09-02&quot;:26.58},{&quot;2026-09-03&quot;:26.58},{&quot;2026-09-04&quot;:26.58},{&quot;2026-09-05&quot;:26.57},{&quot;2026-09-06&quot;:26.56},{&quot;2026-09-07&quot;:26.56},{&quot;2026-09-08&quot;:26.6},{&quot;2026-09-09&quot;:26.32},{&quot;2026-09-10&quot;:26.2},{&quot;2026-09-11&quot;:26.01}]}"
        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="91138"
  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-inr 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">
            Emrakul, the Promised End
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Eldrazi
      </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">
            $24.24
          </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="Emrakul, the Promised End" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/1/3183897e-4f86-4020-b149-cc4c2451a6c0.jpg?1783908032" />

        <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">
            Emrakul, the Promised End
        </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 — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-13'></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="Emrakul, the Promised End" src="https://cards.scryfall.io/large/front/3/1/3183897e-4f86-4020-b149-cc4c2451a6c0.jpg?1783908032" />
    </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">
                $24.24
              </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">
                $25.23
              </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">$20.00</span>
              <span class="text-xs text-grey-text">Credit: $26.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:18.3},{&quot;2026-06-14&quot;:18.3},{&quot;2026-06-15&quot;:18.4},{&quot;2026-06-16&quot;:19.2},{&quot;2026-06-17&quot;:19.2},{&quot;2026-06-18&quot;:19.2},{&quot;2026-06-19&quot;:19.33},{&quot;2026-06-20&quot;:19.33},{&quot;2026-06-21&quot;:19.33},{&quot;2026-06-22&quot;:19.33},{&quot;2026-06-23&quot;:19.33},{&quot;2026-06-24&quot;:19.33},{&quot;2026-06-25&quot;:19.36},{&quot;2026-06-26&quot;:19.37},{&quot;2026-06-27&quot;:19.37},{&quot;2026-06-28&quot;:19.37},{&quot;2026-06-29&quot;:19.37},{&quot;2026-06-30&quot;:19.37},{&quot;2026-07-01&quot;:19.49},{&quot;2026-07-02&quot;:19.49},{&quot;2026-07-03&quot;:19.49},{&quot;2026-07-04&quot;:19.49},{&quot;2026-07-05&quot;:19.49},{&quot;2026-07-06&quot;:19.49},{&quot;2026-07-07&quot;:19.49},{&quot;2026-07-08&quot;:19.49},{&quot;2026-07-09&quot;:19.49},{&quot;2026-07-10&quot;:19.49},{&quot;2026-07-11&quot;:19.74},{&quot;2026-07-12&quot;:19.68},{&quot;2026-07-13&quot;:19.99},{&quot;2026-07-14&quot;:19.99},{&quot;2026-07-15&quot;:19.99},{&quot;2026-07-16&quot;:19.99},{&quot;2026-07-17&quot;:20.12},{&quot;2026-07-18&quot;:20.39},{&quot;2026-07-19&quot;:20.9},{&quot;2026-07-20&quot;:20.9},{&quot;2026-07-21&quot;:20.62},{&quot;2026-07-22&quot;:20.62},{&quot;2026-07-23&quot;:20.62},{&quot;2026-07-24&quot;:20.62},{&quot;2026-07-25&quot;:20.62},{&quot;2026-07-26&quot;:20.62},{&quot;2026-07-27&quot;:20.62},{&quot;2026-07-28&quot;:20.62},{&quot;2026-07-29&quot;:20.62},{&quot;2026-07-30&quot;:20.62},{&quot;2026-07-31&quot;:20.79},{&quot;2026-08-01&quot;:20.91},{&quot;2026-08-02&quot;:20.91},{&quot;2026-08-03&quot;:20.91},{&quot;2026-08-04&quot;:20.91},{&quot;2026-08-05&quot;:20.91},{&quot;2026-08-07&quot;:20.91},{&quot;2026-08-08&quot;:21.03},{&quot;2026-08-09&quot;:21.03},{&quot;2026-08-10&quot;:21.19},{&quot;2026-08-11&quot;:20.89},{&quot;2026-08-12&quot;:21.09},{&quot;2026-08-13&quot;:21.09},{&quot;2026-08-14&quot;:21.09},{&quot;2026-08-15&quot;:21.2},{&quot;2026-08-16&quot;:21.2},{&quot;2026-08-17&quot;:21.43},{&quot;2026-08-18&quot;:21.43},{&quot;2026-08-19&quot;:22.39},{&quot;2026-08-20&quot;:22.77},{&quot;2026-08-21&quot;:22.77},{&quot;2026-08-22&quot;:22.77},{&quot;2026-08-23&quot;:22.84},{&quot;2026-08-24&quot;:22.74},{&quot;2026-08-25&quot;:22.85},{&quot;2026-08-26&quot;:22.85},{&quot;2026-08-27&quot;:22.82},{&quot;2026-08-28&quot;:22.82},{&quot;2026-08-29&quot;:22.82},{&quot;2026-08-30&quot;:23.41},{&quot;2026-08-31&quot;:23.41},{&quot;2026-09-01&quot;:23.41},{&quot;2026-09-02&quot;:23.41},{&quot;2026-09-03&quot;:23.79},{&quot;2026-09-04&quot;:23.91},{&quot;2026-09-05&quot;:23.91},{&quot;2026-09-06&quot;:23.85},{&quot;2026-09-07&quot;:24.09},{&quot;2026-09-08&quot;:24.09},{&quot;2026-09-09&quot;:24.77},{&quot;2026-09-10&quot;:24.77},{&quot;2026-09-11&quot;:25.23}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.38},{&quot;2026-06-14&quot;:14.84},{&quot;2026-06-15&quot;:14.78},{&quot;2026-06-16&quot;:14.74},{&quot;2026-06-17&quot;:14.97},{&quot;2026-06-18&quot;:15.01},{&quot;2026-06-19&quot;:14.89},{&quot;2026-06-20&quot;:14.89},{&quot;2026-06-21&quot;:15.1},{&quot;2026-06-22&quot;:15.03},{&quot;2026-06-23&quot;:15.31},{&quot;2026-06-24&quot;:15.37},{&quot;2026-06-25&quot;:15.43},{&quot;2026-06-26&quot;:15.57},{&quot;2026-06-27&quot;:15.22},{&quot;2026-06-28&quot;:16.29},{&quot;2026-06-29&quot;:16.29},{&quot;2026-06-30&quot;:16.29},{&quot;2026-07-01&quot;:16.73},{&quot;2026-07-02&quot;:16.61},{&quot;2026-07-03&quot;:16.73},{&quot;2026-07-04&quot;:17.0},{&quot;2026-07-05&quot;:16.94},{&quot;2026-07-06&quot;:17.24},{&quot;2026-07-07&quot;:17.2},{&quot;2026-07-08&quot;:17.2},{&quot;2026-07-09&quot;:17.38},{&quot;2026-07-10&quot;:17.45},{&quot;2026-07-11&quot;:17.58},{&quot;2026-07-12&quot;:17.96},{&quot;2026-07-13&quot;:17.96},{&quot;2026-07-14&quot;:18.05},{&quot;2026-07-15&quot;:18.05},{&quot;2026-07-16&quot;:18.75},{&quot;2026-07-17&quot;:18.64},{&quot;2026-07-18&quot;:18.64},{&quot;2026-07-19&quot;:18.76},{&quot;2026-07-20&quot;:18.83},{&quot;2026-07-21&quot;:18.68},{&quot;2026-07-22&quot;:19.33},{&quot;2026-07-23&quot;:19.66},{&quot;2026-07-24&quot;:19.97},{&quot;2026-07-25&quot;:19.97},{&quot;2026-07-26&quot;:20.17},{&quot;2026-07-27&quot;:20.34},{&quot;2026-07-28&quot;:20.47},{&quot;2026-07-29&quot;:20.84},{&quot;2026-07-30&quot;:20.89},{&quot;2026-07-31&quot;:20.95},{&quot;2026-08-01&quot;:21.1},{&quot;2026-08-02&quot;:21.48},{&quot;2026-08-03&quot;:21.88},{&quot;2026-08-04&quot;:21.88},{&quot;2026-08-05&quot;:21.88},{&quot;2026-08-07&quot;:22.99},{&quot;2026-08-08&quot;:22.61},{&quot;2026-08-09&quot;:22.61},{&quot;2026-08-10&quot;:22.61},{&quot;2026-08-11&quot;:22.61},{&quot;2026-08-12&quot;:22.79},{&quot;2026-08-13&quot;:22.9},{&quot;2026-08-14&quot;:23.25},{&quot;2026-08-15&quot;:23.28},{&quot;2026-08-16&quot;:23.28},{&quot;2026-08-17&quot;:23.28},{&quot;2026-08-18&quot;:23.28},{&quot;2026-08-19&quot;:23.2},{&quot;2026-08-20&quot;:23.2},{&quot;2026-08-21&quot;:22.95},{&quot;2026-08-22&quot;:22.95},{&quot;2026-08-23&quot;:22.46},{&quot;2026-08-24&quot;:22.7},{&quot;2026-08-25&quot;:23.06},{&quot;2026-08-26&quot;:23.06},{&quot;2026-08-27&quot;:23.06},{&quot;2026-08-28&quot;:23.06},{&quot;2026-08-29&quot;:23.06},{&quot;2026-08-30&quot;:22.99},{&quot;2026-08-31&quot;:22.99},{&quot;2026-09-01&quot;:23.15},{&quot;2026-09-02&quot;:23.15},{&quot;2026-09-03&quot;:23.15},{&quot;2026-09-04&quot;:23.33},{&quot;2026-09-05&quot;:23.17},{&quot;2026-09-06&quot;:23.23},{&quot;2026-09-07&quot;:23.9},{&quot;2026-09-08&quot;:23.92},{&quot;2026-09-09&quot;:24.24},{&quot;2026-09-10&quot;:24.24},{&quot;2026-09-11&quot;:24.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="14433"
  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-cmm 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">
            It That Betrays
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $15.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="It That Betrays" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/a/ca08b369-783d-4fe4-8fc8-9cd595638550.jpg?1783915458" />

        <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">
            It That Betrays
        </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 — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-12'></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="It That Betrays" src="https://cards.scryfall.io/large/front/c/a/ca08b369-783d-4fe4-8fc8-9cd595638550.jpg?1783915458" />
    </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">
                $15.66
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$6.75</span>
              <span class="text-xs text-grey-text">Credit: $8.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;normal&quot;:[{&quot;2026-06-12&quot;:15.66},{&quot;2026-06-13&quot;:15.43},{&quot;2026-06-14&quot;:15.46},{&quot;2026-06-15&quot;:15.04},{&quot;2026-06-16&quot;:14.86},{&quot;2026-06-17&quot;:15.09},{&quot;2026-06-18&quot;:15.3},{&quot;2026-06-19&quot;:15.92},{&quot;2026-06-20&quot;:16.28},{&quot;2026-06-21&quot;:17.58},{&quot;2026-06-22&quot;:17.51},{&quot;2026-06-23&quot;:18.62},{&quot;2026-06-24&quot;:18.65},{&quot;2026-06-25&quot;:18.88},{&quot;2026-06-26&quot;:18.66},{&quot;2026-06-27&quot;:18.35},{&quot;2026-06-28&quot;:18.28},{&quot;2026-06-29&quot;:18.28},{&quot;2026-06-30&quot;:18.24},{&quot;2026-07-01&quot;:17.98},{&quot;2026-07-02&quot;:18.03},{&quot;2026-07-03&quot;:17.43},{&quot;2026-07-04&quot;:17.43},{&quot;2026-07-05&quot;:17.43},{&quot;2026-07-06&quot;:17.01},{&quot;2026-07-07&quot;:16.82},{&quot;2026-07-08&quot;:16.43},{&quot;2026-07-09&quot;:16.1},{&quot;2026-07-10&quot;:16.35},{&quot;2026-07-11&quot;:15.6},{&quot;2026-07-12&quot;:15.11},{&quot;2026-07-13&quot;:15.37},{&quot;2026-07-14&quot;:16.08},{&quot;2026-07-15&quot;:16.29},{&quot;2026-07-16&quot;:16.27},{&quot;2026-07-17&quot;:16.24},{&quot;2026-07-18&quot;:16.24},{&quot;2026-07-19&quot;:16.24},{&quot;2026-07-20&quot;:16.6},{&quot;2026-07-21&quot;:16.6},{&quot;2026-07-23&quot;:16.36},{&quot;2026-07-24&quot;:17.04},{&quot;2026-07-25&quot;:17.19},{&quot;2026-07-26&quot;:17.19},{&quot;2026-07-27&quot;:17.05},{&quot;2026-07-28&quot;:17.38},{&quot;2026-07-29&quot;:17.38},{&quot;2026-07-30&quot;:17.38},{&quot;2026-07-31&quot;:17.13},{&quot;2026-08-01&quot;:17.13},{&quot;2026-08-02&quot;:17.45},{&quot;2026-08-03&quot;:17.27},{&quot;2026-08-04&quot;:17.09},{&quot;2026-08-05&quot;:17.09},{&quot;2026-08-07&quot;:16.64},{&quot;2026-08-08&quot;:16.69},{&quot;2026-08-09&quot;:16.54},{&quot;2026-08-10&quot;:16.23},{&quot;2026-08-11&quot;:16.17},{&quot;2026-08-12&quot;:16.17},{&quot;2026-08-13&quot;:16.44},{&quot;2026-08-14&quot;:16.27},{&quot;2026-08-15&quot;:16.15},{&quot;2026-08-16&quot;:16.09},{&quot;2026-08-17&quot;:15.9},{&quot;2026-08-18&quot;:15.5},{&quot;2026-08-19&quot;:15.33},{&quot;2026-08-20&quot;:15.33},{&quot;2026-08-21&quot;:14.39},{&quot;2026-08-22&quot;:13.93},{&quot;2026-08-23&quot;:13.93},{&quot;2026-08-24&quot;:14.09},{&quot;2026-08-25&quot;:14.29},{&quot;2026-08-26&quot;:14.58},{&quot;2026-08-27&quot;:14.87},{&quot;2026-08-28&quot;:14.99},{&quot;2026-08-29&quot;:14.99},{&quot;2026-08-30&quot;:15.6},{&quot;2026-08-31&quot;:15.6},{&quot;2026-09-01&quot;:15.68},{&quot;2026-09-02&quot;:16.09},{&quot;2026-09-03&quot;:16.34},{&quot;2026-09-04&quot;:16.26},{&quot;2026-09-05&quot;:16.27},{&quot;2026-09-06&quot;:16.26},{&quot;2026-09-07&quot;:16.52},{&quot;2026-09-08&quot;:15.83},{&quot;2026-09-09&quot;:15.97},{&quot;2026-09-10&quot;:15.87},{&quot;2026-09-11&quot;:15.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="16471"
  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-m21 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">
            Ugin, the Spirit Dragon
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ugin
      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ugin, the Spirit Dragon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a11e75a0-17f0-429a-a77a-268fe6257010.jpg?1783930636" />

        <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">
            Ugin, the Spirit Dragon
        </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 Planeswalker — Ugin</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>
          </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="Ugin, the Spirit Dragon" src="https://cards.scryfall.io/large/front/a/1/a11e75a0-17f0-429a-a77a-268fe6257010.jpg?1783930636" />
    </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">
                $14.73
              </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">
                $30.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">$8.00</span>
              <span class="text-xs text-grey-text">Credit: $10.40</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:29.73},{&quot;2026-06-14&quot;:29.73},{&quot;2026-06-15&quot;:29.73},{&quot;2026-06-16&quot;:29.74},{&quot;2026-06-17&quot;:29.72},{&quot;2026-06-18&quot;:29.73},{&quot;2026-06-19&quot;:29.73},{&quot;2026-06-20&quot;:29.73},{&quot;2026-06-21&quot;:29.78},{&quot;2026-06-22&quot;:29.92},{&quot;2026-06-23&quot;:29.92},{&quot;2026-06-24&quot;:29.92},{&quot;2026-06-25&quot;:29.92},{&quot;2026-06-26&quot;:29.92},{&quot;2026-06-27&quot;:29.92},{&quot;2026-06-28&quot;:29.92},{&quot;2026-06-29&quot;:29.92},{&quot;2026-06-30&quot;:29.99},{&quot;2026-07-01&quot;:29.99},{&quot;2026-07-02&quot;:29.99},{&quot;2026-07-03&quot;:29.99},{&quot;2026-07-04&quot;:29.99},{&quot;2026-07-05&quot;:29.99},{&quot;2026-07-06&quot;:29.99},{&quot;2026-07-07&quot;:30.08},{&quot;2026-07-08&quot;:30.08},{&quot;2026-07-09&quot;:30.08},{&quot;2026-07-10&quot;:30.08},{&quot;2026-07-11&quot;:30.08},{&quot;2026-07-12&quot;:30.08},{&quot;2026-07-13&quot;:30.08},{&quot;2026-07-14&quot;:30.08},{&quot;2026-07-15&quot;:30.08},{&quot;2026-07-16&quot;:30.08},{&quot;2026-07-17&quot;:30.08},{&quot;2026-07-18&quot;:30.08},{&quot;2026-07-19&quot;:30.08},{&quot;2026-07-20&quot;:30.08},{&quot;2026-07-21&quot;:30.08},{&quot;2026-07-22&quot;:30.08},{&quot;2026-07-23&quot;:30.08},{&quot;2026-07-24&quot;:30.08},{&quot;2026-07-25&quot;:30.08},{&quot;2026-07-26&quot;:30.08},{&quot;2026-07-27&quot;:30.08},{&quot;2026-07-28&quot;:30.08},{&quot;2026-07-29&quot;:30.07},{&quot;2026-07-30&quot;:30.07},{&quot;2026-07-31&quot;:30.07},{&quot;2026-08-01&quot;:30.07},{&quot;2026-08-02&quot;:30.07},{&quot;2026-08-03&quot;:30.07},{&quot;2026-08-04&quot;:30.12},{&quot;2026-08-05&quot;:30.12},{&quot;2026-08-07&quot;:30.12},{&quot;2026-08-08&quot;:30.12},{&quot;2026-08-09&quot;:30.12},{&quot;2026-08-10&quot;:30.12},{&quot;2026-08-11&quot;:30.22},{&quot;2026-08-12&quot;:30.22},{&quot;2026-08-13&quot;:30.22},{&quot;2026-08-14&quot;:30.22},{&quot;2026-08-15&quot;:30.22},{&quot;2026-08-16&quot;:30.22},{&quot;2026-08-17&quot;:30.22},{&quot;2026-08-18&quot;:30.22},{&quot;2026-08-19&quot;:30.22},{&quot;2026-08-20&quot;:30.22},{&quot;2026-08-21&quot;:30.22},{&quot;2026-08-22&quot;:30.22},{&quot;2026-08-23&quot;:30.32},{&quot;2026-08-24&quot;:30.32},{&quot;2026-08-25&quot;:30.32},{&quot;2026-08-26&quot;:30.32},{&quot;2026-08-27&quot;:30.37},{&quot;2026-08-28&quot;:30.31},{&quot;2026-08-29&quot;:30.31},{&quot;2026-08-30&quot;:30.31},{&quot;2026-08-31&quot;:30.31},{&quot;2026-09-01&quot;:30.31},{&quot;2026-09-02&quot;:30.24},{&quot;2026-09-03&quot;:30.24},{&quot;2026-09-04&quot;:30.24},{&quot;2026-09-05&quot;:30.35},{&quot;2026-09-06&quot;:30.35},{&quot;2026-09-07&quot;:30.35},{&quot;2026-09-08&quot;:30.35},{&quot;2026-09-09&quot;:30.35},{&quot;2026-09-10&quot;:30.35},{&quot;2026-09-11&quot;:30.35}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.53},{&quot;2026-06-14&quot;:14.53},{&quot;2026-06-15&quot;:14.53},{&quot;2026-06-16&quot;:14.53},{&quot;2026-06-17&quot;:14.55},{&quot;2026-06-18&quot;:14.55},{&quot;2026-06-19&quot;:14.55},{&quot;2026-06-20&quot;:14.64},{&quot;2026-06-21&quot;:14.64},{&quot;2026-06-22&quot;:14.64},{&quot;2026-06-23&quot;:14.59},{&quot;2026-06-24&quot;:14.59},{&quot;2026-06-25&quot;:14.47},{&quot;2026-06-26&quot;:13.93},{&quot;2026-06-27&quot;:14.53},{&quot;2026-06-28&quot;:14.6},{&quot;2026-06-29&quot;:14.6},{&quot;2026-06-30&quot;:14.6},{&quot;2026-07-01&quot;:14.54},{&quot;2026-07-02&quot;:14.56},{&quot;2026-07-03&quot;:14.54},{&quot;2026-07-04&quot;:14.61},{&quot;2026-07-05&quot;:14.65},{&quot;2026-07-06&quot;:14.65},{&quot;2026-07-07&quot;:14.59},{&quot;2026-07-08&quot;:14.53},{&quot;2026-07-09&quot;:14.52},{&quot;2026-07-10&quot;:14.52},{&quot;2026-07-11&quot;:14.52},{&quot;2026-07-12&quot;:14.52},{&quot;2026-07-13&quot;:14.52},{&quot;2026-07-14&quot;:14.52},{&quot;2026-07-15&quot;:14.52},{&quot;2026-07-16&quot;:14.57},{&quot;2026-07-17&quot;:14.63},{&quot;2026-07-18&quot;:14.8},{&quot;2026-07-19&quot;:14.89},{&quot;2026-07-20&quot;:14.89},{&quot;2026-07-21&quot;:14.89},{&quot;2026-07-22&quot;:14.89},{&quot;2026-07-23&quot;:15.06},{&quot;2026-07-24&quot;:15.06},{&quot;2026-07-25&quot;:15.06},{&quot;2026-07-26&quot;:15.09},{&quot;2026-07-27&quot;:15.09},{&quot;2026-07-28&quot;:15.09},{&quot;2026-07-29&quot;:14.92},{&quot;2026-07-30&quot;:14.92},{&quot;2026-07-31&quot;:14.92},{&quot;2026-08-01&quot;:14.92},{&quot;2026-08-02&quot;:14.84},{&quot;2026-08-03&quot;:14.84},{&quot;2026-08-04&quot;:14.72},{&quot;2026-08-05&quot;:14.76},{&quot;2026-08-07&quot;:14.82},{&quot;2026-08-08&quot;:14.82},{&quot;2026-08-09&quot;:14.82},{&quot;2026-08-10&quot;:14.8},{&quot;2026-08-11&quot;:14.8},{&quot;2026-08-12&quot;:14.8},{&quot;2026-08-13&quot;:14.73},{&quot;2026-08-14&quot;:14.73},{&quot;2026-08-15&quot;:14.61},{&quot;2026-08-16&quot;:14.57},{&quot;2026-08-17&quot;:14.57},{&quot;2026-08-18&quot;:14.57},{&quot;2026-08-19&quot;:14.57},{&quot;2026-08-20&quot;:14.71},{&quot;2026-08-21&quot;:14.8},{&quot;2026-08-22&quot;:14.8},{&quot;2026-08-23&quot;:14.8},{&quot;2026-08-24&quot;:14.8},{&quot;2026-08-25&quot;:14.8},{&quot;2026-08-26&quot;:14.89},{&quot;2026-08-27&quot;:14.89},{&quot;2026-08-28&quot;:14.98},{&quot;2026-08-29&quot;:14.98},{&quot;2026-08-30&quot;:14.97},{&quot;2026-08-31&quot;:14.89},{&quot;2026-09-01&quot;:14.82},{&quot;2026-09-02&quot;:14.7},{&quot;2026-09-03&quot;:14.61},{&quot;2026-09-04&quot;:14.5},{&quot;2026-09-05&quot;:14.54},{&quot;2026-09-06&quot;:14.56},{&quot;2026-09-07&quot;:14.57},{&quot;2026-09-08&quot;:14.57},{&quot;2026-09-09&quot;:14.52},{&quot;2026-09-10&quot;:14.58},{&quot;2026-09-11&quot;:14.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14157"
  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-cmm 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">
            Flayer of Loyalties
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Flayer of Loyalties" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/33f3ee0c-1e73-42b6-841d-0a878a80002a.jpg?1783915487" />

        <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">
            Flayer of Loyalties
        </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 — Eldrazi</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-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></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="Flayer of Loyalties" src="https://cards.scryfall.io/large/front/3/3/33f3ee0c-1e73-42b6-841d-0a878a80002a.jpg?1783915487" />
    </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">
                $14.28
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:16.54},{&quot;2026-06-14&quot;:16.59},{&quot;2026-06-15&quot;:16.58},{&quot;2026-06-16&quot;:16.58},{&quot;2026-06-17&quot;:16.51},{&quot;2026-06-18&quot;:16.59},{&quot;2026-06-19&quot;:16.59},{&quot;2026-06-20&quot;:16.79},{&quot;2026-06-21&quot;:16.91},{&quot;2026-06-22&quot;:16.91},{&quot;2026-06-23&quot;:16.86},{&quot;2026-06-24&quot;:16.85},{&quot;2026-06-25&quot;:16.85},{&quot;2026-06-26&quot;:16.85},{&quot;2026-06-27&quot;:16.91},{&quot;2026-06-28&quot;:16.88},{&quot;2026-06-29&quot;:16.84},{&quot;2026-06-30&quot;:16.8},{&quot;2026-07-01&quot;:16.77},{&quot;2026-07-02&quot;:16.58},{&quot;2026-07-03&quot;:16.47},{&quot;2026-07-04&quot;:16.47},{&quot;2026-07-05&quot;:16.35},{&quot;2026-07-06&quot;:16.01},{&quot;2026-07-07&quot;:16.04},{&quot;2026-07-08&quot;:15.78},{&quot;2026-07-09&quot;:15.82},{&quot;2026-07-10&quot;:15.64},{&quot;2026-07-11&quot;:15.73},{&quot;2026-07-12&quot;:15.75},{&quot;2026-07-13&quot;:15.66},{&quot;2026-07-14&quot;:15.71},{&quot;2026-07-15&quot;:15.64},{&quot;2026-07-16&quot;:15.64},{&quot;2026-07-17&quot;:15.64},{&quot;2026-07-18&quot;:15.77},{&quot;2026-07-19&quot;:15.78},{&quot;2026-07-20&quot;:15.81},{&quot;2026-07-21&quot;:15.91},{&quot;2026-07-22&quot;:15.94},{&quot;2026-07-23&quot;:15.94},{&quot;2026-07-24&quot;:15.89},{&quot;2026-07-25&quot;:15.89},{&quot;2026-07-26&quot;:15.49},{&quot;2026-07-27&quot;:15.39},{&quot;2026-07-28&quot;:15.36},{&quot;2026-07-29&quot;:15.36},{&quot;2026-07-30&quot;:15.37},{&quot;2026-07-31&quot;:15.37},{&quot;2026-08-01&quot;:15.37},{&quot;2026-08-02&quot;:15.36},{&quot;2026-08-03&quot;:15.4},{&quot;2026-08-04&quot;:15.23},{&quot;2026-08-05&quot;:15.15},{&quot;2026-08-07&quot;:15.29},{&quot;2026-08-08&quot;:15.39},{&quot;2026-08-09&quot;:15.38},{&quot;2026-08-10&quot;:15.38},{&quot;2026-08-11&quot;:15.44},{&quot;2026-08-12&quot;:15.35},{&quot;2026-08-13&quot;:15.23},{&quot;2026-08-14&quot;:15.03},{&quot;2026-08-15&quot;:15.05},{&quot;2026-08-16&quot;:14.97},{&quot;2026-08-17&quot;:14.85},{&quot;2026-08-18&quot;:14.78},{&quot;2026-08-19&quot;:14.78},{&quot;2026-08-20&quot;:14.57},{&quot;2026-08-21&quot;:14.49},{&quot;2026-08-22&quot;:14.53},{&quot;2026-08-23&quot;:14.57},{&quot;2026-08-24&quot;:14.17},{&quot;2026-08-25&quot;:14.17},{&quot;2026-08-26&quot;:14.29},{&quot;2026-08-27&quot;:14.17},{&quot;2026-08-28&quot;:14.25},{&quot;2026-08-29&quot;:14.25},{&quot;2026-08-30&quot;:14.56},{&quot;2026-08-31&quot;:14.56},{&quot;2026-09-01&quot;:14.77},{&quot;2026-09-02&quot;:14.49},{&quot;2026-09-03&quot;:14.69},{&quot;2026-09-04&quot;:14.88},{&quot;2026-09-05&quot;:14.89},{&quot;2026-09-06&quot;:14.76},{&quot;2026-09-07&quot;:14.76},{&quot;2026-09-08&quot;:14.76},{&quot;2026-09-09&quot;:14.84},{&quot;2026-09-10&quot;:14.84},{&quot;2026-09-11&quot;:14.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="58143"
  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-one 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">
            The Mycosynth Gardens
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.53
          </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="The Mycosynth Gardens" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/a/4afcac49-ac80-4561-ba2c-ce9487e9d8fe.jpg?1783917920" />

        <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">
            The Mycosynth Gardens
        </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 — Sphere</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="The Mycosynth Gardens" src="https://cards.scryfall.io/large/front/4/a/4afcac49-ac80-4561-ba2c-ce9487e9d8fe.jpg?1783917920" />
    </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">
                $3.74
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  24%
                </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.53
              </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">$6.50</span>
              <span class="text-xs text-grey-text">Credit: $8.45</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.58},{&quot;2026-06-14&quot;:6.58},{&quot;2026-06-15&quot;:6.61},{&quot;2026-06-16&quot;:6.61},{&quot;2026-06-17&quot;:6.51},{&quot;2026-06-18&quot;:6.51},{&quot;2026-06-19&quot;:6.51},{&quot;2026-06-20&quot;:6.51},{&quot;2026-06-21&quot;:6.51},{&quot;2026-06-22&quot;:6.51},{&quot;2026-06-23&quot;:6.51},{&quot;2026-06-24&quot;:6.51},{&quot;2026-06-25&quot;:6.5},{&quot;2026-06-26&quot;:6.5},{&quot;2026-06-27&quot;:6.5},{&quot;2026-06-28&quot;:6.5},{&quot;2026-06-29&quot;:6.49},{&quot;2026-06-30&quot;:6.49},{&quot;2026-07-01&quot;:6.49},{&quot;2026-07-02&quot;:6.66},{&quot;2026-07-03&quot;:6.66},{&quot;2026-07-04&quot;:6.62},{&quot;2026-07-05&quot;:6.62},{&quot;2026-07-06&quot;:6.62},{&quot;2026-07-07&quot;:6.63},{&quot;2026-07-08&quot;:6.63},{&quot;2026-07-09&quot;:6.53},{&quot;2026-07-10&quot;:6.53},{&quot;2026-07-11&quot;:6.53},{&quot;2026-07-12&quot;:6.59},{&quot;2026-07-13&quot;:6.57},{&quot;2026-07-14&quot;:6.64},{&quot;2026-07-15&quot;:6.68},{&quot;2026-07-16&quot;:6.68},{&quot;2026-07-17&quot;:6.68},{&quot;2026-07-18&quot;:6.82},{&quot;2026-07-19&quot;:6.82},{&quot;2026-07-20&quot;:6.82},{&quot;2026-07-21&quot;:6.82},{&quot;2026-07-22&quot;:6.74},{&quot;2026-07-23&quot;:6.74},{&quot;2026-07-24&quot;:6.73},{&quot;2026-07-25&quot;:6.77},{&quot;2026-07-26&quot;:6.77},{&quot;2026-07-27&quot;:6.77},{&quot;2026-07-28&quot;:6.81},{&quot;2026-07-29&quot;:6.81},{&quot;2026-07-30&quot;:6.9},{&quot;2026-07-31&quot;:7.59},{&quot;2026-08-01&quot;:7.63},{&quot;2026-08-02&quot;:7.63},{&quot;2026-08-03&quot;:7.63},{&quot;2026-08-04&quot;:7.63},{&quot;2026-08-05&quot;:7.55},{&quot;2026-08-07&quot;:7.55},{&quot;2026-08-08&quot;:7.56},{&quot;2026-08-09&quot;:7.56},{&quot;2026-08-10&quot;:7.55},{&quot;2026-08-11&quot;:7.37},{&quot;2026-08-12&quot;:7.37},{&quot;2026-08-13&quot;:7.37},{&quot;2026-08-14&quot;:7.32},{&quot;2026-08-15&quot;:7.32},{&quot;2026-08-16&quot;:7.32},{&quot;2026-08-17&quot;:7.32},{&quot;2026-08-18&quot;:7.32},{&quot;2026-08-19&quot;:7.4},{&quot;2026-08-20&quot;:7.48},{&quot;2026-08-21&quot;:7.56},{&quot;2026-08-22&quot;:7.56},{&quot;2026-08-23&quot;:7.53},{&quot;2026-08-24&quot;:7.47},{&quot;2026-08-25&quot;:7.47},{&quot;2026-08-26&quot;:7.47},{&quot;2026-08-27&quot;:7.47},{&quot;2026-08-28&quot;:7.47},{&quot;2026-08-29&quot;:7.47},{&quot;2026-08-30&quot;:7.55},{&quot;2026-08-31&quot;:7.55},{&quot;2026-09-01&quot;:7.55},{&quot;2026-09-02&quot;:7.55},{&quot;2026-09-03&quot;:7.6},{&quot;2026-09-04&quot;:7.6},{&quot;2026-09-05&quot;:7.5},{&quot;2026-09-06&quot;:7.5},{&quot;2026-09-07&quot;:7.5},{&quot;2026-09-08&quot;:7.53},{&quot;2026-09-09&quot;:7.53},{&quot;2026-09-10&quot;:7.53},{&quot;2026-09-11&quot;:7.53}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.01},{&quot;2026-06-14&quot;:2.03},{&quot;2026-06-15&quot;:2.03},{&quot;2026-06-16&quot;:2.06},{&quot;2026-06-17&quot;:2.1},{&quot;2026-06-18&quot;:2.08},{&quot;2026-06-19&quot;:2.2},{&quot;2026-06-20&quot;:2.33},{&quot;2026-06-21&quot;:2.3},{&quot;2026-06-22&quot;:2.3},{&quot;2026-06-23&quot;:2.29},{&quot;2026-06-24&quot;:2.43},{&quot;2026-06-25&quot;:2.41},{&quot;2026-06-26&quot;:2.41},{&quot;2026-06-27&quot;:2.48},{&quot;2026-06-28&quot;:2.58},{&quot;2026-06-29&quot;:2.56},{&quot;2026-06-30&quot;:2.54},{&quot;2026-07-01&quot;:2.54},{&quot;2026-07-02&quot;:2.54},{&quot;2026-07-03&quot;:2.54},{&quot;2026-07-04&quot;:2.54},{&quot;2026-07-05&quot;:2.54},{&quot;2026-07-06&quot;:2.54},{&quot;2026-07-07&quot;:2.59},{&quot;2026-07-08&quot;:2.59},{&quot;2026-07-09&quot;:2.58},{&quot;2026-07-10&quot;:2.57},{&quot;2026-07-11&quot;:2.57},{&quot;2026-07-12&quot;:2.59},{&quot;2026-07-13&quot;:2.59},{&quot;2026-07-14&quot;:2.59},{&quot;2026-07-15&quot;:2.62},{&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.54},{&quot;2026-07-20&quot;:2.59},{&quot;2026-07-21&quot;:2.67},{&quot;2026-07-22&quot;:2.69},{&quot;2026-07-23&quot;:2.69},{&quot;2026-07-24&quot;:2.78},{&quot;2026-07-25&quot;:2.78},{&quot;2026-07-26&quot;:2.68},{&quot;2026-07-27&quot;:2.56},{&quot;2026-07-28&quot;:2.63},{&quot;2026-07-29&quot;:2.63},{&quot;2026-07-30&quot;:2.7},{&quot;2026-07-31&quot;:2.87},{&quot;2026-08-01&quot;:2.87},{&quot;2026-08-02&quot;:2.87},{&quot;2026-08-03&quot;:2.89},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.85},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:2.8},{&quot;2026-08-09&quot;:2.79},{&quot;2026-08-10&quot;:2.8},{&quot;2026-08-11&quot;:2.8},{&quot;2026-08-12&quot;:2.8},{&quot;2026-08-13&quot;:2.72},{&quot;2026-08-14&quot;:2.72},{&quot;2026-08-15&quot;:2.76},{&quot;2026-08-16&quot;:2.69},{&quot;2026-08-17&quot;:2.66},{&quot;2026-08-18&quot;:2.66},{&quot;2026-08-19&quot;:2.67},{&quot;2026-08-20&quot;:2.67},{&quot;2026-08-21&quot;:2.66},{&quot;2026-08-22&quot;:2.66},{&quot;2026-08-23&quot;:2.66},{&quot;2026-08-24&quot;:2.78},{&quot;2026-08-25&quot;:2.78},{&quot;2026-08-26&quot;:2.78},{&quot;2026-08-27&quot;:2.78},{&quot;2026-08-28&quot;:2.82},{&quot;2026-08-29&quot;:2.82},{&quot;2026-08-30&quot;:2.64},{&quot;2026-08-31&quot;:2.81},{&quot;2026-09-01&quot;:2.73},{&quot;2026-09-02&quot;:2.73},{&quot;2026-09-03&quot;:2.64},{&quot;2026-09-04&quot;:2.89},{&quot;2026-09-05&quot;:3.02},{&quot;2026-09-06&quot;:3.02},{&quot;2026-09-07&quot;:3.36},{&quot;2026-09-08&quot;:3.36},{&quot;2026-09-09&quot;:3.45},{&quot;2026-09-10&quot;:3.74},{&quot;2026-09-11&quot;:3.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Crystal Vein
        </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.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="Crystal Vein" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/7/c7c51eae-2c45-4f12-859d-56bd83247c2e.jpg?1783909995" />

        <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">
            Crystal Vein
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crystal Vein" src="https://cards.scryfall.io/large/front/c/7/c7c51eae-2c45-4f12-859d-56bd83247c2e.jpg?1783909995" />
    </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.93
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:6.0},{&quot;2026-06-11&quot;:6.11},{&quot;2026-06-12&quot;:5.75},{&quot;2026-06-13&quot;:5.69},{&quot;2026-06-14&quot;:5.82},{&quot;2026-06-15&quot;:5.96},{&quot;2026-06-16&quot;:6.01},{&quot;2026-06-17&quot;:5.99},{&quot;2026-06-18&quot;:6.03},{&quot;2026-06-19&quot;:6.1},{&quot;2026-06-20&quot;:6.33},{&quot;2026-06-21&quot;:6.45},{&quot;2026-06-22&quot;:6.59},{&quot;2026-06-23&quot;:6.53},{&quot;2026-06-24&quot;:6.82},{&quot;2026-06-25&quot;:6.82},{&quot;2026-06-26&quot;:6.82},{&quot;2026-06-27&quot;:6.82},{&quot;2026-06-28&quot;:6.94},{&quot;2026-06-29&quot;:6.94},{&quot;2026-06-30&quot;:6.94},{&quot;2026-07-01&quot;:7.05},{&quot;2026-07-02&quot;:7.05},{&quot;2026-07-03&quot;:7.05},{&quot;2026-07-04&quot;:7.39},{&quot;2026-07-05&quot;:7.3},{&quot;2026-07-06&quot;:7.3},{&quot;2026-07-07&quot;:7.3},{&quot;2026-07-08&quot;:7.43},{&quot;2026-07-09&quot;:7.53},{&quot;2026-07-10&quot;:7.81},{&quot;2026-07-11&quot;:7.65},{&quot;2026-07-12&quot;:7.62},{&quot;2026-07-13&quot;:7.56},{&quot;2026-07-14&quot;:7.54},{&quot;2026-07-15&quot;:7.54},{&quot;2026-07-16&quot;:7.57},{&quot;2026-07-17&quot;:7.7},{&quot;2026-07-18&quot;:7.64},{&quot;2026-07-19&quot;:7.76},{&quot;2026-07-20&quot;:7.95},{&quot;2026-07-21&quot;:7.95},{&quot;2026-07-23&quot;:8.02},{&quot;2026-07-25&quot;:8.03},{&quot;2026-07-26&quot;:8.03},{&quot;2026-07-27&quot;:7.75},{&quot;2026-07-29&quot;:7.78},{&quot;2026-07-30&quot;:7.79},{&quot;2026-07-31&quot;:7.85},{&quot;2026-08-01&quot;:7.91},{&quot;2026-08-02&quot;:7.74},{&quot;2026-08-03&quot;:7.62},{&quot;2026-08-04&quot;:7.49},{&quot;2026-08-05&quot;:7.45},{&quot;2026-08-07&quot;:7.16},{&quot;2026-08-08&quot;:7.05},{&quot;2026-08-09&quot;:7.13},{&quot;2026-08-10&quot;:7.07},{&quot;2026-08-11&quot;:6.9},{&quot;2026-08-12&quot;:6.53},{&quot;2026-08-13&quot;:6.4},{&quot;2026-08-14&quot;:6.22},{&quot;2026-08-15&quot;:6.1},{&quot;2026-08-16&quot;:6.1},{&quot;2026-08-17&quot;:6.1},{&quot;2026-08-18&quot;:5.86},{&quot;2026-08-19&quot;:5.5},{&quot;2026-08-20&quot;:5.5},{&quot;2026-08-21&quot;:5.48},{&quot;2026-08-22&quot;:5.48},{&quot;2026-08-23&quot;:5.53},{&quot;2026-08-24&quot;:5.64},{&quot;2026-08-25&quot;:5.64},{&quot;2026-08-26&quot;:5.54},{&quot;2026-08-27&quot;:5.77},{&quot;2026-08-28&quot;:5.77},{&quot;2026-08-29&quot;:5.77},{&quot;2026-08-30&quot;:6.03},{&quot;2026-08-31&quot;:6.21},{&quot;2026-09-01&quot;:6.21},{&quot;2026-09-02&quot;:6.47},{&quot;2026-09-03&quot;:6.48},{&quot;2026-09-04&quot;:6.74},{&quot;2026-09-05&quot;:6.74},{&quot;2026-09-06&quot;:6.72},{&quot;2026-09-07&quot;:6.83},{&quot;2026-09-08&quot;:6.83},{&quot;2026-09-09&quot;:6.83},{&quot;2026-09-10&quot;:6.79},{&quot;2026-09-11&quot;:6.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="14858"
  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-cmm 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">
            Forsaken Monument
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $6.65
          </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="Forsaken Monument" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/82dfdb91-aa69-45a1-adcc-9fcd85f84ccf.jpg?1783915407" />

        <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">
            Forsaken Monument
        </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 Artifact</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>
          </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="Forsaken Monument" src="https://cards.scryfall.io/large/front/8/2/82dfdb91-aa69-45a1-adcc-9fcd85f84ccf.jpg?1783915407" />
    </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.65
              </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">$5.50</span>
              <span class="text-xs text-grey-text">Credit: $7.15</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:5.5},{&quot;2026-06-13&quot;:5.5},{&quot;2026-06-14&quot;:5.56},{&quot;2026-06-15&quot;:5.48},{&quot;2026-06-16&quot;:5.53},{&quot;2026-06-17&quot;:5.52},{&quot;2026-06-18&quot;:5.54},{&quot;2026-06-19&quot;:5.62},{&quot;2026-06-20&quot;:5.67},{&quot;2026-06-21&quot;:5.72},{&quot;2026-06-22&quot;:5.7},{&quot;2026-06-23&quot;:5.83},{&quot;2026-06-24&quot;:5.84},{&quot;2026-06-25&quot;:5.83},{&quot;2026-06-26&quot;:5.9},{&quot;2026-06-27&quot;:5.89},{&quot;2026-06-28&quot;:5.89},{&quot;2026-06-29&quot;:5.89},{&quot;2026-06-30&quot;:5.93},{&quot;2026-07-01&quot;:5.87},{&quot;2026-07-02&quot;:5.65},{&quot;2026-07-03&quot;:5.58},{&quot;2026-07-04&quot;:5.64},{&quot;2026-07-05&quot;:5.78},{&quot;2026-07-06&quot;:5.84},{&quot;2026-07-07&quot;:6.0},{&quot;2026-07-08&quot;:6.0},{&quot;2026-07-09&quot;:5.99},{&quot;2026-07-10&quot;:6.16},{&quot;2026-07-11&quot;:6.22},{&quot;2026-07-12&quot;:6.22},{&quot;2026-07-13&quot;:6.27},{&quot;2026-07-14&quot;:6.28},{&quot;2026-07-15&quot;:6.28},{&quot;2026-07-16&quot;:6.29},{&quot;2026-07-17&quot;:6.34},{&quot;2026-07-18&quot;:6.48},{&quot;2026-07-19&quot;:6.43},{&quot;2026-07-20&quot;:6.43},{&quot;2026-07-21&quot;:6.47},{&quot;2026-07-23&quot;:6.55},{&quot;2026-07-24&quot;:6.53},{&quot;2026-07-25&quot;:6.47},{&quot;2026-07-26&quot;:6.34},{&quot;2026-07-27&quot;:6.33},{&quot;2026-07-28&quot;:6.29},{&quot;2026-07-29&quot;:6.32},{&quot;2026-07-30&quot;:6.26},{&quot;2026-07-31&quot;:6.41},{&quot;2026-08-01&quot;:6.41},{&quot;2026-08-02&quot;:6.13},{&quot;2026-08-03&quot;:6.13},{&quot;2026-08-04&quot;:6.08},{&quot;2026-08-05&quot;:6.0},{&quot;2026-08-07&quot;:6.05},{&quot;2026-08-08&quot;:6.06},{&quot;2026-08-09&quot;:6.06},{&quot;2026-08-10&quot;:6.06},{&quot;2026-08-11&quot;:6.06},{&quot;2026-08-12&quot;:6.22},{&quot;2026-08-13&quot;:6.21},{&quot;2026-08-14&quot;:6.21},{&quot;2026-08-15&quot;:6.28},{&quot;2026-08-16&quot;:6.3},{&quot;2026-08-17&quot;:6.25},{&quot;2026-08-18&quot;:6.25},{&quot;2026-08-19&quot;:6.26},{&quot;2026-08-20&quot;:6.26},{&quot;2026-08-21&quot;:6.2},{&quot;2026-08-22&quot;:6.19},{&quot;2026-08-23&quot;:6.26},{&quot;2026-08-24&quot;:6.18},{&quot;2026-08-25&quot;:6.18},{&quot;2026-08-26&quot;:6.23},{&quot;2026-08-27&quot;:6.23},{&quot;2026-08-28&quot;:6.23},{&quot;2026-08-29&quot;:6.23},{&quot;2026-08-30&quot;:6.25},{&quot;2026-08-31&quot;:6.37},{&quot;2026-09-01&quot;:6.37},{&quot;2026-09-02&quot;:6.37},{&quot;2026-09-03&quot;:6.37},{&quot;2026-09-04&quot;:6.33},{&quot;2026-09-05&quot;:6.28},{&quot;2026-09-06&quot;:6.37},{&quot;2026-09-07&quot;:6.51},{&quot;2026-09-08&quot;:6.58},{&quot;2026-09-09&quot;:6.58},{&quot;2026-09-10&quot;:6.58},{&quot;2026-09-11&quot;:6.65}]}"
        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="12003"
  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-cmm 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">
            Kozilek, the Great Distortion
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Eldrazi
      </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.08
          </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="Kozilek, the Great Distortion" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/4/c41554e7-2a07-4cc7-b01b-44deed08e588.jpg?1783915732" />

        <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">
            Kozilek, the Great Distortion
        </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 — Eldrazi</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-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></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="Kozilek, the Great Distortion" src="https://cards.scryfall.io/large/front/c/4/c41554e7-2a07-4cc7-b01b-44deed08e588.jpg?1783915732" />
    </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.08
              </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">
                $7.37
              </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">$4.20</span>
              <span class="text-xs text-grey-text">Credit: $5.46</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:7.03},{&quot;2026-06-10&quot;:7.15},{&quot;2026-06-11&quot;:7.15},{&quot;2026-06-12&quot;:7.15},{&quot;2026-06-13&quot;:7.15},{&quot;2026-06-14&quot;:7.15},{&quot;2026-06-15&quot;:7.15},{&quot;2026-06-16&quot;:7.15},{&quot;2026-06-17&quot;:7.15},{&quot;2026-06-18&quot;:7.15},{&quot;2026-06-19&quot;:7.15},{&quot;2026-06-20&quot;:7.15},{&quot;2026-06-21&quot;:7.09},{&quot;2026-06-22&quot;:7.09},{&quot;2026-06-24&quot;:7.13},{&quot;2026-06-25&quot;:7.13},{&quot;2026-06-26&quot;:7.13},{&quot;2026-06-27&quot;:7.13},{&quot;2026-06-28&quot;:7.04},{&quot;2026-06-29&quot;:7.04},{&quot;2026-06-30&quot;:7.04},{&quot;2026-07-01&quot;:7.04},{&quot;2026-07-02&quot;:7.13},{&quot;2026-07-03&quot;:7.13},{&quot;2026-07-04&quot;:7.13},{&quot;2026-07-05&quot;:7.13},{&quot;2026-07-06&quot;:7.13},{&quot;2026-07-07&quot;:7.13},{&quot;2026-07-08&quot;:7.13},{&quot;2026-07-09&quot;:7.13},{&quot;2026-07-10&quot;:7.1},{&quot;2026-07-11&quot;:7.1},{&quot;2026-07-12&quot;:7.1},{&quot;2026-07-13&quot;:7.1},{&quot;2026-07-14&quot;:7.1},{&quot;2026-07-15&quot;:7.1},{&quot;2026-07-16&quot;:7.1},{&quot;2026-07-17&quot;:7.1},{&quot;2026-07-18&quot;:7.1},{&quot;2026-07-19&quot;:7.1},{&quot;2026-07-20&quot;:7.1},{&quot;2026-07-21&quot;:7.1},{&quot;2026-07-23&quot;:7.1},{&quot;2026-07-25&quot;:7.1},{&quot;2026-07-26&quot;:7.1},{&quot;2026-07-27&quot;:7.1},{&quot;2026-07-29&quot;:7.1},{&quot;2026-07-30&quot;:7.1},{&quot;2026-07-31&quot;:7.1},{&quot;2026-08-01&quot;:7.1},{&quot;2026-08-02&quot;:7.1},{&quot;2026-08-03&quot;:7.1},{&quot;2026-08-04&quot;:7.1},{&quot;2026-08-05&quot;:7.1},{&quot;2026-08-07&quot;:7.1},{&quot;2026-08-08&quot;:7.1},{&quot;2026-08-09&quot;:7.1},{&quot;2026-08-10&quot;:7.1},{&quot;2026-08-11&quot;:7.1},{&quot;2026-08-12&quot;:7.1},{&quot;2026-08-13&quot;:7.1},{&quot;2026-08-14&quot;:7.1},{&quot;2026-08-15&quot;:7.1},{&quot;2026-08-16&quot;:7.1},{&quot;2026-08-17&quot;:7.1},{&quot;2026-08-18&quot;:7.1},{&quot;2026-08-19&quot;:7.1},{&quot;2026-08-20&quot;:7.1},{&quot;2026-08-21&quot;:7.26},{&quot;2026-08-22&quot;:7.26},{&quot;2026-08-23&quot;:7.26},{&quot;2026-08-24&quot;:7.26},{&quot;2026-08-25&quot;:7.26},{&quot;2026-08-26&quot;:7.26},{&quot;2026-08-27&quot;:7.26},{&quot;2026-08-28&quot;:7.26},{&quot;2026-08-29&quot;:7.26},{&quot;2026-08-30&quot;:7.26},{&quot;2026-08-31&quot;:7.26},{&quot;2026-09-01&quot;:7.26},{&quot;2026-09-02&quot;:7.3},{&quot;2026-09-03&quot;:7.3},{&quot;2026-09-04&quot;:7.3},{&quot;2026-09-05&quot;:7.3},{&quot;2026-09-06&quot;:7.3},{&quot;2026-09-07&quot;:7.3},{&quot;2026-09-08&quot;:7.3},{&quot;2026-09-09&quot;:7.3},{&quot;2026-09-10&quot;:7.3},{&quot;2026-09-11&quot;:7.37}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:5.12},{&quot;2026-06-10&quot;:5.3},{&quot;2026-06-11&quot;:5.21},{&quot;2026-06-12&quot;:5.06},{&quot;2026-06-13&quot;:5.05},{&quot;2026-06-14&quot;:5.14},{&quot;2026-06-15&quot;:5.18},{&quot;2026-06-16&quot;:5.21},{&quot;2026-06-17&quot;:5.15},{&quot;2026-06-18&quot;:4.87},{&quot;2026-06-19&quot;:4.77},{&quot;2026-06-20&quot;:4.46},{&quot;2026-06-21&quot;:4.52},{&quot;2026-06-22&quot;:4.53},{&quot;2026-06-24&quot;:4.65},{&quot;2026-06-25&quot;:4.65},{&quot;2026-06-26&quot;:4.64},{&quot;2026-06-27&quot;:4.7},{&quot;2026-06-28&quot;:4.76},{&quot;2026-06-29&quot;:4.78},{&quot;2026-06-30&quot;:4.84},{&quot;2026-07-01&quot;:4.7},{&quot;2026-07-02&quot;:4.83},{&quot;2026-07-03&quot;:4.89},{&quot;2026-07-04&quot;:5.04},{&quot;2026-07-05&quot;:5.03},{&quot;2026-07-06&quot;:5.07},{&quot;2026-07-07&quot;:5.08},{&quot;2026-07-08&quot;:5.08},{&quot;2026-07-09&quot;:5.21},{&quot;2026-07-10&quot;:5.13},{&quot;2026-07-11&quot;:5.26},{&quot;2026-07-12&quot;:5.25},{&quot;2026-07-13&quot;:5.17},{&quot;2026-07-14&quot;:5.25},{&quot;2026-07-15&quot;:5.27},{&quot;2026-07-16&quot;:5.27},{&quot;2026-07-17&quot;:5.35},{&quot;2026-07-18&quot;:5.28},{&quot;2026-07-19&quot;:5.33},{&quot;2026-07-20&quot;:5.52},{&quot;2026-07-21&quot;:5.75},{&quot;2026-07-23&quot;:5.79},{&quot;2026-07-25&quot;:5.73},{&quot;2026-07-26&quot;:5.58},{&quot;2026-07-27&quot;:5.63},{&quot;2026-07-29&quot;:5.71},{&quot;2026-07-30&quot;:5.82},{&quot;2026-07-31&quot;:5.83},{&quot;2026-08-01&quot;:5.86},{&quot;2026-08-02&quot;:5.86},{&quot;2026-08-03&quot;:5.95},{&quot;2026-08-04&quot;:5.86},{&quot;2026-08-05&quot;:5.87},{&quot;2026-08-07&quot;:5.86},{&quot;2026-08-08&quot;:5.83},{&quot;2026-08-09&quot;:5.92},{&quot;2026-08-10&quot;:6.03},{&quot;2026-08-11&quot;:6.03},{&quot;2026-08-12&quot;:6.06},{&quot;2026-08-13&quot;:5.97},{&quot;2026-08-14&quot;:6.07},{&quot;2026-08-15&quot;:6.01},{&quot;2026-08-16&quot;:5.96},{&quot;2026-08-17&quot;:5.92},{&quot;2026-08-18&quot;:5.8},{&quot;2026-08-19&quot;:5.68},{&quot;2026-08-20&quot;:5.68},{&quot;2026-08-21&quot;:5.41},{&quot;2026-08-22&quot;:5.37},{&quot;2026-08-23&quot;:5.45},{&quot;2026-08-24&quot;:5.59},{&quot;2026-08-25&quot;:5.59},{&quot;2026-08-26&quot;:5.52},{&quot;2026-08-27&quot;:5.57},{&quot;2026-08-28&quot;:5.73},{&quot;2026-08-29&quot;:5.73},{&quot;2026-08-30&quot;:5.9},{&quot;2026-08-31&quot;:5.97},{&quot;2026-09-01&quot;:5.97},{&quot;2026-09-02&quot;:6.04},{&quot;2026-09-03&quot;:6.04},{&quot;2026-09-04&quot;:6.13},{&quot;2026-09-05&quot;:6.21},{&quot;2026-09-06&quot;:5.98},{&quot;2026-09-07&quot;:6.01},{&quot;2026-09-08&quot;:6.13},{&quot;2026-09-09&quot;:6.12},{&quot;2026-09-10&quot;:6.08},{&quot;2026-09-11&quot;:6.08}]}"
        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="14438"
  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-cmm 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">
            Not of This World
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.96
          </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="Not of This World" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d18ce39e-211d-460b-a200-a26c17aeeb12.jpg?1783915456" />

        <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">
            Not of This World
        </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">Kindred Instant — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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="Not of This World" src="https://cards.scryfall.io/large/front/d/1/d18ce39e-211d-460b-a200-a26c17aeeb12.jpg?1783915456" />
    </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.96
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.10</span>
              <span class="text-xs text-grey-text">Credit: $4.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;normal&quot;:[{&quot;2026-06-08&quot;:5.91},{&quot;2026-06-10&quot;:5.98},{&quot;2026-06-11&quot;:5.94},{&quot;2026-06-12&quot;:5.88},{&quot;2026-06-13&quot;:5.91},{&quot;2026-06-14&quot;:5.99},{&quot;2026-06-15&quot;:5.98},{&quot;2026-06-16&quot;:6.01},{&quot;2026-06-17&quot;:6.01},{&quot;2026-06-18&quot;:6.01},{&quot;2026-06-19&quot;:5.89},{&quot;2026-06-20&quot;:5.87},{&quot;2026-06-21&quot;:5.87},{&quot;2026-06-22&quot;:5.96},{&quot;2026-06-24&quot;:5.95},{&quot;2026-06-25&quot;:5.9},{&quot;2026-06-26&quot;:5.83},{&quot;2026-06-27&quot;:5.85},{&quot;2026-06-28&quot;:5.86},{&quot;2026-06-29&quot;:5.86},{&quot;2026-06-30&quot;:5.87},{&quot;2026-07-01&quot;:5.84},{&quot;2026-07-02&quot;:5.68},{&quot;2026-07-03&quot;:5.6},{&quot;2026-07-04&quot;:5.71},{&quot;2026-07-05&quot;:5.73},{&quot;2026-07-06&quot;:5.68},{&quot;2026-07-07&quot;:5.71},{&quot;2026-07-08&quot;:5.67},{&quot;2026-07-09&quot;:5.66},{&quot;2026-07-10&quot;:5.62},{&quot;2026-07-11&quot;:5.6},{&quot;2026-07-12&quot;:5.6},{&quot;2026-07-13&quot;:5.62},{&quot;2026-07-14&quot;:5.79},{&quot;2026-07-15&quot;:5.79},{&quot;2026-07-16&quot;:5.77},{&quot;2026-07-17&quot;:5.77},{&quot;2026-07-18&quot;:5.8},{&quot;2026-07-19&quot;:5.77},{&quot;2026-07-20&quot;:5.74},{&quot;2026-07-21&quot;:5.76},{&quot;2026-07-23&quot;:5.71},{&quot;2026-07-25&quot;:5.83},{&quot;2026-07-26&quot;:5.75},{&quot;2026-07-27&quot;:5.71},{&quot;2026-07-29&quot;:5.68},{&quot;2026-07-30&quot;:5.63},{&quot;2026-07-31&quot;:5.67},{&quot;2026-08-01&quot;:5.67},{&quot;2026-08-02&quot;:5.68},{&quot;2026-08-03&quot;:5.75},{&quot;2026-08-04&quot;:5.72},{&quot;2026-08-05&quot;:5.72},{&quot;2026-08-07&quot;:5.67},{&quot;2026-08-08&quot;:5.78},{&quot;2026-08-09&quot;:5.69},{&quot;2026-08-10&quot;:5.65},{&quot;2026-08-11&quot;:5.76},{&quot;2026-08-12&quot;:5.86},{&quot;2026-08-13&quot;:5.91},{&quot;2026-08-14&quot;:5.83},{&quot;2026-08-15&quot;:5.75},{&quot;2026-08-16&quot;:5.73},{&quot;2026-08-17&quot;:5.71},{&quot;2026-08-18&quot;:5.79},{&quot;2026-08-19&quot;:5.79},{&quot;2026-08-20&quot;:5.79},{&quot;2026-08-21&quot;:5.73},{&quot;2026-08-22&quot;:5.78},{&quot;2026-08-23&quot;:5.79},{&quot;2026-08-24&quot;:5.67},{&quot;2026-08-25&quot;:5.67},{&quot;2026-08-26&quot;:5.9},{&quot;2026-08-27&quot;:5.9},{&quot;2026-08-28&quot;:5.9},{&quot;2026-08-29&quot;:5.9},{&quot;2026-08-30&quot;:5.81},{&quot;2026-08-31&quot;:5.82},{&quot;2026-09-01&quot;:5.82},{&quot;2026-09-02&quot;:5.86},{&quot;2026-09-03&quot;:5.82},{&quot;2026-09-04&quot;:5.78},{&quot;2026-09-05&quot;:5.74},{&quot;2026-09-06&quot;:5.85},{&quot;2026-09-07&quot;:5.88},{&quot;2026-09-08&quot;:5.91},{&quot;2026-09-09&quot;:5.92},{&quot;2026-09-10&quot;:5.96},{&quot;2026-09-11&quot;:5.96}]}"
        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="14418"
  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-cmm 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">
            All Is Dust
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Kindred Sorcery — Eldrazi
      </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">
            $5.92
          </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="All Is Dust" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/2/4210c54e-89fd-4971-ab6a-ca8f4e7fe97a.jpg?1783915459" />

        <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">
            All Is Dust
        </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">Kindred Sorcery — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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="All Is Dust" src="https://cards.scryfall.io/large/front/4/2/4210c54e-89fd-4971-ab6a-ca8f4e7fe97a.jpg?1783915459" />
    </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.92
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.8},{&quot;2026-06-14&quot;:4.86},{&quot;2026-06-15&quot;:4.86},{&quot;2026-06-16&quot;:4.81},{&quot;2026-06-17&quot;:4.81},{&quot;2026-06-18&quot;:4.81},{&quot;2026-06-19&quot;:4.83},{&quot;2026-06-20&quot;:4.83},{&quot;2026-06-21&quot;:4.83},{&quot;2026-06-22&quot;:4.86},{&quot;2026-06-23&quot;:4.86},{&quot;2026-06-24&quot;:4.86},{&quot;2026-06-25&quot;:4.83},{&quot;2026-06-26&quot;:4.84},{&quot;2026-06-27&quot;:4.91},{&quot;2026-06-28&quot;:4.86},{&quot;2026-06-29&quot;:4.85},{&quot;2026-06-30&quot;:4.85},{&quot;2026-07-01&quot;:4.82},{&quot;2026-07-02&quot;:4.83},{&quot;2026-07-03&quot;:4.72},{&quot;2026-07-04&quot;:4.71},{&quot;2026-07-05&quot;:4.61},{&quot;2026-07-06&quot;:4.68},{&quot;2026-07-07&quot;:4.74},{&quot;2026-07-08&quot;:4.73},{&quot;2026-07-09&quot;:4.69},{&quot;2026-07-10&quot;:4.85},{&quot;2026-07-11&quot;:5.01},{&quot;2026-07-12&quot;:5.01},{&quot;2026-07-13&quot;:4.95},{&quot;2026-07-14&quot;:5.05},{&quot;2026-07-15&quot;:5.15},{&quot;2026-07-16&quot;:5.25},{&quot;2026-07-17&quot;:5.33},{&quot;2026-07-18&quot;:5.44},{&quot;2026-07-19&quot;:5.41},{&quot;2026-07-20&quot;:5.46},{&quot;2026-07-21&quot;:5.52},{&quot;2026-07-22&quot;:5.48},{&quot;2026-07-23&quot;:5.48},{&quot;2026-07-24&quot;:5.34},{&quot;2026-07-25&quot;:5.34},{&quot;2026-07-26&quot;:5.13},{&quot;2026-07-27&quot;:5.25},{&quot;2026-07-28&quot;:5.22},{&quot;2026-07-29&quot;:5.02},{&quot;2026-07-30&quot;:5.04},{&quot;2026-07-31&quot;:5.0},{&quot;2026-08-01&quot;:5.0},{&quot;2026-08-02&quot;:5.14},{&quot;2026-08-03&quot;:5.26},{&quot;2026-08-04&quot;:5.46},{&quot;2026-08-05&quot;:5.45},{&quot;2026-08-07&quot;:5.41},{&quot;2026-08-08&quot;:5.46},{&quot;2026-08-09&quot;:5.46},{&quot;2026-08-10&quot;:5.46},{&quot;2026-08-11&quot;:5.49},{&quot;2026-08-12&quot;:5.52},{&quot;2026-08-13&quot;:5.58},{&quot;2026-08-14&quot;:5.6},{&quot;2026-08-15&quot;:5.57},{&quot;2026-08-16&quot;:5.57},{&quot;2026-08-17&quot;:5.64},{&quot;2026-08-18&quot;:5.8},{&quot;2026-08-19&quot;:5.8},{&quot;2026-08-20&quot;:5.8},{&quot;2026-08-21&quot;:5.9},{&quot;2026-08-22&quot;:5.94},{&quot;2026-08-23&quot;:5.84},{&quot;2026-08-24&quot;:5.84},{&quot;2026-08-25&quot;:5.84},{&quot;2026-08-26&quot;:5.78},{&quot;2026-08-27&quot;:5.72},{&quot;2026-08-28&quot;:5.76},{&quot;2026-08-29&quot;:5.76},{&quot;2026-08-30&quot;:5.78},{&quot;2026-08-31&quot;:5.85},{&quot;2026-09-01&quot;:5.9},{&quot;2026-09-02&quot;:5.98},{&quot;2026-09-03&quot;:5.92},{&quot;2026-09-04&quot;:5.91},{&quot;2026-09-05&quot;:5.91},{&quot;2026-09-06&quot;:5.92},{&quot;2026-09-07&quot;:5.92},{&quot;2026-09-08&quot;:5.92},{&quot;2026-09-09&quot;:5.92},{&quot;2026-09-10&quot;:5.92},{&quot;2026-09-11&quot;:5.92}]}"
        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="96531"
  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-eos 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">
            Mirrorpool
        </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">
            $5.19
          </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="Mirrorpool" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/e/eebffbb3-5421-40e4-af92-999d8eb504f4.jpg?1783905858" />

        <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">
            Mirrorpool
        </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">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="Mirrorpool" src="https://cards.scryfall.io/large/front/e/e/eebffbb3-5421-40e4-af92-999d8eb504f4.jpg?1783905858" />
    </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.19
              </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">
                $9.76
              </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">$2.30</span>
              <span class="text-xs text-grey-text">Credit: $2.99</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:8.91},{&quot;2026-06-11&quot;:8.85},{&quot;2026-06-12&quot;:8.84},{&quot;2026-06-13&quot;:8.84},{&quot;2026-06-14&quot;:8.84},{&quot;2026-06-15&quot;:8.9},{&quot;2026-06-16&quot;:8.9},{&quot;2026-06-17&quot;:8.9},{&quot;2026-06-18&quot;:8.9},{&quot;2026-06-19&quot;:8.9},{&quot;2026-06-20&quot;:8.9},{&quot;2026-06-21&quot;:8.9},{&quot;2026-06-22&quot;:9.01},{&quot;2026-06-23&quot;:9.03},{&quot;2026-06-24&quot;:9.03},{&quot;2026-06-25&quot;:9.03},{&quot;2026-06-26&quot;:9.03},{&quot;2026-06-27&quot;:9.1},{&quot;2026-06-28&quot;:9.13},{&quot;2026-06-29&quot;:9.06},{&quot;2026-06-30&quot;:9.06},{&quot;2026-07-01&quot;:9.06},{&quot;2026-07-02&quot;:9.06},{&quot;2026-07-03&quot;:9.06},{&quot;2026-07-04&quot;:9.06},{&quot;2026-07-05&quot;:9.06},{&quot;2026-07-06&quot;:9.06},{&quot;2026-07-07&quot;:9.06},{&quot;2026-07-08&quot;:9.06},{&quot;2026-07-09&quot;:9.06},{&quot;2026-07-10&quot;:9.06},{&quot;2026-07-11&quot;:9.06},{&quot;2026-07-12&quot;:9.06},{&quot;2026-07-13&quot;:9.06},{&quot;2026-07-14&quot;:9.06},{&quot;2026-07-15&quot;:9.02},{&quot;2026-07-16&quot;:9.02},{&quot;2026-07-17&quot;:9.01},{&quot;2026-07-18&quot;:9.01},{&quot;2026-07-19&quot;:9.01},{&quot;2026-07-20&quot;:9.01},{&quot;2026-07-21&quot;:9.01},{&quot;2026-07-23&quot;:9.07},{&quot;2026-07-25&quot;:9.04},{&quot;2026-07-26&quot;:9.04},{&quot;2026-07-27&quot;:9.16},{&quot;2026-07-29&quot;:9.45},{&quot;2026-07-30&quot;:9.45},{&quot;2026-07-31&quot;:9.45},{&quot;2026-08-01&quot;:9.45},{&quot;2026-08-02&quot;:9.45},{&quot;2026-08-03&quot;:9.36},{&quot;2026-08-04&quot;:9.36},{&quot;2026-08-05&quot;:9.36},{&quot;2026-08-07&quot;:9.33},{&quot;2026-08-08&quot;:9.33},{&quot;2026-08-09&quot;:9.33},{&quot;2026-08-10&quot;:9.33},{&quot;2026-08-11&quot;:9.33},{&quot;2026-08-12&quot;:9.35},{&quot;2026-08-13&quot;:9.31},{&quot;2026-08-14&quot;:9.31},{&quot;2026-08-15&quot;:9.31},{&quot;2026-08-16&quot;:9.31},{&quot;2026-08-17&quot;:9.31},{&quot;2026-08-18&quot;:9.31},{&quot;2026-08-19&quot;:9.31},{&quot;2026-08-20&quot;:9.31},{&quot;2026-08-21&quot;:9.31},{&quot;2026-08-22&quot;:9.27},{&quot;2026-08-23&quot;:9.33},{&quot;2026-08-24&quot;:9.3},{&quot;2026-08-25&quot;:9.3},{&quot;2026-08-26&quot;:9.31},{&quot;2026-08-27&quot;:9.31},{&quot;2026-08-28&quot;:9.31},{&quot;2026-08-29&quot;:9.31},{&quot;2026-08-30&quot;:9.37},{&quot;2026-08-31&quot;:9.37},{&quot;2026-09-01&quot;:9.37},{&quot;2026-09-02&quot;:9.81},{&quot;2026-09-03&quot;:9.81},{&quot;2026-09-04&quot;:9.81},{&quot;2026-09-05&quot;:9.81},{&quot;2026-09-06&quot;:9.76},{&quot;2026-09-07&quot;:9.76},{&quot;2026-09-08&quot;:9.76},{&quot;2026-09-09&quot;:9.76},{&quot;2026-09-10&quot;:9.76},{&quot;2026-09-11&quot;:9.76}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.09},{&quot;2026-06-11&quot;:4.16},{&quot;2026-06-12&quot;:4.13},{&quot;2026-06-13&quot;:4.36},{&quot;2026-06-14&quot;:4.34},{&quot;2026-06-15&quot;:4.38},{&quot;2026-06-16&quot;:4.35},{&quot;2026-06-17&quot;:4.33},{&quot;2026-06-18&quot;:4.47},{&quot;2026-06-19&quot;:4.44},{&quot;2026-06-20&quot;:4.69},{&quot;2026-06-21&quot;:4.69},{&quot;2026-06-22&quot;:4.74},{&quot;2026-06-23&quot;:4.73},{&quot;2026-06-24&quot;:4.73},{&quot;2026-06-25&quot;:4.73},{&quot;2026-06-26&quot;:4.68},{&quot;2026-06-27&quot;:4.66},{&quot;2026-06-28&quot;:4.75},{&quot;2026-06-29&quot;:4.72},{&quot;2026-06-30&quot;:4.71},{&quot;2026-07-01&quot;:4.72},{&quot;2026-07-02&quot;:4.72},{&quot;2026-07-03&quot;:4.69},{&quot;2026-07-04&quot;:4.62},{&quot;2026-07-05&quot;:4.68},{&quot;2026-07-06&quot;:4.68},{&quot;2026-07-07&quot;:4.69},{&quot;2026-07-08&quot;:4.61},{&quot;2026-07-09&quot;:4.61},{&quot;2026-07-10&quot;:4.56},{&quot;2026-07-11&quot;:4.56},{&quot;2026-07-12&quot;:4.49},{&quot;2026-07-13&quot;:4.48},{&quot;2026-07-14&quot;:4.47},{&quot;2026-07-15&quot;:4.31},{&quot;2026-07-16&quot;:4.31},{&quot;2026-07-17&quot;:4.3},{&quot;2026-07-18&quot;:4.25},{&quot;2026-07-19&quot;:4.31},{&quot;2026-07-20&quot;:4.28},{&quot;2026-07-21&quot;:4.24},{&quot;2026-07-23&quot;:4.24},{&quot;2026-07-25&quot;:4.53},{&quot;2026-07-26&quot;:4.56},{&quot;2026-07-27&quot;:4.58},{&quot;2026-07-29&quot;:4.62},{&quot;2026-07-30&quot;:4.62},{&quot;2026-07-31&quot;:4.62},{&quot;2026-08-01&quot;:4.56},{&quot;2026-08-02&quot;:4.5},{&quot;2026-08-03&quot;:4.59},{&quot;2026-08-04&quot;:4.45},{&quot;2026-08-05&quot;:4.52},{&quot;2026-08-07&quot;:4.37},{&quot;2026-08-08&quot;:4.43},{&quot;2026-08-09&quot;:4.32},{&quot;2026-08-10&quot;:4.24},{&quot;2026-08-11&quot;:4.13},{&quot;2026-08-12&quot;:4.09},{&quot;2026-08-13&quot;:4.07},{&quot;2026-08-14&quot;:4.06},{&quot;2026-08-15&quot;:4.06},{&quot;2026-08-16&quot;:4.19},{&quot;2026-08-17&quot;:4.19},{&quot;2026-08-18&quot;:4.21},{&quot;2026-08-19&quot;:4.23},{&quot;2026-08-20&quot;:4.23},{&quot;2026-08-21&quot;:4.27},{&quot;2026-08-22&quot;:4.27},{&quot;2026-08-23&quot;:4.32},{&quot;2026-08-24&quot;:4.51},{&quot;2026-08-25&quot;:4.51},{&quot;2026-08-26&quot;:4.72},{&quot;2026-08-27&quot;:4.84},{&quot;2026-08-28&quot;:4.8},{&quot;2026-08-29&quot;:4.8},{&quot;2026-08-30&quot;:5.08},{&quot;2026-08-31&quot;:5.16},{&quot;2026-09-01&quot;:5.16},{&quot;2026-09-02&quot;:5.1},{&quot;2026-09-03&quot;:4.99},{&quot;2026-09-04&quot;:5.01},{&quot;2026-09-05&quot;:5.33},{&quot;2026-09-06&quot;:5.33},{&quot;2026-09-07&quot;:5.22},{&quot;2026-09-08&quot;:5.3},{&quot;2026-09-09&quot;:5.3},{&quot;2026-09-10&quot;:5.23},{&quot;2026-09-11&quot;:5.19}]}"
        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="14155"
  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-cmm 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">
            Desecrate Reality
        </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="text-sm font-medium text-nine-white">
            $4.78
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Desecrate Reality" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/9/396db2cb-8fa0-436a-993d-de8bb13b848f.jpg?1783915487" />

        <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">
            Desecrate Reality
        </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-7'></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="Desecrate Reality" src="https://cards.scryfall.io/large/front/3/9/396db2cb-8fa0-436a-993d-de8bb13b848f.jpg?1783915487" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.78
              </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;normal&quot;:[{&quot;2026-06-08&quot;:5.29},{&quot;2026-06-10&quot;:5.28},{&quot;2026-06-11&quot;:5.28},{&quot;2026-06-12&quot;:5.25},{&quot;2026-06-13&quot;:5.29},{&quot;2026-06-14&quot;:5.3},{&quot;2026-06-15&quot;:5.31},{&quot;2026-06-16&quot;:5.24},{&quot;2026-06-17&quot;:5.19},{&quot;2026-06-18&quot;:5.22},{&quot;2026-06-19&quot;:5.22},{&quot;2026-06-20&quot;:5.18},{&quot;2026-06-21&quot;:5.11},{&quot;2026-06-22&quot;:5.16},{&quot;2026-06-24&quot;:5.15},{&quot;2026-06-25&quot;:5.12},{&quot;2026-06-26&quot;:5.13},{&quot;2026-06-27&quot;:4.88},{&quot;2026-06-28&quot;:4.74},{&quot;2026-06-29&quot;:4.65},{&quot;2026-06-30&quot;:4.49},{&quot;2026-07-01&quot;:4.48},{&quot;2026-07-02&quot;:4.4},{&quot;2026-07-03&quot;:4.28},{&quot;2026-07-04&quot;:4.31},{&quot;2026-07-05&quot;:4.31},{&quot;2026-07-06&quot;:4.49},{&quot;2026-07-07&quot;:4.49},{&quot;2026-07-08&quot;:4.53},{&quot;2026-07-09&quot;:4.67},{&quot;2026-07-10&quot;:4.74},{&quot;2026-07-11&quot;:4.74},{&quot;2026-07-12&quot;:4.77},{&quot;2026-07-13&quot;:4.82},{&quot;2026-07-14&quot;:4.82},{&quot;2026-07-15&quot;:4.84},{&quot;2026-07-16&quot;:4.87},{&quot;2026-07-17&quot;:4.87},{&quot;2026-07-18&quot;:4.87},{&quot;2026-07-19&quot;:4.9},{&quot;2026-07-20&quot;:4.9},{&quot;2026-07-21&quot;:4.88},{&quot;2026-07-23&quot;:5.01},{&quot;2026-07-25&quot;:4.89},{&quot;2026-07-26&quot;:4.88},{&quot;2026-07-27&quot;:4.94},{&quot;2026-07-29&quot;:4.95},{&quot;2026-07-30&quot;:4.95},{&quot;2026-07-31&quot;:4.96},{&quot;2026-08-01&quot;:4.96},{&quot;2026-08-02&quot;:4.92},{&quot;2026-08-03&quot;:4.98},{&quot;2026-08-04&quot;:4.9},{&quot;2026-08-05&quot;:4.88},{&quot;2026-08-07&quot;:4.84},{&quot;2026-08-08&quot;:4.89},{&quot;2026-08-09&quot;:4.89},{&quot;2026-08-10&quot;:4.84},{&quot;2026-08-11&quot;:4.6},{&quot;2026-08-12&quot;:4.6},{&quot;2026-08-13&quot;:4.56},{&quot;2026-08-14&quot;:4.28},{&quot;2026-08-15&quot;:4.22},{&quot;2026-08-16&quot;:4.28},{&quot;2026-08-17&quot;:4.28},{&quot;2026-08-18&quot;:4.28},{&quot;2026-08-19&quot;:4.1},{&quot;2026-08-20&quot;:4.1},{&quot;2026-08-21&quot;:3.98},{&quot;2026-08-22&quot;:3.94},{&quot;2026-08-23&quot;:4.01},{&quot;2026-08-24&quot;:4.18},{&quot;2026-08-25&quot;:4.18},{&quot;2026-08-26&quot;:4.23},{&quot;2026-08-27&quot;:4.26},{&quot;2026-08-28&quot;:4.42},{&quot;2026-08-29&quot;:4.42},{&quot;2026-08-30&quot;:4.58},{&quot;2026-08-31&quot;:4.64},{&quot;2026-09-01&quot;:4.64},{&quot;2026-09-02&quot;:4.76},{&quot;2026-09-03&quot;:4.78},{&quot;2026-09-04&quot;:4.8},{&quot;2026-09-05&quot;:4.8},{&quot;2026-09-06&quot;:4.76},{&quot;2026-09-07&quot;:4.72},{&quot;2026-09-08&quot;:4.72},{&quot;2026-09-09&quot;:4.75},{&quot;2026-09-10&quot;:4.75},{&quot;2026-09-11&quot;:4.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14152"
  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-cmm 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">
            Calamity of the Titans
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Calamity of the Titans" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/3/839a3a89-a87e-4108-87c5-74f656a6249f.jpg?1783915488" />

        <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">
            Calamity of the Titans
        </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-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></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="Calamity of the Titans" src="https://cards.scryfall.io/large/front/8/3/839a3a89-a87e-4108-87c5-74f656a6249f.jpg?1783915488" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.96},{&quot;2026-06-12&quot;:3.85},{&quot;2026-06-13&quot;:3.78},{&quot;2026-06-14&quot;:3.8},{&quot;2026-06-15&quot;:3.8},{&quot;2026-06-16&quot;:3.77},{&quot;2026-06-17&quot;:3.74},{&quot;2026-06-18&quot;:3.75},{&quot;2026-06-19&quot;:3.73},{&quot;2026-06-20&quot;:3.78},{&quot;2026-06-21&quot;:3.8},{&quot;2026-06-22&quot;:3.72},{&quot;2026-06-23&quot;:3.89},{&quot;2026-06-24&quot;:3.93},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:4.03},{&quot;2026-06-27&quot;:4.04},{&quot;2026-06-28&quot;:4.02},{&quot;2026-06-29&quot;:3.94},{&quot;2026-06-30&quot;:3.83},{&quot;2026-07-01&quot;:3.68},{&quot;2026-07-02&quot;:3.66},{&quot;2026-07-03&quot;:3.63},{&quot;2026-07-04&quot;:3.56},{&quot;2026-07-05&quot;:3.56},{&quot;2026-07-06&quot;:3.6},{&quot;2026-07-07&quot;:3.57},{&quot;2026-07-08&quot;:3.6},{&quot;2026-07-09&quot;:3.61},{&quot;2026-07-10&quot;:3.71},{&quot;2026-07-11&quot;:3.7},{&quot;2026-07-12&quot;:3.78},{&quot;2026-07-13&quot;:3.96},{&quot;2026-07-14&quot;:4.01},{&quot;2026-07-15&quot;:3.98},{&quot;2026-07-16&quot;:3.98},{&quot;2026-07-17&quot;:3.98},{&quot;2026-07-18&quot;:3.96},{&quot;2026-07-19&quot;:3.95},{&quot;2026-07-20&quot;:3.77},{&quot;2026-07-21&quot;:3.77},{&quot;2026-07-23&quot;:3.65},{&quot;2026-07-25&quot;:3.57},{&quot;2026-07-26&quot;:3.57},{&quot;2026-07-27&quot;:3.48},{&quot;2026-07-28&quot;:3.59},{&quot;2026-07-29&quot;:3.78},{&quot;2026-07-30&quot;:3.75},{&quot;2026-07-31&quot;:3.7},{&quot;2026-08-01&quot;:3.73},{&quot;2026-08-02&quot;:3.77},{&quot;2026-08-03&quot;:3.72},{&quot;2026-08-04&quot;:3.71},{&quot;2026-08-05&quot;:3.7},{&quot;2026-08-07&quot;:3.76},{&quot;2026-08-08&quot;:3.85},{&quot;2026-08-09&quot;:3.89},{&quot;2026-08-10&quot;:3.89},{&quot;2026-08-11&quot;:3.87},{&quot;2026-08-12&quot;:3.88},{&quot;2026-08-13&quot;:3.86},{&quot;2026-08-14&quot;:3.91},{&quot;2026-08-15&quot;:3.97},{&quot;2026-08-16&quot;:3.97},{&quot;2026-08-17&quot;:4.07},{&quot;2026-08-18&quot;:4.26},{&quot;2026-08-19&quot;:4.38},{&quot;2026-08-20&quot;:4.38},{&quot;2026-08-21&quot;:4.48},{&quot;2026-08-22&quot;:4.5},{&quot;2026-08-23&quot;:4.5},{&quot;2026-08-24&quot;:4.5},{&quot;2026-08-25&quot;:4.52},{&quot;2026-08-26&quot;:4.61},{&quot;2026-08-27&quot;:4.59},{&quot;2026-08-28&quot;:4.73},{&quot;2026-08-29&quot;:4.73},{&quot;2026-08-30&quot;:4.83},{&quot;2026-08-31&quot;:4.92},{&quot;2026-09-01&quot;:4.83},{&quot;2026-09-02&quot;:4.87},{&quot;2026-09-03&quot;:4.86},{&quot;2026-09-04&quot;:4.86},{&quot;2026-09-05&quot;:4.88},{&quot;2026-09-06&quot;:4.84},{&quot;2026-09-07&quot;:4.84},{&quot;2026-09-08&quot;:4.84},{&quot;2026-09-09&quot;:4.9},{&quot;2026-09-10&quot;:4.74},{&quot;2026-09-11&quot;:4.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="13249"
  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-cmm 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">
            Thran Dynamo
        </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">
              ↓
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.46
          </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="Thran Dynamo" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7ce5f12e-fc02-42f8-a5ca-b523050d4650.jpg?1783915588" />

        <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">
            Thran Dynamo
        </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-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="Thran Dynamo" src="https://cards.scryfall.io/large/front/7/c/7ce5f12e-fc02-42f8-a5ca-b523050d4650.jpg?1783915588" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:4.07},{&quot;2026-06-12&quot;:4.07},{&quot;2026-06-13&quot;:4.07},{&quot;2026-06-14&quot;:4.02},{&quot;2026-06-15&quot;:4.03},{&quot;2026-06-16&quot;:3.99},{&quot;2026-06-17&quot;:3.94},{&quot;2026-06-18&quot;:3.87},{&quot;2026-06-19&quot;:3.87},{&quot;2026-06-20&quot;:3.82},{&quot;2026-06-21&quot;:3.75},{&quot;2026-06-22&quot;:3.7},{&quot;2026-06-23&quot;:3.71},{&quot;2026-06-24&quot;:3.66},{&quot;2026-06-25&quot;:3.67},{&quot;2026-06-26&quot;:3.67},{&quot;2026-06-27&quot;:3.64},{&quot;2026-06-28&quot;:3.76},{&quot;2026-06-29&quot;:3.76},{&quot;2026-06-30&quot;:3.76},{&quot;2026-07-01&quot;:3.82},{&quot;2026-07-02&quot;:3.86},{&quot;2026-07-03&quot;:3.81},{&quot;2026-07-04&quot;:4.04},{&quot;2026-07-05&quot;:4.07},{&quot;2026-07-06&quot;:4.07},{&quot;2026-07-07&quot;:4.3},{&quot;2026-07-08&quot;:4.3},{&quot;2026-07-09&quot;:4.33},{&quot;2026-07-10&quot;:4.35},{&quot;2026-07-11&quot;:4.39},{&quot;2026-07-12&quot;:4.39},{&quot;2026-07-13&quot;:4.39},{&quot;2026-07-14&quot;:4.44},{&quot;2026-07-15&quot;:4.44},{&quot;2026-07-16&quot;:4.51},{&quot;2026-07-17&quot;:4.51},{&quot;2026-07-18&quot;:4.51},{&quot;2026-07-19&quot;:4.51},{&quot;2026-07-20&quot;:4.75},{&quot;2026-07-21&quot;:4.83},{&quot;2026-07-23&quot;:4.83},{&quot;2026-07-25&quot;:4.83},{&quot;2026-07-26&quot;:4.83},{&quot;2026-07-27&quot;:4.83},{&quot;2026-07-28&quot;:4.83},{&quot;2026-07-29&quot;:4.83},{&quot;2026-07-30&quot;:4.83},{&quot;2026-07-31&quot;:4.9},{&quot;2026-08-01&quot;:4.9},{&quot;2026-08-02&quot;:4.9},{&quot;2026-08-03&quot;:4.9},{&quot;2026-08-04&quot;:4.9},{&quot;2026-08-05&quot;:4.9},{&quot;2026-08-07&quot;:4.99},{&quot;2026-08-08&quot;:5.11},{&quot;2026-08-09&quot;:5.11},{&quot;2026-08-10&quot;:5.11},{&quot;2026-08-11&quot;:5.11},{&quot;2026-08-12&quot;:5.11},{&quot;2026-08-13&quot;:5.11},{&quot;2026-08-14&quot;:5.13},{&quot;2026-08-15&quot;:5.13},{&quot;2026-08-16&quot;:5.13},{&quot;2026-08-17&quot;:5.13},{&quot;2026-08-18&quot;:5.13},{&quot;2026-08-19&quot;:5.13},{&quot;2026-08-20&quot;:5.13},{&quot;2026-08-21&quot;:5.13},{&quot;2026-08-22&quot;:5.18},{&quot;2026-08-23&quot;:5.18},{&quot;2026-08-24&quot;:5.24},{&quot;2026-08-25&quot;:5.24},{&quot;2026-08-26&quot;:5.23},{&quot;2026-08-27&quot;:5.23},{&quot;2026-08-28&quot;:5.23},{&quot;2026-08-29&quot;:5.23},{&quot;2026-08-30&quot;:5.3},{&quot;2026-08-31&quot;:5.3},{&quot;2026-09-01&quot;:5.3},{&quot;2026-09-02&quot;:5.3},{&quot;2026-09-03&quot;:5.25},{&quot;2026-09-04&quot;:5.29},{&quot;2026-09-05&quot;:5.29},{&quot;2026-09-06&quot;:5.29},{&quot;2026-09-07&quot;:5.29},{&quot;2026-09-08&quot;:5.14},{&quot;2026-09-09&quot;:5.14},{&quot;2026-09-10&quot;:5.14},{&quot;2026-09-11&quot;:5.21}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.72},{&quot;2026-06-12&quot;:3.73},{&quot;2026-06-13&quot;:3.74},{&quot;2026-06-14&quot;:3.7},{&quot;2026-06-15&quot;:3.91},{&quot;2026-06-16&quot;:3.92},{&quot;2026-06-17&quot;:3.91},{&quot;2026-06-18&quot;:4.0},{&quot;2026-06-19&quot;:3.95},{&quot;2026-06-20&quot;:3.98},{&quot;2026-06-21&quot;:4.06},{&quot;2026-06-22&quot;:4.3},{&quot;2026-06-23&quot;:4.35},{&quot;2026-06-24&quot;:4.43},{&quot;2026-06-25&quot;:4.49},{&quot;2026-06-26&quot;:4.49},{&quot;2026-06-27&quot;:4.3},{&quot;2026-06-28&quot;:4.31},{&quot;2026-06-29&quot;:4.39},{&quot;2026-06-30&quot;:4.26},{&quot;2026-07-01&quot;:4.15},{&quot;2026-07-02&quot;:4.48},{&quot;2026-07-03&quot;:4.62},{&quot;2026-07-04&quot;:4.58},{&quot;2026-07-05&quot;:4.61},{&quot;2026-07-06&quot;:4.61},{&quot;2026-07-07&quot;:4.65},{&quot;2026-07-08&quot;:4.4},{&quot;2026-07-09&quot;:4.47},{&quot;2026-07-10&quot;:4.5},{&quot;2026-07-11&quot;:4.53},{&quot;2026-07-12&quot;:4.62},{&quot;2026-07-13&quot;:4.86},{&quot;2026-07-14&quot;:4.97},{&quot;2026-07-15&quot;:4.97},{&quot;2026-07-16&quot;:5.12},{&quot;2026-07-17&quot;:5.2},{&quot;2026-07-18&quot;:5.1},{&quot;2026-07-19&quot;:5.01},{&quot;2026-07-20&quot;:5.21},{&quot;2026-07-21&quot;:5.22},{&quot;2026-07-23&quot;:5.05},{&quot;2026-07-25&quot;:5.09},{&quot;2026-07-26&quot;:5.06},{&quot;2026-07-27&quot;:4.98},{&quot;2026-07-28&quot;:4.79},{&quot;2026-07-29&quot;:4.81},{&quot;2026-07-30&quot;:4.81},{&quot;2026-07-31&quot;:4.77},{&quot;2026-08-01&quot;:5.05},{&quot;2026-08-02&quot;:5.22},{&quot;2026-08-03&quot;:5.46},{&quot;2026-08-04&quot;:5.41},{&quot;2026-08-05&quot;:5.46},{&quot;2026-08-07&quot;:5.62},{&quot;2026-08-08&quot;:5.66},{&quot;2026-08-09&quot;:5.86},{&quot;2026-08-10&quot;:5.46},{&quot;2026-08-11&quot;:5.46},{&quot;2026-08-12&quot;:5.36},{&quot;2026-08-13&quot;:5.45},{&quot;2026-08-14&quot;:5.3},{&quot;2026-08-15&quot;:4.86},{&quot;2026-08-16&quot;:4.79},{&quot;2026-08-17&quot;:4.81},{&quot;2026-08-18&quot;:4.89},{&quot;2026-08-19&quot;:5.05},{&quot;2026-08-20&quot;:5.05},{&quot;2026-08-21&quot;:4.85},{&quot;2026-08-22&quot;:4.56},{&quot;2026-08-23&quot;:4.17},{&quot;2026-08-24&quot;:4.23},{&quot;2026-08-25&quot;:4.34},{&quot;2026-08-26&quot;:4.34},{&quot;2026-08-27&quot;:4.54},{&quot;2026-08-28&quot;:4.73},{&quot;2026-08-29&quot;:4.73},{&quot;2026-08-30&quot;:5.05},{&quot;2026-08-31&quot;:5.29},{&quot;2026-09-01&quot;:5.38},{&quot;2026-09-02&quot;:5.25},{&quot;2026-09-03&quot;:4.93},{&quot;2026-09-04&quot;:4.88},{&quot;2026-09-05&quot;:4.88},{&quot;2026-09-06&quot;:4.81},{&quot;2026-09-07&quot;:4.71},{&quot;2026-09-08&quot;:4.73},{&quot;2026-09-09&quot;:4.74},{&quot;2026-09-10&quot;:4.62},{&quot;2026-09-11&quot;:4.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14982"
  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-cmm 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">
            Eldrazi Temple
        </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.44
          </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="Eldrazi Temple" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/b/cbab7e1f-305e-4733-aa70-b27285740925.jpg?1783915392" />

        <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">
            Eldrazi Temple
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eldrazi Temple" src="https://cards.scryfall.io/large/front/c/b/cbab7e1f-305e-4733-aa70-b27285740925.jpg?1783915392" />
    </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.44
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-13&quot;:3.85},{&quot;2026-06-14&quot;:3.94},{&quot;2026-06-15&quot;:3.94},{&quot;2026-06-16&quot;:3.94},{&quot;2026-06-17&quot;:3.94},{&quot;2026-06-18&quot;:4.03},{&quot;2026-06-19&quot;:4.04},{&quot;2026-06-20&quot;:3.88},{&quot;2026-06-21&quot;:3.66},{&quot;2026-06-22&quot;:3.76},{&quot;2026-06-23&quot;:3.8},{&quot;2026-06-24&quot;:3.8},{&quot;2026-06-25&quot;:3.8},{&quot;2026-06-26&quot;:3.75},{&quot;2026-06-27&quot;:3.76},{&quot;2026-06-28&quot;:3.74},{&quot;2026-06-29&quot;:3.81},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.87},{&quot;2026-07-02&quot;:3.87},{&quot;2026-07-03&quot;:3.86},{&quot;2026-07-04&quot;:3.86},{&quot;2026-07-05&quot;:3.86},{&quot;2026-07-06&quot;:3.86},{&quot;2026-07-07&quot;:3.81},{&quot;2026-07-08&quot;:3.72},{&quot;2026-07-09&quot;:3.72},{&quot;2026-07-10&quot;:3.64},{&quot;2026-07-11&quot;:3.62},{&quot;2026-07-12&quot;:3.62},{&quot;2026-07-13&quot;:3.69},{&quot;2026-07-14&quot;:3.69},{&quot;2026-07-15&quot;:3.59},{&quot;2026-07-16&quot;:3.48},{&quot;2026-07-17&quot;:3.41},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.28},{&quot;2026-07-20&quot;:3.28},{&quot;2026-07-21&quot;:3.25},{&quot;2026-07-22&quot;:3.36},{&quot;2026-07-23&quot;:3.32},{&quot;2026-07-24&quot;:3.38},{&quot;2026-07-25&quot;:3.37},{&quot;2026-07-26&quot;:3.32},{&quot;2026-07-27&quot;:3.33},{&quot;2026-07-28&quot;:3.33},{&quot;2026-07-29&quot;:3.39},{&quot;2026-07-30&quot;:3.48},{&quot;2026-07-31&quot;:3.46},{&quot;2026-08-01&quot;:3.46},{&quot;2026-08-02&quot;:3.46},{&quot;2026-08-03&quot;:3.46},{&quot;2026-08-04&quot;:3.47},{&quot;2026-08-05&quot;:3.47},{&quot;2026-08-07&quot;:3.54},{&quot;2026-08-08&quot;:3.54},{&quot;2026-08-09&quot;:3.54},{&quot;2026-08-10&quot;:3.54},{&quot;2026-08-11&quot;:3.54},{&quot;2026-08-12&quot;:3.54},{&quot;2026-08-13&quot;:3.51},{&quot;2026-08-14&quot;:3.51},{&quot;2026-08-15&quot;:3.49},{&quot;2026-08-16&quot;:3.49},{&quot;2026-08-17&quot;:3.49},{&quot;2026-08-18&quot;:3.49},{&quot;2026-08-19&quot;:3.49},{&quot;2026-08-20&quot;:3.49},{&quot;2026-08-21&quot;:3.49},{&quot;2026-08-22&quot;:3.48},{&quot;2026-08-23&quot;:3.49},{&quot;2026-08-24&quot;:3.47},{&quot;2026-08-25&quot;:3.49},{&quot;2026-08-26&quot;:3.49},{&quot;2026-08-27&quot;:3.49},{&quot;2026-08-28&quot;:3.43},{&quot;2026-08-29&quot;:3.43},{&quot;2026-08-30&quot;:3.58},{&quot;2026-08-31&quot;:3.6},{&quot;2026-09-01&quot;:3.61},{&quot;2026-09-02&quot;:3.56},{&quot;2026-09-03&quot;:3.6},{&quot;2026-09-04&quot;:3.6},{&quot;2026-09-05&quot;:3.51},{&quot;2026-09-06&quot;:3.51},{&quot;2026-09-07&quot;:3.51},{&quot;2026-09-08&quot;:3.51},{&quot;2026-09-09&quot;:3.46},{&quot;2026-09-10&quot;:3.46},{&quot;2026-09-11&quot;:3.44}]}"
        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="13246"
  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-cmm 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">
            Thought Vessel
        </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">
              ↑
              6%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Thought Vessel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4bfc5847-c3b4-41e7-8087-73ac4850bc1b.jpg?1783915589" />

        <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">
            Thought Vessel
        </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="Thought Vessel" src="https://cards.scryfall.io/large/front/4/b/4bfc5847-c3b4-41e7-8087-73ac4850bc1b.jpg?1783915589" />
    </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.28
              </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">
                $4.59
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">$2.75</span>
              <span class="text-xs text-grey-text">Credit: $3.58</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.84},{&quot;2026-06-14&quot;:4.84},{&quot;2026-06-15&quot;:4.84},{&quot;2026-06-16&quot;:4.84},{&quot;2026-06-17&quot;:4.84},{&quot;2026-06-18&quot;:4.84},{&quot;2026-06-19&quot;:4.84},{&quot;2026-06-20&quot;:4.84},{&quot;2026-06-21&quot;:4.95},{&quot;2026-06-22&quot;:4.95},{&quot;2026-06-23&quot;:4.95},{&quot;2026-06-24&quot;:4.97},{&quot;2026-06-25&quot;:4.97},{&quot;2026-06-26&quot;:4.97},{&quot;2026-06-27&quot;:5.0},{&quot;2026-06-28&quot;:5.0},{&quot;2026-06-29&quot;:5.04},{&quot;2026-06-30&quot;:5.04},{&quot;2026-07-01&quot;:5.07},{&quot;2026-07-02&quot;:5.07},{&quot;2026-07-03&quot;:5.07},{&quot;2026-07-04&quot;:5.07},{&quot;2026-07-05&quot;:5.07},{&quot;2026-07-06&quot;:5.03},{&quot;2026-07-07&quot;:5.03},{&quot;2026-07-08&quot;:5.03},{&quot;2026-07-09&quot;:5.03},{&quot;2026-07-10&quot;:5.03},{&quot;2026-07-11&quot;:5.03},{&quot;2026-07-12&quot;:5.03},{&quot;2026-07-13&quot;:5.03},{&quot;2026-07-14&quot;:5.03},{&quot;2026-07-15&quot;:5.03},{&quot;2026-07-16&quot;:5.02},{&quot;2026-07-17&quot;:5.02},{&quot;2026-07-18&quot;:5.02},{&quot;2026-07-19&quot;:5.02},{&quot;2026-07-20&quot;:5.02},{&quot;2026-07-21&quot;:5.02},{&quot;2026-07-22&quot;:5.02},{&quot;2026-07-23&quot;:5.02},{&quot;2026-07-24&quot;:5.02},{&quot;2026-07-25&quot;:5.02},{&quot;2026-07-26&quot;:5.04},{&quot;2026-07-27&quot;:5.11},{&quot;2026-07-28&quot;:5.11},{&quot;2026-07-29&quot;:5.11},{&quot;2026-07-30&quot;:5.11},{&quot;2026-07-31&quot;:5.11},{&quot;2026-08-01&quot;:5.11},{&quot;2026-08-02&quot;:5.11},{&quot;2026-08-03&quot;:5.11},{&quot;2026-08-04&quot;:5.04},{&quot;2026-08-05&quot;:5.04},{&quot;2026-08-07&quot;:5.04},{&quot;2026-08-08&quot;:4.95},{&quot;2026-08-09&quot;:5.06},{&quot;2026-08-10&quot;:5.08},{&quot;2026-08-11&quot;:5.08},{&quot;2026-08-12&quot;:5.08},{&quot;2026-08-13&quot;:5.08},{&quot;2026-08-14&quot;:5.05},{&quot;2026-08-15&quot;:5.05},{&quot;2026-08-16&quot;:5.06},{&quot;2026-08-17&quot;:5.06},{&quot;2026-08-18&quot;:5.06},{&quot;2026-08-19&quot;:5.06},{&quot;2026-08-20&quot;:5.06},{&quot;2026-08-21&quot;:5.06},{&quot;2026-08-22&quot;:5.06},{&quot;2026-08-23&quot;:5.06},{&quot;2026-08-24&quot;:5.03},{&quot;2026-08-25&quot;:5.03},{&quot;2026-08-26&quot;:5.03},{&quot;2026-08-27&quot;:4.93},{&quot;2026-08-28&quot;:4.93},{&quot;2026-08-29&quot;:4.93},{&quot;2026-08-30&quot;:4.97},{&quot;2026-08-31&quot;:4.94},{&quot;2026-09-01&quot;:4.94},{&quot;2026-09-02&quot;:4.94},{&quot;2026-09-03&quot;:4.95},{&quot;2026-09-04&quot;:4.95},{&quot;2026-09-05&quot;:4.95},{&quot;2026-09-06&quot;:4.95},{&quot;2026-09-07&quot;:4.78},{&quot;2026-09-08&quot;:4.69},{&quot;2026-09-09&quot;:4.69},{&quot;2026-09-10&quot;:4.59},{&quot;2026-09-11&quot;:4.59}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.74},{&quot;2026-06-14&quot;:2.73},{&quot;2026-06-15&quot;:2.65},{&quot;2026-06-16&quot;:2.59},{&quot;2026-06-17&quot;:2.57},{&quot;2026-06-18&quot;:2.47},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.44},{&quot;2026-06-21&quot;:2.48},{&quot;2026-06-22&quot;:2.47},{&quot;2026-06-23&quot;:2.49},{&quot;2026-06-24&quot;:2.49},{&quot;2026-06-25&quot;:2.5},{&quot;2026-06-26&quot;:2.57},{&quot;2026-06-27&quot;:2.64},{&quot;2026-06-28&quot;:2.67},{&quot;2026-06-29&quot;:2.73},{&quot;2026-06-30&quot;:2.86},{&quot;2026-07-01&quot;:2.86},{&quot;2026-07-02&quot;:2.87},{&quot;2026-07-03&quot;:2.88},{&quot;2026-07-04&quot;:2.91},{&quot;2026-07-05&quot;:2.94},{&quot;2026-07-06&quot;:2.95},{&quot;2026-07-07&quot;:2.99},{&quot;2026-07-08&quot;:3.05},{&quot;2026-07-09&quot;:3.13},{&quot;2026-07-10&quot;:3.06},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.17},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.24},{&quot;2026-07-16&quot;:3.26},{&quot;2026-07-17&quot;:3.29},{&quot;2026-07-18&quot;:3.24},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.22},{&quot;2026-07-22&quot;:3.2},{&quot;2026-07-23&quot;:3.16},{&quot;2026-07-24&quot;:3.14},{&quot;2026-07-25&quot;:3.06},{&quot;2026-07-26&quot;:2.99},{&quot;2026-07-27&quot;:2.94},{&quot;2026-07-28&quot;:3.0},{&quot;2026-07-29&quot;:3.14},{&quot;2026-07-30&quot;:3.15},{&quot;2026-07-31&quot;:3.19},{&quot;2026-08-01&quot;:3.25},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:3.04},{&quot;2026-08-04&quot;:2.98},{&quot;2026-08-05&quot;:2.96},{&quot;2026-08-07&quot;:2.98},{&quot;2026-08-08&quot;:2.96},{&quot;2026-08-09&quot;:3.01},{&quot;2026-08-10&quot;:3.05},{&quot;2026-08-11&quot;:3.05},{&quot;2026-08-12&quot;:3.0},{&quot;2026-08-13&quot;:3.27},{&quot;2026-08-14&quot;:3.15},{&quot;2026-08-15&quot;:3.18},{&quot;2026-08-16&quot;:3.22},{&quot;2026-08-17&quot;:3.18},{&quot;2026-08-18&quot;:3.08},{&quot;2026-08-19&quot;:3.08},{&quot;2026-08-20&quot;:3.08},{&quot;2026-08-21&quot;:3.02},{&quot;2026-08-22&quot;:2.91},{&quot;2026-08-23&quot;:3.01},{&quot;2026-08-24&quot;:3.01},{&quot;2026-08-25&quot;:2.97},{&quot;2026-08-26&quot;:2.94},{&quot;2026-08-27&quot;:2.88},{&quot;2026-08-28&quot;:2.93},{&quot;2026-08-29&quot;:2.93},{&quot;2026-08-30&quot;:3.05},{&quot;2026-08-31&quot;:3.0},{&quot;2026-09-01&quot;:3.03},{&quot;2026-09-02&quot;:3.03},{&quot;2026-09-03&quot;:3.03},{&quot;2026-09-04&quot;:3.07},{&quot;2026-09-05&quot;:3.09},{&quot;2026-09-06&quot;:3.12},{&quot;2026-09-07&quot;:3.26},{&quot;2026-09-08&quot;:3.23},{&quot;2026-09-09&quot;:3.21},{&quot;2026-09-10&quot;:3.24},{&quot;2026-09-11&quot;:3.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15015"
  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-cmm 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">
            Guildless Commons
        </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">
            $2.97
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Guildless Commons
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Guildless Commons" src="https://cards.scryfall.io/large/front/8/f/8f943d5d-e8a1-4fe1-aad5-80c7ccf15435.jpg?1783915387" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.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;normal&quot;:[{&quot;2026-06-08&quot;:4.28},{&quot;2026-06-10&quot;:4.08},{&quot;2026-06-11&quot;:4.2},{&quot;2026-06-12&quot;:4.2},{&quot;2026-06-13&quot;:3.85},{&quot;2026-06-14&quot;:3.85},{&quot;2026-06-15&quot;:3.83},{&quot;2026-06-16&quot;:3.83},{&quot;2026-06-17&quot;:3.83},{&quot;2026-06-18&quot;:3.79},{&quot;2026-06-19&quot;:3.79},{&quot;2026-06-20&quot;:3.79},{&quot;2026-06-21&quot;:3.79},{&quot;2026-06-22&quot;:3.64},{&quot;2026-06-24&quot;:3.6},{&quot;2026-06-25&quot;:3.6},{&quot;2026-06-26&quot;:3.6},{&quot;2026-06-27&quot;:3.55},{&quot;2026-06-28&quot;:3.55},{&quot;2026-06-29&quot;:3.55},{&quot;2026-06-30&quot;:3.55},{&quot;2026-07-01&quot;:3.55},{&quot;2026-07-02&quot;:3.51},{&quot;2026-07-03&quot;:3.51},{&quot;2026-07-04&quot;:3.51},{&quot;2026-07-05&quot;:3.44},{&quot;2026-07-06&quot;:3.48},{&quot;2026-07-07&quot;:3.48},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.5},{&quot;2026-07-10&quot;:3.38},{&quot;2026-07-11&quot;:3.26},{&quot;2026-07-12&quot;:3.26},{&quot;2026-07-13&quot;:3.18},{&quot;2026-07-14&quot;:3.11},{&quot;2026-07-15&quot;:3.06},{&quot;2026-07-16&quot;:3.17},{&quot;2026-07-17&quot;:3.28},{&quot;2026-07-18&quot;:3.22},{&quot;2026-07-19&quot;:3.22},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.19},{&quot;2026-07-23&quot;:3.14},{&quot;2026-07-25&quot;:3.13},{&quot;2026-07-26&quot;:3.13},{&quot;2026-07-27&quot;:3.13},{&quot;2026-07-29&quot;:3.13},{&quot;2026-07-30&quot;:3.13},{&quot;2026-07-31&quot;:3.13},{&quot;2026-08-01&quot;:3.13},{&quot;2026-08-02&quot;:3.13},{&quot;2026-08-03&quot;:3.13},{&quot;2026-08-04&quot;:3.13},{&quot;2026-08-05&quot;:3.13},{&quot;2026-08-07&quot;:3.13},{&quot;2026-08-08&quot;:3.25},{&quot;2026-08-09&quot;:3.25},{&quot;2026-08-10&quot;:3.25},{&quot;2026-08-11&quot;:3.25},{&quot;2026-08-12&quot;:3.24},{&quot;2026-08-13&quot;:3.21},{&quot;2026-08-14&quot;:3.21},{&quot;2026-08-15&quot;:3.15},{&quot;2026-08-16&quot;:3.16},{&quot;2026-08-17&quot;:3.16},{&quot;2026-08-18&quot;:3.18},{&quot;2026-08-19&quot;:3.18},{&quot;2026-08-20&quot;:3.18},{&quot;2026-08-21&quot;:3.12},{&quot;2026-08-22&quot;:3.12},{&quot;2026-08-23&quot;:3.12},{&quot;2026-08-24&quot;:3.12},{&quot;2026-08-25&quot;:3.12},{&quot;2026-08-26&quot;:3.12},{&quot;2026-08-27&quot;:3.12},{&quot;2026-08-28&quot;:3.12},{&quot;2026-08-29&quot;:3.12},{&quot;2026-08-30&quot;:3.06},{&quot;2026-08-31&quot;:3.06},{&quot;2026-09-01&quot;:3.06},{&quot;2026-09-02&quot;:3.06},{&quot;2026-09-03&quot;:3.06},{&quot;2026-09-04&quot;:2.99},{&quot;2026-09-05&quot;:2.99},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.98},{&quot;2026-09-08&quot;:2.96},{&quot;2026-09-09&quot;:2.96},{&quot;2026-09-10&quot;:2.97},{&quot;2026-09-11&quot;:2.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14425"
  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-cmm 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">
            Bane of Bala Ged
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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">
            $2.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="Bane of Bala Ged" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c3cb0fff-da50-40b9-9839-68cdf25a0193.jpg?1783915459" />

        <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">
            Bane of Bala Ged
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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="Bane of Bala Ged" src="https://cards.scryfall.io/large/front/c/3/c3cb0fff-da50-40b9-9839-68cdf25a0193.jpg?1783915459" />
    </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.66
              </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.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;normal&quot;:[{&quot;2026-06-08&quot;:3.48},{&quot;2026-06-10&quot;:3.67},{&quot;2026-06-11&quot;:3.6},{&quot;2026-06-12&quot;:3.6},{&quot;2026-06-13&quot;:3.51},{&quot;2026-06-14&quot;:3.75},{&quot;2026-06-15&quot;:4.13},{&quot;2026-06-16&quot;:4.17},{&quot;2026-06-17&quot;:4.17},{&quot;2026-06-18&quot;:4.12},{&quot;2026-06-19&quot;:4.05},{&quot;2026-06-20&quot;:4.05},{&quot;2026-06-21&quot;:4.17},{&quot;2026-06-22&quot;:4.33},{&quot;2026-06-24&quot;:4.1},{&quot;2026-06-25&quot;:4.25},{&quot;2026-06-26&quot;:4.25},{&quot;2026-06-27&quot;:4.25},{&quot;2026-06-28&quot;:4.02},{&quot;2026-06-29&quot;:4.02},{&quot;2026-06-30&quot;:3.98},{&quot;2026-07-01&quot;:3.95},{&quot;2026-07-02&quot;:3.82},{&quot;2026-07-03&quot;:3.41},{&quot;2026-07-04&quot;:3.41},{&quot;2026-07-05&quot;:3.32},{&quot;2026-07-06&quot;:3.32},{&quot;2026-07-07&quot;:3.32},{&quot;2026-07-08&quot;:3.12},{&quot;2026-07-09&quot;:3.12},{&quot;2026-07-10&quot;:3.12},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:2.94},{&quot;2026-07-13&quot;:2.83},{&quot;2026-07-14&quot;:2.71},{&quot;2026-07-15&quot;:2.71},{&quot;2026-07-16&quot;:2.71},{&quot;2026-07-17&quot;:2.71},{&quot;2026-07-18&quot;:2.6},{&quot;2026-07-19&quot;:2.76},{&quot;2026-07-20&quot;:2.87},{&quot;2026-07-21&quot;:2.92},{&quot;2026-07-23&quot;:2.92},{&quot;2026-07-25&quot;:2.87},{&quot;2026-07-26&quot;:2.9},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-29&quot;:2.91},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.91},{&quot;2026-08-01&quot;:2.91},{&quot;2026-08-02&quot;:3.18},{&quot;2026-08-03&quot;:3.31},{&quot;2026-08-04&quot;:3.35},{&quot;2026-08-05&quot;:3.36},{&quot;2026-08-07&quot;:3.27},{&quot;2026-08-08&quot;:3.27},{&quot;2026-08-09&quot;:3.27},{&quot;2026-08-10&quot;:3.27},{&quot;2026-08-11&quot;:3.27},{&quot;2026-08-12&quot;:3.2},{&quot;2026-08-13&quot;:3.21},{&quot;2026-08-14&quot;:3.31},{&quot;2026-08-15&quot;:3.31},{&quot;2026-08-16&quot;:3.25},{&quot;2026-08-17&quot;:3.18},{&quot;2026-08-18&quot;:3.26},{&quot;2026-08-19&quot;:3.26},{&quot;2026-08-20&quot;:3.26},{&quot;2026-08-21&quot;:3.21},{&quot;2026-08-22&quot;:3.04},{&quot;2026-08-23&quot;:3.0},{&quot;2026-08-24&quot;:2.75},{&quot;2026-08-25&quot;:2.75},{&quot;2026-08-26&quot;:2.68},{&quot;2026-08-27&quot;:2.7},{&quot;2026-08-28&quot;:2.7},{&quot;2026-08-29&quot;:2.7},{&quot;2026-08-30&quot;:2.73},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.49},{&quot;2026-09-02&quot;:2.51},{&quot;2026-09-03&quot;:2.58},{&quot;2026-09-04&quot;:2.58},{&quot;2026-09-05&quot;:2.53},{&quot;2026-09-06&quot;:2.48},{&quot;2026-09-07&quot;:2.58},{&quot;2026-09-08&quot;:2.58},{&quot;2026-09-09&quot;:2.58},{&quot;2026-09-10&quot;:2.62},{&quot;2026-09-11&quot;:2.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="13236"
  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-cmm 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-50 text-badge-text">
              ↑
              10%
            </span>

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

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

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

        <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/4/6/46ca0b66-a000-4483-b916-f5b89e710244.jpg?1783915591" />
    </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.49
              </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">
                $4.55
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.32},{&quot;2026-06-14&quot;:5.2},{&quot;2026-06-15&quot;:5.2},{&quot;2026-06-16&quot;:5.15},{&quot;2026-06-17&quot;:5.15},{&quot;2026-06-18&quot;:5.23},{&quot;2026-06-19&quot;:5.23},{&quot;2026-06-20&quot;:5.23},{&quot;2026-06-21&quot;:5.23},{&quot;2026-06-22&quot;:5.23},{&quot;2026-06-23&quot;:5.23},{&quot;2026-06-24&quot;:5.14},{&quot;2026-06-25&quot;:5.14},{&quot;2026-06-26&quot;:5.14},{&quot;2026-06-27&quot;:5.14},{&quot;2026-06-28&quot;:5.14},{&quot;2026-06-29&quot;:5.14},{&quot;2026-06-30&quot;:5.14},{&quot;2026-07-01&quot;:5.14},{&quot;2026-07-02&quot;:4.99},{&quot;2026-07-03&quot;:4.99},{&quot;2026-07-04&quot;:5.06},{&quot;2026-07-05&quot;:5.06},{&quot;2026-07-06&quot;:5.06},{&quot;2026-07-07&quot;:5.06},{&quot;2026-07-08&quot;:5.23},{&quot;2026-07-09&quot;:5.23},{&quot;2026-07-10&quot;:5.23},{&quot;2026-07-11&quot;:5.23},{&quot;2026-07-12&quot;:5.23},{&quot;2026-07-13&quot;:5.23},{&quot;2026-07-14&quot;:5.23},{&quot;2026-07-15&quot;:5.23},{&quot;2026-07-16&quot;:5.23},{&quot;2026-07-17&quot;:5.23},{&quot;2026-07-18&quot;:5.23},{&quot;2026-07-19&quot;:5.23},{&quot;2026-07-20&quot;:5.23},{&quot;2026-07-21&quot;:5.14},{&quot;2026-07-22&quot;:5.14},{&quot;2026-07-23&quot;:5.14},{&quot;2026-07-24&quot;:5.14},{&quot;2026-07-25&quot;:5.14},{&quot;2026-07-26&quot;:4.95},{&quot;2026-07-27&quot;:4.95},{&quot;2026-07-28&quot;:5.13},{&quot;2026-07-29&quot;:5.13},{&quot;2026-07-30&quot;:5.13},{&quot;2026-07-31&quot;:4.97},{&quot;2026-08-01&quot;:4.91},{&quot;2026-08-02&quot;:5.23},{&quot;2026-08-03&quot;:5.23},{&quot;2026-08-04&quot;:5.23},{&quot;2026-08-05&quot;:5.23},{&quot;2026-08-07&quot;:5.23},{&quot;2026-08-08&quot;:5.23},{&quot;2026-08-09&quot;:5.23},{&quot;2026-08-10&quot;:5.23},{&quot;2026-08-11&quot;:5.23},{&quot;2026-08-12&quot;:5.23},{&quot;2026-08-13&quot;:5.23},{&quot;2026-08-14&quot;:5.23},{&quot;2026-08-15&quot;:5.23},{&quot;2026-08-16&quot;:5.23},{&quot;2026-08-17&quot;:5.13},{&quot;2026-08-18&quot;:5.13},{&quot;2026-08-19&quot;:5.13},{&quot;2026-08-20&quot;:5.13},{&quot;2026-08-21&quot;:5.13},{&quot;2026-08-22&quot;:5.13},{&quot;2026-08-23&quot;:5.22},{&quot;2026-08-24&quot;:5.22},{&quot;2026-08-25&quot;:5.22},{&quot;2026-08-26&quot;:5.06},{&quot;2026-08-27&quot;:5.06},{&quot;2026-08-28&quot;:5.06},{&quot;2026-08-29&quot;:5.06},{&quot;2026-08-30&quot;:5.06},{&quot;2026-08-31&quot;:5.06},{&quot;2026-09-01&quot;:5.06},{&quot;2026-09-02&quot;:5.06},{&quot;2026-09-03&quot;:5.06},{&quot;2026-09-04&quot;:5.06},{&quot;2026-09-05&quot;:5.06},{&quot;2026-09-06&quot;:5.06},{&quot;2026-09-07&quot;:4.67},{&quot;2026-09-08&quot;:4.67},{&quot;2026-09-09&quot;:4.67},{&quot;2026-09-10&quot;:4.55},{&quot;2026-09-11&quot;:4.55}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.92},{&quot;2026-06-14&quot;:1.92},{&quot;2026-06-15&quot;:1.88},{&quot;2026-06-16&quot;:1.93},{&quot;2026-06-17&quot;:1.87},{&quot;2026-06-18&quot;:1.88},{&quot;2026-06-19&quot;:1.67},{&quot;2026-06-20&quot;:1.67},{&quot;2026-06-21&quot;:1.7},{&quot;2026-06-22&quot;:1.65},{&quot;2026-06-23&quot;:1.56},{&quot;2026-06-24&quot;:1.81},{&quot;2026-06-25&quot;:1.82},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.72},{&quot;2026-06-28&quot;:1.67},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.75},{&quot;2026-07-01&quot;:1.77},{&quot;2026-07-02&quot;:1.69},{&quot;2026-07-03&quot;:1.64},{&quot;2026-07-04&quot;:1.71},{&quot;2026-07-05&quot;:1.69},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.82},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.8},{&quot;2026-07-10&quot;:1.76},{&quot;2026-07-11&quot;:1.78},{&quot;2026-07-12&quot;:1.71},{&quot;2026-07-13&quot;:1.73},{&quot;2026-07-14&quot;:1.68},{&quot;2026-07-15&quot;:1.72},{&quot;2026-07-16&quot;:1.74},{&quot;2026-07-17&quot;:1.82},{&quot;2026-07-18&quot;:1.81},{&quot;2026-07-19&quot;:1.74},{&quot;2026-07-20&quot;:1.75},{&quot;2026-07-21&quot;:1.76},{&quot;2026-07-22&quot;:1.74},{&quot;2026-07-23&quot;:1.65},{&quot;2026-07-24&quot;:1.65},{&quot;2026-07-25&quot;:1.6},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.66},{&quot;2026-07-28&quot;:1.63},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.6},{&quot;2026-07-31&quot;:1.61},{&quot;2026-08-01&quot;:1.61},{&quot;2026-08-02&quot;:1.63},{&quot;2026-08-03&quot;:1.67},{&quot;2026-08-04&quot;:1.64},{&quot;2026-08-05&quot;:1.64},{&quot;2026-08-07&quot;:1.78},{&quot;2026-08-08&quot;:1.83},{&quot;2026-08-09&quot;:1.92},{&quot;2026-08-10&quot;:2.05},{&quot;2026-08-11&quot;:2.08},{&quot;2026-08-12&quot;:2.1},{&quot;2026-08-13&quot;:2.1},{&quot;2026-08-14&quot;:2.05},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:1.89},{&quot;2026-08-17&quot;:1.93},{&quot;2026-08-18&quot;:1.96},{&quot;2026-08-19&quot;:1.95},{&quot;2026-08-20&quot;:1.98},{&quot;2026-08-21&quot;:1.99},{&quot;2026-08-22&quot;:1.59},{&quot;2026-08-23&quot;:1.78},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.19},{&quot;2026-08-26&quot;:2.14},{&quot;2026-08-27&quot;:2.27},{&quot;2026-08-28&quot;:2.28},{&quot;2026-08-29&quot;:2.28},{&quot;2026-08-30&quot;:2.28},{&quot;2026-08-31&quot;:2.34},{&quot;2026-09-01&quot;:2.4},{&quot;2026-09-02&quot;:2.35},{&quot;2026-09-03&quot;:2.22},{&quot;2026-09-04&quot;:2.28},{&quot;2026-09-05&quot;:2.26},{&quot;2026-09-06&quot;:2.25},{&quot;2026-09-07&quot;:2.21},{&quot;2026-09-08&quot;:2.19},{&quot;2026-09-09&quot;:2.28},{&quot;2026-09-10&quot;:2.27},{&quot;2026-09-11&quot;:2.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14450"
  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-cmm 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">
            Ugin, the Ineffable
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ugin
      </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.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="Ugin, the Ineffable" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/e/2eb7e322-aba0-42f5-80a1-267f3444ac4d.jpg?1783915455" />

        <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">
            Ugin, the Ineffable
        </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 Planeswalker — Ugin</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-6'></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="Ugin, the Ineffable" src="https://cards.scryfall.io/large/front/2/e/2eb7e322-aba0-42f5-80a1-267f3444ac4d.jpg?1783915455" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.63},{&quot;2026-06-12&quot;:1.62},{&quot;2026-06-13&quot;:1.65},{&quot;2026-06-14&quot;:1.7},{&quot;2026-06-15&quot;:1.76},{&quot;2026-06-16&quot;:1.76},{&quot;2026-06-17&quot;:1.74},{&quot;2026-06-18&quot;:1.74},{&quot;2026-06-19&quot;:1.76},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.8},{&quot;2026-06-22&quot;:1.85},{&quot;2026-06-23&quot;:1.88},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.9},{&quot;2026-06-27&quot;:1.89},{&quot;2026-06-28&quot;:1.94},{&quot;2026-06-29&quot;:1.94},{&quot;2026-06-30&quot;:1.9},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:1.84},{&quot;2026-07-03&quot;:1.85},{&quot;2026-07-04&quot;:1.82},{&quot;2026-07-05&quot;:1.83},{&quot;2026-07-06&quot;:1.83},{&quot;2026-07-07&quot;:1.79},{&quot;2026-07-08&quot;:1.77},{&quot;2026-07-09&quot;:1.77},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.77},{&quot;2026-07-12&quot;:1.7},{&quot;2026-07-13&quot;:1.66},{&quot;2026-07-14&quot;:1.63},{&quot;2026-07-15&quot;:1.63},{&quot;2026-07-16&quot;:1.59},{&quot;2026-07-17&quot;:1.62},{&quot;2026-07-18&quot;:1.59},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.61},{&quot;2026-07-21&quot;:1.65},{&quot;2026-07-23&quot;:1.65},{&quot;2026-07-25&quot;:1.72},{&quot;2026-07-26&quot;:1.63},{&quot;2026-07-27&quot;:1.69},{&quot;2026-07-28&quot;:1.64},{&quot;2026-07-29&quot;:1.72},{&quot;2026-07-30&quot;:1.79},{&quot;2026-07-31&quot;:1.79},{&quot;2026-08-01&quot;:1.79},{&quot;2026-08-02&quot;:1.88},{&quot;2026-08-03&quot;:1.88},{&quot;2026-08-04&quot;:1.88},{&quot;2026-08-05&quot;:1.92},{&quot;2026-08-07&quot;:1.92},{&quot;2026-08-08&quot;:1.9},{&quot;2026-08-09&quot;:1.9},{&quot;2026-08-10&quot;:1.96},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.95},{&quot;2026-08-13&quot;:2.0},{&quot;2026-08-14&quot;:2.0},{&quot;2026-08-15&quot;:2.0},{&quot;2026-08-16&quot;:1.95},{&quot;2026-08-17&quot;:1.95},{&quot;2026-08-18&quot;:1.92},{&quot;2026-08-19&quot;:1.91},{&quot;2026-08-20&quot;:1.91},{&quot;2026-08-21&quot;:2.01},{&quot;2026-08-22&quot;:1.97},{&quot;2026-08-23&quot;:2.0},{&quot;2026-08-24&quot;:2.0},{&quot;2026-08-25&quot;:2.0},{&quot;2026-08-26&quot;:2.0},{&quot;2026-08-27&quot;:2.06},{&quot;2026-08-28&quot;:2.06},{&quot;2026-08-29&quot;:2.06},{&quot;2026-08-30&quot;:2.16},{&quot;2026-08-31&quot;:2.16},{&quot;2026-09-01&quot;:2.16},{&quot;2026-09-02&quot;:2.23},{&quot;2026-09-03&quot;:2.23},{&quot;2026-09-04&quot;:2.23},{&quot;2026-09-05&quot;:2.23},{&quot;2026-09-06&quot;:2.28},{&quot;2026-09-07&quot;:2.29},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.36},{&quot;2026-09-10&quot;:2.37},{&quot;2026-09-11&quot;:2.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15159"
  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-cmm 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">
            Urza&#39;s Power Plant
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Urza&#39;s Power-Plant
      </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">
            $2.18
          </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="Urza&#39;s Power Plant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/0/b0449a19-37f7-4169-9e32-928db5ec76fe.jpg?1783915370" />

        <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">
            Urza&#39;s Power Plant
        </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 — Urza&#39;s Power-Plant</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="Urza&#39;s Power Plant" src="https://cards.scryfall.io/large/front/b/0/b0449a19-37f7-4169-9e32-928db5ec76fe.jpg?1783915370" />
    </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.18
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  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.72</span>
              <span class="text-xs text-grey-text">Credit: $0.94</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.34},{&quot;2026-06-14&quot;:1.33},{&quot;2026-06-15&quot;:1.38},{&quot;2026-06-16&quot;:1.48},{&quot;2026-06-17&quot;:1.48},{&quot;2026-06-18&quot;:1.71},{&quot;2026-06-19&quot;:1.62},{&quot;2026-06-20&quot;:1.62},{&quot;2026-06-21&quot;:1.67},{&quot;2026-06-22&quot;:1.8},{&quot;2026-06-23&quot;:1.97},{&quot;2026-06-24&quot;:2.31},{&quot;2026-06-25&quot;:2.33},{&quot;2026-06-26&quot;:2.28},{&quot;2026-06-27&quot;:2.3},{&quot;2026-06-28&quot;:2.3},{&quot;2026-06-29&quot;:2.14},{&quot;2026-06-30&quot;:2.11},{&quot;2026-07-01&quot;:2.01},{&quot;2026-07-02&quot;:1.96},{&quot;2026-07-03&quot;:1.96},{&quot;2026-07-04&quot;:1.96},{&quot;2026-07-05&quot;:1.96},{&quot;2026-07-06&quot;:1.87},{&quot;2026-07-07&quot;:1.95},{&quot;2026-07-08&quot;:1.86},{&quot;2026-07-09&quot;:1.95},{&quot;2026-07-10&quot;:2.04},{&quot;2026-07-11&quot;:2.02},{&quot;2026-07-12&quot;:2.02},{&quot;2026-07-13&quot;:1.98},{&quot;2026-07-14&quot;:2.11},{&quot;2026-07-15&quot;:2.22},{&quot;2026-07-16&quot;:2.21},{&quot;2026-07-17&quot;:2.27},{&quot;2026-07-18&quot;:2.27},{&quot;2026-07-19&quot;:2.27},{&quot;2026-07-20&quot;:2.27},{&quot;2026-07-21&quot;:2.44},{&quot;2026-07-22&quot;:2.41},{&quot;2026-07-23&quot;:2.4},{&quot;2026-07-24&quot;:2.42},{&quot;2026-07-25&quot;:2.44},{&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.46},{&quot;2026-07-30&quot;:2.46},{&quot;2026-07-31&quot;:2.37},{&quot;2026-08-01&quot;:2.37},{&quot;2026-08-02&quot;:2.28},{&quot;2026-08-03&quot;:2.28},{&quot;2026-08-04&quot;:2.19},{&quot;2026-08-05&quot;:2.19},{&quot;2026-08-07&quot;:2.19},{&quot;2026-08-08&quot;:2.19},{&quot;2026-08-09&quot;:2.19},{&quot;2026-08-10&quot;:2.12},{&quot;2026-08-11&quot;:2.12},{&quot;2026-08-12&quot;:2.12},{&quot;2026-08-13&quot;:2.12},{&quot;2026-08-14&quot;:2.12},{&quot;2026-08-15&quot;:2.12},{&quot;2026-08-16&quot;:2.12},{&quot;2026-08-17&quot;:1.99},{&quot;2026-08-18&quot;:2.08},{&quot;2026-08-19&quot;:2.12},{&quot;2026-08-20&quot;:2.12},{&quot;2026-08-21&quot;:2.12},{&quot;2026-08-22&quot;:2.07},{&quot;2026-08-23&quot;:2.07},{&quot;2026-08-24&quot;:2.05},{&quot;2026-08-25&quot;:1.97},{&quot;2026-08-26&quot;:1.96},{&quot;2026-08-27&quot;:2.01},{&quot;2026-08-28&quot;:2.01},{&quot;2026-08-29&quot;:2.01},{&quot;2026-08-30&quot;:2.02},{&quot;2026-08-31&quot;:2.0},{&quot;2026-09-01&quot;:1.89},{&quot;2026-09-02&quot;:1.77},{&quot;2026-09-03&quot;:1.77},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.82},{&quot;2026-09-06&quot;:1.79},{&quot;2026-09-07&quot;:1.87},{&quot;2026-09-08&quot;:1.86},{&quot;2026-09-09&quot;:2.02},{&quot;2026-09-10&quot;:2.04},{&quot;2026-09-11&quot;:2.18}]}"
        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="95255"
  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-fin 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">
            Wastes
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Wastes
        </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">Basic 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="Wastes" src="https://cards.scryfall.io/large/front/c/6/c61feafd-ef09-437c-a12c-fd7d6cb8c15a.jpg?1783906539" />
    </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">
            2
          </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.02
              </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">
                $1.52
              </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-10&quot;:0.82},{&quot;2026-06-11&quot;:0.83},{&quot;2026-06-12&quot;:0.78},{&quot;2026-06-13&quot;:0.71},{&quot;2026-06-14&quot;:0.65},{&quot;2026-06-15&quot;:0.9},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.1},{&quot;2026-06-18&quot;:1.21},{&quot;2026-06-19&quot;:1.26},{&quot;2026-06-20&quot;:1.26},{&quot;2026-06-21&quot;:0.93},{&quot;2026-06-22&quot;:0.85},{&quot;2026-06-23&quot;:0.79},{&quot;2026-06-24&quot;:0.78},{&quot;2026-06-25&quot;:0.78},{&quot;2026-06-26&quot;:1.08},{&quot;2026-06-27&quot;:1.39},{&quot;2026-06-28&quot;:0.76},{&quot;2026-06-29&quot;:0.59},{&quot;2026-06-30&quot;:1.54},{&quot;2026-07-01&quot;:2.06},{&quot;2026-07-02&quot;:1.75},{&quot;2026-07-03&quot;:1.48},{&quot;2026-07-04&quot;:1.43},{&quot;2026-07-05&quot;:1.02},{&quot;2026-07-06&quot;:0.94},{&quot;2026-07-07&quot;:0.7},{&quot;2026-07-08&quot;:1.24},{&quot;2026-07-09&quot;:1.36},{&quot;2026-07-10&quot;:1.62},{&quot;2026-07-11&quot;:1.25},{&quot;2026-07-12&quot;:1.39},{&quot;2026-07-13&quot;:1.27},{&quot;2026-07-14&quot;:1.01},{&quot;2026-07-15&quot;:0.96},{&quot;2026-07-16&quot;:0.76},{&quot;2026-07-17&quot;:1.69},{&quot;2026-07-18&quot;:1.83},{&quot;2026-07-19&quot;:1.63},{&quot;2026-07-20&quot;:1.51},{&quot;2026-07-21&quot;:1.31},{&quot;2026-07-23&quot;:1.28},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:1.25},{&quot;2026-07-29&quot;:1.3},{&quot;2026-07-30&quot;:1.37},{&quot;2026-07-31&quot;:1.16},{&quot;2026-08-01&quot;:1.15},{&quot;2026-08-02&quot;:1.18},{&quot;2026-08-03&quot;:1.07},{&quot;2026-08-04&quot;:1.14},{&quot;2026-08-05&quot;:1.16},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.52},{&quot;2026-08-09&quot;:1.47},{&quot;2026-08-10&quot;:1.36},{&quot;2026-08-11&quot;:1.36},{&quot;2026-08-12&quot;:1.38},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.06},{&quot;2026-08-17&quot;:1.1},{&quot;2026-08-18&quot;:1.08},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.06},{&quot;2026-08-21&quot;:1.2},{&quot;2026-08-22&quot;:1.5},{&quot;2026-08-23&quot;:1.34},{&quot;2026-08-24&quot;:1.23},{&quot;2026-08-25&quot;:1.23},{&quot;2026-08-26&quot;:1.17},{&quot;2026-08-27&quot;:1.34},{&quot;2026-08-28&quot;:1.33},{&quot;2026-08-29&quot;:1.33},{&quot;2026-08-30&quot;:1.45},{&quot;2026-08-31&quot;:1.47},{&quot;2026-09-01&quot;:1.47},{&quot;2026-09-02&quot;:1.33},{&quot;2026-09-03&quot;:1.05},{&quot;2026-09-04&quot;:1.06},{&quot;2026-09-05&quot;:1.32},{&quot;2026-09-06&quot;:1.32},{&quot;2026-09-07&quot;:1.38},{&quot;2026-09-08&quot;:1.37},{&quot;2026-09-09&quot;:1.32},{&quot;2026-09-10&quot;:1.33},{&quot;2026-09-11&quot;:1.52}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.67},{&quot;2026-06-11&quot;:0.69},{&quot;2026-06-12&quot;:0.8},{&quot;2026-06-13&quot;:0.68},{&quot;2026-06-14&quot;:0.69},{&quot;2026-06-15&quot;:0.76},{&quot;2026-06-16&quot;:0.79},{&quot;2026-06-17&quot;:0.75},{&quot;2026-06-18&quot;:0.73},{&quot;2026-06-19&quot;:0.74},{&quot;2026-06-20&quot;:0.7},{&quot;2026-06-21&quot;:1.05},{&quot;2026-06-22&quot;:1.02},{&quot;2026-06-23&quot;:0.93},{&quot;2026-06-24&quot;:0.75},{&quot;2026-06-25&quot;:1.2},{&quot;2026-06-26&quot;:1.5},{&quot;2026-06-27&quot;:0.96},{&quot;2026-06-28&quot;:0.67},{&quot;2026-06-29&quot;:0.66},{&quot;2026-06-30&quot;:0.63},{&quot;2026-07-01&quot;:1.04},{&quot;2026-07-02&quot;:1.48},{&quot;2026-07-03&quot;:1.51},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.01},{&quot;2026-07-06&quot;:1.03},{&quot;2026-07-07&quot;:0.75},{&quot;2026-07-08&quot;:0.7},{&quot;2026-07-09&quot;:0.8},{&quot;2026-07-10&quot;:0.84},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.7},{&quot;2026-07-13&quot;:0.66},{&quot;2026-07-14&quot;:0.87},{&quot;2026-07-15&quot;:0.9},{&quot;2026-07-16&quot;:0.79},{&quot;2026-07-17&quot;:0.8},{&quot;2026-07-18&quot;:0.79},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.02},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-23&quot;:1.37},{&quot;2026-07-25&quot;:1.47},{&quot;2026-07-26&quot;:1.23},{&quot;2026-07-27&quot;:0.97},{&quot;2026-07-29&quot;:1.25},{&quot;2026-07-30&quot;:1.17},{&quot;2026-07-31&quot;:1.22},{&quot;2026-08-01&quot;:1.28},{&quot;2026-08-02&quot;:1.15},{&quot;2026-08-03&quot;:1.03},{&quot;2026-08-04&quot;:0.92},{&quot;2026-08-05&quot;:0.78},{&quot;2026-08-07&quot;:0.72},{&quot;2026-08-08&quot;:0.73},{&quot;2026-08-09&quot;:0.71},{&quot;2026-08-10&quot;:0.75},{&quot;2026-08-11&quot;:0.74},{&quot;2026-08-12&quot;:0.97},{&quot;2026-08-13&quot;:1.03},{&quot;2026-08-14&quot;:1.24},{&quot;2026-08-15&quot;:1.31},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.19},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.25},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.2},{&quot;2026-08-22&quot;:1.12},{&quot;2026-08-23&quot;:1.01},{&quot;2026-08-24&quot;:0.91},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:1.18},{&quot;2026-08-27&quot;:1.48},{&quot;2026-08-28&quot;:1.44},{&quot;2026-08-29&quot;:1.44},{&quot;2026-08-30&quot;:1.2},{&quot;2026-08-31&quot;:1.16},{&quot;2026-09-01&quot;:1.16},{&quot;2026-09-02&quot;:1.0},{&quot;2026-09-03&quot;:0.98},{&quot;2026-09-04&quot;:0.99},{&quot;2026-09-05&quot;:1.07},{&quot;2026-09-06&quot;:1.09},{&quot;2026-09-07&quot;:1.09},{&quot;2026-09-08&quot;:0.94},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.99},{&quot;2026-09-11&quot;:1.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="14452"
  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-cmm 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">
            Warping Wail
        </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="text-sm font-medium text-nine-white">
            $1.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="Warping Wail" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/afcc9c88-836b-48b6-9d81-5a6844a6b70f.jpg?1783915455" />

        <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">
            Warping Wail
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></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="Warping Wail" src="https://cards.scryfall.io/large/front/a/f/afcc9c88-836b-48b6-9d81-5a6844a6b70f.jpg?1783915455" />
    </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.34
              </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;normal&quot;:[{&quot;2026-06-13&quot;:0.48},{&quot;2026-06-14&quot;:0.5},{&quot;2026-06-15&quot;:0.52},{&quot;2026-06-16&quot;:0.52},{&quot;2026-06-17&quot;:0.52},{&quot;2026-06-18&quot;:0.53},{&quot;2026-06-19&quot;:0.54},{&quot;2026-06-20&quot;:0.54},{&quot;2026-06-21&quot;:0.6},{&quot;2026-06-22&quot;:0.63},{&quot;2026-06-23&quot;:0.64},{&quot;2026-06-24&quot;:0.64},{&quot;2026-06-25&quot;:0.64},{&quot;2026-06-26&quot;:0.65},{&quot;2026-06-27&quot;:0.65},{&quot;2026-06-28&quot;:0.65},{&quot;2026-06-29&quot;:0.63},{&quot;2026-06-30&quot;:0.63},{&quot;2026-07-01&quot;:0.63},{&quot;2026-07-02&quot;:0.65},{&quot;2026-07-03&quot;:0.65},{&quot;2026-07-04&quot;:0.66},{&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.7},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.77},{&quot;2026-07-12&quot;:0.77},{&quot;2026-07-13&quot;:0.79},{&quot;2026-07-14&quot;:0.8},{&quot;2026-07-15&quot;:0.82},{&quot;2026-07-16&quot;:0.83},{&quot;2026-07-17&quot;:0.83},{&quot;2026-07-18&quot;:0.83},{&quot;2026-07-19&quot;:0.92},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-22&quot;:0.96},{&quot;2026-07-23&quot;:0.96},{&quot;2026-07-24&quot;:0.96},{&quot;2026-07-25&quot;:0.96},{&quot;2026-07-26&quot;:0.96},{&quot;2026-07-27&quot;:0.99},{&quot;2026-07-28&quot;:0.99},{&quot;2026-07-29&quot;:1.02},{&quot;2026-07-30&quot;:1.11},{&quot;2026-07-31&quot;:1.09},{&quot;2026-08-01&quot;:1.09},{&quot;2026-08-02&quot;:1.12},{&quot;2026-08-03&quot;:1.12},{&quot;2026-08-04&quot;:1.1},{&quot;2026-08-05&quot;:1.1},{&quot;2026-08-07&quot;:1.13},{&quot;2026-08-08&quot;:1.15},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.21},{&quot;2026-08-11&quot;:1.23},{&quot;2026-08-12&quot;:1.2},{&quot;2026-08-13&quot;:1.27},{&quot;2026-08-14&quot;:1.29},{&quot;2026-08-15&quot;:1.19},{&quot;2026-08-16&quot;:1.19},{&quot;2026-08-17&quot;:1.15},{&quot;2026-08-18&quot;:1.1},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.11},{&quot;2026-08-23&quot;:1.19},{&quot;2026-08-24&quot;:1.2},{&quot;2026-08-25&quot;:1.24},{&quot;2026-08-26&quot;:1.28},{&quot;2026-08-27&quot;:1.33},{&quot;2026-08-28&quot;:1.34},{&quot;2026-08-29&quot;:1.34},{&quot;2026-08-30&quot;:1.41},{&quot;2026-08-31&quot;:1.37},{&quot;2026-09-01&quot;:1.37},{&quot;2026-09-02&quot;:1.3},{&quot;2026-09-03&quot;:1.3},{&quot;2026-09-04&quot;:1.28},{&quot;2026-09-05&quot;:1.34},{&quot;2026-09-06&quot;:1.34},{&quot;2026-09-07&quot;:1.34},{&quot;2026-09-08&quot;:1.34},{&quot;2026-09-09&quot;:1.3},{&quot;2026-09-10&quot;:1.3},{&quot;2026-09-11&quot;:1.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="15156"
  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-cmm 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">
            Urza&#39;s Mine
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Urza&#39;s Mine
      </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.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="Urza&#39;s Mine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/9/396bbb7d-ae61-4d8d-b931-9ed2f712832e.jpg?1783915371" />

        <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">
            Urza&#39;s Mine
        </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 — Urza&#39;s Mine</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="Urza&#39;s Mine" src="https://cards.scryfall.io/large/front/3/9/396bbb7d-ae61-4d8d-b931-9ed2f712832e.jpg?1783915371" />
    </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.26
              </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.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;normal&quot;:[{&quot;2026-06-11&quot;:1.74},{&quot;2026-06-12&quot;:1.87},{&quot;2026-06-13&quot;:1.87},{&quot;2026-06-14&quot;:1.84},{&quot;2026-06-15&quot;:1.84},{&quot;2026-06-16&quot;:1.87},{&quot;2026-06-17&quot;:1.87},{&quot;2026-06-18&quot;:1.89},{&quot;2026-06-19&quot;:1.74},{&quot;2026-06-20&quot;:1.74},{&quot;2026-06-21&quot;:1.77},{&quot;2026-06-22&quot;:2.05},{&quot;2026-06-23&quot;:2.17},{&quot;2026-06-24&quot;:2.19},{&quot;2026-06-25&quot;:2.25},{&quot;2026-06-26&quot;:2.3},{&quot;2026-06-27&quot;:2.31},{&quot;2026-06-28&quot;:2.29},{&quot;2026-06-29&quot;:2.24},{&quot;2026-06-30&quot;:2.24},{&quot;2026-07-01&quot;:2.24},{&quot;2026-07-02&quot;:2.24},{&quot;2026-07-03&quot;:2.23},{&quot;2026-07-04&quot;:2.23},{&quot;2026-07-05&quot;:2.28},{&quot;2026-07-06&quot;:2.04},{&quot;2026-07-07&quot;:1.97},{&quot;2026-07-08&quot;:1.97},{&quot;2026-07-09&quot;:1.97},{&quot;2026-07-10&quot;:1.94},{&quot;2026-07-11&quot;:1.8},{&quot;2026-07-12&quot;:1.72},{&quot;2026-07-13&quot;:1.72},{&quot;2026-07-14&quot;:1.71},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.65},{&quot;2026-07-17&quot;:1.9},{&quot;2026-07-18&quot;:1.9},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.91},{&quot;2026-07-21&quot;:1.95},{&quot;2026-07-23&quot;:1.95},{&quot;2026-07-25&quot;:1.95},{&quot;2026-07-26&quot;:2.0},{&quot;2026-07-27&quot;:2.0},{&quot;2026-07-28&quot;:2.0},{&quot;2026-07-29&quot;:1.97},{&quot;2026-07-30&quot;:1.97},{&quot;2026-07-31&quot;:1.91},{&quot;2026-08-01&quot;:1.91},{&quot;2026-08-02&quot;:1.85},{&quot;2026-08-03&quot;:1.84},{&quot;2026-08-04&quot;:1.84},{&quot;2026-08-05&quot;:1.84},{&quot;2026-08-07&quot;:1.8},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.8},{&quot;2026-08-10&quot;:1.8},{&quot;2026-08-11&quot;:1.8},{&quot;2026-08-12&quot;:1.8},{&quot;2026-08-13&quot;:1.8},{&quot;2026-08-14&quot;:1.81},{&quot;2026-08-15&quot;:1.81},{&quot;2026-08-16&quot;:1.81},{&quot;2026-08-17&quot;:1.74},{&quot;2026-08-18&quot;:1.74},{&quot;2026-08-19&quot;:1.74},{&quot;2026-08-20&quot;:1.74},{&quot;2026-08-21&quot;:1.62},{&quot;2026-08-22&quot;:1.54},{&quot;2026-08-23&quot;:1.54},{&quot;2026-08-24&quot;:1.54},{&quot;2026-08-25&quot;:1.54},{&quot;2026-08-26&quot;:1.46},{&quot;2026-08-27&quot;:1.38},{&quot;2026-08-28&quot;:1.38},{&quot;2026-08-29&quot;:1.38},{&quot;2026-08-30&quot;:1.28},{&quot;2026-08-31&quot;:1.28},{&quot;2026-09-01&quot;:1.28},{&quot;2026-09-02&quot;:1.28},{&quot;2026-09-03&quot;:1.12},{&quot;2026-09-04&quot;:1.2},{&quot;2026-09-05&quot;:1.2},{&quot;2026-09-06&quot;:1.08},{&quot;2026-09-07&quot;:1.08},{&quot;2026-09-08&quot;:1.18},{&quot;2026-09-09&quot;:1.18},{&quot;2026-09-10&quot;:1.16},{&quot;2026-09-11&quot;:1.26}]}"
        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="36403"
  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-mid 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">
            Moonsilver Key
        </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">
              ↓
              4%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Moonsilver Key" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/7/87778e37-af92-402e-b037-5fbd6112b682.jpg?1783925547" />

        <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">
            Moonsilver Key
        </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="Moonsilver Key" src="https://cards.scryfall.io/large/front/8/7/87778e37-af92-402e-b037-5fbd6112b682.jpg?1783925547" />
    </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.91
              </span>

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.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-06-10&quot;:5.07},{&quot;2026-06-11&quot;:5.07},{&quot;2026-06-12&quot;:5.07},{&quot;2026-06-13&quot;:5.13},{&quot;2026-06-14&quot;:5.15},{&quot;2026-06-15&quot;:5.14},{&quot;2026-06-16&quot;:5.12},{&quot;2026-06-17&quot;:5.31},{&quot;2026-06-18&quot;:5.54},{&quot;2026-06-19&quot;:5.54},{&quot;2026-06-20&quot;:5.54},{&quot;2026-06-21&quot;:5.64},{&quot;2026-06-22&quot;:5.64},{&quot;2026-06-23&quot;:5.74},{&quot;2026-06-24&quot;:5.56},{&quot;2026-06-25&quot;:5.24},{&quot;2026-06-26&quot;:5.45},{&quot;2026-06-27&quot;:5.45},{&quot;2026-06-28&quot;:5.45},{&quot;2026-06-29&quot;:5.45},{&quot;2026-06-30&quot;:5.25},{&quot;2026-07-01&quot;:5.2},{&quot;2026-07-02&quot;:5.38},{&quot;2026-07-03&quot;:5.38},{&quot;2026-07-04&quot;:5.29},{&quot;2026-07-05&quot;:5.23},{&quot;2026-07-06&quot;:5.44},{&quot;2026-07-07&quot;:5.66},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:6.18},{&quot;2026-07-10&quot;:5.85},{&quot;2026-07-11&quot;:5.85},{&quot;2026-07-12&quot;:5.85},{&quot;2026-07-13&quot;:5.84},{&quot;2026-07-14&quot;:5.84},{&quot;2026-07-15&quot;:5.64},{&quot;2026-07-16&quot;:5.73},{&quot;2026-07-17&quot;:5.54},{&quot;2026-07-18&quot;:5.3},{&quot;2026-07-19&quot;:5.3},{&quot;2026-07-20&quot;:5.18},{&quot;2026-07-21&quot;:4.96},{&quot;2026-07-23&quot;:4.71},{&quot;2026-07-25&quot;:4.22},{&quot;2026-07-26&quot;:4.22},{&quot;2026-07-27&quot;:4.22},{&quot;2026-07-29&quot;:4.53},{&quot;2026-07-30&quot;:4.53},{&quot;2026-07-31&quot;:4.46},{&quot;2026-08-01&quot;:4.46},{&quot;2026-08-02&quot;:4.46},{&quot;2026-08-03&quot;:4.77},{&quot;2026-08-04&quot;:4.77},{&quot;2026-08-05&quot;:4.77},{&quot;2026-08-07&quot;:4.88},{&quot;2026-08-08&quot;:5.11},{&quot;2026-08-09&quot;:5.81},{&quot;2026-08-10&quot;:5.81},{&quot;2026-08-11&quot;:5.81},{&quot;2026-08-12&quot;:5.81},{&quot;2026-08-13&quot;:5.81},{&quot;2026-08-14&quot;:5.81},{&quot;2026-08-15&quot;:5.81},{&quot;2026-08-16&quot;:5.81},{&quot;2026-08-17&quot;:5.81},{&quot;2026-08-18&quot;:5.81},{&quot;2026-08-19&quot;:5.82},{&quot;2026-08-20&quot;:5.82},{&quot;2026-08-21&quot;:5.96},{&quot;2026-08-22&quot;:5.96},{&quot;2026-08-23&quot;:5.92},{&quot;2026-08-24&quot;:5.92},{&quot;2026-08-25&quot;:5.92},{&quot;2026-08-26&quot;:6.12},{&quot;2026-08-27&quot;:6.29},{&quot;2026-08-28&quot;:6.29},{&quot;2026-08-29&quot;:6.29},{&quot;2026-08-30&quot;:6.55},{&quot;2026-08-31&quot;:6.55},{&quot;2026-09-01&quot;:6.55},{&quot;2026-09-02&quot;:6.28},{&quot;2026-09-03&quot;:6.28},{&quot;2026-09-04&quot;:6.25},{&quot;2026-09-05&quot;:6.25},{&quot;2026-09-06&quot;:6.25},{&quot;2026-09-07&quot;:6.13},{&quot;2026-09-08&quot;:6.23},{&quot;2026-09-09&quot;:6.08},{&quot;2026-09-10&quot;:5.79},{&quot;2026-09-11&quot;:5.79}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.87},{&quot;2026-06-11&quot;:0.95},{&quot;2026-06-12&quot;:0.95},{&quot;2026-06-13&quot;:0.94},{&quot;2026-06-14&quot;:1.01},{&quot;2026-06-15&quot;:1.09},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:0.95},{&quot;2026-06-20&quot;:0.96},{&quot;2026-06-21&quot;:0.98},{&quot;2026-06-22&quot;:0.96},{&quot;2026-06-23&quot;:0.96},{&quot;2026-06-24&quot;:0.93},{&quot;2026-06-25&quot;:0.87},{&quot;2026-06-26&quot;:0.9},{&quot;2026-06-27&quot;:0.79},{&quot;2026-06-28&quot;:0.79},{&quot;2026-06-29&quot;:0.82},{&quot;2026-06-30&quot;:0.77},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.8},{&quot;2026-07-03&quot;:0.89},{&quot;2026-07-04&quot;:0.92},{&quot;2026-07-05&quot;:0.92},{&quot;2026-07-06&quot;:0.85},{&quot;2026-07-07&quot;:0.87},{&quot;2026-07-08&quot;:0.91},{&quot;2026-07-09&quot;:0.96},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.16},{&quot;2026-07-12&quot;:1.26},{&quot;2026-07-13&quot;:1.25},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.09},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.94},{&quot;2026-07-18&quot;:0.9},{&quot;2026-07-19&quot;:0.88},{&quot;2026-07-20&quot;:0.88},{&quot;2026-07-21&quot;:0.92},{&quot;2026-07-23&quot;:0.99},{&quot;2026-07-25&quot;:1.01},{&quot;2026-07-26&quot;:0.97},{&quot;2026-07-27&quot;:0.92},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.83},{&quot;2026-07-31&quot;:0.82},{&quot;2026-08-01&quot;:0.8},{&quot;2026-08-02&quot;:0.79},{&quot;2026-08-03&quot;:0.81},{&quot;2026-08-04&quot;:0.79},{&quot;2026-08-05&quot;:0.79},{&quot;2026-08-07&quot;:0.79},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.85},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.9},{&quot;2026-08-13&quot;:0.91},{&quot;2026-08-14&quot;:0.93},{&quot;2026-08-15&quot;:0.94},{&quot;2026-08-16&quot;:0.94},{&quot;2026-08-17&quot;:0.97},{&quot;2026-08-18&quot;:0.95},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.95},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.92},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.89},{&quot;2026-08-26&quot;:0.88},{&quot;2026-08-27&quot;:0.9},{&quot;2026-08-28&quot;:0.91},{&quot;2026-08-29&quot;:0.91},{&quot;2026-08-30&quot;:0.91},{&quot;2026-08-31&quot;:0.88},{&quot;2026-09-01&quot;:0.88},{&quot;2026-09-02&quot;:0.88},{&quot;2026-09-03&quot;:0.9},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.95},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.95},{&quot;2026-09-08&quot;:0.96},{&quot;2026-09-09&quot;:0.96},{&quot;2026-09-10&quot;:0.96},{&quot;2026-09-11&quot;:0.91}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15162"
  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-cmm 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">
            Urza&#39;s Tower
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Urza&#39;s Tower
      </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">
            $0.88
          </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="Urza&#39;s Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1e9f09b3-dd2d-4ba9-a57e-4f3c1793f752.jpg?1783915371" />

        <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">
            Urza&#39;s 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 — Urza&#39;s Tower</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="Urza&#39;s Tower" src="https://cards.scryfall.io/large/front/1/e/1e9f09b3-dd2d-4ba9-a57e-4f3c1793f752.jpg?1783915371" />
    </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.88
              </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.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;normal&quot;:[{&quot;2026-06-13&quot;:0.65},{&quot;2026-06-14&quot;:0.65},{&quot;2026-06-15&quot;:0.64},{&quot;2026-06-16&quot;:0.64},{&quot;2026-06-17&quot;:0.64},{&quot;2026-06-18&quot;:0.67},{&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.65},{&quot;2026-06-23&quot;:0.65},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.63},{&quot;2026-06-27&quot;:0.67},{&quot;2026-06-28&quot;:0.67},{&quot;2026-06-29&quot;:0.68},{&quot;2026-06-30&quot;:0.68},{&quot;2026-07-01&quot;:0.7},{&quot;2026-07-02&quot;:0.72},{&quot;2026-07-03&quot;:0.73},{&quot;2026-07-04&quot;:0.74},{&quot;2026-07-05&quot;:0.71},{&quot;2026-07-06&quot;:0.74},{&quot;2026-07-07&quot;:0.73},{&quot;2026-07-08&quot;:0.73},{&quot;2026-07-09&quot;:0.76},{&quot;2026-07-10&quot;:0.77},{&quot;2026-07-11&quot;:0.77},{&quot;2026-07-12&quot;:0.78},{&quot;2026-07-13&quot;:0.79},{&quot;2026-07-14&quot;:0.79},{&quot;2026-07-15&quot;:0.83},{&quot;2026-07-16&quot;:0.83},{&quot;2026-07-17&quot;:0.94},{&quot;2026-07-18&quot;:0.94},{&quot;2026-07-19&quot;:0.94},{&quot;2026-07-20&quot;:0.94},{&quot;2026-07-21&quot;:1.02},{&quot;2026-07-22&quot;:1.02},{&quot;2026-07-23&quot;:1.01},{&quot;2026-07-24&quot;:1.03},{&quot;2026-07-25&quot;:1.03},{&quot;2026-07-26&quot;:1.04},{&quot;2026-07-27&quot;:1.04},{&quot;2026-07-28&quot;:1.04},{&quot;2026-07-29&quot;:1.04},{&quot;2026-07-30&quot;:1.03},{&quot;2026-07-31&quot;:1.03},{&quot;2026-08-01&quot;:1.03},{&quot;2026-08-02&quot;:1.03},{&quot;2026-08-03&quot;:1.03},{&quot;2026-08-04&quot;:1.03},{&quot;2026-08-05&quot;:1.03},{&quot;2026-08-07&quot;:1.03},{&quot;2026-08-08&quot;:1.03},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.03},{&quot;2026-08-11&quot;:1.03},{&quot;2026-08-12&quot;:1.04},{&quot;2026-08-13&quot;:1.04},{&quot;2026-08-14&quot;:1.04},{&quot;2026-08-15&quot;:1.04},{&quot;2026-08-16&quot;:1.04},{&quot;2026-08-17&quot;:1.04},{&quot;2026-08-18&quot;:1.04},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.04},{&quot;2026-08-22&quot;:1.06},{&quot;2026-08-23&quot;:1.06},{&quot;2026-08-24&quot;:1.07},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.05},{&quot;2026-08-28&quot;:1.05},{&quot;2026-08-29&quot;:1.05},{&quot;2026-08-30&quot;:0.98},{&quot;2026-08-31&quot;:0.98},{&quot;2026-09-01&quot;:0.98},{&quot;2026-09-02&quot;:0.94},{&quot;2026-09-03&quot;:0.89},{&quot;2026-09-04&quot;:0.94},{&quot;2026-09-05&quot;:0.89},{&quot;2026-09-06&quot;:0.8},{&quot;2026-09-07&quot;:0.85},{&quot;2026-09-08&quot;:0.89},{&quot;2026-09-09&quot;:0.88},{&quot;2026-09-10&quot;:0.88},{&quot;2026-09-11&quot;:0.88}]}"
        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="14435"
  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-cmm 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">
            Matter Reshaper
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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.80
          </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="Matter Reshaper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/8/38e6e9aa-2e5f-49f7-beef-b876c070d72d.jpg?1783915458" />

        <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">
            Matter Reshaper
        </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 — Eldrazi</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-c'></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="Matter Reshaper" src="https://cards.scryfall.io/large/front/3/8/38e6e9aa-2e5f-49f7-beef-b876c070d72d.jpg?1783915458" />
    </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.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">$0.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.52},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.54},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.54},{&quot;2026-06-18&quot;:0.54},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.58},{&quot;2026-06-21&quot;:0.6},{&quot;2026-06-22&quot;:0.61},{&quot;2026-06-23&quot;:0.61},{&quot;2026-06-24&quot;:0.62},{&quot;2026-06-25&quot;:0.63},{&quot;2026-06-26&quot;:0.64},{&quot;2026-06-27&quot;:0.67},{&quot;2026-06-28&quot;:0.7},{&quot;2026-06-29&quot;:0.7},{&quot;2026-06-30&quot;:0.69},{&quot;2026-07-01&quot;:0.69},{&quot;2026-07-02&quot;:0.71},{&quot;2026-07-03&quot;:0.68},{&quot;2026-07-04&quot;:0.7},{&quot;2026-07-05&quot;:0.7},{&quot;2026-07-06&quot;:0.7},{&quot;2026-07-07&quot;:0.69},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.69},{&quot;2026-07-11&quot;:0.69},{&quot;2026-07-12&quot;:0.69},{&quot;2026-07-13&quot;:0.69},{&quot;2026-07-14&quot;:0.69},{&quot;2026-07-15&quot;:0.71},{&quot;2026-07-16&quot;:0.72},{&quot;2026-07-17&quot;:0.72},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.72},{&quot;2026-07-20&quot;:0.72},{&quot;2026-07-21&quot;:0.71},{&quot;2026-07-22&quot;:0.7},{&quot;2026-07-23&quot;:0.7},{&quot;2026-07-24&quot;:0.71},{&quot;2026-07-25&quot;:0.71},{&quot;2026-07-26&quot;:0.69},{&quot;2026-07-27&quot;:0.7},{&quot;2026-07-28&quot;:0.69},{&quot;2026-07-29&quot;:0.69},{&quot;2026-07-30&quot;:0.69},{&quot;2026-07-31&quot;:0.67},{&quot;2026-08-01&quot;:0.67},{&quot;2026-08-02&quot;:0.68},{&quot;2026-08-03&quot;:0.7},{&quot;2026-08-04&quot;:0.67},{&quot;2026-08-05&quot;:0.66},{&quot;2026-08-07&quot;:0.67},{&quot;2026-08-08&quot;:0.67},{&quot;2026-08-09&quot;:0.71},{&quot;2026-08-10&quot;:0.71},{&quot;2026-08-11&quot;:0.72},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.74},{&quot;2026-08-14&quot;:0.74},{&quot;2026-08-15&quot;:0.75},{&quot;2026-08-16&quot;:0.75},{&quot;2026-08-17&quot;:0.75},{&quot;2026-08-18&quot;:0.75},{&quot;2026-08-19&quot;:0.75},{&quot;2026-08-20&quot;:0.75},{&quot;2026-08-21&quot;:0.75},{&quot;2026-08-22&quot;:0.77},{&quot;2026-08-23&quot;:0.77},{&quot;2026-08-24&quot;:0.74},{&quot;2026-08-25&quot;:0.75},{&quot;2026-08-26&quot;:0.73},{&quot;2026-08-27&quot;:0.73},{&quot;2026-08-28&quot;:0.76},{&quot;2026-08-29&quot;:0.76},{&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.8},{&quot;2026-09-03&quot;:0.8},{&quot;2026-09-04&quot;:0.8},{&quot;2026-09-05&quot;:0.8},{&quot;2026-09-06&quot;:0.8},{&quot;2026-09-07&quot;:0.8},{&quot;2026-09-08&quot;:0.8},{&quot;2026-09-09&quot;:0.8},{&quot;2026-09-10&quot;:0.8},{&quot;2026-09-11&quot;:0.8}]}"
        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="10662"
  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-c19 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">
            Thespian&#39;s Stage
        </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">
              ↑
              69%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Thespian&#39;s Stage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/954c7792-c147-401d-bbe5-f1773ae3b301.jpg?1783932698" />

        <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">
            Thespian&#39;s Stage
        </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="Thespian&#39;s Stage" src="https://cards.scryfall.io/large/front/9/5/954c7792-c147-401d-bbe5-f1773ae3b301.jpg?1783932698" />
    </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.76
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  69%
                </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;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.38},{&quot;2026-06-18&quot;:0.38},{&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.39},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.4},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.39},{&quot;2026-07-07&quot;:0.39},{&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.4},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.43},{&quot;2026-07-20&quot;:0.45},{&quot;2026-07-21&quot;:0.46},{&quot;2026-07-22&quot;:0.46},{&quot;2026-07-23&quot;:0.47},{&quot;2026-07-24&quot;:0.47},{&quot;2026-07-25&quot;:0.47},{&quot;2026-07-26&quot;:0.47},{&quot;2026-07-27&quot;:0.47},{&quot;2026-07-28&quot;:0.47},{&quot;2026-07-29&quot;:0.47},{&quot;2026-07-30&quot;:0.47},{&quot;2026-07-31&quot;:0.47},{&quot;2026-08-01&quot;:0.47},{&quot;2026-08-02&quot;:0.47},{&quot;2026-08-03&quot;:0.47},{&quot;2026-08-04&quot;:0.47},{&quot;2026-08-05&quot;:0.47},{&quot;2026-08-07&quot;:0.47},{&quot;2026-08-08&quot;:0.47},{&quot;2026-08-09&quot;:0.47},{&quot;2026-08-10&quot;:0.47},{&quot;2026-08-11&quot;:0.47},{&quot;2026-08-12&quot;:0.47},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.45},{&quot;2026-08-15&quot;:0.45},{&quot;2026-08-16&quot;:0.45},{&quot;2026-08-17&quot;:0.45},{&quot;2026-08-18&quot;:0.45},{&quot;2026-08-19&quot;:0.45},{&quot;2026-08-20&quot;:0.45},{&quot;2026-08-21&quot;:0.44},{&quot;2026-08-22&quot;:0.44},{&quot;2026-08-23&quot;:0.44},{&quot;2026-08-24&quot;:0.44},{&quot;2026-08-25&quot;:0.44},{&quot;2026-08-26&quot;:0.44},{&quot;2026-08-27&quot;:0.44},{&quot;2026-08-28&quot;:0.44},{&quot;2026-08-29&quot;:0.44},{&quot;2026-08-30&quot;:0.44},{&quot;2026-08-31&quot;:0.44},{&quot;2026-09-01&quot;:0.45},{&quot;2026-09-02&quot;:0.44},{&quot;2026-09-03&quot;:0.44},{&quot;2026-09-04&quot;:0.44},{&quot;2026-09-05&quot;:0.45},{&quot;2026-09-06&quot;:0.45},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.77},{&quot;2026-09-09&quot;:0.76},{&quot;2026-09-10&quot;:0.76},{&quot;2026-09-11&quot;:0.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="14441"
  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-cmm 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">
            Oblivion Sower
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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">
            $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="Oblivion Sower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/e/aef15a89-8df8-48f6-9fbf-0117efde9fe0.jpg?1783915456" />

        <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">
            Oblivion Sower
        </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">Creature — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-6'></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="Oblivion Sower" src="https://cards.scryfall.io/large/front/a/e/aef15a89-8df8-48f6-9fbf-0117efde9fe0.jpg?1783915456" />
    </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.71
              </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.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;normal&quot;:[{&quot;2026-06-11&quot;:0.58},{&quot;2026-06-12&quot;:0.58},{&quot;2026-06-13&quot;:0.57},{&quot;2026-06-14&quot;:0.57},{&quot;2026-06-15&quot;:0.57},{&quot;2026-06-16&quot;:0.57},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.57},{&quot;2026-06-20&quot;:0.57},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-23&quot;:0.56},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.55},{&quot;2026-06-27&quot;:0.55},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.56},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.56},{&quot;2026-07-05&quot;:0.56},{&quot;2026-07-06&quot;:0.55},{&quot;2026-07-07&quot;:0.55},{&quot;2026-07-08&quot;:0.55},{&quot;2026-07-09&quot;:0.57},{&quot;2026-07-10&quot;:0.57},{&quot;2026-07-11&quot;:0.57},{&quot;2026-07-12&quot;:0.57},{&quot;2026-07-13&quot;:0.58},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.57},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-23&quot;:0.58},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.58},{&quot;2026-07-27&quot;:0.58},{&quot;2026-07-28&quot;:0.58},{&quot;2026-07-29&quot;:0.58},{&quot;2026-07-30&quot;:0.58},{&quot;2026-07-31&quot;:0.58},{&quot;2026-08-01&quot;:0.58},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.6},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.62},{&quot;2026-08-08&quot;:0.62},{&quot;2026-08-09&quot;:0.63},{&quot;2026-08-10&quot;:0.63},{&quot;2026-08-11&quot;:0.63},{&quot;2026-08-12&quot;:0.63},{&quot;2026-08-13&quot;:0.63},{&quot;2026-08-14&quot;:0.63},{&quot;2026-08-15&quot;:0.63},{&quot;2026-08-16&quot;:0.63},{&quot;2026-08-17&quot;:0.63},{&quot;2026-08-18&quot;:0.64},{&quot;2026-08-19&quot;:0.65},{&quot;2026-08-20&quot;:0.65},{&quot;2026-08-21&quot;:0.64},{&quot;2026-08-22&quot;:0.64},{&quot;2026-08-23&quot;:0.64},{&quot;2026-08-24&quot;:0.64},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.65},{&quot;2026-08-27&quot;:0.65},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.68},{&quot;2026-08-31&quot;:0.68},{&quot;2026-09-01&quot;:0.68},{&quot;2026-09-02&quot;:0.68},{&quot;2026-09-03&quot;:0.71},{&quot;2026-09-04&quot;:0.71},{&quot;2026-09-05&quot;:0.72},{&quot;2026-09-06&quot;:0.72},{&quot;2026-09-07&quot;:0.71},{&quot;2026-09-08&quot;:0.71},{&quot;2026-09-09&quot;:0.71},{&quot;2026-09-10&quot;:0.72},{&quot;2026-09-11&quot;:0.71}]}"
        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="14421"
  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-cmm 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">
            Artisan of Kozilek
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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">
            $0.48
          </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="Artisan of Kozilek" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/3/9312fada-fc31-46ac-b6a1-cfffd776856f.jpg?1783915459" />

        <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">
            Artisan of Kozilek
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-9'></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="Artisan of Kozilek" src="https://cards.scryfall.io/large/front/9/3/9312fada-fc31-46ac-b6a1-cfffd776856f.jpg?1783915459" />
    </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.48
              </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.30</span>
              <span class="text-xs text-grey-text">Credit: $0.39</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.53},{&quot;2026-06-10&quot;:0.53},{&quot;2026-06-11&quot;:0.53},{&quot;2026-06-12&quot;:0.53},{&quot;2026-06-13&quot;:0.53},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.53},{&quot;2026-06-16&quot;:0.52},{&quot;2026-06-17&quot;:0.53},{&quot;2026-06-18&quot;:0.53},{&quot;2026-06-19&quot;:0.53},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.53},{&quot;2026-06-22&quot;:0.53},{&quot;2026-06-24&quot;:0.53},{&quot;2026-06-25&quot;:0.53},{&quot;2026-06-26&quot;:0.53},{&quot;2026-06-27&quot;:0.53},{&quot;2026-06-28&quot;:0.53},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.47},{&quot;2026-07-01&quot;:0.46},{&quot;2026-07-02&quot;:0.45},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.45},{&quot;2026-07-05&quot;:0.45},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.45},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.46},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.46},{&quot;2026-07-14&quot;:0.46},{&quot;2026-07-15&quot;:0.47},{&quot;2026-07-16&quot;:0.47},{&quot;2026-07-17&quot;:0.47},{&quot;2026-07-18&quot;:0.47},{&quot;2026-07-19&quot;:0.47},{&quot;2026-07-20&quot;:0.47},{&quot;2026-07-21&quot;:0.47},{&quot;2026-07-23&quot;:0.47},{&quot;2026-07-25&quot;:0.47},{&quot;2026-07-26&quot;:0.47},{&quot;2026-07-27&quot;:0.47},{&quot;2026-07-29&quot;:0.47},{&quot;2026-07-30&quot;:0.47},{&quot;2026-07-31&quot;:0.47},{&quot;2026-08-01&quot;:0.47},{&quot;2026-08-02&quot;:0.47},{&quot;2026-08-03&quot;:0.47},{&quot;2026-08-04&quot;:0.47},{&quot;2026-08-05&quot;:0.47},{&quot;2026-08-07&quot;:0.46},{&quot;2026-08-08&quot;:0.46},{&quot;2026-08-09&quot;:0.46},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.46},{&quot;2026-08-12&quot;:0.46},{&quot;2026-08-13&quot;:0.46},{&quot;2026-08-14&quot;:0.46},{&quot;2026-08-15&quot;:0.46},{&quot;2026-08-16&quot;:0.46},{&quot;2026-08-17&quot;:0.46},{&quot;2026-08-18&quot;:0.46},{&quot;2026-08-19&quot;:0.46},{&quot;2026-08-20&quot;:0.46},{&quot;2026-08-21&quot;:0.46},{&quot;2026-08-22&quot;:0.45},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.45},{&quot;2026-08-25&quot;:0.45},{&quot;2026-08-26&quot;:0.45},{&quot;2026-08-27&quot;:0.45},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.45},{&quot;2026-08-31&quot;:0.45},{&quot;2026-09-01&quot;:0.45},{&quot;2026-09-02&quot;:0.45},{&quot;2026-09-03&quot;:0.45},{&quot;2026-09-04&quot;:0.45},{&quot;2026-09-05&quot;:0.45},{&quot;2026-09-06&quot;:0.45},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.45},{&quot;2026-09-09&quot;:0.46},{&quot;2026-09-10&quot;:0.46},{&quot;2026-09-11&quot;:0.48}]}"
        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="14960"
  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-cmm 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">
            Worn Powerstone
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.47
          </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="Worn Powerstone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/4/a4f3445a-3488-4367-a6f3-fd1904b11148.jpg?1783915394" />

        <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">
            Worn Powerstone
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Worn Powerstone" src="https://cards.scryfall.io/large/front/a/4/a4f3445a-3488-4367-a6f3-fd1904b11148.jpg?1783915394" />
    </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.47
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.57},{&quot;2026-06-14&quot;:0.57},{&quot;2026-06-15&quot;:0.57},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.56},{&quot;2026-06-18&quot;:0.55},{&quot;2026-06-19&quot;:0.55},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.55},{&quot;2026-06-22&quot;:0.55},{&quot;2026-06-23&quot;:0.55},{&quot;2026-06-24&quot;:0.55},{&quot;2026-06-25&quot;:0.55},{&quot;2026-06-26&quot;:0.54},{&quot;2026-06-27&quot;:0.53},{&quot;2026-06-28&quot;:0.52},{&quot;2026-06-29&quot;:0.52},{&quot;2026-06-30&quot;:0.52},{&quot;2026-07-01&quot;:0.52},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.51},{&quot;2026-07-04&quot;:0.51},{&quot;2026-07-05&quot;:0.51},{&quot;2026-07-06&quot;:0.51},{&quot;2026-07-07&quot;:0.51},{&quot;2026-07-08&quot;:0.51},{&quot;2026-07-09&quot;:0.51},{&quot;2026-07-10&quot;:0.51},{&quot;2026-07-11&quot;:0.51},{&quot;2026-07-12&quot;:0.53},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.53},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.53},{&quot;2026-07-22&quot;:0.53},{&quot;2026-07-23&quot;:0.53},{&quot;2026-07-24&quot;:0.53},{&quot;2026-07-25&quot;:0.53},{&quot;2026-07-26&quot;:0.53},{&quot;2026-07-27&quot;:0.53},{&quot;2026-07-28&quot;:0.53},{&quot;2026-07-29&quot;:0.53},{&quot;2026-07-30&quot;:0.53},{&quot;2026-07-31&quot;:0.53},{&quot;2026-08-01&quot;:0.53},{&quot;2026-08-02&quot;:0.53},{&quot;2026-08-03&quot;:0.53},{&quot;2026-08-04&quot;:0.53},{&quot;2026-08-05&quot;:0.53},{&quot;2026-08-07&quot;:0.53},{&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;:0.5},{&quot;2026-08-20&quot;:0.5},{&quot;2026-08-21&quot;:0.5},{&quot;2026-08-22&quot;:0.5},{&quot;2026-08-23&quot;:0.5},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.5},{&quot;2026-08-26&quot;:0.49},{&quot;2026-08-27&quot;:0.49},{&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.49},{&quot;2026-09-01&quot;:0.48},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.48},{&quot;2026-09-06&quot;:0.48},{&quot;2026-09-07&quot;:0.48},{&quot;2026-09-08&quot;:0.48},{&quot;2026-09-09&quot;:0.47},{&quot;2026-09-10&quot;:0.47},{&quot;2026-09-11&quot;:0.47}]}"
        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="14427"
  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-cmm 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">
            Endbringer
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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.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="Endbringer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/a/fa4ecacf-f036-45ea-8aa7-f012120429d3.jpg?1783915459" />

        <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">
            Endbringer
        </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 — Eldrazi</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-c'></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="Endbringer" src="https://cards.scryfall.io/large/front/f/a/fa4ecacf-f036-45ea-8aa7-f012120429d3.jpg?1783915459" />
    </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>

            </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;normal&quot;:[{&quot;2026-06-08&quot;:0.35},{&quot;2026-06-10&quot;:0.35},{&quot;2026-06-11&quot;:0.35},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.36},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.36},{&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.36},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.35},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&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.35},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.36},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.37},{&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.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.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.39},{&quot;2026-08-18&quot;:0.39},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.38},{&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.37},{&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.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.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="14843"
  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-cmm 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">
            Dreamstone Hedron
        </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">
              ↑
              3%
            </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="Dreamstone Hedron" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/0/d0a27816-7ee9-4fa1-aa01-78796ad62337.jpg?1783915408" />

        <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">
            Dreamstone Hedron
        </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-6'></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="Dreamstone Hedron" src="https://cards.scryfall.io/large/front/d/0/d0a27816-7ee9-4fa1-aa01-78796ad62337.jpg?1783915408" />
    </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">
                  ↑
                  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.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;normal&quot;:[{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.4},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.4},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.38},{&quot;2026-07-04&quot;:0.38},{&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.38},{&quot;2026-07-09&quot;:0.38},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.38},{&quot;2026-07-17&quot;:0.37},{&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.39},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-24&quot;:0.38},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.38},{&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.38},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.38},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.37},{&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.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.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.36},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&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="73539"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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.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="Breaker of Armies" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/c/9c414c52-e076-42ea-b080-6b34316eb736.jpg?1783932453" />

        <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">
            Breaker of Armies
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Eldrazi</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>
          </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="Breaker of Armies" src="https://cards.scryfall.io/large/front/9/c/9c414c52-e076-42ea-b080-6b34316eb736.jpg?1783932453" />
    </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>

            </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.30</span>
              <span class="text-xs text-grey-text">Credit: $0.39</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.4},{&quot;2026-06-11&quot;:0.4},{&quot;2026-06-12&quot;:0.4},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.4},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.4},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.4},{&quot;2026-07-03&quot;:0.4},{&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.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.41},{&quot;2026-07-11&quot;:0.41},{&quot;2026-07-12&quot;:0.41},{&quot;2026-07-13&quot;:0.41},{&quot;2026-07-14&quot;:0.41},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.41},{&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.41},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.41},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-29&quot;:0.41},{&quot;2026-07-30&quot;:0.41},{&quot;2026-07-31&quot;:0.41},{&quot;2026-08-01&quot;:0.41},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.39},{&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.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.39},{&quot;2026-08-18&quot;:0.39},{&quot;2026-08-19&quot;:0.39},{&quot;2026-08-20&quot;:0.39},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.39},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.37},{&quot;2026-08-29&quot;:0.37},{&quot;2026-08-30&quot;:0.37},{&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.37},{&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.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.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="15103"
  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-cmm 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">
            Shrine of the Forsaken Gods
        </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">
            $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="Shrine of the Forsaken Gods" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/0467d06a-2218-4824-a89e-7fb4cc9e04eb.jpg?1783915377" />

        <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">
            Shrine of the Forsaken Gods
        </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="Shrine of the Forsaken Gods" src="https://cards.scryfall.io/large/front/0/4/0467d06a-2218-4824-a89e-7fb4cc9e04eb.jpg?1783915377" />
    </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">
                  ↓
                  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.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;normal&quot;:[{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.39},{&quot;2026-06-18&quot;:0.39},{&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.39},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.39},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.39},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.39},{&quot;2026-07-06&quot;:0.39},{&quot;2026-07-07&quot;:0.39},{&quot;2026-07-08&quot;:0.39},{&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.38},{&quot;2026-07-15&quot;:0.39},{&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.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-22&quot;:0.39},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-24&quot;:0.39},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.39},{&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.39},{&quot;2026-08-02&quot;:0.39},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.39},{&quot;2026-08-05&quot;:0.39},{&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.38},{&quot;2026-08-12&quot;:0.38},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.37},{&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.37},{&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.37},{&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="14892"
  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-cmm 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">
            Mind Stone
        </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.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="Mind Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/e/aeaf1f56-de96-480a-a0c4-0a06d4daf149.jpg?1783915403" />

        <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">
            Mind Stone
        </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">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="Mind Stone" src="https://cards.scryfall.io/large/front/a/e/aeaf1f56-de96-480a-a0c4-0a06d4daf149.jpg?1783915403" />
    </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>

            </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.25</span>
              <span class="text-xs text-grey-text">Credit: $0.33</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.34},{&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.34},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.34},{&quot;2026-06-28&quot;:0.34},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.34},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.34},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.34},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.34},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-24&quot;:0.34},{&quot;2026-07-25&quot;:0.34},{&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.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.34},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.35},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.33},{&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.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.33},{&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.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&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="80061"
  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-uma 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">
            Ulamog&#39;s Crusher
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Eldrazi
      </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.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="Ulamog&#39;s Crusher" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/d/eda0fd38-38e6-4e9b-9c17-4d855e01b1e1.jpg?1783933871" />

        <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">
            Ulamog&#39;s Crusher
        </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">Creature — Eldrazi</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>
          </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="Ulamog&#39;s Crusher" src="https://cards.scryfall.io/large/front/e/d/eda0fd38-38e6-4e9b-9c17-4d855e01b1e1.jpg?1783933871" />
    </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">
                  ↑
                  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">
                $0.70
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-06-11&quot;:0.71},{&quot;2026-06-12&quot;:0.71},{&quot;2026-06-13&quot;:0.71},{&quot;2026-06-14&quot;:0.71},{&quot;2026-06-15&quot;:0.72},{&quot;2026-06-16&quot;:0.72},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.72},{&quot;2026-06-19&quot;:0.72},{&quot;2026-06-20&quot;:0.72},{&quot;2026-06-21&quot;:0.72},{&quot;2026-06-22&quot;:0.72},{&quot;2026-06-23&quot;:0.72},{&quot;2026-06-24&quot;:0.72},{&quot;2026-06-25&quot;:0.72},{&quot;2026-06-26&quot;:0.72},{&quot;2026-06-27&quot;:0.72},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.72},{&quot;2026-06-30&quot;:0.72},{&quot;2026-07-01&quot;:0.72},{&quot;2026-07-02&quot;:0.72},{&quot;2026-07-03&quot;:0.72},{&quot;2026-07-04&quot;:0.72},{&quot;2026-07-05&quot;:0.72},{&quot;2026-07-06&quot;:0.72},{&quot;2026-07-07&quot;:0.72},{&quot;2026-07-08&quot;:0.72},{&quot;2026-07-09&quot;:0.72},{&quot;2026-07-10&quot;:0.72},{&quot;2026-07-11&quot;:0.72},{&quot;2026-07-12&quot;:0.72},{&quot;2026-07-13&quot;:0.72},{&quot;2026-07-14&quot;:0.72},{&quot;2026-07-15&quot;:0.72},{&quot;2026-07-16&quot;:0.72},{&quot;2026-07-17&quot;:0.72},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.72},{&quot;2026-07-20&quot;:0.72},{&quot;2026-07-21&quot;:0.72},{&quot;2026-07-23&quot;:0.72},{&quot;2026-07-25&quot;:0.72},{&quot;2026-07-26&quot;:0.72},{&quot;2026-07-27&quot;:0.72},{&quot;2026-07-28&quot;:0.72},{&quot;2026-07-29&quot;:0.72},{&quot;2026-07-30&quot;:0.72},{&quot;2026-07-31&quot;:0.73},{&quot;2026-08-01&quot;:0.73},{&quot;2026-08-02&quot;:0.69},{&quot;2026-08-03&quot;:0.69},{&quot;2026-08-04&quot;:0.69},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.69},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.69},{&quot;2026-08-10&quot;:0.69},{&quot;2026-08-11&quot;:0.69},{&quot;2026-08-12&quot;:0.69},{&quot;2026-08-13&quot;:0.69},{&quot;2026-08-14&quot;:0.69},{&quot;2026-08-15&quot;:0.69},{&quot;2026-08-16&quot;:0.69},{&quot;2026-08-17&quot;:0.69},{&quot;2026-08-18&quot;:0.68},{&quot;2026-08-19&quot;:0.68},{&quot;2026-08-20&quot;:0.68},{&quot;2026-08-21&quot;:0.7},{&quot;2026-08-22&quot;:0.7},{&quot;2026-08-23&quot;:0.7},{&quot;2026-08-24&quot;:0.7},{&quot;2026-08-25&quot;:0.7},{&quot;2026-08-26&quot;:0.74},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:0.69},{&quot;2026-08-29&quot;:0.69},{&quot;2026-08-30&quot;:0.69},{&quot;2026-08-31&quot;:0.7},{&quot;2026-09-01&quot;:0.7},{&quot;2026-09-02&quot;:0.7},{&quot;2026-09-03&quot;:0.7},{&quot;2026-09-04&quot;:0.7},{&quot;2026-09-05&quot;:0.7},{&quot;2026-09-06&quot;:0.7},{&quot;2026-09-07&quot;:0.7},{&quot;2026-09-08&quot;:0.7},{&quot;2026-09-09&quot;:0.7},{&quot;2026-09-10&quot;:0.7},{&quot;2026-09-11&quot;:0.7}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.36},{&quot;2026-06-12&quot;:0.36},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.35},{&quot;2026-06-16&quot;:0.34},{&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.34},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.31},{&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.31},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.25},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.26},{&quot;2026-07-07&quot;:0.26},{&quot;2026-07-08&quot;:0.26},{&quot;2026-07-09&quot;:0.26},{&quot;2026-07-10&quot;:0.26},{&quot;2026-07-11&quot;:0.26},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.26},{&quot;2026-07-14&quot;:0.25},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.23},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.25},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.26},{&quot;2026-07-21&quot;:0.25},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-25&quot;:0.24},{&quot;2026-07-26&quot;:0.24},{&quot;2026-07-27&quot;:0.24},{&quot;2026-07-28&quot;:0.24},{&quot;2026-07-29&quot;:0.24},{&quot;2026-07-30&quot;:0.24},{&quot;2026-07-31&quot;:0.23},{&quot;2026-08-01&quot;:0.23},{&quot;2026-08-02&quot;:0.24},{&quot;2026-08-03&quot;:0.24},{&quot;2026-08-04&quot;:0.23},{&quot;2026-08-05&quot;:0.23},{&quot;2026-08-07&quot;:0.24},{&quot;2026-08-08&quot;:0.25},{&quot;2026-08-09&quot;:0.25},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.27},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.3},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.33},{&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="14863"
  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-cmm 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">
            Hedron Archive
        </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">
            $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="Hedron Archive" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/d/ad69703c-637f-44c6-bc84-c1f60d9d9062.jpg?1783915405" />

        <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">
            Hedron Archive
        </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-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="Hedron Archive" src="https://cards.scryfall.io/large/front/a/d/ad69703c-637f-44c6-bc84-c1f60d9d9062.jpg?1783915405" />
    </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">
                  ↓
                  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.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;normal&quot;:[{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&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.3},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.3},{&quot;2026-06-27&quot;:0.3},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.3},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.3},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.3},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.27},{&quot;2026-07-12&quot;:0.27},{&quot;2026-07-13&quot;:0.26},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.26},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.26},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.28},{&quot;2026-07-21&quot;:0.28},{&quot;2026-07-22&quot;:0.28},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-24&quot;:0.28},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.28},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.3},{&quot;2026-08-03&quot;:0.3},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.3},{&quot;2026-08-08&quot;:0.3},{&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.31},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.31},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.3},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&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 45 items</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" 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=14&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=14&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=14&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=14&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=14&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=14&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=14&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=14&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=14&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="80040"
          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">
              U4
            </td>

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


            </td>

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

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-mythic ss-fw ss-2x mr-4"></i>
              Zhulodok, Void Gorger


            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm ss-mythic ss-fw ss-2x mr-4"></i>
              Ugin, Eye of the Storms // Ugin, Eye of the Storms


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Ugin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
              </div>
            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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


            </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-9'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i>
              </div>
            </td>

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

                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i>
              </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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


            </td>

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

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


            </td>

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

                </div>
            </td>

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

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

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

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

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


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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12003"
          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-cmm ss-mythic ss-fw ss-2x mr-4"></i>
              Kozilek, the Great Distortion


            </td>

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x mr-4"></i>
              Not of This World


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Kindred Instant — Eldrazi
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
              </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-mythic ss-fw ss-2x mr-4"></i>
              All Is Dust


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Kindred Sorcery — Eldrazi
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
              </div>
            </td>

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

                </div>
            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

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


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

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

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

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

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

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


            </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-c'></i><i class='no-tailwind ms ms-cost ml-0 ms-c'></i>
              </div>
            </td>

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

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


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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53328"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              217
            </td>

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x mr-4"></i>
              Bane of Bala Ged


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
              </div>
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm 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">
                  $2.49

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

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

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

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Ugin
            </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-6'></i>
              </div>
            </td>

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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.80
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-common ss-fw ss-2x mr-4"></i>
              Urza&#39;s Power Plant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Urza&#39;s Power-Plant
            </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">
                  $2.18

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

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

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

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

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

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


            </td>

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

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

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

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

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

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


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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.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.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.19
            </td>
        </tr>

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Urza&#39;s Mine
            </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.26

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

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

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

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


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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

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

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

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Urza&#39;s Tower
            </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.88

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

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

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

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

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

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


            </td>

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

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

                </div>
            </td>

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

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

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

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

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


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

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

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Eldrazi
            </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-6'></i>
              </div>
            </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-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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


            </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-6'></i>
              </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">
                      ↑
                      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.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.27
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73539"
          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">
              BFZ-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-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Breaker of Armies


            </td>

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

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

                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-rare ss-fw ss-2x mr-4"></i>
              Shrine of the Forsaken Gods


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

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

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

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


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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80061"
          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-uma ss-common ss-fw ss-2x mr-4"></i>
              Ulamog&#39;s Crusher


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Eldrazi
            </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>
              </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">
                      ↑
                      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.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.50
            </td>
        </tr>

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

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

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


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

                    <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.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="14863"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14863" src="/boxset_card/14863?collection_id=14&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 45 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>