<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="98" 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="77501"
  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-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">
            Ophidian Eye
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $12.14
          </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="Ophidian Eye" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/3/d3c58997-5555-423a-822e-749fac90e392.jpg?1783910303" />

        <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">
            Ophidian Eye
        </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">Enchantment — Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ophidian Eye" src="https://cards.scryfall.io/large/front/d/3/d3c58997-5555-423a-822e-749fac90e392.jpg?1783910303" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $12.14
              </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">$7.75</span>
              <span class="text-xs text-grey-text">Credit: $10.08</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:12.1},{&quot;2026-06-12&quot;:12.46},{&quot;2026-06-13&quot;:12.46},{&quot;2026-06-14&quot;:12.46},{&quot;2026-06-15&quot;:12.52},{&quot;2026-06-16&quot;:12.52},{&quot;2026-06-17&quot;:12.65},{&quot;2026-06-18&quot;:12.55},{&quot;2026-06-19&quot;:12.6},{&quot;2026-06-20&quot;:12.61},{&quot;2026-06-21&quot;:12.49},{&quot;2026-06-22&quot;:12.48},{&quot;2026-06-23&quot;:12.48},{&quot;2026-06-24&quot;:12.51},{&quot;2026-06-25&quot;:12.51},{&quot;2026-06-26&quot;:12.62},{&quot;2026-06-27&quot;:12.62},{&quot;2026-06-28&quot;:12.36},{&quot;2026-06-29&quot;:12.27},{&quot;2026-06-30&quot;:12.27},{&quot;2026-07-01&quot;:12.27},{&quot;2026-07-02&quot;:12.29},{&quot;2026-07-03&quot;:12.25},{&quot;2026-07-04&quot;:12.3},{&quot;2026-07-05&quot;:12.3},{&quot;2026-07-06&quot;:12.23},{&quot;2026-07-07&quot;:12.18},{&quot;2026-07-08&quot;:12.16},{&quot;2026-07-09&quot;:12.16},{&quot;2026-07-10&quot;:12.16},{&quot;2026-07-11&quot;:12.16},{&quot;2026-07-12&quot;:12.16},{&quot;2026-07-13&quot;:12.18},{&quot;2026-07-14&quot;:12.27},{&quot;2026-07-15&quot;:12.27},{&quot;2026-07-16&quot;:12.18},{&quot;2026-07-17&quot;:12.21},{&quot;2026-07-18&quot;:12.21},{&quot;2026-07-19&quot;:12.21},{&quot;2026-07-20&quot;:12.21},{&quot;2026-07-21&quot;:12.37},{&quot;2026-07-23&quot;:12.31},{&quot;2026-07-25&quot;:12.29},{&quot;2026-07-26&quot;:12.15},{&quot;2026-07-27&quot;:12.0},{&quot;2026-07-28&quot;:11.97},{&quot;2026-07-29&quot;:11.84},{&quot;2026-07-30&quot;:11.71},{&quot;2026-07-31&quot;:11.73},{&quot;2026-08-01&quot;:11.73},{&quot;2026-08-02&quot;:11.67},{&quot;2026-08-03&quot;:11.76},{&quot;2026-08-04&quot;:11.7},{&quot;2026-08-05&quot;:11.71},{&quot;2026-08-07&quot;:11.63},{&quot;2026-08-08&quot;:11.65},{&quot;2026-08-09&quot;:11.65},{&quot;2026-08-10&quot;:11.58},{&quot;2026-08-11&quot;:11.32},{&quot;2026-08-12&quot;:11.32},{&quot;2026-08-13&quot;:11.23},{&quot;2026-08-14&quot;:11.24},{&quot;2026-08-15&quot;:11.66},{&quot;2026-08-16&quot;:11.48},{&quot;2026-08-17&quot;:11.54},{&quot;2026-08-18&quot;:11.5},{&quot;2026-08-19&quot;:11.54},{&quot;2026-08-20&quot;:11.54},{&quot;2026-08-21&quot;:11.77},{&quot;2026-08-22&quot;:12.06},{&quot;2026-08-23&quot;:11.94},{&quot;2026-08-24&quot;:11.94},{&quot;2026-08-25&quot;:12.02},{&quot;2026-08-26&quot;:12.08},{&quot;2026-08-27&quot;:12.14},{&quot;2026-08-28&quot;:12.14},{&quot;2026-08-29&quot;:12.14},{&quot;2026-08-30&quot;:12.34},{&quot;2026-08-31&quot;:12.37},{&quot;2026-09-01&quot;:12.44},{&quot;2026-09-02&quot;:12.21},{&quot;2026-09-03&quot;:12.21},{&quot;2026-09-04&quot;:12.21},{&quot;2026-09-05&quot;:12.08},{&quot;2026-09-06&quot;:12.01},{&quot;2026-09-07&quot;:12.07},{&quot;2026-09-08&quot;:12.13},{&quot;2026-09-09&quot;:11.97},{&quot;2026-09-10&quot;:12.06},{&quot;2026-09-11&quot;:12.14}]}"
        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="76225"
  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-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">
            Mental Note
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.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="Mental Note" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/2/1230d6bb-4236-4797-9316-66442ff8fb56.jpg?1783910362" />

        <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">
            Mental Note
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Mental Note" src="https://cards.scryfall.io/large/front/1/2/1230d6bb-4236-4797-9316-66442ff8fb56.jpg?1783910362" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $7.01
              </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">$6.90</span>
              <span class="text-xs text-grey-text">Credit: $8.97</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:7.93},{&quot;2026-06-14&quot;:7.99},{&quot;2026-06-15&quot;:7.99},{&quot;2026-06-16&quot;:7.99},{&quot;2026-06-17&quot;:7.99},{&quot;2026-06-18&quot;:7.99},{&quot;2026-06-19&quot;:8.04},{&quot;2026-06-20&quot;:7.9},{&quot;2026-06-21&quot;:7.9},{&quot;2026-06-22&quot;:7.75},{&quot;2026-06-23&quot;:7.75},{&quot;2026-06-24&quot;:7.75},{&quot;2026-06-25&quot;:7.85},{&quot;2026-06-26&quot;:7.79},{&quot;2026-06-27&quot;:7.65},{&quot;2026-06-28&quot;:7.5},{&quot;2026-06-29&quot;:7.51},{&quot;2026-06-30&quot;:7.51},{&quot;2026-07-01&quot;:7.52},{&quot;2026-07-02&quot;:7.56},{&quot;2026-07-03&quot;:7.56},{&quot;2026-07-04&quot;:7.64},{&quot;2026-07-05&quot;:7.64},{&quot;2026-07-06&quot;:7.6},{&quot;2026-07-07&quot;:7.6},{&quot;2026-07-08&quot;:7.6},{&quot;2026-07-09&quot;:7.59},{&quot;2026-07-10&quot;:7.81},{&quot;2026-07-11&quot;:7.94},{&quot;2026-07-12&quot;:8.01},{&quot;2026-07-13&quot;:8.01},{&quot;2026-07-14&quot;:8.01},{&quot;2026-07-15&quot;:8.01},{&quot;2026-07-16&quot;:8.08},{&quot;2026-07-17&quot;:8.01},{&quot;2026-07-18&quot;:7.95},{&quot;2026-07-19&quot;:7.99},{&quot;2026-07-20&quot;:7.94},{&quot;2026-07-21&quot;:7.94},{&quot;2026-07-22&quot;:7.94},{&quot;2026-07-23&quot;:7.94},{&quot;2026-07-24&quot;:8.02},{&quot;2026-07-25&quot;:8.02},{&quot;2026-07-26&quot;:8.02},{&quot;2026-07-27&quot;:7.98},{&quot;2026-07-28&quot;:7.98},{&quot;2026-07-29&quot;:8.22},{&quot;2026-07-30&quot;:8.04},{&quot;2026-07-31&quot;:7.49},{&quot;2026-08-01&quot;:7.38},{&quot;2026-08-02&quot;:7.38},{&quot;2026-08-03&quot;:7.24},{&quot;2026-08-04&quot;:7.24},{&quot;2026-08-05&quot;:7.24},{&quot;2026-08-07&quot;:6.88},{&quot;2026-08-08&quot;:6.54},{&quot;2026-08-09&quot;:7.04},{&quot;2026-08-10&quot;:7.11},{&quot;2026-08-11&quot;:7.0},{&quot;2026-08-12&quot;:7.03},{&quot;2026-08-13&quot;:6.83},{&quot;2026-08-14&quot;:6.71},{&quot;2026-08-15&quot;:6.82},{&quot;2026-08-16&quot;:6.82},{&quot;2026-08-17&quot;:6.62},{&quot;2026-08-18&quot;:6.41},{&quot;2026-08-19&quot;:6.41},{&quot;2026-08-20&quot;:6.58},{&quot;2026-08-21&quot;:6.58},{&quot;2026-08-22&quot;:6.46},{&quot;2026-08-23&quot;:6.66},{&quot;2026-08-24&quot;:7.06},{&quot;2026-08-25&quot;:7.06},{&quot;2026-08-26&quot;:6.87},{&quot;2026-08-27&quot;:6.93},{&quot;2026-08-28&quot;:6.9},{&quot;2026-08-29&quot;:6.9},{&quot;2026-08-30&quot;:7.14},{&quot;2026-08-31&quot;:7.32},{&quot;2026-09-01&quot;:7.25},{&quot;2026-09-02&quot;:7.21},{&quot;2026-09-03&quot;:7.21},{&quot;2026-09-04&quot;:7.21},{&quot;2026-09-05&quot;:7.19},{&quot;2026-09-06&quot;:7.19},{&quot;2026-09-07&quot;:7.19},{&quot;2026-09-08&quot;:7.09},{&quot;2026-09-09&quot;:7.09},{&quot;2026-09-10&quot;:7.01},{&quot;2026-09-11&quot;:7.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="53370"
  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-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">
            Relic of Progenitus
        </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">
            $6.61
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Relic of Progenitus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/26b46701-9fe0-4d6e-8aaf-e0a677f9851f.jpg?1783910550" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Relic of Progenitus
        </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-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="Relic of Progenitus" src="https://cards.scryfall.io/large/front/2/6/26b46701-9fe0-4d6e-8aaf-e0a677f9851f.jpg?1783910550" />
    </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.61
              </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">
                $21.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 Regular</span>
              <span class="text-lg font-medium text-nine-white">$6.40</span>
              <span class="text-xs text-grey-text">Credit: $8.32</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;:21.1},{&quot;2026-06-14&quot;:21.1},{&quot;2026-06-15&quot;:21.62},{&quot;2026-06-16&quot;:21.62},{&quot;2026-06-17&quot;:21.62},{&quot;2026-06-18&quot;:21.62},{&quot;2026-06-19&quot;:21.62},{&quot;2026-06-20&quot;:21.62},{&quot;2026-06-21&quot;:21.62},{&quot;2026-06-22&quot;:21.62},{&quot;2026-06-23&quot;:21.62},{&quot;2026-06-24&quot;:21.62},{&quot;2026-06-25&quot;:21.62},{&quot;2026-06-26&quot;:21.62},{&quot;2026-06-27&quot;:21.62},{&quot;2026-06-28&quot;:21.62},{&quot;2026-06-29&quot;:21.62},{&quot;2026-06-30&quot;:21.62},{&quot;2026-07-01&quot;:21.62},{&quot;2026-07-02&quot;:21.62},{&quot;2026-07-03&quot;:21.62},{&quot;2026-07-04&quot;:21.67},{&quot;2026-07-05&quot;:21.67},{&quot;2026-07-06&quot;:21.95},{&quot;2026-07-07&quot;:21.95},{&quot;2026-07-08&quot;:21.95},{&quot;2026-07-09&quot;:21.95},{&quot;2026-07-10&quot;:22.11},{&quot;2026-07-11&quot;:22.11},{&quot;2026-07-12&quot;:22.11},{&quot;2026-07-13&quot;:22.11},{&quot;2026-07-14&quot;:22.11},{&quot;2026-07-15&quot;:22.11},{&quot;2026-07-16&quot;:22.14},{&quot;2026-07-17&quot;:22.14},{&quot;2026-07-18&quot;:22.08},{&quot;2026-07-19&quot;:22.08},{&quot;2026-07-20&quot;:22.08},{&quot;2026-07-21&quot;:22.08},{&quot;2026-07-22&quot;:22.16},{&quot;2026-07-23&quot;:22.16},{&quot;2026-07-24&quot;:22.16},{&quot;2026-07-25&quot;:22.22},{&quot;2026-07-26&quot;:22.32},{&quot;2026-07-27&quot;:22.32},{&quot;2026-07-28&quot;:22.32},{&quot;2026-07-29&quot;:22.32},{&quot;2026-07-30&quot;:22.32},{&quot;2026-07-31&quot;:22.32},{&quot;2026-08-01&quot;:22.32},{&quot;2026-08-02&quot;:22.32},{&quot;2026-08-03&quot;:22.32},{&quot;2026-08-04&quot;:22.32},{&quot;2026-08-05&quot;:22.32},{&quot;2026-08-07&quot;:22.32},{&quot;2026-08-08&quot;:22.32},{&quot;2026-08-09&quot;:22.32},{&quot;2026-08-10&quot;:22.32},{&quot;2026-08-11&quot;:22.32},{&quot;2026-08-12&quot;:22.32},{&quot;2026-08-13&quot;:22.32},{&quot;2026-08-14&quot;:22.32},{&quot;2026-08-15&quot;:22.32},{&quot;2026-08-16&quot;:22.26},{&quot;2026-08-17&quot;:22.26},{&quot;2026-08-18&quot;:22.26},{&quot;2026-08-19&quot;:22.26},{&quot;2026-08-20&quot;:22.26},{&quot;2026-08-21&quot;:22.26},{&quot;2026-08-22&quot;:22.26},{&quot;2026-08-23&quot;:22.26},{&quot;2026-08-24&quot;:22.26},{&quot;2026-08-25&quot;:22.26},{&quot;2026-08-26&quot;:22.26},{&quot;2026-08-27&quot;:22.26},{&quot;2026-08-28&quot;:22.26},{&quot;2026-08-29&quot;:22.26},{&quot;2026-08-30&quot;:22.12},{&quot;2026-08-31&quot;:22.09},{&quot;2026-09-01&quot;:22.09},{&quot;2026-09-02&quot;:22.09},{&quot;2026-09-03&quot;:22.09},{&quot;2026-09-04&quot;:22.09},{&quot;2026-09-05&quot;:21.76},{&quot;2026-09-06&quot;:21.76},{&quot;2026-09-07&quot;:21.76},{&quot;2026-09-08&quot;:21.76},{&quot;2026-09-09&quot;:21.76},{&quot;2026-09-10&quot;:21.76},{&quot;2026-09-11&quot;:21.76}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.4},{&quot;2026-06-14&quot;:5.39},{&quot;2026-06-15&quot;:5.39},{&quot;2026-06-16&quot;:5.39},{&quot;2026-06-17&quot;:5.36},{&quot;2026-06-18&quot;:5.36},{&quot;2026-06-19&quot;:5.27},{&quot;2026-06-20&quot;:5.34},{&quot;2026-06-21&quot;:5.34},{&quot;2026-06-22&quot;:5.31},{&quot;2026-06-23&quot;:5.42},{&quot;2026-06-24&quot;:5.45},{&quot;2026-06-25&quot;:5.45},{&quot;2026-06-26&quot;:5.43},{&quot;2026-06-27&quot;:5.33},{&quot;2026-06-28&quot;:5.33},{&quot;2026-06-29&quot;:5.75},{&quot;2026-06-30&quot;:5.77},{&quot;2026-07-01&quot;:5.77},{&quot;2026-07-02&quot;:5.77},{&quot;2026-07-03&quot;:5.77},{&quot;2026-07-04&quot;:5.76},{&quot;2026-07-05&quot;:5.76},{&quot;2026-07-06&quot;:5.76},{&quot;2026-07-07&quot;:5.77},{&quot;2026-07-08&quot;:5.73},{&quot;2026-07-09&quot;:5.63},{&quot;2026-07-10&quot;:5.63},{&quot;2026-07-11&quot;:5.6},{&quot;2026-07-12&quot;:5.69},{&quot;2026-07-13&quot;:5.68},{&quot;2026-07-14&quot;:5.68},{&quot;2026-07-15&quot;:5.75},{&quot;2026-07-16&quot;:5.76},{&quot;2026-07-17&quot;:5.51},{&quot;2026-07-18&quot;:5.51},{&quot;2026-07-19&quot;:5.55},{&quot;2026-07-20&quot;:5.55},{&quot;2026-07-21&quot;:5.64},{&quot;2026-07-22&quot;:5.64},{&quot;2026-07-23&quot;:5.71},{&quot;2026-07-24&quot;:5.71},{&quot;2026-07-25&quot;:5.72},{&quot;2026-07-26&quot;:5.93},{&quot;2026-07-27&quot;:5.87},{&quot;2026-07-28&quot;:5.99},{&quot;2026-07-29&quot;:5.84},{&quot;2026-07-30&quot;:5.65},{&quot;2026-07-31&quot;:5.47},{&quot;2026-08-01&quot;:5.4},{&quot;2026-08-02&quot;:5.33},{&quot;2026-08-03&quot;:5.33},{&quot;2026-08-04&quot;:5.16},{&quot;2026-08-05&quot;:5.06},{&quot;2026-08-07&quot;:5.07},{&quot;2026-08-08&quot;:5.07},{&quot;2026-08-09&quot;:5.03},{&quot;2026-08-10&quot;:5.25},{&quot;2026-08-11&quot;:5.26},{&quot;2026-08-12&quot;:5.15},{&quot;2026-08-13&quot;:4.96},{&quot;2026-08-14&quot;:5.81},{&quot;2026-08-15&quot;:5.94},{&quot;2026-08-16&quot;:5.64},{&quot;2026-08-17&quot;:5.68},{&quot;2026-08-18&quot;:6.03},{&quot;2026-08-19&quot;:6.18},{&quot;2026-08-20&quot;:6.21},{&quot;2026-08-21&quot;:6.21},{&quot;2026-08-22&quot;:5.59},{&quot;2026-08-23&quot;:5.59},{&quot;2026-08-24&quot;:5.59},{&quot;2026-08-25&quot;:5.6},{&quot;2026-08-26&quot;:5.82},{&quot;2026-08-27&quot;:5.95},{&quot;2026-08-28&quot;:5.95},{&quot;2026-08-29&quot;:5.95},{&quot;2026-08-30&quot;:6.05},{&quot;2026-08-31&quot;:6.05},{&quot;2026-09-01&quot;:6.01},{&quot;2026-09-02&quot;:6.13},{&quot;2026-09-03&quot;:6.16},{&quot;2026-09-04&quot;:6.16},{&quot;2026-09-05&quot;:6.14},{&quot;2026-09-06&quot;:6.25},{&quot;2026-09-07&quot;:6.25},{&quot;2026-09-08&quot;:6.46},{&quot;2026-09-09&quot;:6.46},{&quot;2026-09-10&quot;:6.53},{&quot;2026-09-11&quot;:6.61}]}"
        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="81859"
  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-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">
            Elves of Deep Shadow
        </span>


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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">
            $5.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="Elves of Deep Shadow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c41769e-5ebb-42b2-ac55-fa471cd7201e.jpg?1783932039" />

        <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">
            Elves of Deep Shadow
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elves of Deep Shadow" src="https://cards.scryfall.io/large/front/8/c/8c41769e-5ebb-42b2-ac55-fa471cd7201e.jpg?1783932039" />
    </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.66
              </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.75</span>
              <span class="text-xs text-grey-text">Credit: $3.58</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.42},{&quot;2026-06-14&quot;:4.42},{&quot;2026-06-15&quot;:4.33},{&quot;2026-06-16&quot;:4.33},{&quot;2026-06-17&quot;:4.33},{&quot;2026-06-18&quot;:4.27},{&quot;2026-06-19&quot;:4.27},{&quot;2026-06-20&quot;:4.29},{&quot;2026-06-21&quot;:4.29},{&quot;2026-06-22&quot;:4.29},{&quot;2026-06-23&quot;:4.29},{&quot;2026-06-24&quot;:4.18},{&quot;2026-06-25&quot;:3.98},{&quot;2026-06-26&quot;:3.87},{&quot;2026-06-27&quot;:3.87},{&quot;2026-06-28&quot;:3.81},{&quot;2026-06-29&quot;:3.79},{&quot;2026-06-30&quot;:3.74},{&quot;2026-07-01&quot;:3.74},{&quot;2026-07-02&quot;:3.83},{&quot;2026-07-03&quot;:3.83},{&quot;2026-07-04&quot;:3.81},{&quot;2026-07-05&quot;:3.81},{&quot;2026-07-06&quot;:3.81},{&quot;2026-07-07&quot;:3.81},{&quot;2026-07-08&quot;:3.81},{&quot;2026-07-09&quot;:3.74},{&quot;2026-07-10&quot;:3.74},{&quot;2026-07-11&quot;:3.77},{&quot;2026-07-12&quot;:3.77},{&quot;2026-07-13&quot;:3.85},{&quot;2026-07-14&quot;:3.9},{&quot;2026-07-15&quot;:3.91},{&quot;2026-07-16&quot;:3.91},{&quot;2026-07-17&quot;:3.91},{&quot;2026-07-18&quot;:4.13},{&quot;2026-07-19&quot;:4.37},{&quot;2026-07-20&quot;:4.37},{&quot;2026-07-21&quot;:4.37},{&quot;2026-07-22&quot;:4.37},{&quot;2026-07-23&quot;:4.37},{&quot;2026-07-24&quot;:4.38},{&quot;2026-07-25&quot;:4.38},{&quot;2026-07-26&quot;:4.4},{&quot;2026-07-27&quot;:4.4},{&quot;2026-07-28&quot;:4.4},{&quot;2026-07-29&quot;:4.4},{&quot;2026-07-30&quot;:4.4},{&quot;2026-07-31&quot;:4.4},{&quot;2026-08-01&quot;:4.84},{&quot;2026-08-02&quot;:4.84},{&quot;2026-08-03&quot;:4.84},{&quot;2026-08-04&quot;:4.84},{&quot;2026-08-05&quot;:5.18},{&quot;2026-08-07&quot;:5.22},{&quot;2026-08-08&quot;:5.22},{&quot;2026-08-09&quot;:5.22},{&quot;2026-08-10&quot;:5.37},{&quot;2026-08-11&quot;:5.51},{&quot;2026-08-12&quot;:5.51},{&quot;2026-08-13&quot;:5.51},{&quot;2026-08-14&quot;:5.51},{&quot;2026-08-15&quot;:5.51},{&quot;2026-08-16&quot;:5.51},{&quot;2026-08-17&quot;:5.51},{&quot;2026-08-18&quot;:5.51},{&quot;2026-08-19&quot;:5.51},{&quot;2026-08-20&quot;:5.61},{&quot;2026-08-21&quot;:5.61},{&quot;2026-08-22&quot;:5.61},{&quot;2026-08-23&quot;:5.61},{&quot;2026-08-24&quot;:5.68},{&quot;2026-08-25&quot;:5.68},{&quot;2026-08-26&quot;:5.68},{&quot;2026-08-27&quot;:5.68},{&quot;2026-08-28&quot;:5.68},{&quot;2026-08-29&quot;:5.68},{&quot;2026-08-30&quot;:5.81},{&quot;2026-08-31&quot;:5.8},{&quot;2026-09-01&quot;:5.8},{&quot;2026-09-02&quot;:5.8},{&quot;2026-09-03&quot;:5.8},{&quot;2026-09-04&quot;:5.8},{&quot;2026-09-05&quot;:5.8},{&quot;2026-09-06&quot;:5.8},{&quot;2026-09-07&quot;:5.8},{&quot;2026-09-08&quot;:5.62},{&quot;2026-09-09&quot;:5.62},{&quot;2026-09-10&quot;:5.66},{&quot;2026-09-11&quot;:5.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="52819"
  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-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">
            Rat Colony
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rat Colony" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7fa42ab8-876c-4467-927e-591ee6de330a.jpg?1783910607" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Rat Colony
        </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 — Rat</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rat Colony" src="https://cards.scryfall.io/large/front/7/f/7fa42ab8-876c-4467-927e-591ee6de330a.jpg?1783910607" />
    </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.13
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.16},{&quot;2026-06-14&quot;:6.22},{&quot;2026-06-15&quot;:6.21},{&quot;2026-06-16&quot;:6.21},{&quot;2026-06-17&quot;:6.21},{&quot;2026-06-18&quot;:6.07},{&quot;2026-06-19&quot;:6.07},{&quot;2026-06-20&quot;:6.07},{&quot;2026-06-21&quot;:6.06},{&quot;2026-06-22&quot;:6.04},{&quot;2026-06-23&quot;:6.04},{&quot;2026-06-24&quot;:6.04},{&quot;2026-06-25&quot;:6.01},{&quot;2026-06-26&quot;:6.01},{&quot;2026-06-27&quot;:6.01},{&quot;2026-06-28&quot;:6.01},{&quot;2026-06-29&quot;:5.37},{&quot;2026-06-30&quot;:5.37},{&quot;2026-07-01&quot;:5.37},{&quot;2026-07-02&quot;:5.39},{&quot;2026-07-03&quot;:5.51},{&quot;2026-07-04&quot;:5.51},{&quot;2026-07-05&quot;:5.51},{&quot;2026-07-06&quot;:5.52},{&quot;2026-07-07&quot;:5.57},{&quot;2026-07-08&quot;:5.57},{&quot;2026-07-09&quot;:5.57},{&quot;2026-07-10&quot;:5.61},{&quot;2026-07-11&quot;:5.54},{&quot;2026-07-12&quot;:5.54},{&quot;2026-07-13&quot;:5.57},{&quot;2026-07-14&quot;:5.55},{&quot;2026-07-15&quot;:5.42},{&quot;2026-07-16&quot;:5.42},{&quot;2026-07-17&quot;:5.47},{&quot;2026-07-18&quot;:5.47},{&quot;2026-07-19&quot;:5.49},{&quot;2026-07-20&quot;:5.49},{&quot;2026-07-21&quot;:5.9},{&quot;2026-07-22&quot;:5.9},{&quot;2026-07-23&quot;:5.9},{&quot;2026-07-24&quot;:5.88},{&quot;2026-07-25&quot;:5.88},{&quot;2026-07-26&quot;:5.88},{&quot;2026-07-27&quot;:5.73},{&quot;2026-07-28&quot;:5.73},{&quot;2026-07-29&quot;:5.75},{&quot;2026-07-30&quot;:5.73},{&quot;2026-07-31&quot;:5.78},{&quot;2026-08-01&quot;:5.78},{&quot;2026-08-02&quot;:5.78},{&quot;2026-08-03&quot;:5.78},{&quot;2026-08-04&quot;:5.78},{&quot;2026-08-05&quot;:5.71},{&quot;2026-08-07&quot;:5.71},{&quot;2026-08-08&quot;:5.66},{&quot;2026-08-09&quot;:5.66},{&quot;2026-08-10&quot;:5.81},{&quot;2026-08-11&quot;:4.86},{&quot;2026-08-12&quot;:4.88},{&quot;2026-08-13&quot;:4.95},{&quot;2026-08-14&quot;:4.89},{&quot;2026-08-15&quot;:4.77},{&quot;2026-08-16&quot;:4.75},{&quot;2026-08-17&quot;:4.72},{&quot;2026-08-18&quot;:4.72},{&quot;2026-08-19&quot;:4.61},{&quot;2026-08-20&quot;:4.59},{&quot;2026-08-21&quot;:4.71},{&quot;2026-08-22&quot;:4.71},{&quot;2026-08-23&quot;:4.72},{&quot;2026-08-24&quot;:4.72},{&quot;2026-08-25&quot;:4.72},{&quot;2026-08-26&quot;:4.72},{&quot;2026-08-27&quot;:4.72},{&quot;2026-08-28&quot;:4.72},{&quot;2026-08-29&quot;:4.72},{&quot;2026-08-30&quot;:4.92},{&quot;2026-08-31&quot;:4.92},{&quot;2026-09-01&quot;:5.05},{&quot;2026-09-02&quot;:5.32},{&quot;2026-09-03&quot;:5.34},{&quot;2026-09-04&quot;:5.3},{&quot;2026-09-05&quot;:5.12},{&quot;2026-09-06&quot;:5.12},{&quot;2026-09-07&quot;:5.13},{&quot;2026-09-08&quot;:5.13},{&quot;2026-09-09&quot;:5.13},{&quot;2026-09-10&quot;:5.13},{&quot;2026-09-11&quot;:5.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78030"
  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-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">
            Moment&#39;s Peace
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Moment&#39;s Peace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/5/05087bc1-ac45-4405-9074-8272a321ab86.jpg?1783910273" />

        <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">
            Moment&#39;s Peace
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Moment&#39;s Peace" src="https://cards.scryfall.io/large/front/0/5/05087bc1-ac45-4405-9074-8272a321ab86.jpg?1783910273" />
    </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.65
              </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">$5.20</span>
              <span class="text-xs text-grey-text">Credit: $6.76</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.94},{&quot;2026-06-13&quot;:2.92},{&quot;2026-06-14&quot;:2.9},{&quot;2026-06-15&quot;:2.92},{&quot;2026-06-16&quot;:2.84},{&quot;2026-06-17&quot;:2.88},{&quot;2026-06-18&quot;:2.88},{&quot;2026-06-19&quot;:3.06},{&quot;2026-06-20&quot;:3.06},{&quot;2026-06-21&quot;:3.0},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-23&quot;:3.06},{&quot;2026-06-24&quot;:3.06},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.1},{&quot;2026-06-29&quot;:3.1},{&quot;2026-06-30&quot;:3.1},{&quot;2026-07-01&quot;:3.1},{&quot;2026-07-02&quot;:3.17},{&quot;2026-07-03&quot;:3.17},{&quot;2026-07-04&quot;:3.23},{&quot;2026-07-05&quot;:3.23},{&quot;2026-07-06&quot;:3.22},{&quot;2026-07-07&quot;:3.22},{&quot;2026-07-08&quot;:3.22},{&quot;2026-07-09&quot;:3.05},{&quot;2026-07-10&quot;:3.05},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.06},{&quot;2026-07-13&quot;:3.09},{&quot;2026-07-14&quot;:3.13},{&quot;2026-07-15&quot;:3.15},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.14},{&quot;2026-07-18&quot;:3.16},{&quot;2026-07-19&quot;:3.16},{&quot;2026-07-20&quot;:3.16},{&quot;2026-07-21&quot;:3.15},{&quot;2026-07-23&quot;:3.22},{&quot;2026-07-24&quot;:3.22},{&quot;2026-07-25&quot;:3.22},{&quot;2026-07-26&quot;:3.22},{&quot;2026-07-27&quot;:3.21},{&quot;2026-07-28&quot;:3.21},{&quot;2026-07-29&quot;:3.17},{&quot;2026-07-30&quot;:3.19},{&quot;2026-07-31&quot;:3.16},{&quot;2026-08-01&quot;:3.16},{&quot;2026-08-02&quot;:3.16},{&quot;2026-08-03&quot;:3.16},{&quot;2026-08-04&quot;:3.15},{&quot;2026-08-05&quot;:3.17},{&quot;2026-08-07&quot;:3.12},{&quot;2026-08-08&quot;:3.14},{&quot;2026-08-09&quot;:3.13},{&quot;2026-08-10&quot;:3.14},{&quot;2026-08-11&quot;:3.11},{&quot;2026-08-12&quot;:3.13},{&quot;2026-08-13&quot;:3.12},{&quot;2026-08-14&quot;:3.24},{&quot;2026-08-15&quot;:3.26},{&quot;2026-08-16&quot;:3.26},{&quot;2026-08-17&quot;:3.27},{&quot;2026-08-18&quot;:3.34},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.49},{&quot;2026-08-22&quot;:3.82},{&quot;2026-08-23&quot;:3.82},{&quot;2026-08-24&quot;:4.03},{&quot;2026-08-25&quot;:4.07},{&quot;2026-08-26&quot;:4.32},{&quot;2026-08-27&quot;:4.33},{&quot;2026-08-28&quot;:4.37},{&quot;2026-08-29&quot;:4.37},{&quot;2026-08-30&quot;:4.42},{&quot;2026-08-31&quot;:4.48},{&quot;2026-09-01&quot;:4.59},{&quot;2026-09-02&quot;:4.59},{&quot;2026-09-03&quot;:4.67},{&quot;2026-09-04&quot;:4.67},{&quot;2026-09-05&quot;:4.8},{&quot;2026-09-06&quot;:4.8},{&quot;2026-09-07&quot;:4.6},{&quot;2026-09-08&quot;:4.6},{&quot;2026-09-09&quot;:4.6},{&quot;2026-09-10&quot;:4.56},{&quot;2026-09-11&quot;:4.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="74475"
  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-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">
            Nature&#39;s Lore
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/1/b1ce11c3-61bc-4391-b316-945661cfeaa9.jpg?1783932399" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/b/1/b1ce11c3-61bc-4391-b316-945661cfeaa9.jpg?1783932399" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.44
              </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-10&quot;:4.15},{&quot;2026-06-11&quot;:4.15},{&quot;2026-06-12&quot;:4.15},{&quot;2026-06-13&quot;:4.22},{&quot;2026-06-14&quot;:4.22},{&quot;2026-06-15&quot;:4.28},{&quot;2026-06-16&quot;:4.28},{&quot;2026-06-17&quot;:4.22},{&quot;2026-06-18&quot;:4.22},{&quot;2026-06-19&quot;:4.29},{&quot;2026-06-20&quot;:4.29},{&quot;2026-06-21&quot;:4.34},{&quot;2026-06-22&quot;:4.34},{&quot;2026-06-23&quot;:4.34},{&quot;2026-06-24&quot;:4.34},{&quot;2026-06-25&quot;:4.43},{&quot;2026-06-26&quot;:4.5},{&quot;2026-06-27&quot;:4.5},{&quot;2026-06-28&quot;:4.5},{&quot;2026-06-29&quot;:4.5},{&quot;2026-06-30&quot;:4.5},{&quot;2026-07-01&quot;:4.5},{&quot;2026-07-02&quot;:4.5},{&quot;2026-07-03&quot;:4.5},{&quot;2026-07-04&quot;:4.43},{&quot;2026-07-05&quot;:4.43},{&quot;2026-07-06&quot;:4.43},{&quot;2026-07-07&quot;:4.43},{&quot;2026-07-08&quot;:4.4},{&quot;2026-07-09&quot;:4.4},{&quot;2026-07-10&quot;:4.4},{&quot;2026-07-11&quot;:4.4},{&quot;2026-07-12&quot;:4.4},{&quot;2026-07-13&quot;:4.42},{&quot;2026-07-14&quot;:4.43},{&quot;2026-07-15&quot;:4.41},{&quot;2026-07-16&quot;:4.41},{&quot;2026-07-17&quot;:4.41},{&quot;2026-07-18&quot;:4.35},{&quot;2026-07-19&quot;:4.35},{&quot;2026-07-20&quot;:4.35},{&quot;2026-07-21&quot;:4.35},{&quot;2026-07-23&quot;:4.35},{&quot;2026-07-25&quot;:4.39},{&quot;2026-07-26&quot;:4.39},{&quot;2026-07-27&quot;:4.39},{&quot;2026-07-29&quot;:4.35},{&quot;2026-07-30&quot;:4.35},{&quot;2026-07-31&quot;:4.35},{&quot;2026-08-01&quot;:4.35},{&quot;2026-08-02&quot;:4.35},{&quot;2026-08-03&quot;:4.35},{&quot;2026-08-04&quot;:4.33},{&quot;2026-08-05&quot;:4.33},{&quot;2026-08-07&quot;:4.33},{&quot;2026-08-08&quot;:4.33},{&quot;2026-08-09&quot;:4.33},{&quot;2026-08-10&quot;:4.33},{&quot;2026-08-11&quot;:4.33},{&quot;2026-08-12&quot;:4.33},{&quot;2026-08-13&quot;:4.33},{&quot;2026-08-14&quot;:4.31},{&quot;2026-08-15&quot;:4.34},{&quot;2026-08-16&quot;:4.34},{&quot;2026-08-17&quot;:4.33},{&quot;2026-08-18&quot;:4.28},{&quot;2026-08-19&quot;:4.28},{&quot;2026-08-20&quot;:4.28},{&quot;2026-08-21&quot;:4.28},{&quot;2026-08-22&quot;:4.35},{&quot;2026-08-23&quot;:4.35},{&quot;2026-08-24&quot;:4.35},{&quot;2026-08-25&quot;:4.35},{&quot;2026-08-26&quot;:4.42},{&quot;2026-08-27&quot;:4.42},{&quot;2026-08-28&quot;:4.42},{&quot;2026-08-29&quot;:4.42},{&quot;2026-08-30&quot;:4.42},{&quot;2026-08-31&quot;:4.42},{&quot;2026-09-01&quot;:4.42},{&quot;2026-09-02&quot;:4.42},{&quot;2026-09-03&quot;:4.42},{&quot;2026-09-04&quot;:4.42},{&quot;2026-09-05&quot;:4.42},{&quot;2026-09-06&quot;:4.42},{&quot;2026-09-07&quot;:4.42},{&quot;2026-09-08&quot;:4.42},{&quot;2026-09-09&quot;:4.42},{&quot;2026-09-10&quot;:4.44},{&quot;2026-09-11&quot;:4.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="53174"
  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-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">
            Hydroblast
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Hydroblast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/e/2ea09917-b3e6-4f5b-a69e-43d6c86b36fd.jpg?1783910570" />

        <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">
            Hydroblast
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Hydroblast" src="https://cards.scryfall.io/large/front/2/e/2ea09917-b3e6-4f5b-a69e-43d6c86b36fd.jpg?1783910570" />
    </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.19
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $35.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">$4.80</span>
              <span class="text-xs text-grey-text">Credit: $6.24</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;:35.64},{&quot;2026-06-14&quot;:35.64},{&quot;2026-06-15&quot;:35.64},{&quot;2026-06-16&quot;:35.64},{&quot;2026-06-17&quot;:35.64},{&quot;2026-06-18&quot;:35.64},{&quot;2026-06-19&quot;:35.64},{&quot;2026-06-20&quot;:35.64},{&quot;2026-06-21&quot;:35.64},{&quot;2026-06-22&quot;:35.64},{&quot;2026-06-23&quot;:35.64},{&quot;2026-06-24&quot;:35.64},{&quot;2026-06-25&quot;:35.64},{&quot;2026-06-26&quot;:35.64},{&quot;2026-06-27&quot;:35.64},{&quot;2026-06-28&quot;:35.64},{&quot;2026-06-29&quot;:35.64},{&quot;2026-06-30&quot;:35.67},{&quot;2026-07-01&quot;:35.67},{&quot;2026-07-02&quot;:35.67},{&quot;2026-07-03&quot;:35.67},{&quot;2026-07-04&quot;:35.67},{&quot;2026-07-05&quot;:35.6},{&quot;2026-07-06&quot;:35.6},{&quot;2026-07-07&quot;:35.6},{&quot;2026-07-08&quot;:35.6},{&quot;2026-07-09&quot;:35.6},{&quot;2026-07-10&quot;:35.6},{&quot;2026-07-11&quot;:35.59},{&quot;2026-07-12&quot;:35.59},{&quot;2026-07-13&quot;:35.59},{&quot;2026-07-14&quot;:35.59},{&quot;2026-07-15&quot;:35.59},{&quot;2026-07-16&quot;:35.53},{&quot;2026-07-17&quot;:35.53},{&quot;2026-07-18&quot;:35.53},{&quot;2026-07-19&quot;:35.47},{&quot;2026-07-20&quot;:35.47},{&quot;2026-07-21&quot;:35.47},{&quot;2026-07-22&quot;:35.47},{&quot;2026-07-23&quot;:35.52},{&quot;2026-07-24&quot;:35.47},{&quot;2026-07-25&quot;:35.47},{&quot;2026-07-26&quot;:35.47},{&quot;2026-07-27&quot;:35.47},{&quot;2026-07-28&quot;:35.47},{&quot;2026-07-29&quot;:35.47},{&quot;2026-07-30&quot;:35.47},{&quot;2026-07-31&quot;:35.47},{&quot;2026-08-01&quot;:35.47},{&quot;2026-08-02&quot;:35.47},{&quot;2026-08-03&quot;:35.47},{&quot;2026-08-04&quot;:35.47},{&quot;2026-08-05&quot;:35.47},{&quot;2026-08-07&quot;:35.55},{&quot;2026-08-08&quot;:35.55},{&quot;2026-08-09&quot;:35.55},{&quot;2026-08-10&quot;:35.55},{&quot;2026-08-11&quot;:35.64},{&quot;2026-08-12&quot;:35.64},{&quot;2026-08-13&quot;:35.64},{&quot;2026-08-14&quot;:35.64},{&quot;2026-08-15&quot;:35.64},{&quot;2026-08-16&quot;:35.64},{&quot;2026-08-17&quot;:35.55},{&quot;2026-08-18&quot;:35.55},{&quot;2026-08-19&quot;:35.55},{&quot;2026-08-20&quot;:35.55},{&quot;2026-08-21&quot;:35.69},{&quot;2026-08-22&quot;:35.64},{&quot;2026-08-23&quot;:35.64},{&quot;2026-08-24&quot;:35.64},{&quot;2026-08-25&quot;:35.64},{&quot;2026-08-26&quot;:35.64},{&quot;2026-08-27&quot;:35.64},{&quot;2026-08-28&quot;:35.64},{&quot;2026-08-29&quot;:35.64},{&quot;2026-08-30&quot;:35.64},{&quot;2026-08-31&quot;:35.64},{&quot;2026-09-01&quot;:35.64},{&quot;2026-09-02&quot;:35.64},{&quot;2026-09-03&quot;:35.64},{&quot;2026-09-04&quot;:35.64},{&quot;2026-09-05&quot;:35.64},{&quot;2026-09-06&quot;:35.64},{&quot;2026-09-07&quot;:35.64},{&quot;2026-09-08&quot;:35.64},{&quot;2026-09-09&quot;:35.64},{&quot;2026-09-10&quot;:35.64},{&quot;2026-09-11&quot;:35.64}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.8},{&quot;2026-06-14&quot;:3.81},{&quot;2026-06-15&quot;:3.55},{&quot;2026-06-16&quot;:3.55},{&quot;2026-06-17&quot;:3.59},{&quot;2026-06-18&quot;:3.6},{&quot;2026-06-19&quot;:3.71},{&quot;2026-06-20&quot;:3.87},{&quot;2026-06-21&quot;:3.87},{&quot;2026-06-22&quot;:3.83},{&quot;2026-06-23&quot;:3.83},{&quot;2026-06-24&quot;:3.87},{&quot;2026-06-25&quot;:4.19},{&quot;2026-06-26&quot;:4.22},{&quot;2026-06-27&quot;:4.1},{&quot;2026-06-28&quot;:4.1},{&quot;2026-06-29&quot;:3.96},{&quot;2026-06-30&quot;:4.0},{&quot;2026-07-01&quot;:4.02},{&quot;2026-07-02&quot;:4.02},{&quot;2026-07-03&quot;:4.0},{&quot;2026-07-04&quot;:3.88},{&quot;2026-07-05&quot;:3.88},{&quot;2026-07-06&quot;:3.88},{&quot;2026-07-07&quot;:3.88},{&quot;2026-07-08&quot;:3.74},{&quot;2026-07-09&quot;:3.74},{&quot;2026-07-10&quot;:3.74},{&quot;2026-07-11&quot;:3.78},{&quot;2026-07-12&quot;:3.86},{&quot;2026-07-13&quot;:3.93},{&quot;2026-07-14&quot;:4.08},{&quot;2026-07-15&quot;:4.08},{&quot;2026-07-16&quot;:4.15},{&quot;2026-07-17&quot;:4.21},{&quot;2026-07-18&quot;:4.56},{&quot;2026-07-19&quot;:4.56},{&quot;2026-07-20&quot;:4.86},{&quot;2026-07-21&quot;:4.9},{&quot;2026-07-22&quot;:4.9},{&quot;2026-07-23&quot;:4.9},{&quot;2026-07-24&quot;:4.95},{&quot;2026-07-25&quot;:4.82},{&quot;2026-07-26&quot;:4.95},{&quot;2026-07-27&quot;:4.99},{&quot;2026-07-28&quot;:4.99},{&quot;2026-07-29&quot;:5.11},{&quot;2026-07-30&quot;:5.08},{&quot;2026-07-31&quot;:5.04},{&quot;2026-08-01&quot;:5.04},{&quot;2026-08-02&quot;:5.23},{&quot;2026-08-03&quot;:5.23},{&quot;2026-08-04&quot;:5.17},{&quot;2026-08-05&quot;:5.2},{&quot;2026-08-07&quot;:5.05},{&quot;2026-08-08&quot;:5.03},{&quot;2026-08-09&quot;:4.94},{&quot;2026-08-10&quot;:4.92},{&quot;2026-08-11&quot;:4.92},{&quot;2026-08-12&quot;:4.87},{&quot;2026-08-13&quot;:4.82},{&quot;2026-08-14&quot;:4.82},{&quot;2026-08-15&quot;:4.74},{&quot;2026-08-16&quot;:4.67},{&quot;2026-08-17&quot;:4.62},{&quot;2026-08-18&quot;:4.62},{&quot;2026-08-19&quot;:4.6},{&quot;2026-08-20&quot;:4.6},{&quot;2026-08-21&quot;:4.58},{&quot;2026-08-22&quot;:4.58},{&quot;2026-08-23&quot;:4.58},{&quot;2026-08-24&quot;:4.67},{&quot;2026-08-25&quot;:4.74},{&quot;2026-08-26&quot;:4.73},{&quot;2026-08-27&quot;:4.73},{&quot;2026-08-28&quot;:4.66},{&quot;2026-08-29&quot;:4.66},{&quot;2026-08-30&quot;:4.5},{&quot;2026-08-31&quot;:4.37},{&quot;2026-09-01&quot;:3.95},{&quot;2026-09-02&quot;:3.9},{&quot;2026-09-03&quot;:3.85},{&quot;2026-09-04&quot;:3.85},{&quot;2026-09-05&quot;:3.71},{&quot;2026-09-06&quot;:3.69},{&quot;2026-09-07&quot;:3.73},{&quot;2026-09-08&quot;:3.83},{&quot;2026-09-09&quot;:3.81},{&quot;2026-09-10&quot;:3.81},{&quot;2026-09-11&quot;:4.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="85429"
  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-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">
            Decanter of Endless Water
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Decanter of Endless Water" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/8/e8be8435-8fb4-47d2-8e7c-0350f354ddbd.jpg?1783910001" />

        <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">
            Decanter of Endless Water
        </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-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="Decanter of Endless Water" src="https://cards.scryfall.io/large/front/e/8/e8be8435-8fb4-47d2-8e7c-0350f354ddbd.jpg?1783910001" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.97
              </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">$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;:3.85},{&quot;2026-06-14&quot;:3.85},{&quot;2026-06-15&quot;:3.75},{&quot;2026-06-16&quot;:3.71},{&quot;2026-06-17&quot;:3.7},{&quot;2026-06-18&quot;:3.69},{&quot;2026-06-19&quot;:3.7},{&quot;2026-06-20&quot;:3.65},{&quot;2026-06-21&quot;:3.64},{&quot;2026-06-22&quot;:3.64},{&quot;2026-06-23&quot;:3.67},{&quot;2026-06-24&quot;:3.62},{&quot;2026-06-25&quot;:3.56},{&quot;2026-06-26&quot;:3.53},{&quot;2026-06-27&quot;:3.61},{&quot;2026-06-28&quot;:3.63},{&quot;2026-06-29&quot;:3.68},{&quot;2026-06-30&quot;:3.65},{&quot;2026-07-01&quot;:3.65},{&quot;2026-07-02&quot;:3.62},{&quot;2026-07-03&quot;:3.56},{&quot;2026-07-04&quot;:3.67},{&quot;2026-07-05&quot;:3.8},{&quot;2026-07-06&quot;:3.8},{&quot;2026-07-07&quot;:3.8},{&quot;2026-07-08&quot;:3.76},{&quot;2026-07-09&quot;:3.76},{&quot;2026-07-10&quot;:3.77},{&quot;2026-07-11&quot;:3.78},{&quot;2026-07-12&quot;:3.8},{&quot;2026-07-13&quot;:3.77},{&quot;2026-07-14&quot;:3.77},{&quot;2026-07-15&quot;:3.77},{&quot;2026-07-16&quot;:3.83},{&quot;2026-07-17&quot;:3.85},{&quot;2026-07-18&quot;:3.75},{&quot;2026-07-19&quot;:3.65},{&quot;2026-07-20&quot;:3.68},{&quot;2026-07-21&quot;:3.71},{&quot;2026-07-22&quot;:3.74},{&quot;2026-07-23&quot;:3.8},{&quot;2026-07-24&quot;:3.8},{&quot;2026-07-25&quot;:3.77},{&quot;2026-07-26&quot;:3.78},{&quot;2026-07-27&quot;:4.1},{&quot;2026-07-28&quot;:4.23},{&quot;2026-07-29&quot;:4.37},{&quot;2026-07-30&quot;:4.37},{&quot;2026-07-31&quot;:4.38},{&quot;2026-08-01&quot;:4.33},{&quot;2026-08-02&quot;:4.3},{&quot;2026-08-03&quot;:4.25},{&quot;2026-08-04&quot;:4.22},{&quot;2026-08-05&quot;:3.98},{&quot;2026-08-07&quot;:4.12},{&quot;2026-08-08&quot;:4.12},{&quot;2026-08-09&quot;:3.99},{&quot;2026-08-10&quot;:3.67},{&quot;2026-08-11&quot;:3.52},{&quot;2026-08-12&quot;:3.57},{&quot;2026-08-13&quot;:3.55},{&quot;2026-08-14&quot;:3.58},{&quot;2026-08-15&quot;:3.69},{&quot;2026-08-16&quot;:3.65},{&quot;2026-08-17&quot;:3.53},{&quot;2026-08-18&quot;:3.47},{&quot;2026-08-19&quot;:3.38},{&quot;2026-08-20&quot;:3.38},{&quot;2026-08-21&quot;:3.41},{&quot;2026-08-22&quot;:3.44},{&quot;2026-08-23&quot;:3.45},{&quot;2026-08-24&quot;:3.49},{&quot;2026-08-25&quot;:3.5},{&quot;2026-08-26&quot;:3.5},{&quot;2026-08-27&quot;:3.56},{&quot;2026-08-28&quot;:3.55},{&quot;2026-08-29&quot;:3.55},{&quot;2026-08-30&quot;:3.96},{&quot;2026-08-31&quot;:3.94},{&quot;2026-09-01&quot;:3.96},{&quot;2026-09-02&quot;:3.96},{&quot;2026-09-03&quot;:3.96},{&quot;2026-09-04&quot;:3.96},{&quot;2026-09-05&quot;:3.95},{&quot;2026-09-06&quot;:3.96},{&quot;2026-09-07&quot;:3.99},{&quot;2026-09-08&quot;:3.99},{&quot;2026-09-09&quot;:3.99},{&quot;2026-09-10&quot;:3.92},{&quot;2026-09-11&quot;:3.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="77681"
  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-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">
            Tortured Existence
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Tortured Existence
        </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">Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tortured Existence" src="https://cards.scryfall.io/large/front/1/e/1efe6c2f-eb19-4a34-925a-3b90d2dbe680.jpg?1783929701" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.7},{&quot;2026-06-13&quot;:3.81},{&quot;2026-06-14&quot;:3.88},{&quot;2026-06-15&quot;:3.92},{&quot;2026-06-16&quot;:4.02},{&quot;2026-06-17&quot;:4.23},{&quot;2026-06-18&quot;:4.67},{&quot;2026-06-19&quot;:4.81},{&quot;2026-06-20&quot;:4.86},{&quot;2026-06-21&quot;:5.06},{&quot;2026-06-22&quot;:5.19},{&quot;2026-06-23&quot;:5.38},{&quot;2026-06-24&quot;:5.36},{&quot;2026-06-25&quot;:5.42},{&quot;2026-06-26&quot;:5.31},{&quot;2026-06-27&quot;:5.58},{&quot;2026-06-28&quot;:5.64},{&quot;2026-06-29&quot;:5.77},{&quot;2026-06-30&quot;:5.61},{&quot;2026-07-01&quot;:5.65},{&quot;2026-07-02&quot;:5.62},{&quot;2026-07-03&quot;:5.48},{&quot;2026-07-04&quot;:5.65},{&quot;2026-07-05&quot;:5.7},{&quot;2026-07-06&quot;:5.55},{&quot;2026-07-07&quot;:5.49},{&quot;2026-07-08&quot;:5.81},{&quot;2026-07-09&quot;:5.98},{&quot;2026-07-10&quot;:5.98},{&quot;2026-07-11&quot;:5.72},{&quot;2026-07-12&quot;:5.92},{&quot;2026-07-13&quot;:5.96},{&quot;2026-07-14&quot;:6.0},{&quot;2026-07-15&quot;:6.0},{&quot;2026-07-16&quot;:6.19},{&quot;2026-07-17&quot;:6.03},{&quot;2026-07-18&quot;:5.85},{&quot;2026-07-19&quot;:5.99},{&quot;2026-07-20&quot;:6.03},{&quot;2026-07-21&quot;:6.05},{&quot;2026-07-23&quot;:5.67},{&quot;2026-07-24&quot;:5.52},{&quot;2026-07-25&quot;:5.62},{&quot;2026-07-26&quot;:5.62},{&quot;2026-07-27&quot;:5.52},{&quot;2026-07-28&quot;:5.36},{&quot;2026-07-29&quot;:5.1},{&quot;2026-07-30&quot;:4.77},{&quot;2026-07-31&quot;:4.14},{&quot;2026-08-01&quot;:4.1},{&quot;2026-08-02&quot;:4.18},{&quot;2026-08-03&quot;:4.03},{&quot;2026-08-04&quot;:3.98},{&quot;2026-08-05&quot;:4.0},{&quot;2026-08-07&quot;:3.89},{&quot;2026-08-08&quot;:3.83},{&quot;2026-08-09&quot;:3.97},{&quot;2026-08-10&quot;:3.95},{&quot;2026-08-11&quot;:3.84},{&quot;2026-08-12&quot;:3.9},{&quot;2026-08-13&quot;:3.93},{&quot;2026-08-14&quot;:3.77},{&quot;2026-08-15&quot;:3.63},{&quot;2026-08-16&quot;:3.47},{&quot;2026-08-17&quot;:3.37},{&quot;2026-08-18&quot;:3.37},{&quot;2026-08-19&quot;:3.41},{&quot;2026-08-20&quot;:3.41},{&quot;2026-08-21&quot;:3.32},{&quot;2026-08-22&quot;:3.3},{&quot;2026-08-23&quot;:3.35},{&quot;2026-08-24&quot;:3.4},{&quot;2026-08-25&quot;:3.48},{&quot;2026-08-26&quot;:3.41},{&quot;2026-08-27&quot;:3.48},{&quot;2026-08-28&quot;:3.48},{&quot;2026-08-29&quot;:3.48},{&quot;2026-08-30&quot;:3.62},{&quot;2026-08-31&quot;:3.68},{&quot;2026-09-01&quot;:3.68},{&quot;2026-09-02&quot;:3.78},{&quot;2026-09-03&quot;:3.83},{&quot;2026-09-04&quot;:3.83},{&quot;2026-09-05&quot;:3.8},{&quot;2026-09-06&quot;:3.76},{&quot;2026-09-07&quot;:3.6},{&quot;2026-09-08&quot;:3.86},{&quot;2026-09-09&quot;:3.7},{&quot;2026-09-10&quot;:3.76},{&quot;2026-09-11&quot;:3.93}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="52974"
  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-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">
            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">
              ↑
              11%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Thought Vessel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/4/e4738cc0-e13b-4b8e-848d-620319c5cf37.jpg?1783910589" />

        <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">
            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="Thought Vessel" src="https://cards.scryfall.io/large/front/e/4/e4738cc0-e13b-4b8e-848d-620319c5cf37.jpg?1783910589" />
    </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.73
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  11%
                </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-10&quot;:2.34},{&quot;2026-06-11&quot;:2.42},{&quot;2026-06-12&quot;:2.36},{&quot;2026-06-13&quot;:2.42},{&quot;2026-06-14&quot;:2.43},{&quot;2026-06-15&quot;:2.54},{&quot;2026-06-16&quot;:2.59},{&quot;2026-06-17&quot;:2.63},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.61},{&quot;2026-06-20&quot;:2.59},{&quot;2026-06-21&quot;:2.59},{&quot;2026-06-22&quot;:2.64},{&quot;2026-06-23&quot;:2.68},{&quot;2026-06-24&quot;:2.64},{&quot;2026-06-25&quot;:2.64},{&quot;2026-06-26&quot;:2.64},{&quot;2026-06-27&quot;:2.65},{&quot;2026-06-28&quot;:2.67},{&quot;2026-06-29&quot;:2.67},{&quot;2026-06-30&quot;:2.67},{&quot;2026-07-01&quot;:2.67},{&quot;2026-07-02&quot;:2.67},{&quot;2026-07-03&quot;:2.67},{&quot;2026-07-04&quot;:2.67},{&quot;2026-07-05&quot;:2.7},{&quot;2026-07-06&quot;:2.7},{&quot;2026-07-07&quot;:2.68},{&quot;2026-07-08&quot;:2.71},{&quot;2026-07-09&quot;:2.67},{&quot;2026-07-10&quot;:2.67},{&quot;2026-07-11&quot;:2.54},{&quot;2026-07-12&quot;:2.57},{&quot;2026-07-13&quot;:2.56},{&quot;2026-07-14&quot;:2.56},{&quot;2026-07-15&quot;:2.56},{&quot;2026-07-16&quot;:2.56},{&quot;2026-07-17&quot;:2.56},{&quot;2026-07-18&quot;:2.55},{&quot;2026-07-19&quot;:2.55},{&quot;2026-07-20&quot;:2.55},{&quot;2026-07-21&quot;:2.61},{&quot;2026-07-23&quot;:2.7},{&quot;2026-07-25&quot;:2.65},{&quot;2026-07-26&quot;:2.82},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-29&quot;:2.87},{&quot;2026-07-30&quot;:2.83},{&quot;2026-07-31&quot;:2.78},{&quot;2026-08-01&quot;:2.82},{&quot;2026-08-02&quot;:2.79},{&quot;2026-08-03&quot;:2.79},{&quot;2026-08-04&quot;:2.75},{&quot;2026-08-05&quot;:2.7},{&quot;2026-08-07&quot;:2.7},{&quot;2026-08-08&quot;:2.75},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.75},{&quot;2026-08-11&quot;:2.74},{&quot;2026-08-12&quot;:2.74},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.74},{&quot;2026-08-15&quot;:2.58},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.54},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.41},{&quot;2026-08-20&quot;:2.41},{&quot;2026-08-21&quot;:2.32},{&quot;2026-08-22&quot;:2.32},{&quot;2026-08-23&quot;:2.32},{&quot;2026-08-24&quot;:2.32},{&quot;2026-08-25&quot;:2.32},{&quot;2026-08-26&quot;:2.34},{&quot;2026-08-27&quot;:2.33},{&quot;2026-08-28&quot;:2.43},{&quot;2026-08-29&quot;:2.43},{&quot;2026-08-30&quot;:2.41},{&quot;2026-08-31&quot;:2.44},{&quot;2026-09-01&quot;:2.44},{&quot;2026-09-02&quot;:2.46},{&quot;2026-09-03&quot;:2.46},{&quot;2026-09-04&quot;:2.44},{&quot;2026-09-05&quot;:2.45},{&quot;2026-09-06&quot;:2.5},{&quot;2026-09-07&quot;:2.55},{&quot;2026-09-08&quot;:2.56},{&quot;2026-09-09&quot;:2.59},{&quot;2026-09-10&quot;:2.55},{&quot;2026-09-11&quot;:2.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="84095"
  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-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">
            Fyndhorn Elves
        </span>


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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">
            $2.72
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Fyndhorn Elves" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/53c31b33-d947-4776-8953-da5bc84ca5ca.jpg?1783910045" />

        <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">
            Fyndhorn Elves
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fyndhorn Elves" src="https://cards.scryfall.io/large/front/5/3/53c31b33-d947-4776-8953-da5bc84ca5ca.jpg?1783910045" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.13},{&quot;2026-06-10&quot;:2.28},{&quot;2026-06-11&quot;:2.28},{&quot;2026-06-12&quot;:2.29},{&quot;2026-06-13&quot;:2.29},{&quot;2026-06-14&quot;:2.29},{&quot;2026-06-15&quot;:2.31},{&quot;2026-06-16&quot;:2.27},{&quot;2026-06-17&quot;:2.28},{&quot;2026-06-18&quot;:2.32},{&quot;2026-06-19&quot;:2.35},{&quot;2026-06-20&quot;:2.35},{&quot;2026-06-21&quot;:2.36},{&quot;2026-06-22&quot;:2.33},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.36},{&quot;2026-06-26&quot;:2.33},{&quot;2026-06-27&quot;:2.27},{&quot;2026-06-28&quot;:2.26},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.26},{&quot;2026-07-01&quot;:2.22},{&quot;2026-07-02&quot;:2.22},{&quot;2026-07-03&quot;:2.15},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.14},{&quot;2026-07-06&quot;:2.14},{&quot;2026-07-07&quot;:2.14},{&quot;2026-07-08&quot;:2.14},{&quot;2026-07-09&quot;:2.09},{&quot;2026-07-10&quot;:2.09},{&quot;2026-07-11&quot;:2.01},{&quot;2026-07-12&quot;:1.98},{&quot;2026-07-13&quot;:2.0},{&quot;2026-07-14&quot;:2.0},{&quot;2026-07-15&quot;:2.01},{&quot;2026-07-16&quot;:2.01},{&quot;2026-07-17&quot;:2.01},{&quot;2026-07-18&quot;:2.07},{&quot;2026-07-19&quot;:2.11},{&quot;2026-07-20&quot;:2.17},{&quot;2026-07-21&quot;:2.17},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-25&quot;:2.32},{&quot;2026-07-26&quot;:2.37},{&quot;2026-07-27&quot;:2.37},{&quot;2026-07-29&quot;:2.24},{&quot;2026-07-30&quot;:2.24},{&quot;2026-07-31&quot;:2.1},{&quot;2026-08-01&quot;:2.02},{&quot;2026-08-02&quot;:1.95},{&quot;2026-08-03&quot;:2.01},{&quot;2026-08-04&quot;:1.89},{&quot;2026-08-05&quot;:1.77},{&quot;2026-08-07&quot;:1.77},{&quot;2026-08-08&quot;:1.74},{&quot;2026-08-09&quot;:1.69},{&quot;2026-08-10&quot;:1.69},{&quot;2026-08-11&quot;:1.61},{&quot;2026-08-12&quot;:1.66},{&quot;2026-08-13&quot;:1.78},{&quot;2026-08-14&quot;:1.67},{&quot;2026-08-15&quot;:1.65},{&quot;2026-08-16&quot;:1.82},{&quot;2026-08-17&quot;:1.85},{&quot;2026-08-18&quot;:1.92},{&quot;2026-08-19&quot;:1.96},{&quot;2026-08-20&quot;:1.96},{&quot;2026-08-21&quot;:2.09},{&quot;2026-08-22&quot;:2.09},{&quot;2026-08-23&quot;:2.16},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.13},{&quot;2026-08-26&quot;:2.14},{&quot;2026-08-27&quot;:2.14},{&quot;2026-08-28&quot;:2.14},{&quot;2026-08-29&quot;:2.14},{&quot;2026-08-30&quot;:2.28},{&quot;2026-08-31&quot;:2.44},{&quot;2026-09-01&quot;:2.44},{&quot;2026-09-02&quot;:2.49},{&quot;2026-09-03&quot;:2.44},{&quot;2026-09-04&quot;:2.42},{&quot;2026-09-05&quot;:2.67},{&quot;2026-09-06&quot;:2.67},{&quot;2026-09-07&quot;:2.69},{&quot;2026-09-08&quot;:2.69},{&quot;2026-09-09&quot;:2.66},{&quot;2026-09-10&quot;:2.66},{&quot;2026-09-11&quot;:2.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="84958"
  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-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">
            Thoughtcast
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.63
          </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="Thoughtcast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/0/a0d98f40-39bd-4f3a-9867-d273c1a299e7.jpg?1783931914" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thoughtcast" src="https://cards.scryfall.io/large/front/a/0/a0d98f40-39bd-4f3a-9867-d273c1a299e7.jpg?1783931914" />
    </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.63
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.98},{&quot;2026-06-13&quot;:1.97},{&quot;2026-06-14&quot;:1.97},{&quot;2026-06-15&quot;:2.0},{&quot;2026-06-16&quot;:2.0},{&quot;2026-06-17&quot;:2.0},{&quot;2026-06-18&quot;:2.01},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:2.01},{&quot;2026-06-21&quot;:2.01},{&quot;2026-06-22&quot;:2.01},{&quot;2026-06-23&quot;:2.01},{&quot;2026-06-24&quot;:2.01},{&quot;2026-06-25&quot;:1.98},{&quot;2026-06-26&quot;:1.98},{&quot;2026-06-27&quot;:1.98},{&quot;2026-06-28&quot;:1.98},{&quot;2026-06-29&quot;:1.96},{&quot;2026-06-30&quot;:1.98},{&quot;2026-07-01&quot;:1.96},{&quot;2026-07-02&quot;:1.96},{&quot;2026-07-03&quot;:1.9},{&quot;2026-07-04&quot;:1.9},{&quot;2026-07-05&quot;:1.9},{&quot;2026-07-06&quot;:1.9},{&quot;2026-07-07&quot;:1.9},{&quot;2026-07-08&quot;:1.9},{&quot;2026-07-09&quot;:1.9},{&quot;2026-07-10&quot;:1.9},{&quot;2026-07-11&quot;:1.9},{&quot;2026-07-12&quot;:1.9},{&quot;2026-07-13&quot;:1.9},{&quot;2026-07-14&quot;:1.9},{&quot;2026-07-15&quot;:1.9},{&quot;2026-07-16&quot;:1.9},{&quot;2026-07-17&quot;:1.84},{&quot;2026-07-18&quot;:1.83},{&quot;2026-07-19&quot;:1.83},{&quot;2026-07-20&quot;:1.81},{&quot;2026-07-21&quot;:1.8},{&quot;2026-07-23&quot;:1.82},{&quot;2026-07-24&quot;:1.82},{&quot;2026-07-25&quot;:1.89},{&quot;2026-07-26&quot;:1.89},{&quot;2026-07-27&quot;:1.92},{&quot;2026-07-28&quot;:1.92},{&quot;2026-07-29&quot;:1.92},{&quot;2026-07-30&quot;:1.92},{&quot;2026-07-31&quot;:1.94},{&quot;2026-08-01&quot;:1.94},{&quot;2026-08-02&quot;:1.93},{&quot;2026-08-03&quot;:1.93},{&quot;2026-08-04&quot;:1.93},{&quot;2026-08-05&quot;:1.91},{&quot;2026-08-07&quot;:1.91},{&quot;2026-08-08&quot;:1.91},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.91},{&quot;2026-08-11&quot;:1.91},{&quot;2026-08-12&quot;:1.91},{&quot;2026-08-13&quot;:1.91},{&quot;2026-08-14&quot;:2.19},{&quot;2026-08-15&quot;:2.49},{&quot;2026-08-16&quot;:2.49},{&quot;2026-08-17&quot;:2.49},{&quot;2026-08-18&quot;:2.49},{&quot;2026-08-19&quot;:2.49},{&quot;2026-08-20&quot;:2.49},{&quot;2026-08-21&quot;:2.5},{&quot;2026-08-22&quot;:2.5},{&quot;2026-08-23&quot;:2.5},{&quot;2026-08-24&quot;:2.5},{&quot;2026-08-25&quot;:2.5},{&quot;2026-08-26&quot;:2.5},{&quot;2026-08-27&quot;:2.51},{&quot;2026-08-28&quot;:2.53},{&quot;2026-08-29&quot;:2.53},{&quot;2026-08-30&quot;:2.55},{&quot;2026-08-31&quot;:2.55},{&quot;2026-09-01&quot;:2.55},{&quot;2026-09-02&quot;:2.55},{&quot;2026-09-03&quot;:2.55},{&quot;2026-09-04&quot;:2.55},{&quot;2026-09-05&quot;:2.56},{&quot;2026-09-06&quot;:2.63},{&quot;2026-09-07&quot;:2.63},{&quot;2026-09-08&quot;:2.63},{&quot;2026-09-09&quot;:2.63},{&quot;2026-09-10&quot;:2.63},{&quot;2026-09-11&quot;:2.63}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77796"
  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-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">
            Rite of Consumption
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rite of Consumption" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/7/67cc5d9a-fba5-4a42-a3fa-d41e20b7b8fd.jpg?1783910289" />

        <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">
            Rite of Consumption
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rite of Consumption" src="https://cards.scryfall.io/large/front/6/7/67cc5d9a-fba5-4a42-a3fa-d41e20b7b8fd.jpg?1783910289" />
    </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.58
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.72},{&quot;2026-06-12&quot;:2.72},{&quot;2026-06-13&quot;:2.72},{&quot;2026-06-14&quot;:2.72},{&quot;2026-06-15&quot;:2.71},{&quot;2026-06-16&quot;:2.64},{&quot;2026-06-17&quot;:2.65},{&quot;2026-06-18&quot;:2.65},{&quot;2026-06-19&quot;:2.63},{&quot;2026-06-20&quot;:2.62},{&quot;2026-06-21&quot;:2.62},{&quot;2026-06-22&quot;:2.58},{&quot;2026-06-23&quot;:2.55},{&quot;2026-06-24&quot;:2.47},{&quot;2026-06-25&quot;:2.5},{&quot;2026-06-26&quot;:2.5},{&quot;2026-06-27&quot;:2.48},{&quot;2026-06-28&quot;:2.48},{&quot;2026-06-29&quot;:2.48},{&quot;2026-06-30&quot;:2.48},{&quot;2026-07-01&quot;:2.46},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.41},{&quot;2026-07-04&quot;:2.41},{&quot;2026-07-05&quot;:2.41},{&quot;2026-07-06&quot;:2.44},{&quot;2026-07-07&quot;:2.39},{&quot;2026-07-08&quot;:2.39},{&quot;2026-07-09&quot;:2.38},{&quot;2026-07-10&quot;:2.37},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.39},{&quot;2026-07-13&quot;:2.39},{&quot;2026-07-14&quot;:2.35},{&quot;2026-07-15&quot;:2.35},{&quot;2026-07-16&quot;:2.35},{&quot;2026-07-17&quot;:2.35},{&quot;2026-07-18&quot;:2.39},{&quot;2026-07-19&quot;:2.39},{&quot;2026-07-20&quot;:2.39},{&quot;2026-07-21&quot;:2.39},{&quot;2026-07-23&quot;:2.46},{&quot;2026-07-25&quot;:2.45},{&quot;2026-07-26&quot;:2.45},{&quot;2026-07-27&quot;:2.46},{&quot;2026-07-28&quot;:2.47},{&quot;2026-07-29&quot;:2.48},{&quot;2026-07-30&quot;:2.52},{&quot;2026-07-31&quot;:2.59},{&quot;2026-08-01&quot;:2.58},{&quot;2026-08-02&quot;:2.58},{&quot;2026-08-03&quot;:2.58},{&quot;2026-08-04&quot;:2.6},{&quot;2026-08-05&quot;:2.58},{&quot;2026-08-07&quot;:2.57},{&quot;2026-08-08&quot;:2.6},{&quot;2026-08-09&quot;:2.61},{&quot;2026-08-10&quot;:2.61},{&quot;2026-08-11&quot;:2.54},{&quot;2026-08-12&quot;:2.54},{&quot;2026-08-13&quot;:2.53},{&quot;2026-08-14&quot;:2.53},{&quot;2026-08-15&quot;:2.52},{&quot;2026-08-16&quot;:2.51},{&quot;2026-08-17&quot;:2.54},{&quot;2026-08-18&quot;:2.55},{&quot;2026-08-19&quot;:2.54},{&quot;2026-08-20&quot;:2.54},{&quot;2026-08-21&quot;:2.54},{&quot;2026-08-22&quot;:2.54},{&quot;2026-08-23&quot;:2.53},{&quot;2026-08-24&quot;:2.48},{&quot;2026-08-25&quot;:2.48},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.42},{&quot;2026-08-29&quot;:2.42},{&quot;2026-08-30&quot;:2.44},{&quot;2026-08-31&quot;:2.45},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.45},{&quot;2026-09-03&quot;:2.45},{&quot;2026-09-04&quot;:2.45},{&quot;2026-09-05&quot;:2.45},{&quot;2026-09-06&quot;:2.46},{&quot;2026-09-07&quot;:2.46},{&quot;2026-09-08&quot;:2.46},{&quot;2026-09-09&quot;:2.54},{&quot;2026-09-10&quot;:2.57},{&quot;2026-09-11&quot;:2.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53144"
  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-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">
            Brainstorm
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Brainstorm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/8/2890c2ee-e989-43e5-ac4b-683c52bd6527.jpg?1783910572" />

        <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">
            Brainstorm
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Brainstorm" src="https://cards.scryfall.io/large/front/2/8/2890c2ee-e989-43e5-ac4b-683c52bd6527.jpg?1783910572" />
    </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.41
              </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">
                $75.85
              </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-13&quot;:76.18},{&quot;2026-06-14&quot;:76.18},{&quot;2026-06-15&quot;:76.18},{&quot;2026-06-16&quot;:76.18},{&quot;2026-06-17&quot;:76.18},{&quot;2026-06-18&quot;:76.18},{&quot;2026-06-19&quot;:76.18},{&quot;2026-06-20&quot;:76.18},{&quot;2026-06-21&quot;:76.18},{&quot;2026-06-22&quot;:76.18},{&quot;2026-06-23&quot;:76.18},{&quot;2026-06-24&quot;:76.18},{&quot;2026-06-25&quot;:76.18},{&quot;2026-06-26&quot;:76.18},{&quot;2026-06-27&quot;:76.18},{&quot;2026-06-28&quot;:76.18},{&quot;2026-06-29&quot;:76.18},{&quot;2026-06-30&quot;:76.18},{&quot;2026-07-01&quot;:76.18},{&quot;2026-07-02&quot;:76.18},{&quot;2026-07-03&quot;:76.18},{&quot;2026-07-04&quot;:76.02},{&quot;2026-07-05&quot;:76.02},{&quot;2026-07-06&quot;:76.02},{&quot;2026-07-07&quot;:76.02},{&quot;2026-07-08&quot;:75.98},{&quot;2026-07-09&quot;:75.98},{&quot;2026-07-10&quot;:75.98},{&quot;2026-07-11&quot;:75.68},{&quot;2026-07-12&quot;:75.68},{&quot;2026-07-13&quot;:75.68},{&quot;2026-07-14&quot;:75.68},{&quot;2026-07-15&quot;:75.68},{&quot;2026-07-16&quot;:75.44},{&quot;2026-07-17&quot;:75.44},{&quot;2026-07-18&quot;:75.44},{&quot;2026-07-19&quot;:75.44},{&quot;2026-07-20&quot;:75.44},{&quot;2026-07-21&quot;:75.44},{&quot;2026-07-22&quot;:75.44},{&quot;2026-07-23&quot;:75.44},{&quot;2026-07-24&quot;:75.44},{&quot;2026-07-25&quot;:75.44},{&quot;2026-07-26&quot;:75.44},{&quot;2026-07-27&quot;:75.44},{&quot;2026-07-28&quot;:75.44},{&quot;2026-07-29&quot;:75.44},{&quot;2026-07-30&quot;:75.17},{&quot;2026-07-31&quot;:75.17},{&quot;2026-08-01&quot;:75.17},{&quot;2026-08-02&quot;:75.17},{&quot;2026-08-03&quot;:75.17},{&quot;2026-08-04&quot;:75.17},{&quot;2026-08-05&quot;:75.17},{&quot;2026-08-07&quot;:75.85},{&quot;2026-08-08&quot;:75.85},{&quot;2026-08-09&quot;:75.85},{&quot;2026-08-10&quot;:75.85},{&quot;2026-08-11&quot;:75.85},{&quot;2026-08-12&quot;:75.85},{&quot;2026-08-13&quot;:75.85},{&quot;2026-08-14&quot;:75.85},{&quot;2026-08-15&quot;:75.85},{&quot;2026-08-16&quot;:75.85},{&quot;2026-08-17&quot;:75.85},{&quot;2026-08-18&quot;:75.85},{&quot;2026-08-19&quot;:75.85},{&quot;2026-08-20&quot;:75.85},{&quot;2026-08-21&quot;:75.85},{&quot;2026-08-22&quot;:75.85},{&quot;2026-08-23&quot;:75.85},{&quot;2026-08-24&quot;:75.85},{&quot;2026-08-25&quot;:75.85},{&quot;2026-08-26&quot;:75.85},{&quot;2026-08-27&quot;:75.85},{&quot;2026-08-28&quot;:75.85},{&quot;2026-08-29&quot;:75.85},{&quot;2026-08-30&quot;:75.85},{&quot;2026-08-31&quot;:75.85},{&quot;2026-09-01&quot;:75.85},{&quot;2026-09-02&quot;:75.85},{&quot;2026-09-03&quot;:75.85},{&quot;2026-09-04&quot;:75.85},{&quot;2026-09-05&quot;:75.85},{&quot;2026-09-06&quot;:75.85},{&quot;2026-09-07&quot;:75.85},{&quot;2026-09-08&quot;:75.85},{&quot;2026-09-09&quot;:75.85},{&quot;2026-09-10&quot;:75.85},{&quot;2026-09-11&quot;:75.85}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.78},{&quot;2026-06-14&quot;:2.77},{&quot;2026-06-15&quot;:2.79},{&quot;2026-06-16&quot;:2.98},{&quot;2026-06-17&quot;:2.98},{&quot;2026-06-18&quot;:3.04},{&quot;2026-06-19&quot;:3.09},{&quot;2026-06-20&quot;:3.09},{&quot;2026-06-21&quot;:3.09},{&quot;2026-06-22&quot;:3.09},{&quot;2026-06-23&quot;:3.15},{&quot;2026-06-24&quot;:3.11},{&quot;2026-06-25&quot;:3.11},{&quot;2026-06-26&quot;:3.11},{&quot;2026-06-27&quot;:3.1},{&quot;2026-06-28&quot;:3.1},{&quot;2026-06-29&quot;:3.1},{&quot;2026-06-30&quot;:3.05},{&quot;2026-07-01&quot;:3.05},{&quot;2026-07-02&quot;:3.05},{&quot;2026-07-03&quot;:3.04},{&quot;2026-07-04&quot;:3.0},{&quot;2026-07-05&quot;:3.0},{&quot;2026-07-06&quot;:3.0},{&quot;2026-07-07&quot;:3.01},{&quot;2026-07-08&quot;:2.97},{&quot;2026-07-09&quot;:2.97},{&quot;2026-07-10&quot;:2.97},{&quot;2026-07-11&quot;:2.87},{&quot;2026-07-12&quot;:2.87},{&quot;2026-07-13&quot;:2.87},{&quot;2026-07-14&quot;:2.87},{&quot;2026-07-15&quot;:2.87},{&quot;2026-07-16&quot;:2.99},{&quot;2026-07-17&quot;:2.99},{&quot;2026-07-18&quot;:2.83},{&quot;2026-07-19&quot;:2.83},{&quot;2026-07-20&quot;:2.83},{&quot;2026-07-21&quot;:2.81},{&quot;2026-07-22&quot;:2.78},{&quot;2026-07-23&quot;:2.84},{&quot;2026-07-24&quot;:2.84},{&quot;2026-07-25&quot;:2.84},{&quot;2026-07-26&quot;:2.88},{&quot;2026-07-27&quot;:2.88},{&quot;2026-07-28&quot;:2.88},{&quot;2026-07-29&quot;:2.89},{&quot;2026-07-30&quot;:2.9},{&quot;2026-07-31&quot;:2.93},{&quot;2026-08-01&quot;:2.9},{&quot;2026-08-02&quot;:2.82},{&quot;2026-08-03&quot;:2.61},{&quot;2026-08-04&quot;:2.6},{&quot;2026-08-05&quot;:2.65},{&quot;2026-08-07&quot;:2.59},{&quot;2026-08-08&quot;:2.55},{&quot;2026-08-09&quot;:2.49},{&quot;2026-08-10&quot;:2.46},{&quot;2026-08-11&quot;:2.46},{&quot;2026-08-12&quot;:2.46},{&quot;2026-08-13&quot;:2.46},{&quot;2026-08-14&quot;:2.39},{&quot;2026-08-15&quot;:2.38},{&quot;2026-08-16&quot;:2.37},{&quot;2026-08-17&quot;:2.39},{&quot;2026-08-18&quot;:2.41},{&quot;2026-08-19&quot;:2.41},{&quot;2026-08-20&quot;:2.41},{&quot;2026-08-21&quot;:2.42},{&quot;2026-08-22&quot;:2.42},{&quot;2026-08-23&quot;:2.42},{&quot;2026-08-24&quot;:2.48},{&quot;2026-08-25&quot;:2.4},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.4},{&quot;2026-08-29&quot;:2.4},{&quot;2026-08-30&quot;:2.43},{&quot;2026-08-31&quot;:2.43},{&quot;2026-09-01&quot;:2.37},{&quot;2026-09-02&quot;:2.35},{&quot;2026-09-03&quot;:2.35},{&quot;2026-09-04&quot;:2.38},{&quot;2026-09-05&quot;:2.38},{&quot;2026-09-06&quot;:2.37},{&quot;2026-09-07&quot;:2.37},{&quot;2026-09-08&quot;:2.38},{&quot;2026-09-09&quot;:2.41},{&quot;2026-09-10&quot;:2.41},{&quot;2026-09-11&quot;:2.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53171"
  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-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">
            Gush
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Gush" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/4/7469bdb4-1fb9-4944-8d1e-93cf944bdc5d.jpg?1783910569" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Gush
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gush" src="https://cards.scryfall.io/large/front/7/4/7469bdb4-1fb9-4944-8d1e-93cf944bdc5d.jpg?1783910569" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.26
              </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">
                $31.38
              </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.05</span>
              <span class="text-xs text-grey-text">Credit: $2.67</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;:30.61},{&quot;2026-06-14&quot;:30.61},{&quot;2026-06-15&quot;:30.61},{&quot;2026-06-16&quot;:30.61},{&quot;2026-06-17&quot;:30.61},{&quot;2026-06-18&quot;:30.61},{&quot;2026-06-19&quot;:30.71},{&quot;2026-06-20&quot;:30.71},{&quot;2026-06-21&quot;:30.71},{&quot;2026-06-22&quot;:30.71},{&quot;2026-06-23&quot;:30.71},{&quot;2026-06-24&quot;:30.71},{&quot;2026-06-25&quot;:30.71},{&quot;2026-06-26&quot;:30.71},{&quot;2026-06-27&quot;:30.71},{&quot;2026-06-28&quot;:30.71},{&quot;2026-06-29&quot;:30.78},{&quot;2026-06-30&quot;:30.96},{&quot;2026-07-01&quot;:30.86},{&quot;2026-07-02&quot;:30.86},{&quot;2026-07-03&quot;:30.86},{&quot;2026-07-04&quot;:30.86},{&quot;2026-07-05&quot;:30.86},{&quot;2026-07-06&quot;:30.98},{&quot;2026-07-07&quot;:30.98},{&quot;2026-07-08&quot;:30.98},{&quot;2026-07-09&quot;:30.98},{&quot;2026-07-10&quot;:30.98},{&quot;2026-07-11&quot;:30.98},{&quot;2026-07-12&quot;:30.98},{&quot;2026-07-13&quot;:30.98},{&quot;2026-07-14&quot;:31.01},{&quot;2026-07-15&quot;:31.01},{&quot;2026-07-16&quot;:31.59},{&quot;2026-07-17&quot;:31.59},{&quot;2026-07-18&quot;:31.59},{&quot;2026-07-19&quot;:31.59},{&quot;2026-07-20&quot;:31.59},{&quot;2026-07-21&quot;:31.59},{&quot;2026-07-22&quot;:31.59},{&quot;2026-07-23&quot;:31.59},{&quot;2026-07-24&quot;:31.59},{&quot;2026-07-25&quot;:31.59},{&quot;2026-07-26&quot;:31.59},{&quot;2026-07-27&quot;:31.59},{&quot;2026-07-28&quot;:31.72},{&quot;2026-07-29&quot;:31.72},{&quot;2026-07-30&quot;:31.72},{&quot;2026-07-31&quot;:31.72},{&quot;2026-08-01&quot;:31.72},{&quot;2026-08-02&quot;:31.72},{&quot;2026-08-03&quot;:31.72},{&quot;2026-08-04&quot;:31.72},{&quot;2026-08-05&quot;:31.72},{&quot;2026-08-07&quot;:31.72},{&quot;2026-08-08&quot;:31.72},{&quot;2026-08-09&quot;:31.72},{&quot;2026-08-10&quot;:31.72},{&quot;2026-08-11&quot;:31.72},{&quot;2026-08-12&quot;:31.72},{&quot;2026-08-13&quot;:31.72},{&quot;2026-08-14&quot;:31.72},{&quot;2026-08-15&quot;:31.72},{&quot;2026-08-16&quot;:31.72},{&quot;2026-08-17&quot;:31.72},{&quot;2026-08-18&quot;:31.72},{&quot;2026-08-19&quot;:31.96},{&quot;2026-08-20&quot;:31.96},{&quot;2026-08-21&quot;:31.96},{&quot;2026-08-22&quot;:32.0},{&quot;2026-08-23&quot;:32.0},{&quot;2026-08-24&quot;:32.0},{&quot;2026-08-25&quot;:32.0},{&quot;2026-08-26&quot;:32.0},{&quot;2026-08-27&quot;:32.0},{&quot;2026-08-28&quot;:32.0},{&quot;2026-08-29&quot;:32.0},{&quot;2026-08-30&quot;:32.0},{&quot;2026-08-31&quot;:32.0},{&quot;2026-09-01&quot;:31.77},{&quot;2026-09-02&quot;:31.77},{&quot;2026-09-03&quot;:31.77},{&quot;2026-09-04&quot;:31.77},{&quot;2026-09-05&quot;:31.77},{&quot;2026-09-06&quot;:31.77},{&quot;2026-09-07&quot;:31.77},{&quot;2026-09-08&quot;:31.48},{&quot;2026-09-09&quot;:31.38},{&quot;2026-09-10&quot;:31.38},{&quot;2026-09-11&quot;:31.38}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.72},{&quot;2026-06-14&quot;:2.69},{&quot;2026-06-15&quot;:2.68},{&quot;2026-06-16&quot;:2.73},{&quot;2026-06-17&quot;:2.73},{&quot;2026-06-18&quot;:2.73},{&quot;2026-06-19&quot;:2.73},{&quot;2026-06-20&quot;:2.72},{&quot;2026-06-21&quot;:2.72},{&quot;2026-06-22&quot;:2.69},{&quot;2026-06-23&quot;:2.69},{&quot;2026-06-24&quot;:2.69},{&quot;2026-06-25&quot;:2.73},{&quot;2026-06-26&quot;:2.59},{&quot;2026-06-27&quot;:2.59},{&quot;2026-06-28&quot;:2.59},{&quot;2026-06-29&quot;:2.58},{&quot;2026-06-30&quot;:2.62},{&quot;2026-07-01&quot;:2.61},{&quot;2026-07-02&quot;:2.61},{&quot;2026-07-03&quot;:2.59},{&quot;2026-07-04&quot;:2.59},{&quot;2026-07-05&quot;:2.59},{&quot;2026-07-06&quot;:2.54},{&quot;2026-07-07&quot;:2.54},{&quot;2026-07-08&quot;:2.54},{&quot;2026-07-09&quot;:2.54},{&quot;2026-07-10&quot;:2.52},{&quot;2026-07-11&quot;:2.52},{&quot;2026-07-12&quot;:2.41},{&quot;2026-07-13&quot;:2.39},{&quot;2026-07-14&quot;:2.39},{&quot;2026-07-15&quot;:2.27},{&quot;2026-07-16&quot;:3.0},{&quot;2026-07-17&quot;:3.0},{&quot;2026-07-18&quot;:2.98},{&quot;2026-07-19&quot;:3.0},{&quot;2026-07-20&quot;:3.0},{&quot;2026-07-21&quot;:2.95},{&quot;2026-07-22&quot;:2.95},{&quot;2026-07-23&quot;:2.95},{&quot;2026-07-24&quot;:2.91},{&quot;2026-07-25&quot;:2.91},{&quot;2026-07-26&quot;:2.86},{&quot;2026-07-27&quot;:2.82},{&quot;2026-07-28&quot;:2.79},{&quot;2026-07-29&quot;:2.82},{&quot;2026-07-30&quot;:2.83},{&quot;2026-07-31&quot;:2.81},{&quot;2026-08-01&quot;:2.81},{&quot;2026-08-02&quot;:2.78},{&quot;2026-08-03&quot;:2.9},{&quot;2026-08-04&quot;:2.92},{&quot;2026-08-05&quot;:2.92},{&quot;2026-08-07&quot;:2.9},{&quot;2026-08-08&quot;:2.9},{&quot;2026-08-09&quot;:2.17},{&quot;2026-08-10&quot;:2.25},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.24},{&quot;2026-08-13&quot;:2.24},{&quot;2026-08-14&quot;:2.31},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.36},{&quot;2026-08-17&quot;:2.26},{&quot;2026-08-18&quot;:2.28},{&quot;2026-08-19&quot;:2.3},{&quot;2026-08-20&quot;:2.35},{&quot;2026-08-21&quot;:2.38},{&quot;2026-08-22&quot;:2.38},{&quot;2026-08-23&quot;:2.38},{&quot;2026-08-24&quot;:2.3},{&quot;2026-08-25&quot;:2.34},{&quot;2026-08-26&quot;:2.34},{&quot;2026-08-27&quot;:2.33},{&quot;2026-08-28&quot;:2.33},{&quot;2026-08-29&quot;:2.33},{&quot;2026-08-30&quot;:2.41},{&quot;2026-08-31&quot;:2.41},{&quot;2026-09-01&quot;:2.41},{&quot;2026-09-02&quot;:2.42},{&quot;2026-09-03&quot;:2.41},{&quot;2026-09-04&quot;:2.33},{&quot;2026-09-05&quot;:2.21},{&quot;2026-09-06&quot;:2.23},{&quot;2026-09-07&quot;:2.24},{&quot;2026-09-08&quot;:2.26},{&quot;2026-09-09&quot;:2.26},{&quot;2026-09-10&quot;:2.26},{&quot;2026-09-11&quot;:2.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="87739"
  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-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">
            Farseek
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.25
          </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="Farseek" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/5/75e4e808-1511-40ca-984b-f95fb8f5daf0.jpg?1783931777" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Farseek" src="https://cards.scryfall.io/large/front/7/5/75e4e808-1511-40ca-984b-f95fb8f5daf0.jpg?1783931777" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.83},{&quot;2026-06-14&quot;:1.82},{&quot;2026-06-15&quot;:1.82},{&quot;2026-06-16&quot;:1.82},{&quot;2026-06-17&quot;:1.82},{&quot;2026-06-18&quot;:1.81},{&quot;2026-06-19&quot;:1.82},{&quot;2026-06-20&quot;:1.8},{&quot;2026-06-21&quot;:1.83},{&quot;2026-06-22&quot;:1.84},{&quot;2026-06-23&quot;:1.84},{&quot;2026-06-24&quot;:1.84},{&quot;2026-06-25&quot;:1.82},{&quot;2026-06-26&quot;:1.8},{&quot;2026-06-27&quot;:1.8},{&quot;2026-06-28&quot;:1.8},{&quot;2026-06-29&quot;:1.83},{&quot;2026-06-30&quot;:1.84},{&quot;2026-07-01&quot;:1.84},{&quot;2026-07-02&quot;:1.87},{&quot;2026-07-03&quot;:1.89},{&quot;2026-07-04&quot;:1.89},{&quot;2026-07-05&quot;:1.89},{&quot;2026-07-06&quot;:1.89},{&quot;2026-07-07&quot;:1.89},{&quot;2026-07-08&quot;:1.89},{&quot;2026-07-09&quot;:1.89},{&quot;2026-07-10&quot;:1.89},{&quot;2026-07-11&quot;:1.89},{&quot;2026-07-12&quot;:1.89},{&quot;2026-07-13&quot;:1.89},{&quot;2026-07-14&quot;:1.89},{&quot;2026-07-15&quot;:1.89},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:1.89},{&quot;2026-07-18&quot;:1.9},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.9},{&quot;2026-07-21&quot;:1.9},{&quot;2026-07-22&quot;:1.9},{&quot;2026-07-23&quot;:1.9},{&quot;2026-07-24&quot;:1.9},{&quot;2026-07-25&quot;:1.9},{&quot;2026-07-26&quot;:1.9},{&quot;2026-07-27&quot;:1.9},{&quot;2026-07-28&quot;:1.9},{&quot;2026-07-29&quot;:1.9},{&quot;2026-07-30&quot;:1.9},{&quot;2026-07-31&quot;:1.9},{&quot;2026-08-01&quot;:1.9},{&quot;2026-08-02&quot;:1.9},{&quot;2026-08-03&quot;:1.9},{&quot;2026-08-04&quot;:1.9},{&quot;2026-08-05&quot;:1.9},{&quot;2026-08-07&quot;:1.9},{&quot;2026-08-08&quot;:1.91},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.91},{&quot;2026-08-11&quot;:1.91},{&quot;2026-08-12&quot;:1.91},{&quot;2026-08-13&quot;:2.01},{&quot;2026-08-14&quot;:2.01},{&quot;2026-08-15&quot;:2.01},{&quot;2026-08-16&quot;:2.01},{&quot;2026-08-17&quot;:2.05},{&quot;2026-08-18&quot;:2.05},{&quot;2026-08-19&quot;:2.05},{&quot;2026-08-20&quot;:2.08},{&quot;2026-08-21&quot;:2.08},{&quot;2026-08-22&quot;:2.09},{&quot;2026-08-23&quot;:2.09},{&quot;2026-08-24&quot;:2.09},{&quot;2026-08-25&quot;:2.09},{&quot;2026-08-26&quot;:2.1},{&quot;2026-08-27&quot;:2.1},{&quot;2026-08-28&quot;:2.07},{&quot;2026-08-29&quot;:2.07},{&quot;2026-08-30&quot;:2.08},{&quot;2026-08-31&quot;:2.07},{&quot;2026-09-01&quot;:2.16},{&quot;2026-09-02&quot;:2.16},{&quot;2026-09-03&quot;:2.19},{&quot;2026-09-04&quot;:2.21},{&quot;2026-09-05&quot;:2.21},{&quot;2026-09-06&quot;:2.21},{&quot;2026-09-07&quot;:2.21},{&quot;2026-09-08&quot;:2.21},{&quot;2026-09-09&quot;:2.21},{&quot;2026-09-10&quot;:2.21},{&quot;2026-09-11&quot;:2.25}]}"
        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="79577"
  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-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">
            Trespasser&#39;s Curse
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Trespasser&#39;s Curse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/2/925e0135-7196-4f9c-83a5-93810dc22882.jpg?1783932164" />

        <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">
            Trespasser&#39;s Curse
        </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">Enchantment — Aura Curse</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Trespasser&#39;s Curse" src="https://cards.scryfall.io/large/front/9/2/925e0135-7196-4f9c-83a5-93810dc22882.jpg?1783932164" />
    </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.19
              </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.75</span>
              <span class="text-xs text-grey-text">Credit: $0.98</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.83},{&quot;2026-06-14&quot;:0.84},{&quot;2026-06-15&quot;:0.84},{&quot;2026-06-16&quot;:0.85},{&quot;2026-06-17&quot;:0.84},{&quot;2026-06-18&quot;:0.84},{&quot;2026-06-19&quot;:0.86},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:1.09},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.29},{&quot;2026-06-25&quot;:1.3},{&quot;2026-06-26&quot;:1.31},{&quot;2026-06-27&quot;:1.31},{&quot;2026-06-28&quot;:1.31},{&quot;2026-06-29&quot;:1.31},{&quot;2026-06-30&quot;:1.31},{&quot;2026-07-01&quot;:1.31},{&quot;2026-07-02&quot;:1.31},{&quot;2026-07-03&quot;:1.35},{&quot;2026-07-04&quot;:1.35},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.52},{&quot;2026-07-09&quot;:1.74},{&quot;2026-07-10&quot;:1.74},{&quot;2026-07-11&quot;:2.14},{&quot;2026-07-12&quot;:2.14},{&quot;2026-07-13&quot;:2.54},{&quot;2026-07-14&quot;:2.6},{&quot;2026-07-15&quot;:2.6},{&quot;2026-07-16&quot;:2.6},{&quot;2026-07-17&quot;:2.6},{&quot;2026-07-18&quot;:2.6},{&quot;2026-07-19&quot;:2.6},{&quot;2026-07-20&quot;:2.6},{&quot;2026-07-21&quot;:2.61},{&quot;2026-07-22&quot;:2.62},{&quot;2026-07-23&quot;:2.57},{&quot;2026-07-24&quot;:2.57},{&quot;2026-07-25&quot;:2.6},{&quot;2026-07-26&quot;:2.6},{&quot;2026-07-27&quot;:2.6},{&quot;2026-07-28&quot;:2.55},{&quot;2026-07-29&quot;:2.38},{&quot;2026-07-30&quot;:2.38},{&quot;2026-07-31&quot;:2.38},{&quot;2026-08-01&quot;:2.23},{&quot;2026-08-02&quot;:2.45},{&quot;2026-08-03&quot;:2.45},{&quot;2026-08-04&quot;:2.31},{&quot;2026-08-05&quot;:2.31},{&quot;2026-08-07&quot;:2.31},{&quot;2026-08-08&quot;:2.31},{&quot;2026-08-09&quot;:2.31},{&quot;2026-08-10&quot;:2.31},{&quot;2026-08-11&quot;:2.26},{&quot;2026-08-12&quot;:2.26},{&quot;2026-08-13&quot;:2.26},{&quot;2026-08-14&quot;:2.26},{&quot;2026-08-15&quot;:2.28},{&quot;2026-08-16&quot;:2.28},{&quot;2026-08-17&quot;:2.28},{&quot;2026-08-18&quot;:2.28},{&quot;2026-08-19&quot;:2.28},{&quot;2026-08-20&quot;:2.28},{&quot;2026-08-21&quot;:2.28},{&quot;2026-08-22&quot;:2.28},{&quot;2026-08-23&quot;:2.28},{&quot;2026-08-24&quot;:2.28},{&quot;2026-08-25&quot;:2.28},{&quot;2026-08-26&quot;:2.28},{&quot;2026-08-27&quot;:2.28},{&quot;2026-08-28&quot;:2.28},{&quot;2026-08-29&quot;:2.28},{&quot;2026-08-30&quot;:2.28},{&quot;2026-08-31&quot;:2.28},{&quot;2026-09-01&quot;:2.28},{&quot;2026-09-02&quot;:2.28},{&quot;2026-09-03&quot;:2.28},{&quot;2026-09-04&quot;:2.28},{&quot;2026-09-05&quot;:2.13},{&quot;2026-09-06&quot;:2.13},{&quot;2026-09-07&quot;:2.13},{&quot;2026-09-08&quot;:2.13},{&quot;2026-09-09&quot;:2.13},{&quot;2026-09-10&quot;:2.13},{&quot;2026-09-11&quot;:2.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="78776"
  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-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">
            Kaya&#39;s Ghostform
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kaya&#39;s Ghostform" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8cae3159-b321-4ce5-900d-5b2371e1fedb.jpg?1783910243" />

        <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">
            Kaya&#39;s Ghostform
        </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">Enchantment — Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Kaya&#39;s Ghostform" src="https://cards.scryfall.io/large/front/8/c/8cae3159-b321-4ce5-900d-5b2371e1fedb.jpg?1783910243" />
    </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.17
              </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.40</span>
              <span class="text-xs text-grey-text">Credit: $1.82</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.55},{&quot;2026-06-11&quot;:2.59},{&quot;2026-06-12&quot;:2.66},{&quot;2026-06-13&quot;:2.66},{&quot;2026-06-14&quot;:2.65},{&quot;2026-06-15&quot;:2.65},{&quot;2026-06-16&quot;:2.65},{&quot;2026-06-17&quot;:2.65},{&quot;2026-06-18&quot;:2.68},{&quot;2026-06-19&quot;:2.57},{&quot;2026-06-20&quot;:2.57},{&quot;2026-06-21&quot;:2.58},{&quot;2026-06-22&quot;:2.61},{&quot;2026-06-23&quot;:2.59},{&quot;2026-06-24&quot;:2.59},{&quot;2026-06-25&quot;:2.54},{&quot;2026-06-26&quot;:2.53},{&quot;2026-06-27&quot;:2.5},{&quot;2026-06-28&quot;:2.4},{&quot;2026-06-29&quot;:2.4},{&quot;2026-06-30&quot;:2.38},{&quot;2026-07-01&quot;:2.38},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.38},{&quot;2026-07-04&quot;:2.32},{&quot;2026-07-05&quot;:2.32},{&quot;2026-07-06&quot;:2.32},{&quot;2026-07-07&quot;:2.37},{&quot;2026-07-08&quot;:2.39},{&quot;2026-07-09&quot;:2.39},{&quot;2026-07-10&quot;:2.38},{&quot;2026-07-11&quot;:2.38},{&quot;2026-07-12&quot;:2.38},{&quot;2026-07-13&quot;:2.4},{&quot;2026-07-14&quot;:2.4},{&quot;2026-07-15&quot;:2.48},{&quot;2026-07-16&quot;:2.48},{&quot;2026-07-17&quot;:2.48},{&quot;2026-07-18&quot;:2.48},{&quot;2026-07-19&quot;:2.48},{&quot;2026-07-20&quot;:2.47},{&quot;2026-07-21&quot;:2.59},{&quot;2026-07-23&quot;:2.56},{&quot;2026-07-25&quot;:2.56},{&quot;2026-07-26&quot;:2.6},{&quot;2026-07-27&quot;:2.65},{&quot;2026-07-29&quot;:2.66},{&quot;2026-07-30&quot;:2.71},{&quot;2026-07-31&quot;:2.71},{&quot;2026-08-01&quot;:2.71},{&quot;2026-08-02&quot;:2.66},{&quot;2026-08-03&quot;:2.66},{&quot;2026-08-04&quot;:2.65},{&quot;2026-08-05&quot;:2.71},{&quot;2026-08-07&quot;:2.74},{&quot;2026-08-08&quot;:2.69},{&quot;2026-08-09&quot;:2.69},{&quot;2026-08-10&quot;:2.78},{&quot;2026-08-11&quot;:2.7},{&quot;2026-08-12&quot;:2.7},{&quot;2026-08-13&quot;:2.68},{&quot;2026-08-14&quot;:2.63},{&quot;2026-08-15&quot;:2.53},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.36},{&quot;2026-08-18&quot;:2.36},{&quot;2026-08-19&quot;:2.37},{&quot;2026-08-20&quot;:2.37},{&quot;2026-08-21&quot;:2.28},{&quot;2026-08-22&quot;:2.06},{&quot;2026-08-23&quot;:2.11},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.13},{&quot;2026-08-26&quot;:2.09},{&quot;2026-08-27&quot;:2.09},{&quot;2026-08-28&quot;:2.05},{&quot;2026-08-29&quot;:2.05},{&quot;2026-08-30&quot;:2.08},{&quot;2026-08-31&quot;:2.1},{&quot;2026-09-01&quot;:2.1},{&quot;2026-09-02&quot;:2.11},{&quot;2026-09-03&quot;:2.16},{&quot;2026-09-04&quot;:2.19},{&quot;2026-09-05&quot;:2.16},{&quot;2026-09-06&quot;:2.16},{&quot;2026-09-07&quot;:2.16},{&quot;2026-09-08&quot;:2.17},{&quot;2026-09-09&quot;:2.16},{&quot;2026-09-10&quot;:2.17},{&quot;2026-09-11&quot;:2.17}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="81593"
  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-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">
            Steel of the Godhead
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.03
          </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="Steel of the Godhead" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/f/fff6846e-5f88-4976-b867-5b176f5e8c7d.jpg?1783910131" />

        <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">
            Steel of the Godhead
        </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">Enchantment — Aura</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-wu'></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="Steel of the Godhead" src="https://cards.scryfall.io/large/front/f/f/fff6846e-5f88-4976-b867-5b176f5e8c7d.jpg?1783910131" />
    </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.03
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.04},{&quot;2026-06-14&quot;:2.05},{&quot;2026-06-15&quot;:2.05},{&quot;2026-06-16&quot;:2.03},{&quot;2026-06-17&quot;:2.07},{&quot;2026-06-18&quot;:2.06},{&quot;2026-06-19&quot;:2.07},{&quot;2026-06-20&quot;:2.06},{&quot;2026-06-21&quot;:2.07},{&quot;2026-06-22&quot;:2.06},{&quot;2026-06-23&quot;:2.07},{&quot;2026-06-24&quot;:2.07},{&quot;2026-06-25&quot;:2.07},{&quot;2026-06-26&quot;:2.07},{&quot;2026-06-27&quot;:2.1},{&quot;2026-06-28&quot;:2.1},{&quot;2026-06-29&quot;:2.1},{&quot;2026-06-30&quot;:2.1},{&quot;2026-07-01&quot;:2.15},{&quot;2026-07-02&quot;:2.18},{&quot;2026-07-03&quot;:2.14},{&quot;2026-07-04&quot;:2.14},{&quot;2026-07-05&quot;:2.15},{&quot;2026-07-06&quot;:2.14},{&quot;2026-07-07&quot;:2.14},{&quot;2026-07-08&quot;:2.15},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.23},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.23},{&quot;2026-07-13&quot;:2.23},{&quot;2026-07-14&quot;:2.23},{&quot;2026-07-15&quot;:2.24},{&quot;2026-07-16&quot;:2.26},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.27},{&quot;2026-07-19&quot;:2.29},{&quot;2026-07-20&quot;:2.29},{&quot;2026-07-21&quot;:2.27},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.31},{&quot;2026-07-24&quot;:2.43},{&quot;2026-07-25&quot;:2.44},{&quot;2026-07-26&quot;:2.49},{&quot;2026-07-27&quot;:2.54},{&quot;2026-07-28&quot;:2.54},{&quot;2026-07-29&quot;:2.53},{&quot;2026-07-30&quot;:2.51},{&quot;2026-07-31&quot;:2.48},{&quot;2026-08-01&quot;:2.49},{&quot;2026-08-02&quot;:2.48},{&quot;2026-08-03&quot;:2.45},{&quot;2026-08-04&quot;:2.45},{&quot;2026-08-05&quot;:2.45},{&quot;2026-08-07&quot;:2.3},{&quot;2026-08-08&quot;:2.3},{&quot;2026-08-09&quot;:2.16},{&quot;2026-08-10&quot;:2.16},{&quot;2026-08-11&quot;:2.14},{&quot;2026-08-12&quot;:2.12},{&quot;2026-08-13&quot;:2.09},{&quot;2026-08-14&quot;:2.1},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:2.06},{&quot;2026-08-17&quot;:2.05},{&quot;2026-08-18&quot;:2.04},{&quot;2026-08-19&quot;:2.0},{&quot;2026-08-20&quot;:2.01},{&quot;2026-08-21&quot;:2.01},{&quot;2026-08-22&quot;:2.01},{&quot;2026-08-23&quot;:1.99},{&quot;2026-08-24&quot;:1.99},{&quot;2026-08-25&quot;:1.99},{&quot;2026-08-26&quot;:1.99},{&quot;2026-08-27&quot;:2.04},{&quot;2026-08-28&quot;:2.08},{&quot;2026-08-29&quot;:2.08},{&quot;2026-08-30&quot;:2.09},{&quot;2026-08-31&quot;:2.09},{&quot;2026-09-01&quot;:2.09},{&quot;2026-09-02&quot;:2.09},{&quot;2026-09-03&quot;:2.08},{&quot;2026-09-04&quot;:2.06},{&quot;2026-09-05&quot;:2.06},{&quot;2026-09-06&quot;:2.06},{&quot;2026-09-07&quot;:2.06},{&quot;2026-09-08&quot;:2.05},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.03}]}"
        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="84815"
  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-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">
            Land Grant
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.00
          </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="Land Grant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1e3501bf-3c76-4cd7-9d96-86cf3bbdd0df.jpg?1783910019" />

        <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">
            Land Grant
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Land Grant" src="https://cards.scryfall.io/large/front/1/e/1e3501bf-3c76-4cd7-9d96-86cf3bbdd0df.jpg?1783910019" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.00
              </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">$2.25</span>
              <span class="text-xs text-grey-text">Credit: $2.93</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.7},{&quot;2026-06-13&quot;:1.69},{&quot;2026-06-14&quot;:1.67},{&quot;2026-06-15&quot;:1.67},{&quot;2026-06-16&quot;:1.68},{&quot;2026-06-17&quot;:1.67},{&quot;2026-06-18&quot;:1.67},{&quot;2026-06-19&quot;:1.66},{&quot;2026-06-20&quot;:1.66},{&quot;2026-06-21&quot;:1.68},{&quot;2026-06-22&quot;:1.68},{&quot;2026-06-23&quot;:1.68},{&quot;2026-06-24&quot;:1.68},{&quot;2026-06-25&quot;:1.7},{&quot;2026-06-26&quot;:1.7},{&quot;2026-06-27&quot;:1.68},{&quot;2026-06-28&quot;:1.68},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.64},{&quot;2026-07-03&quot;:1.65},{&quot;2026-07-04&quot;:1.65},{&quot;2026-07-05&quot;:1.65},{&quot;2026-07-06&quot;:1.65},{&quot;2026-07-07&quot;:1.65},{&quot;2026-07-08&quot;:1.64},{&quot;2026-07-09&quot;:1.59},{&quot;2026-07-10&quot;:1.61},{&quot;2026-07-11&quot;:1.63},{&quot;2026-07-12&quot;:1.59},{&quot;2026-07-13&quot;:1.61},{&quot;2026-07-14&quot;:1.61},{&quot;2026-07-15&quot;:1.68},{&quot;2026-07-16&quot;:1.68},{&quot;2026-07-17&quot;:1.67},{&quot;2026-07-18&quot;:1.67},{&quot;2026-07-19&quot;:1.67},{&quot;2026-07-20&quot;:1.68},{&quot;2026-07-21&quot;:1.68},{&quot;2026-07-23&quot;:1.69},{&quot;2026-07-24&quot;:1.71},{&quot;2026-07-25&quot;:1.72},{&quot;2026-07-26&quot;:1.73},{&quot;2026-07-27&quot;:1.73},{&quot;2026-07-28&quot;:1.73},{&quot;2026-07-29&quot;:1.74},{&quot;2026-07-30&quot;:1.73},{&quot;2026-07-31&quot;:1.72},{&quot;2026-08-01&quot;:1.72},{&quot;2026-08-02&quot;:1.74},{&quot;2026-08-03&quot;:1.9},{&quot;2026-08-04&quot;:1.9},{&quot;2026-08-05&quot;:1.93},{&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.89},{&quot;2026-08-11&quot;:1.89},{&quot;2026-08-12&quot;:1.88},{&quot;2026-08-13&quot;:1.96},{&quot;2026-08-14&quot;:1.96},{&quot;2026-08-15&quot;:2.04},{&quot;2026-08-16&quot;:1.97},{&quot;2026-08-17&quot;:1.93},{&quot;2026-08-18&quot;:1.86},{&quot;2026-08-19&quot;:1.85},{&quot;2026-08-20&quot;:1.85},{&quot;2026-08-21&quot;:1.84},{&quot;2026-08-22&quot;:1.84},{&quot;2026-08-23&quot;:1.84},{&quot;2026-08-24&quot;:1.85},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.79},{&quot;2026-08-27&quot;:1.81},{&quot;2026-08-28&quot;:1.79},{&quot;2026-08-29&quot;:1.79},{&quot;2026-08-30&quot;:1.82},{&quot;2026-08-31&quot;:1.82},{&quot;2026-09-01&quot;:1.81},{&quot;2026-09-02&quot;:1.81},{&quot;2026-09-03&quot;:1.83},{&quot;2026-09-04&quot;:1.84},{&quot;2026-09-05&quot;:1.89},{&quot;2026-09-06&quot;:1.89},{&quot;2026-09-07&quot;:1.88},{&quot;2026-09-08&quot;:1.88},{&quot;2026-09-09&quot;:1.87},{&quot;2026-09-10&quot;:1.87},{&quot;2026-09-11&quot;:2.0}]}"
        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="78355"
  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-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">
            Shadow Rift
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Shadow Rift" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/3/23b529f3-7efb-45a8-a10f-5bfc6496d39b.jpg?1783910261" />

        <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">
            Shadow Rift
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Shadow Rift" src="https://cards.scryfall.io/large/front/2/3/23b529f3-7efb-45a8-a10f-5bfc6496d39b.jpg?1783910261" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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.92},{&quot;2026-06-12&quot;:1.92},{&quot;2026-06-13&quot;:1.92},{&quot;2026-06-14&quot;:1.92},{&quot;2026-06-15&quot;:1.93},{&quot;2026-06-16&quot;:1.93},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.92},{&quot;2026-06-20&quot;:1.92},{&quot;2026-06-21&quot;:1.9},{&quot;2026-06-22&quot;:1.9},{&quot;2026-06-23&quot;:1.9},{&quot;2026-06-24&quot;:1.9},{&quot;2026-06-25&quot;:1.9},{&quot;2026-06-26&quot;:1.89},{&quot;2026-06-27&quot;:1.89},{&quot;2026-06-28&quot;:1.89},{&quot;2026-06-29&quot;:1.87},{&quot;2026-06-30&quot;:1.87},{&quot;2026-07-01&quot;:1.85},{&quot;2026-07-02&quot;:1.83},{&quot;2026-07-03&quot;:1.82},{&quot;2026-07-04&quot;:1.79},{&quot;2026-07-05&quot;:1.69},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.7},{&quot;2026-07-08&quot;:1.67},{&quot;2026-07-09&quot;:1.62},{&quot;2026-07-10&quot;:1.62},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.53},{&quot;2026-07-14&quot;:1.53},{&quot;2026-07-15&quot;:1.53},{&quot;2026-07-16&quot;:1.52},{&quot;2026-07-17&quot;:1.52},{&quot;2026-07-18&quot;:1.52},{&quot;2026-07-19&quot;:1.52},{&quot;2026-07-20&quot;:1.51},{&quot;2026-07-21&quot;:1.51},{&quot;2026-07-23&quot;:1.55},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.53},{&quot;2026-07-27&quot;:1.54},{&quot;2026-07-28&quot;:1.58},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.63},{&quot;2026-07-31&quot;:1.62},{&quot;2026-08-01&quot;:1.62},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.58},{&quot;2026-08-04&quot;:1.56},{&quot;2026-08-05&quot;:1.56},{&quot;2026-08-07&quot;:1.59},{&quot;2026-08-08&quot;:1.57},{&quot;2026-08-09&quot;:1.61},{&quot;2026-08-10&quot;:1.61},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.68},{&quot;2026-08-13&quot;:1.68},{&quot;2026-08-14&quot;:1.67},{&quot;2026-08-15&quot;:1.66},{&quot;2026-08-16&quot;:1.66},{&quot;2026-08-17&quot;:1.66},{&quot;2026-08-18&quot;:1.59},{&quot;2026-08-19&quot;:1.53},{&quot;2026-08-20&quot;:1.53},{&quot;2026-08-21&quot;:1.53},{&quot;2026-08-22&quot;:1.53},{&quot;2026-08-23&quot;:1.53},{&quot;2026-08-24&quot;:1.52},{&quot;2026-08-25&quot;:1.52},{&quot;2026-08-26&quot;:1.49},{&quot;2026-08-27&quot;:1.49},{&quot;2026-08-28&quot;:1.49},{&quot;2026-08-29&quot;:1.49},{&quot;2026-08-30&quot;:1.51},{&quot;2026-08-31&quot;:1.52},{&quot;2026-09-01&quot;:1.52},{&quot;2026-09-02&quot;:1.5},{&quot;2026-09-03&quot;:1.43},{&quot;2026-09-04&quot;:1.47},{&quot;2026-09-05&quot;:1.47},{&quot;2026-09-06&quot;:1.48},{&quot;2026-09-07&quot;:1.48},{&quot;2026-09-08&quot;:1.48},{&quot;2026-09-09&quot;:1.48},{&quot;2026-09-10&quot;:1.49},{&quot;2026-09-11&quot;:1.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="75033"
  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-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">
            Suture Priest
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Suture Priest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/609ec229-702b-4908-add1-be65c05ecb3c.jpg?1783910424" />

        <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">
            Suture Priest
        </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 — Phyrexian Cleric</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Suture Priest" src="https://cards.scryfall.io/large/front/6/0/609ec229-702b-4908-add1-be65c05ecb3c.jpg?1783910424" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.47
              </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">$1.25</span>
              <span class="text-xs text-grey-text">Credit: $1.63</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.49},{&quot;2026-06-11&quot;:1.49},{&quot;2026-06-12&quot;:1.49},{&quot;2026-06-13&quot;:1.49},{&quot;2026-06-14&quot;:1.49},{&quot;2026-06-15&quot;:1.49},{&quot;2026-06-16&quot;:1.5},{&quot;2026-06-17&quot;:1.51},{&quot;2026-06-18&quot;:1.53},{&quot;2026-06-19&quot;:1.52},{&quot;2026-06-20&quot;:1.53},{&quot;2026-06-21&quot;:1.53},{&quot;2026-06-22&quot;:1.54},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.54},{&quot;2026-06-25&quot;:1.56},{&quot;2026-06-26&quot;:1.56},{&quot;2026-06-27&quot;:1.56},{&quot;2026-06-28&quot;:1.56},{&quot;2026-06-29&quot;:1.59},{&quot;2026-06-30&quot;:1.58},{&quot;2026-07-01&quot;:1.57},{&quot;2026-07-02&quot;:1.57},{&quot;2026-07-03&quot;:1.58},{&quot;2026-07-04&quot;:1.58},{&quot;2026-07-05&quot;:1.58},{&quot;2026-07-06&quot;:1.58},{&quot;2026-07-07&quot;:1.58},{&quot;2026-07-08&quot;:1.58},{&quot;2026-07-09&quot;:1.6},{&quot;2026-07-10&quot;:1.62},{&quot;2026-07-11&quot;:1.63},{&quot;2026-07-12&quot;:1.63},{&quot;2026-07-13&quot;:1.63},{&quot;2026-07-14&quot;:1.69},{&quot;2026-07-15&quot;:1.7},{&quot;2026-07-16&quot;:1.68},{&quot;2026-07-17&quot;:1.7},{&quot;2026-07-18&quot;:1.7},{&quot;2026-07-19&quot;:1.68},{&quot;2026-07-20&quot;:1.68},{&quot;2026-07-21&quot;:1.69},{&quot;2026-07-23&quot;:1.69},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.72},{&quot;2026-07-27&quot;:1.72},{&quot;2026-07-29&quot;:1.72},{&quot;2026-07-30&quot;:1.71},{&quot;2026-07-31&quot;:1.66},{&quot;2026-08-01&quot;:1.59},{&quot;2026-08-02&quot;:1.56},{&quot;2026-08-03&quot;:1.54},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.54},{&quot;2026-08-07&quot;:1.52},{&quot;2026-08-08&quot;:1.55},{&quot;2026-08-09&quot;:1.6},{&quot;2026-08-10&quot;:1.6},{&quot;2026-08-11&quot;:1.6},{&quot;2026-08-12&quot;:1.6},{&quot;2026-08-13&quot;:1.6},{&quot;2026-08-14&quot;:1.6},{&quot;2026-08-15&quot;:1.59},{&quot;2026-08-16&quot;:1.61},{&quot;2026-08-17&quot;:1.6},{&quot;2026-08-18&quot;:1.54},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.56},{&quot;2026-08-21&quot;:1.55},{&quot;2026-08-22&quot;:1.54},{&quot;2026-08-23&quot;:1.54},{&quot;2026-08-24&quot;:1.55},{&quot;2026-08-25&quot;:1.55},{&quot;2026-08-26&quot;:1.56},{&quot;2026-08-27&quot;:1.53},{&quot;2026-08-28&quot;:1.53},{&quot;2026-08-29&quot;:1.53},{&quot;2026-08-30&quot;:1.53},{&quot;2026-08-31&quot;:1.54},{&quot;2026-09-01&quot;:1.54},{&quot;2026-09-02&quot;:1.53},{&quot;2026-09-03&quot;:1.51},{&quot;2026-09-04&quot;:1.51},{&quot;2026-09-05&quot;:1.53},{&quot;2026-09-06&quot;:1.52},{&quot;2026-09-07&quot;:1.52},{&quot;2026-09-08&quot;:1.49},{&quot;2026-09-09&quot;:1.49},{&quot;2026-09-10&quot;:1.48},{&quot;2026-09-11&quot;:1.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="82917"
  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-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">
            Masked Vandal
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Masked Vandal
        </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 — Shapeshifter</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Masked Vandal" src="https://cards.scryfall.io/large/front/d/6/d6f47fe1-36c6-4af9-a9eb-f2919e8e3446.jpg?1783913111" />
    </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.38
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.49},{&quot;2026-06-14&quot;:1.49},{&quot;2026-06-15&quot;:1.49},{&quot;2026-06-16&quot;:1.49},{&quot;2026-06-17&quot;:1.49},{&quot;2026-06-18&quot;:1.5},{&quot;2026-06-19&quot;:1.56},{&quot;2026-06-20&quot;:1.59},{&quot;2026-06-21&quot;:1.63},{&quot;2026-06-22&quot;:1.63},{&quot;2026-06-23&quot;:1.61},{&quot;2026-06-24&quot;:1.58},{&quot;2026-06-25&quot;:1.58},{&quot;2026-06-26&quot;:1.57},{&quot;2026-06-27&quot;:1.57},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.62},{&quot;2026-06-30&quot;:1.62},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.67},{&quot;2026-07-03&quot;:1.68},{&quot;2026-07-04&quot;:1.7},{&quot;2026-07-05&quot;:1.7},{&quot;2026-07-06&quot;:1.79},{&quot;2026-07-07&quot;:1.78},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.75},{&quot;2026-07-10&quot;:1.69},{&quot;2026-07-11&quot;:1.65},{&quot;2026-07-12&quot;:1.65},{&quot;2026-07-13&quot;:1.65},{&quot;2026-07-14&quot;:1.59},{&quot;2026-07-15&quot;:1.59},{&quot;2026-07-16&quot;:1.59},{&quot;2026-07-17&quot;:1.59},{&quot;2026-07-18&quot;:1.58},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.58},{&quot;2026-07-21&quot;:1.55},{&quot;2026-07-22&quot;:1.48},{&quot;2026-07-23&quot;:1.48},{&quot;2026-07-24&quot;:1.45},{&quot;2026-07-25&quot;:1.44},{&quot;2026-07-26&quot;:1.41},{&quot;2026-07-27&quot;:1.37},{&quot;2026-07-28&quot;:1.35},{&quot;2026-07-29&quot;:1.37},{&quot;2026-07-30&quot;:1.37},{&quot;2026-07-31&quot;:1.39},{&quot;2026-08-01&quot;:1.34},{&quot;2026-08-02&quot;:1.35},{&quot;2026-08-03&quot;:1.35},{&quot;2026-08-04&quot;:1.32},{&quot;2026-08-05&quot;:1.28},{&quot;2026-08-07&quot;:1.29},{&quot;2026-08-08&quot;:1.28},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.15},{&quot;2026-08-11&quot;:1.15},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.16},{&quot;2026-08-14&quot;:1.17},{&quot;2026-08-15&quot;:1.25},{&quot;2026-08-16&quot;:1.25},{&quot;2026-08-17&quot;:1.24},{&quot;2026-08-18&quot;:1.23},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.26},{&quot;2026-08-21&quot;:1.28},{&quot;2026-08-22&quot;:1.32},{&quot;2026-08-23&quot;:1.32},{&quot;2026-08-24&quot;:1.29},{&quot;2026-08-25&quot;:1.31},{&quot;2026-08-26&quot;:1.35},{&quot;2026-08-27&quot;:1.35},{&quot;2026-08-28&quot;:1.34},{&quot;2026-08-29&quot;:1.34},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.34},{&quot;2026-09-01&quot;:1.31},{&quot;2026-09-02&quot;:1.33},{&quot;2026-09-03&quot;:1.31},{&quot;2026-09-04&quot;:1.27},{&quot;2026-09-05&quot;:1.24},{&quot;2026-09-06&quot;:1.28},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.29},{&quot;2026-09-09&quot;:1.3},{&quot;2026-09-10&quot;:1.37},{&quot;2026-09-11&quot;:1.38}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79518"
  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-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">
            Devoted Druid
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Devoted Druid" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/2/e26ad2e9-fa74-4e96-b496-baa10772d814.jpg?1783910211" />

        <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">
            Devoted Druid
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Devoted Druid" src="https://cards.scryfall.io/large/front/e/2/e26ad2e9-fa74-4e96-b496-baa10772d814.jpg?1783910211" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.5},{&quot;2026-06-12&quot;:0.52},{&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.55},{&quot;2026-06-19&quot;:0.55},{&quot;2026-06-20&quot;:0.55},{&quot;2026-06-21&quot;:0.55},{&quot;2026-06-22&quot;:0.54},{&quot;2026-06-23&quot;:0.54},{&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.51},{&quot;2026-06-30&quot;:0.51},{&quot;2026-07-01&quot;:0.51},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.52},{&quot;2026-07-04&quot;:0.52},{&quot;2026-07-05&quot;:0.52},{&quot;2026-07-06&quot;:0.52},{&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.52},{&quot;2026-07-12&quot;:0.52},{&quot;2026-07-13&quot;:0.52},{&quot;2026-07-14&quot;:0.52},{&quot;2026-07-15&quot;:0.52},{&quot;2026-07-16&quot;:0.52},{&quot;2026-07-17&quot;:0.52},{&quot;2026-07-18&quot;:0.52},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.52},{&quot;2026-07-21&quot;:0.49},{&quot;2026-07-23&quot;:0.51},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.51},{&quot;2026-07-28&quot;:0.51},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.5},{&quot;2026-08-01&quot;:0.5},{&quot;2026-08-02&quot;:0.5},{&quot;2026-08-03&quot;:0.51},{&quot;2026-08-04&quot;:0.51},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.58},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.59},{&quot;2026-08-10&quot;:0.6},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.71},{&quot;2026-08-15&quot;:0.65},{&quot;2026-08-16&quot;:0.65},{&quot;2026-08-17&quot;:0.68},{&quot;2026-08-18&quot;:0.65},{&quot;2026-08-19&quot;:0.75},{&quot;2026-08-20&quot;:0.75},{&quot;2026-08-21&quot;:0.72},{&quot;2026-08-22&quot;:0.71},{&quot;2026-08-23&quot;:0.71},{&quot;2026-08-24&quot;:0.7},{&quot;2026-08-25&quot;:0.7},{&quot;2026-08-26&quot;:0.9},{&quot;2026-08-27&quot;:1.07},{&quot;2026-08-28&quot;:1.31},{&quot;2026-08-29&quot;:1.31},{&quot;2026-08-30&quot;:1.18},{&quot;2026-08-31&quot;:1.3},{&quot;2026-09-01&quot;:1.3},{&quot;2026-09-02&quot;:1.15},{&quot;2026-09-03&quot;:1.16},{&quot;2026-09-04&quot;:1.16},{&quot;2026-09-05&quot;:1.16},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.25},{&quot;2026-09-10&quot;:1.03},{&quot;2026-09-11&quot;:1.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74536"
  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-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">
            Sunscape Familiar
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.25
          </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="Sunscape Familiar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/4/24880cb7-561b-4c3b-9c5d-769a09516342.jpg?1783910443" />

        <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">
            Sunscape Familiar
        </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 — Wall</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sunscape Familiar" src="https://cards.scryfall.io/large/front/2/4/24880cb7-561b-4c3b-9c5d-769a09516342.jpg?1783910443" />
    </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.25
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.45},{&quot;2026-06-14&quot;:1.45},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.43},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.42},{&quot;2026-06-19&quot;:1.42},{&quot;2026-06-20&quot;:1.39},{&quot;2026-06-21&quot;:1.39},{&quot;2026-06-22&quot;:1.39},{&quot;2026-06-23&quot;:1.39},{&quot;2026-06-24&quot;:1.39},{&quot;2026-06-25&quot;:1.4},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.36},{&quot;2026-06-28&quot;:1.34},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.33},{&quot;2026-07-01&quot;:1.27},{&quot;2026-07-02&quot;:1.26},{&quot;2026-07-03&quot;:1.26},{&quot;2026-07-04&quot;:1.26},{&quot;2026-07-05&quot;:1.26},{&quot;2026-07-06&quot;:1.27},{&quot;2026-07-07&quot;:1.27},{&quot;2026-07-08&quot;:1.27},{&quot;2026-07-09&quot;:1.27},{&quot;2026-07-10&quot;:1.27},{&quot;2026-07-11&quot;:1.27},{&quot;2026-07-12&quot;:1.29},{&quot;2026-07-13&quot;:1.29},{&quot;2026-07-14&quot;:1.29},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.29},{&quot;2026-07-17&quot;:1.3},{&quot;2026-07-18&quot;:1.31},{&quot;2026-07-19&quot;:1.37},{&quot;2026-07-20&quot;:1.37},{&quot;2026-07-21&quot;:1.38},{&quot;2026-07-22&quot;:1.38},{&quot;2026-07-23&quot;:1.38},{&quot;2026-07-24&quot;:1.38},{&quot;2026-07-25&quot;:1.37},{&quot;2026-07-26&quot;:1.37},{&quot;2026-07-27&quot;:1.36},{&quot;2026-07-28&quot;:1.36},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.36},{&quot;2026-07-31&quot;:1.35},{&quot;2026-08-01&quot;:1.35},{&quot;2026-08-02&quot;:1.35},{&quot;2026-08-03&quot;:1.34},{&quot;2026-08-04&quot;:1.35},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.32},{&quot;2026-08-08&quot;:1.31},{&quot;2026-08-09&quot;:1.31},{&quot;2026-08-10&quot;:1.31},{&quot;2026-08-11&quot;:1.31},{&quot;2026-08-12&quot;:1.22},{&quot;2026-08-13&quot;:1.19},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.18},{&quot;2026-08-16&quot;:1.15},{&quot;2026-08-17&quot;:1.16},{&quot;2026-08-18&quot;:1.16},{&quot;2026-08-19&quot;:1.15},{&quot;2026-08-20&quot;:1.11},{&quot;2026-08-21&quot;:1.11},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.1},{&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.08},{&quot;2026-08-28&quot;:1.12},{&quot;2026-08-29&quot;:1.12},{&quot;2026-08-30&quot;:1.12},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.12},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.22},{&quot;2026-09-04&quot;:1.24},{&quot;2026-09-05&quot;:1.24},{&quot;2026-09-06&quot;:1.24},{&quot;2026-09-07&quot;:1.24},{&quot;2026-09-08&quot;:1.24},{&quot;2026-09-09&quot;:1.29},{&quot;2026-09-10&quot;:1.29},{&quot;2026-09-11&quot;:1.25}]}"
        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="79845"
  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-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">
            Mutagenic Growth
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.25
          </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="Mutagenic Growth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/7/c75cf36a-a872-478d-9ed7-f4edc7a8c970.jpg?1783910201" />

        <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">
            Mutagenic Growth
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-gp'></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="Mutagenic Growth" src="https://cards.scryfall.io/large/front/c/7/c75cf36a-a872-478d-9ed7-f4edc7a8c970.jpg?1783910201" />
    </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.25
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.25},{&quot;2026-06-14&quot;:1.29},{&quot;2026-06-15&quot;:1.31},{&quot;2026-06-16&quot;:1.31},{&quot;2026-06-17&quot;:1.31},{&quot;2026-06-18&quot;:1.31},{&quot;2026-06-19&quot;:1.28},{&quot;2026-06-20&quot;:1.34},{&quot;2026-06-21&quot;:1.66},{&quot;2026-06-22&quot;:1.72},{&quot;2026-06-23&quot;:1.69},{&quot;2026-06-24&quot;:1.71},{&quot;2026-06-25&quot;:1.71},{&quot;2026-06-26&quot;:1.71},{&quot;2026-06-27&quot;:1.71},{&quot;2026-06-28&quot;:1.71},{&quot;2026-06-29&quot;:1.71},{&quot;2026-06-30&quot;:1.7},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.68},{&quot;2026-07-03&quot;:1.7},{&quot;2026-07-04&quot;:1.71},{&quot;2026-07-05&quot;:1.71},{&quot;2026-07-06&quot;:1.71},{&quot;2026-07-07&quot;:1.71},{&quot;2026-07-08&quot;:1.31},{&quot;2026-07-09&quot;:1.32},{&quot;2026-07-10&quot;:1.35},{&quot;2026-07-11&quot;:1.35},{&quot;2026-07-12&quot;:1.32},{&quot;2026-07-13&quot;:1.32},{&quot;2026-07-14&quot;:1.26},{&quot;2026-07-15&quot;:1.26},{&quot;2026-07-16&quot;:1.31},{&quot;2026-07-17&quot;:1.4},{&quot;2026-07-18&quot;:1.43},{&quot;2026-07-19&quot;:1.43},{&quot;2026-07-20&quot;:1.43},{&quot;2026-07-21&quot;:1.41},{&quot;2026-07-22&quot;:1.41},{&quot;2026-07-23&quot;:1.41},{&quot;2026-07-24&quot;:1.41},{&quot;2026-07-25&quot;:1.45},{&quot;2026-07-26&quot;:1.57},{&quot;2026-07-27&quot;:1.57},{&quot;2026-07-28&quot;:1.58},{&quot;2026-07-29&quot;:1.55},{&quot;2026-07-30&quot;:1.52},{&quot;2026-07-31&quot;:1.5},{&quot;2026-08-01&quot;:1.5},{&quot;2026-08-02&quot;:1.55},{&quot;2026-08-03&quot;:1.54},{&quot;2026-08-04&quot;:1.54},{&quot;2026-08-05&quot;:1.54},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.53},{&quot;2026-08-09&quot;:1.5},{&quot;2026-08-10&quot;:1.53},{&quot;2026-08-11&quot;:1.47},{&quot;2026-08-12&quot;:1.47},{&quot;2026-08-13&quot;:1.39},{&quot;2026-08-14&quot;:1.39},{&quot;2026-08-15&quot;:1.39},{&quot;2026-08-16&quot;:1.39},{&quot;2026-08-17&quot;:1.38},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.38},{&quot;2026-08-20&quot;:1.42},{&quot;2026-08-21&quot;:1.42},{&quot;2026-08-22&quot;:1.42},{&quot;2026-08-23&quot;:1.4},{&quot;2026-08-24&quot;:1.28},{&quot;2026-08-25&quot;:1.28},{&quot;2026-08-26&quot;:1.27},{&quot;2026-08-27&quot;:1.21},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.17},{&quot;2026-08-31&quot;:1.21},{&quot;2026-09-01&quot;:1.2},{&quot;2026-09-02&quot;:1.25},{&quot;2026-09-03&quot;:1.24},{&quot;2026-09-04&quot;:1.26},{&quot;2026-09-05&quot;:1.26},{&quot;2026-09-06&quot;:1.28},{&quot;2026-09-07&quot;:1.27},{&quot;2026-09-08&quot;:1.27},{&quot;2026-09-09&quot;:1.25},{&quot;2026-09-10&quot;:1.26},{&quot;2026-09-11&quot;:1.25}]}"
        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="79932"
  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-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">
            Quirion Ranger
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Quirion Ranger" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/11da032d-1cd5-48ed-ace7-fc042c4859e8.jpg?1783910195" />

        <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">
            Quirion Ranger
        </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 — Elf Ranger</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Quirion Ranger" src="https://cards.scryfall.io/large/front/1/1/11da032d-1cd5-48ed-ace7-fc042c4859e8.jpg?1783910195" />
    </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.21
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.51},{&quot;2026-06-14&quot;:1.51},{&quot;2026-06-15&quot;:1.53},{&quot;2026-06-16&quot;:1.53},{&quot;2026-06-17&quot;:1.54},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.52},{&quot;2026-06-20&quot;:1.52},{&quot;2026-06-21&quot;:1.52},{&quot;2026-06-22&quot;:1.52},{&quot;2026-06-23&quot;:1.52},{&quot;2026-06-24&quot;:1.52},{&quot;2026-06-25&quot;:1.52},{&quot;2026-06-26&quot;:1.52},{&quot;2026-06-27&quot;:1.52},{&quot;2026-06-28&quot;:1.52},{&quot;2026-06-29&quot;:1.52},{&quot;2026-06-30&quot;:1.52},{&quot;2026-07-01&quot;:1.53},{&quot;2026-07-02&quot;:1.53},{&quot;2026-07-03&quot;:1.53},{&quot;2026-07-04&quot;:1.55},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.5},{&quot;2026-07-08&quot;:1.5},{&quot;2026-07-09&quot;:1.49},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.48},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.48},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.57},{&quot;2026-07-19&quot;:1.54},{&quot;2026-07-20&quot;:1.57},{&quot;2026-07-21&quot;:1.57},{&quot;2026-07-22&quot;:1.57},{&quot;2026-07-23&quot;:1.51},{&quot;2026-07-24&quot;:1.5},{&quot;2026-07-25&quot;:1.5},{&quot;2026-07-26&quot;:1.5},{&quot;2026-07-27&quot;:1.5},{&quot;2026-07-28&quot;:1.5},{&quot;2026-07-29&quot;:1.46},{&quot;2026-07-30&quot;:1.46},{&quot;2026-07-31&quot;:1.41},{&quot;2026-08-01&quot;:1.41},{&quot;2026-08-02&quot;:1.38},{&quot;2026-08-03&quot;:1.38},{&quot;2026-08-04&quot;:1.29},{&quot;2026-08-05&quot;:1.29},{&quot;2026-08-07&quot;:1.28},{&quot;2026-08-08&quot;:1.29},{&quot;2026-08-09&quot;:1.22},{&quot;2026-08-10&quot;:1.16},{&quot;2026-08-11&quot;:1.13},{&quot;2026-08-12&quot;:1.1},{&quot;2026-08-13&quot;:1.1},{&quot;2026-08-14&quot;:1.08},{&quot;2026-08-15&quot;:1.08},{&quot;2026-08-16&quot;:1.06},{&quot;2026-08-17&quot;:1.05},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.06},{&quot;2026-08-22&quot;:1.06},{&quot;2026-08-23&quot;:1.07},{&quot;2026-08-24&quot;:1.06},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.07},{&quot;2026-08-28&quot;:1.09},{&quot;2026-08-29&quot;:1.09},{&quot;2026-08-30&quot;:1.12},{&quot;2026-08-31&quot;:1.12},{&quot;2026-09-01&quot;:1.12},{&quot;2026-09-02&quot;:1.12},{&quot;2026-09-03&quot;:1.16},{&quot;2026-09-04&quot;:1.17},{&quot;2026-09-05&quot;:1.17},{&quot;2026-09-06&quot;:1.17},{&quot;2026-09-07&quot;:1.17},{&quot;2026-09-08&quot;:1.17},{&quot;2026-09-09&quot;:1.17},{&quot;2026-09-10&quot;:1.17},{&quot;2026-09-11&quot;:1.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78962"
  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-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">
            Utopia Sprawl
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Utopia Sprawl" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/4/44d14297-f84b-40bd-bd0a-b67d13787ca0.jpg?1783910234" />

        <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">
            Utopia Sprawl
        </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">Enchantment — Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Utopia Sprawl" src="https://cards.scryfall.io/large/front/4/4/44d14297-f84b-40bd-bd0a-b67d13787ca0.jpg?1783910234" />
    </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.18
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.02},{&quot;2026-06-16&quot;:1.02},{&quot;2026-06-17&quot;:1.02},{&quot;2026-06-18&quot;:1.02},{&quot;2026-06-19&quot;:1.04},{&quot;2026-06-20&quot;:1.04},{&quot;2026-06-21&quot;:1.04},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-23&quot;:1.1},{&quot;2026-06-24&quot;:1.1},{&quot;2026-06-25&quot;:1.1},{&quot;2026-06-26&quot;:1.1},{&quot;2026-06-27&quot;:1.11},{&quot;2026-06-28&quot;:1.11},{&quot;2026-06-29&quot;:1.12},{&quot;2026-06-30&quot;:1.12},{&quot;2026-07-01&quot;:1.12},{&quot;2026-07-02&quot;:1.05},{&quot;2026-07-03&quot;:1.05},{&quot;2026-07-04&quot;:1.06},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.01},{&quot;2026-07-07&quot;:1.01},{&quot;2026-07-08&quot;:1.02},{&quot;2026-07-09&quot;:1.02},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.03},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.03},{&quot;2026-07-15&quot;:1.03},{&quot;2026-07-16&quot;:1.03},{&quot;2026-07-17&quot;:1.02},{&quot;2026-07-18&quot;:1.03},{&quot;2026-07-19&quot;:1.03},{&quot;2026-07-20&quot;:1.05},{&quot;2026-07-21&quot;:1.05},{&quot;2026-07-22&quot;:1.16},{&quot;2026-07-23&quot;:1.16},{&quot;2026-07-24&quot;:1.17},{&quot;2026-07-25&quot;:1.16},{&quot;2026-07-26&quot;:1.16},{&quot;2026-07-27&quot;:1.16},{&quot;2026-07-28&quot;:1.15},{&quot;2026-07-29&quot;:1.14},{&quot;2026-07-30&quot;:1.14},{&quot;2026-07-31&quot;:1.18},{&quot;2026-08-01&quot;:1.17},{&quot;2026-08-02&quot;:1.16},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.15},{&quot;2026-08-05&quot;:1.15},{&quot;2026-08-07&quot;:1.13},{&quot;2026-08-08&quot;:1.09},{&quot;2026-08-09&quot;:1.09},{&quot;2026-08-10&quot;:1.08},{&quot;2026-08-11&quot;:1.08},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.1},{&quot;2026-08-14&quot;:1.1},{&quot;2026-08-15&quot;:1.08},{&quot;2026-08-16&quot;:1.09},{&quot;2026-08-17&quot;:1.1},{&quot;2026-08-18&quot;:1.11},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.04},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:1.11},{&quot;2026-08-24&quot;:1.13},{&quot;2026-08-25&quot;:1.14},{&quot;2026-08-26&quot;:1.15},{&quot;2026-08-27&quot;:1.15},{&quot;2026-08-28&quot;:1.15},{&quot;2026-08-29&quot;:1.15},{&quot;2026-08-30&quot;:1.18},{&quot;2026-08-31&quot;:1.18},{&quot;2026-09-01&quot;:1.18},{&quot;2026-09-02&quot;:1.17},{&quot;2026-09-03&quot;:1.18},{&quot;2026-09-04&quot;:1.18},{&quot;2026-09-05&quot;:1.18},{&quot;2026-09-06&quot;:1.18},{&quot;2026-09-07&quot;:1.2},{&quot;2026-09-08&quot;:1.2},{&quot;2026-09-09&quot;:1.22},{&quot;2026-09-10&quot;:1.23},{&quot;2026-09-11&quot;:1.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="75852"
  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-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">
            Ghostly Flicker
        </span>


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Ghostly Flicker
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ghostly Flicker" src="https://cards.scryfall.io/large/front/8/c/8cf1402d-6506-4c33-b069-700741a6df81.jpg?1783910380" />
    </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.16
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.25},{&quot;2026-06-13&quot;:1.25},{&quot;2026-06-14&quot;:1.25},{&quot;2026-06-15&quot;:1.25},{&quot;2026-06-16&quot;:1.25},{&quot;2026-06-17&quot;:1.25},{&quot;2026-06-18&quot;:1.25},{&quot;2026-06-19&quot;:1.25},{&quot;2026-06-20&quot;:1.3},{&quot;2026-06-21&quot;:1.3},{&quot;2026-06-22&quot;:1.3},{&quot;2026-06-23&quot;:1.3},{&quot;2026-06-24&quot;:1.3},{&quot;2026-06-25&quot;:1.3},{&quot;2026-06-26&quot;:1.3},{&quot;2026-06-27&quot;:1.3},{&quot;2026-06-28&quot;:1.3},{&quot;2026-06-29&quot;:1.29},{&quot;2026-06-30&quot;:1.28},{&quot;2026-07-01&quot;:1.26},{&quot;2026-07-02&quot;:1.26},{&quot;2026-07-03&quot;:1.26},{&quot;2026-07-04&quot;:1.26},{&quot;2026-07-05&quot;:1.26},{&quot;2026-07-06&quot;:1.26},{&quot;2026-07-07&quot;:1.26},{&quot;2026-07-08&quot;:1.25},{&quot;2026-07-09&quot;:1.22},{&quot;2026-07-10&quot;:1.22},{&quot;2026-07-11&quot;:1.22},{&quot;2026-07-12&quot;:1.22},{&quot;2026-07-13&quot;:1.22},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.21},{&quot;2026-07-16&quot;:1.19},{&quot;2026-07-17&quot;:1.19},{&quot;2026-07-18&quot;:1.19},{&quot;2026-07-19&quot;:1.19},{&quot;2026-07-20&quot;:1.19},{&quot;2026-07-21&quot;:1.19},{&quot;2026-07-23&quot;:1.14},{&quot;2026-07-24&quot;:1.14},{&quot;2026-07-25&quot;:1.14},{&quot;2026-07-26&quot;:1.13},{&quot;2026-07-27&quot;:1.14},{&quot;2026-07-28&quot;:1.14},{&quot;2026-07-29&quot;:1.14},{&quot;2026-07-30&quot;:1.13},{&quot;2026-07-31&quot;:1.13},{&quot;2026-08-01&quot;:1.13},{&quot;2026-08-02&quot;:1.13},{&quot;2026-08-03&quot;:1.12},{&quot;2026-08-04&quot;:1.11},{&quot;2026-08-05&quot;:1.12},{&quot;2026-08-07&quot;:1.08},{&quot;2026-08-08&quot;:1.05},{&quot;2026-08-09&quot;:1.05},{&quot;2026-08-10&quot;:1.07},{&quot;2026-08-11&quot;:1.06},{&quot;2026-08-12&quot;:1.07},{&quot;2026-08-13&quot;:1.07},{&quot;2026-08-14&quot;:1.06},{&quot;2026-08-15&quot;:1.07},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.06},{&quot;2026-08-18&quot;:1.07},{&quot;2026-08-19&quot;:1.07},{&quot;2026-08-20&quot;:1.07},{&quot;2026-08-21&quot;:1.04},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:1.04},{&quot;2026-08-24&quot;:1.04},{&quot;2026-08-25&quot;:1.03},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.04},{&quot;2026-08-28&quot;:1.04},{&quot;2026-08-29&quot;:1.04},{&quot;2026-08-30&quot;:1.06},{&quot;2026-08-31&quot;:1.06},{&quot;2026-09-01&quot;:1.05},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.13},{&quot;2026-09-04&quot;:1.13},{&quot;2026-09-05&quot;:1.13},{&quot;2026-09-06&quot;:1.13},{&quot;2026-09-07&quot;:1.13},{&quot;2026-09-08&quot;:1.16},{&quot;2026-09-09&quot;:1.15},{&quot;2026-09-10&quot;:1.15},{&quot;2026-09-11&quot;:1.16}]}"
        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="78490"
  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-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">
            Flaring Pain
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Flaring Pain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a57f932c-5560-417a-8ed4-3ba2c582fb28.jpg?1783910253" />

        <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">
            Flaring Pain
        </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">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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Flaring Pain" src="https://cards.scryfall.io/large/front/a/5/a57f932c-5560-417a-8ed4-3ba2c582fb28.jpg?1783910253" />
    </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.15
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;:0.87},{&quot;2026-06-14&quot;:0.88},{&quot;2026-06-15&quot;:0.88},{&quot;2026-06-16&quot;:0.88},{&quot;2026-06-17&quot;:0.89},{&quot;2026-06-18&quot;:0.89},{&quot;2026-06-19&quot;:0.89},{&quot;2026-06-20&quot;:0.91},{&quot;2026-06-21&quot;:0.9},{&quot;2026-06-22&quot;:0.9},{&quot;2026-06-23&quot;:0.91},{&quot;2026-06-24&quot;:0.92},{&quot;2026-06-25&quot;:0.94},{&quot;2026-06-26&quot;:0.94},{&quot;2026-06-27&quot;:0.92},{&quot;2026-06-28&quot;:0.92},{&quot;2026-06-29&quot;:0.92},{&quot;2026-06-30&quot;:0.92},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:0.89},{&quot;2026-07-03&quot;:0.89},{&quot;2026-07-04&quot;:0.87},{&quot;2026-07-05&quot;:0.87},{&quot;2026-07-06&quot;:0.87},{&quot;2026-07-07&quot;:0.87},{&quot;2026-07-08&quot;:0.87},{&quot;2026-07-09&quot;:0.88},{&quot;2026-07-10&quot;:0.88},{&quot;2026-07-11&quot;:0.88},{&quot;2026-07-12&quot;:0.87},{&quot;2026-07-13&quot;:0.87},{&quot;2026-07-14&quot;:0.87},{&quot;2026-07-15&quot;:0.87},{&quot;2026-07-16&quot;:0.87},{&quot;2026-07-17&quot;:0.87},{&quot;2026-07-18&quot;:0.86},{&quot;2026-07-19&quot;:0.87},{&quot;2026-07-20&quot;:0.87},{&quot;2026-07-21&quot;:0.87},{&quot;2026-07-22&quot;:0.87},{&quot;2026-07-23&quot;:0.87},{&quot;2026-07-24&quot;:0.87},{&quot;2026-07-25&quot;:0.87},{&quot;2026-07-26&quot;:0.87},{&quot;2026-07-27&quot;:0.87},{&quot;2026-07-28&quot;:0.87},{&quot;2026-07-29&quot;:0.91},{&quot;2026-07-30&quot;:0.91},{&quot;2026-07-31&quot;:0.93},{&quot;2026-08-01&quot;:0.92},{&quot;2026-08-02&quot;:0.92},{&quot;2026-08-03&quot;:0.92},{&quot;2026-08-04&quot;:0.95},{&quot;2026-08-05&quot;:0.95},{&quot;2026-08-07&quot;:0.96},{&quot;2026-08-08&quot;:0.95},{&quot;2026-08-09&quot;:0.96},{&quot;2026-08-10&quot;:0.96},{&quot;2026-08-11&quot;:0.96},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.96},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.96},{&quot;2026-08-16&quot;:0.97},{&quot;2026-08-17&quot;:0.99},{&quot;2026-08-18&quot;:0.98},{&quot;2026-08-19&quot;:0.98},{&quot;2026-08-20&quot;:1.01},{&quot;2026-08-21&quot;:1.01},{&quot;2026-08-22&quot;:1.02},{&quot;2026-08-23&quot;:1.01},{&quot;2026-08-24&quot;:1.0},{&quot;2026-08-25&quot;:1.01},{&quot;2026-08-26&quot;:1.01},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.05},{&quot;2026-08-31&quot;:1.07},{&quot;2026-09-01&quot;:1.07},{&quot;2026-09-02&quot;:1.09},{&quot;2026-09-03&quot;:1.09},{&quot;2026-09-04&quot;:1.09},{&quot;2026-09-05&quot;:1.06},{&quot;2026-09-06&quot;:1.06},{&quot;2026-09-07&quot;:1.07},{&quot;2026-09-08&quot;:1.07},{&quot;2026-09-09&quot;:1.08},{&quot;2026-09-10&quot;:1.15},{&quot;2026-09-11&quot;:1.15}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="75832"
  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-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">
            Metallic Rebuke
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.14
          </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="Metallic Rebuke" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/a/ba14bbe1-c9e9-4d59-9767-7c7b966d095a.jpg?1783932340" />

        <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">
            Metallic Rebuke
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Metallic Rebuke" src="https://cards.scryfall.io/large/front/b/a/ba14bbe1-c9e9-4d59-9767-7c7b966d095a.jpg?1783932340" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kobolds of Kher Keep" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b998e128-4e33-446b-bcae-c7a1b7cc3d3f.jpg?1783910560" />

        <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">
            Kobolds of Kher Keep
        </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 — Kobold</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Kobolds of Kher Keep" src="https://cards.scryfall.io/large/front/b/9/b998e128-4e33-446b-bcae-c7a1b7cc3d3f.jpg?1783910560" />
    </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.11
              </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">
                $9.84
              </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;2026-06-13&quot;:10.46},{&quot;2026-06-14&quot;:10.46},{&quot;2026-06-15&quot;:10.46},{&quot;2026-06-16&quot;:10.46},{&quot;2026-06-17&quot;:10.46},{&quot;2026-06-18&quot;:10.34},{&quot;2026-06-19&quot;:10.34},{&quot;2026-06-20&quot;:10.2},{&quot;2026-06-21&quot;:10.2},{&quot;2026-06-22&quot;:10.34},{&quot;2026-06-23&quot;:10.34},{&quot;2026-06-24&quot;:10.34},{&quot;2026-06-25&quot;:10.34},{&quot;2026-06-26&quot;:10.34},{&quot;2026-06-27&quot;:10.34},{&quot;2026-06-28&quot;:10.34},{&quot;2026-06-29&quot;:10.34},{&quot;2026-06-30&quot;:10.34},{&quot;2026-07-01&quot;:10.34},{&quot;2026-07-02&quot;:10.34},{&quot;2026-07-03&quot;:10.33},{&quot;2026-07-04&quot;:10.33},{&quot;2026-07-05&quot;:10.33},{&quot;2026-07-06&quot;:10.34},{&quot;2026-07-07&quot;:10.34},{&quot;2026-07-08&quot;:10.34},{&quot;2026-07-09&quot;:10.34},{&quot;2026-07-10&quot;:10.31},{&quot;2026-07-11&quot;:10.31},{&quot;2026-07-12&quot;:10.31},{&quot;2026-07-13&quot;:10.31},{&quot;2026-07-14&quot;:10.31},{&quot;2026-07-15&quot;:10.3},{&quot;2026-07-16&quot;:10.3},{&quot;2026-07-17&quot;:10.28},{&quot;2026-07-18&quot;:10.28},{&quot;2026-07-19&quot;:10.28},{&quot;2026-07-20&quot;:10.28},{&quot;2026-07-21&quot;:10.28},{&quot;2026-07-22&quot;:10.28},{&quot;2026-07-23&quot;:10.28},{&quot;2026-07-24&quot;:10.28},{&quot;2026-07-25&quot;:10.28},{&quot;2026-07-26&quot;:10.28},{&quot;2026-07-27&quot;:10.28},{&quot;2026-07-28&quot;:10.28},{&quot;2026-07-29&quot;:10.28},{&quot;2026-07-30&quot;:10.28},{&quot;2026-07-31&quot;:10.28},{&quot;2026-08-01&quot;:10.28},{&quot;2026-08-02&quot;:9.95},{&quot;2026-08-03&quot;:9.95},{&quot;2026-08-04&quot;:9.95},{&quot;2026-08-05&quot;:9.95},{&quot;2026-08-07&quot;:9.95},{&quot;2026-08-08&quot;:9.95},{&quot;2026-08-09&quot;:9.95},{&quot;2026-08-10&quot;:9.95},{&quot;2026-08-11&quot;:9.95},{&quot;2026-08-12&quot;:9.95},{&quot;2026-08-13&quot;:9.95},{&quot;2026-08-14&quot;:9.95},{&quot;2026-08-15&quot;:9.95},{&quot;2026-08-16&quot;:9.95},{&quot;2026-08-17&quot;:9.89},{&quot;2026-08-18&quot;:9.89},{&quot;2026-08-19&quot;:9.89},{&quot;2026-08-20&quot;:9.89},{&quot;2026-08-21&quot;:9.89},{&quot;2026-08-22&quot;:9.89},{&quot;2026-08-23&quot;:9.89},{&quot;2026-08-24&quot;:9.89},{&quot;2026-08-25&quot;:9.89},{&quot;2026-08-26&quot;:9.91},{&quot;2026-08-27&quot;:9.91},{&quot;2026-08-28&quot;:9.91},{&quot;2026-08-29&quot;:9.91},{&quot;2026-08-30&quot;:9.91},{&quot;2026-08-31&quot;:9.91},{&quot;2026-09-01&quot;:9.91},{&quot;2026-09-02&quot;:9.91},{&quot;2026-09-03&quot;:9.91},{&quot;2026-09-04&quot;:9.91},{&quot;2026-09-05&quot;:9.86},{&quot;2026-09-06&quot;:9.84},{&quot;2026-09-07&quot;:9.84},{&quot;2026-09-08&quot;:9.84},{&quot;2026-09-09&quot;:9.84},{&quot;2026-09-10&quot;:9.84},{&quot;2026-09-11&quot;:9.84}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.14},{&quot;2026-06-14&quot;:1.14},{&quot;2026-06-15&quot;:1.12},{&quot;2026-06-16&quot;:1.27},{&quot;2026-06-17&quot;:1.29},{&quot;2026-06-18&quot;:1.44},{&quot;2026-06-19&quot;:1.45},{&quot;2026-06-20&quot;:1.45},{&quot;2026-06-21&quot;:1.45},{&quot;2026-06-22&quot;:1.46},{&quot;2026-06-23&quot;:1.46},{&quot;2026-06-24&quot;:1.46},{&quot;2026-06-25&quot;:1.51},{&quot;2026-06-26&quot;:1.51},{&quot;2026-06-27&quot;:1.61},{&quot;2026-06-28&quot;:1.61},{&quot;2026-06-29&quot;:1.61},{&quot;2026-06-30&quot;:1.61},{&quot;2026-07-01&quot;:1.64},{&quot;2026-07-02&quot;:1.82},{&quot;2026-07-03&quot;:1.81},{&quot;2026-07-04&quot;:1.81},{&quot;2026-07-05&quot;:1.81},{&quot;2026-07-06&quot;:1.81},{&quot;2026-07-07&quot;:1.81},{&quot;2026-07-08&quot;:1.81},{&quot;2026-07-09&quot;:1.81},{&quot;2026-07-10&quot;:1.81},{&quot;2026-07-11&quot;:1.81},{&quot;2026-07-12&quot;:1.81},{&quot;2026-07-13&quot;:1.81},{&quot;2026-07-14&quot;:1.81},{&quot;2026-07-15&quot;:1.81},{&quot;2026-07-16&quot;:1.81},{&quot;2026-07-17&quot;:1.8},{&quot;2026-07-18&quot;:1.8},{&quot;2026-07-19&quot;:1.8},{&quot;2026-07-20&quot;:1.8},{&quot;2026-07-21&quot;:1.8},{&quot;2026-07-22&quot;:1.8},{&quot;2026-07-23&quot;:1.8},{&quot;2026-07-24&quot;:1.8},{&quot;2026-07-25&quot;:1.8},{&quot;2026-07-26&quot;:1.8},{&quot;2026-07-27&quot;:1.8},{&quot;2026-07-28&quot;:1.65},{&quot;2026-07-29&quot;:1.68},{&quot;2026-07-30&quot;:1.7},{&quot;2026-07-31&quot;:1.52},{&quot;2026-08-01&quot;:1.56},{&quot;2026-08-02&quot;:1.58},{&quot;2026-08-03&quot;:1.66},{&quot;2026-08-04&quot;:1.57},{&quot;2026-08-05&quot;:1.56},{&quot;2026-08-07&quot;:1.62},{&quot;2026-08-08&quot;:1.59},{&quot;2026-08-09&quot;:1.47},{&quot;2026-08-10&quot;:1.47},{&quot;2026-08-11&quot;:1.51},{&quot;2026-08-12&quot;:1.53},{&quot;2026-08-13&quot;:1.55},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.51},{&quot;2026-08-16&quot;:1.43},{&quot;2026-08-17&quot;:1.38},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.36},{&quot;2026-08-20&quot;:1.34},{&quot;2026-08-21&quot;:1.31},{&quot;2026-08-22&quot;:1.19},{&quot;2026-08-23&quot;:1.19},{&quot;2026-08-24&quot;:1.21},{&quot;2026-08-25&quot;:1.2},{&quot;2026-08-26&quot;:1.2},{&quot;2026-08-27&quot;:1.18},{&quot;2026-08-28&quot;:1.15},{&quot;2026-08-29&quot;:1.15},{&quot;2026-08-30&quot;:1.13},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.12},{&quot;2026-09-02&quot;:1.09},{&quot;2026-09-03&quot;:1.09},{&quot;2026-09-04&quot;:1.09},{&quot;2026-09-05&quot;:1.1},{&quot;2026-09-06&quot;:1.1},{&quot;2026-09-07&quot;:1.1},{&quot;2026-09-08&quot;:1.11},{&quot;2026-09-09&quot;:1.11},{&quot;2026-09-10&quot;:1.11},{&quot;2026-09-11&quot;:1.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78751"
  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-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">
            Lava Dart
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lava Dart" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aaf4dad6-2a00-419e-95d0-023c80ff973a.jpg?1783910242" />

        <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">
            Lava Dart
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lava Dart" src="https://cards.scryfall.io/large/front/a/a/aaf4dad6-2a00-419e-95d0-023c80ff973a.jpg?1783910242" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-11&quot;:0.71},{&quot;2026-06-12&quot;:0.73},{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.72},{&quot;2026-06-15&quot;:0.72},{&quot;2026-06-16&quot;:0.74},{&quot;2026-06-17&quot;:0.74},{&quot;2026-06-18&quot;:0.81},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.83},{&quot;2026-06-22&quot;:0.83},{&quot;2026-06-23&quot;:0.83},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.83},{&quot;2026-06-26&quot;:0.83},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.84},{&quot;2026-06-29&quot;:0.84},{&quot;2026-06-30&quot;:0.84},{&quot;2026-07-01&quot;:0.84},{&quot;2026-07-02&quot;:0.84},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.84},{&quot;2026-07-08&quot;:0.87},{&quot;2026-07-09&quot;:0.86},{&quot;2026-07-10&quot;:0.86},{&quot;2026-07-11&quot;:0.85},{&quot;2026-07-12&quot;:0.8},{&quot;2026-07-13&quot;:0.8},{&quot;2026-07-14&quot;:0.8},{&quot;2026-07-15&quot;:0.8},{&quot;2026-07-16&quot;:0.8},{&quot;2026-07-17&quot;:0.8},{&quot;2026-07-18&quot;:0.82},{&quot;2026-07-19&quot;:0.82},{&quot;2026-07-20&quot;:0.81},{&quot;2026-07-21&quot;:0.81},{&quot;2026-07-23&quot;:0.82},{&quot;2026-07-25&quot;:0.91},{&quot;2026-07-26&quot;:0.91},{&quot;2026-07-27&quot;:0.91},{&quot;2026-07-28&quot;:0.9},{&quot;2026-07-29&quot;:0.9},{&quot;2026-07-30&quot;:0.9},{&quot;2026-07-31&quot;:0.9},{&quot;2026-08-01&quot;:0.9},{&quot;2026-08-02&quot;:0.9},{&quot;2026-08-03&quot;:0.9},{&quot;2026-08-04&quot;:0.96},{&quot;2026-08-05&quot;:0.96},{&quot;2026-08-07&quot;:0.96},{&quot;2026-08-08&quot;:0.96},{&quot;2026-08-09&quot;:0.96},{&quot;2026-08-10&quot;:0.95},{&quot;2026-08-11&quot;:0.95},{&quot;2026-08-12&quot;:0.95},{&quot;2026-08-13&quot;:0.89},{&quot;2026-08-14&quot;:0.89},{&quot;2026-08-15&quot;:0.93},{&quot;2026-08-16&quot;:0.92},{&quot;2026-08-17&quot;:0.91},{&quot;2026-08-18&quot;:0.95},{&quot;2026-08-19&quot;:0.96},{&quot;2026-08-20&quot;:0.96},{&quot;2026-08-21&quot;:0.96},{&quot;2026-08-22&quot;:0.97},{&quot;2026-08-23&quot;:0.97},{&quot;2026-08-24&quot;:0.97},{&quot;2026-08-25&quot;:0.97},{&quot;2026-08-26&quot;:1.06},{&quot;2026-08-27&quot;:1.06},{&quot;2026-08-28&quot;:1.14},{&quot;2026-08-29&quot;:1.14},{&quot;2026-08-30&quot;:1.14},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.17},{&quot;2026-09-03&quot;:1.18},{&quot;2026-09-04&quot;:1.17},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.1},{&quot;2026-09-07&quot;:1.07},{&quot;2026-09-08&quot;:1.07},{&quot;2026-09-09&quot;:1.07},{&quot;2026-09-10&quot;:1.09},{&quot;2026-09-11&quot;:1.1}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="52993"
  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-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">
            Darksteel Citadel
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Darksteel Citadel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/212eb06d-5bc3-484f-8e94-ee0f32a2d86a.jpg?1783910587" />

        <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 Citadel
        </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 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="Darksteel Citadel" src="https://cards.scryfall.io/large/front/2/1/212eb06d-5bc3-484f-8e94-ee0f32a2d86a.jpg?1783910587" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.0},{&quot;2026-06-14&quot;:1.0},{&quot;2026-06-15&quot;:0.99},{&quot;2026-06-16&quot;:0.98},{&quot;2026-06-17&quot;:0.97},{&quot;2026-06-18&quot;:0.97},{&quot;2026-06-19&quot;:0.96},{&quot;2026-06-20&quot;:0.96},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:1.0},{&quot;2026-06-23&quot;:1.0},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.03},{&quot;2026-06-26&quot;:1.02},{&quot;2026-06-27&quot;:1.01},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.05},{&quot;2026-07-01&quot;:1.06},{&quot;2026-07-02&quot;:1.03},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:0.99},{&quot;2026-07-05&quot;:0.99},{&quot;2026-07-06&quot;:0.99},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:0.99},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.99},{&quot;2026-07-11&quot;:0.99},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:1.02},{&quot;2026-07-14&quot;:1.02},{&quot;2026-07-15&quot;:1.03},{&quot;2026-07-16&quot;:1.09},{&quot;2026-07-17&quot;:1.1},{&quot;2026-07-18&quot;:1.1},{&quot;2026-07-19&quot;:1.11},{&quot;2026-07-20&quot;:1.12},{&quot;2026-07-21&quot;:1.12},{&quot;2026-07-22&quot;:1.12},{&quot;2026-07-23&quot;:1.13},{&quot;2026-07-24&quot;:1.13},{&quot;2026-07-25&quot;:1.15},{&quot;2026-07-26&quot;:1.15},{&quot;2026-07-27&quot;:1.15},{&quot;2026-07-28&quot;:1.15},{&quot;2026-07-29&quot;:1.14},{&quot;2026-07-30&quot;:1.15},{&quot;2026-07-31&quot;:1.16},{&quot;2026-08-01&quot;:1.16},{&quot;2026-08-02&quot;:1.16},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.16},{&quot;2026-08-07&quot;:1.15},{&quot;2026-08-08&quot;:1.15},{&quot;2026-08-09&quot;:1.1},{&quot;2026-08-10&quot;:1.09},{&quot;2026-08-11&quot;:1.08},{&quot;2026-08-12&quot;:1.08},{&quot;2026-08-13&quot;:1.06},{&quot;2026-08-14&quot;:1.06},{&quot;2026-08-15&quot;:1.05},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.05},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.08},{&quot;2026-08-22&quot;:1.09},{&quot;2026-08-23&quot;:1.09},{&quot;2026-08-24&quot;:1.09},{&quot;2026-08-25&quot;:1.08},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.07},{&quot;2026-08-28&quot;:1.07},{&quot;2026-08-29&quot;:1.07},{&quot;2026-08-30&quot;:1.08},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.07},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.08},{&quot;2026-09-04&quot;:1.07},{&quot;2026-09-05&quot;:1.09},{&quot;2026-09-06&quot;:1.09},{&quot;2026-09-07&quot;:1.09},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.09},{&quot;2026-09-10&quot;:1.09},{&quot;2026-09-11&quot;:1.09}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="75604"
  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-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">
            Okiba-Gang Shinobi
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Okiba-Gang Shinobi" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/8/680dd35f-afed-4bae-bd9f-ab8ae33246ff.jpg?1783932347" />

        <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">
            Okiba-Gang Shinobi
        </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 — Rat Ninja</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Okiba-Gang Shinobi" src="https://cards.scryfall.io/large/front/6/8/680dd35f-afed-4bae-bd9f-ab8ae33246ff.jpg?1783932347" />
    </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.06
              </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.75</span>
              <span class="text-xs text-grey-text">Credit: $0.98</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.03},{&quot;2026-06-14&quot;:1.03},{&quot;2026-06-15&quot;:1.03},{&quot;2026-06-16&quot;:1.03},{&quot;2026-06-17&quot;:1.04},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:1.04},{&quot;2026-06-20&quot;:1.03},{&quot;2026-06-21&quot;:1.03},{&quot;2026-06-22&quot;:1.03},{&quot;2026-06-23&quot;:1.03},{&quot;2026-06-24&quot;:1.03},{&quot;2026-06-25&quot;:1.03},{&quot;2026-06-26&quot;:1.03},{&quot;2026-06-27&quot;:1.03},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.03},{&quot;2026-07-01&quot;:1.05},{&quot;2026-07-02&quot;:1.05},{&quot;2026-07-03&quot;:1.05},{&quot;2026-07-04&quot;:1.05},{&quot;2026-07-05&quot;:1.04},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.04},{&quot;2026-07-08&quot;:1.05},{&quot;2026-07-09&quot;:1.05},{&quot;2026-07-10&quot;:1.05},{&quot;2026-07-11&quot;:1.05},{&quot;2026-07-12&quot;:1.05},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.05},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.06},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.05},{&quot;2026-07-21&quot;:1.05},{&quot;2026-07-22&quot;:1.05},{&quot;2026-07-23&quot;:1.05},{&quot;2026-07-24&quot;:1.05},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:1.02},{&quot;2026-07-27&quot;:1.02},{&quot;2026-07-28&quot;:1.02},{&quot;2026-07-29&quot;:1.02},{&quot;2026-07-30&quot;:1.02},{&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.11},{&quot;2026-08-08&quot;:1.11},{&quot;2026-08-09&quot;:1.11},{&quot;2026-08-10&quot;:1.11},{&quot;2026-08-11&quot;:1.11},{&quot;2026-08-12&quot;:1.11},{&quot;2026-08-13&quot;:1.11},{&quot;2026-08-14&quot;:1.11},{&quot;2026-08-15&quot;:1.11},{&quot;2026-08-16&quot;:1.11},{&quot;2026-08-17&quot;:1.11},{&quot;2026-08-18&quot;:1.11},{&quot;2026-08-19&quot;:1.11},{&quot;2026-08-20&quot;:1.11},{&quot;2026-08-21&quot;:1.11},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.08},{&quot;2026-08-24&quot;:1.08},{&quot;2026-08-25&quot;:1.08},{&quot;2026-08-26&quot;:1.08},{&quot;2026-08-27&quot;:1.08},{&quot;2026-08-28&quot;:1.08},{&quot;2026-08-29&quot;:1.08},{&quot;2026-08-30&quot;:1.08},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.08},{&quot;2026-09-02&quot;:1.06},{&quot;2026-09-03&quot;:1.06},{&quot;2026-09-04&quot;:1.06},{&quot;2026-09-05&quot;:1.06},{&quot;2026-09-06&quot;:1.06},{&quot;2026-09-07&quot;:1.06},{&quot;2026-09-08&quot;:1.06},{&quot;2026-09-09&quot;:1.06},{&quot;2026-09-10&quot;:1.06},{&quot;2026-09-11&quot;:1.06}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="87427"
  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-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">
            Gray Merchant of Asphodel
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $1.06
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Gray Merchant of Asphodel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/e/9e341220-b2d1-4869-9eb1-523f95074566.jpg?1783931801" />

        <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">
            Gray Merchant of Asphodel
        </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 — Zombie</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gray Merchant of Asphodel" src="https://cards.scryfall.io/large/front/9/e/9e341220-b2d1-4869-9eb1-523f95074566.jpg?1783931801" />
    </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.06
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  9%
                </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-08&quot;:1.2},{&quot;2026-06-10&quot;:1.19},{&quot;2026-06-11&quot;:1.19},{&quot;2026-06-12&quot;:1.19},{&quot;2026-06-13&quot;:1.19},{&quot;2026-06-14&quot;:1.19},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.19},{&quot;2026-06-21&quot;:1.19},{&quot;2026-06-22&quot;:1.19},{&quot;2026-06-24&quot;:1.18},{&quot;2026-06-25&quot;:1.19},{&quot;2026-06-26&quot;:1.18},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.18},{&quot;2026-06-29&quot;:1.18},{&quot;2026-06-30&quot;:1.18},{&quot;2026-07-01&quot;:1.18},{&quot;2026-07-02&quot;:1.18},{&quot;2026-07-03&quot;:1.16},{&quot;2026-07-04&quot;:1.16},{&quot;2026-07-05&quot;:1.16},{&quot;2026-07-06&quot;:1.16},{&quot;2026-07-07&quot;:1.16},{&quot;2026-07-08&quot;:1.16},{&quot;2026-07-09&quot;:1.16},{&quot;2026-07-10&quot;:1.16},{&quot;2026-07-11&quot;:1.16},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:0.99},{&quot;2026-07-14&quot;:1.14},{&quot;2026-07-15&quot;:0.97},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:0.98},{&quot;2026-07-19&quot;:0.99},{&quot;2026-07-20&quot;:0.96},{&quot;2026-07-21&quot;:0.96},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-25&quot;:0.95},{&quot;2026-07-26&quot;:0.95},{&quot;2026-07-27&quot;:0.95},{&quot;2026-07-29&quot;:1.04},{&quot;2026-07-30&quot;:1.04},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.03},{&quot;2026-08-02&quot;:1.03},{&quot;2026-08-03&quot;:0.99},{&quot;2026-08-04&quot;:0.99},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:0.99},{&quot;2026-08-08&quot;:0.99},{&quot;2026-08-09&quot;:0.99},{&quot;2026-08-10&quot;:0.99},{&quot;2026-08-11&quot;:0.99},{&quot;2026-08-12&quot;:1.0},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:1.0},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.01},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:1.0},{&quot;2026-08-20&quot;:1.0},{&quot;2026-08-21&quot;:1.02},{&quot;2026-08-22&quot;:1.02},{&quot;2026-08-23&quot;:1.03},{&quot;2026-08-24&quot;:1.03},{&quot;2026-08-25&quot;:1.03},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.04},{&quot;2026-08-28&quot;:1.04},{&quot;2026-08-29&quot;:1.04},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.11},{&quot;2026-09-01&quot;:1.11},{&quot;2026-09-02&quot;:1.17},{&quot;2026-09-03&quot;:1.17},{&quot;2026-09-04&quot;:1.17},{&quot;2026-09-05&quot;:1.17},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.16},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.06},{&quot;2026-09-10&quot;:1.06},{&quot;2026-09-11&quot;:1.06}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="110981"
  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-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">
            Crimson Wisps
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.99
          </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="Crimson Wisps" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/4/443a9cee-01aa-43ab-89ef-aff9d596a077.jpg?1783903436" />

        <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">
            Crimson Wisps
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crimson Wisps" src="https://cards.scryfall.io/large/front/4/4/443a9cee-01aa-43ab-89ef-aff9d596a077.jpg?1783903436" />
    </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.99
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </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;normal&quot;:[{&quot;2026-06-25&quot;:0.94},{&quot;2026-06-26&quot;:0.93},{&quot;2026-06-27&quot;:0.93},{&quot;2026-06-28&quot;:0.93},{&quot;2026-06-29&quot;:0.93},{&quot;2026-06-30&quot;:0.93},{&quot;2026-07-01&quot;:0.93},{&quot;2026-07-02&quot;:0.93},{&quot;2026-07-03&quot;:0.93},{&quot;2026-07-04&quot;:0.93},{&quot;2026-07-05&quot;:0.93},{&quot;2026-07-06&quot;:0.93},{&quot;2026-07-07&quot;:0.93},{&quot;2026-07-08&quot;:0.93},{&quot;2026-07-09&quot;:0.93},{&quot;2026-07-10&quot;:0.94},{&quot;2026-07-11&quot;:0.94},{&quot;2026-07-12&quot;:0.94},{&quot;2026-07-13&quot;:0.94},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:0.93},{&quot;2026-07-17&quot;:0.92},{&quot;2026-07-18&quot;:0.92},{&quot;2026-07-19&quot;:0.92},{&quot;2026-07-20&quot;:0.95},{&quot;2026-07-21&quot;:0.95},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-25&quot;:0.94},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-29&quot;:0.94},{&quot;2026-07-30&quot;:0.94},{&quot;2026-07-31&quot;:0.95},{&quot;2026-08-01&quot;:0.95},{&quot;2026-08-02&quot;:0.95},{&quot;2026-08-03&quot;:0.95},{&quot;2026-08-04&quot;:0.95},{&quot;2026-08-05&quot;:0.95},{&quot;2026-08-07&quot;:0.95},{&quot;2026-08-08&quot;:0.95},{&quot;2026-08-09&quot;:0.95},{&quot;2026-08-10&quot;:0.95},{&quot;2026-08-11&quot;:0.95},{&quot;2026-08-12&quot;:0.95},{&quot;2026-08-13&quot;:0.95},{&quot;2026-08-14&quot;:0.95},{&quot;2026-08-15&quot;:0.95},{&quot;2026-08-16&quot;:0.95},{&quot;2026-08-17&quot;:0.95},{&quot;2026-08-18&quot;:0.94},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.95},{&quot;2026-08-21&quot;:0.95},{&quot;2026-08-22&quot;:0.94},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.94},{&quot;2026-08-25&quot;:0.94},{&quot;2026-08-26&quot;:0.98},{&quot;2026-08-27&quot;:0.98},{&quot;2026-08-28&quot;:0.98},{&quot;2026-08-29&quot;:0.98},{&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;:1.01},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:1.0},{&quot;2026-09-05&quot;:1.0},{&quot;2026-09-06&quot;:1.0},{&quot;2026-09-07&quot;:1.0},{&quot;2026-09-08&quot;:1.0},{&quot;2026-09-09&quot;:1.0},{&quot;2026-09-10&quot;:1.0},{&quot;2026-09-11&quot;:0.99}]}"
        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="75205"
  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-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">
            Khalni Garden
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Khalni Garden" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/c/ec359d58-72af-4de7-b62a-69c48a914a68.jpg?1783910411" />

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Khalni Garden" src="https://cards.scryfall.io/large/front/e/c/ec359d58-72af-4de7-b62a-69c48a914a68.jpg?1783910411" />
    </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.98
              </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.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-08&quot;:0.93},{&quot;2026-06-10&quot;:0.95},{&quot;2026-06-11&quot;:0.96},{&quot;2026-06-12&quot;:0.97},{&quot;2026-06-13&quot;:0.98},{&quot;2026-06-14&quot;:0.98},{&quot;2026-06-15&quot;:0.96},{&quot;2026-06-16&quot;:0.99},{&quot;2026-06-17&quot;:0.99},{&quot;2026-06-18&quot;:0.99},{&quot;2026-06-19&quot;:0.99},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.99},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.98},{&quot;2026-06-26&quot;:0.98},{&quot;2026-06-27&quot;:0.97},{&quot;2026-06-28&quot;:0.96},{&quot;2026-06-29&quot;:0.96},{&quot;2026-06-30&quot;:0.96},{&quot;2026-07-01&quot;:0.95},{&quot;2026-07-02&quot;:0.95},{&quot;2026-07-03&quot;:0.95},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.95},{&quot;2026-07-06&quot;:0.95},{&quot;2026-07-07&quot;:0.95},{&quot;2026-07-08&quot;:0.94},{&quot;2026-07-09&quot;:0.92},{&quot;2026-07-10&quot;:0.93},{&quot;2026-07-11&quot;:0.93},{&quot;2026-07-12&quot;:0.93},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.89},{&quot;2026-07-15&quot;:0.89},{&quot;2026-07-16&quot;:0.89},{&quot;2026-07-17&quot;:0.89},{&quot;2026-07-18&quot;:0.89},{&quot;2026-07-19&quot;:0.89},{&quot;2026-07-20&quot;:0.89},{&quot;2026-07-21&quot;:0.89},{&quot;2026-07-23&quot;:0.84},{&quot;2026-07-25&quot;:0.84},{&quot;2026-07-26&quot;:0.83},{&quot;2026-07-27&quot;:0.83},{&quot;2026-07-29&quot;:0.83},{&quot;2026-07-30&quot;:0.83},{&quot;2026-07-31&quot;:0.84},{&quot;2026-08-01&quot;:0.82},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.8},{&quot;2026-08-04&quot;:0.81},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.81},{&quot;2026-08-08&quot;:0.81},{&quot;2026-08-09&quot;:0.81},{&quot;2026-08-10&quot;:0.83},{&quot;2026-08-11&quot;:0.82},{&quot;2026-08-12&quot;:0.82},{&quot;2026-08-13&quot;:0.82},{&quot;2026-08-14&quot;:0.82},{&quot;2026-08-15&quot;:0.81},{&quot;2026-08-16&quot;:0.82},{&quot;2026-08-17&quot;:0.83},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.83},{&quot;2026-08-20&quot;:0.83},{&quot;2026-08-21&quot;:0.83},{&quot;2026-08-22&quot;:0.83},{&quot;2026-08-23&quot;:0.83},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.89},{&quot;2026-08-26&quot;:0.9},{&quot;2026-08-27&quot;:0.9},{&quot;2026-08-28&quot;:0.9},{&quot;2026-08-29&quot;:0.9},{&quot;2026-08-30&quot;:0.91},{&quot;2026-08-31&quot;:0.91},{&quot;2026-09-01&quot;:0.91},{&quot;2026-09-02&quot;:0.91},{&quot;2026-09-03&quot;:0.91},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.92},{&quot;2026-09-06&quot;:0.92},{&quot;2026-09-07&quot;:0.92},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.92},{&quot;2026-09-10&quot;:0.94},{&quot;2026-09-11&quot;:0.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="79915"
  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-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">
            Skyshroud Claim
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Skyshroud Claim" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b946e86c-a6fd-4377-9746-bc08b71e499a.jpg?1783910198" />

        <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">
            Skyshroud Claim
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Skyshroud Claim" src="https://cards.scryfall.io/large/front/b/9/b946e86c-a6fd-4377-9746-bc08b71e499a.jpg?1783910198" />
    </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.98
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.87},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.86},{&quot;2026-06-16&quot;:0.85},{&quot;2026-06-17&quot;:0.85},{&quot;2026-06-18&quot;:0.84},{&quot;2026-06-19&quot;:0.84},{&quot;2026-06-20&quot;:0.85},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.85},{&quot;2026-06-23&quot;:0.85},{&quot;2026-06-24&quot;:0.85},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.85},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.83},{&quot;2026-06-30&quot;:0.83},{&quot;2026-07-01&quot;:0.83},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.83},{&quot;2026-07-08&quot;:0.85},{&quot;2026-07-09&quot;:0.84},{&quot;2026-07-10&quot;:0.84},{&quot;2026-07-11&quot;:0.83},{&quot;2026-07-12&quot;:0.83},{&quot;2026-07-13&quot;:0.86},{&quot;2026-07-14&quot;:0.86},{&quot;2026-07-15&quot;:0.86},{&quot;2026-07-16&quot;:0.84},{&quot;2026-07-17&quot;:0.82},{&quot;2026-07-18&quot;:0.82},{&quot;2026-07-19&quot;:0.82},{&quot;2026-07-20&quot;:0.83},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-22&quot;:0.84},{&quot;2026-07-23&quot;:0.84},{&quot;2026-07-24&quot;:0.84},{&quot;2026-07-25&quot;:0.82},{&quot;2026-07-26&quot;:0.82},{&quot;2026-07-27&quot;:0.82},{&quot;2026-07-28&quot;:0.83},{&quot;2026-07-29&quot;:0.83},{&quot;2026-07-30&quot;:0.8},{&quot;2026-07-31&quot;:0.81},{&quot;2026-08-01&quot;:0.8},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.81},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.82},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.81},{&quot;2026-08-10&quot;:0.81},{&quot;2026-08-11&quot;:0.8},{&quot;2026-08-12&quot;:0.8},{&quot;2026-08-13&quot;:0.78},{&quot;2026-08-14&quot;:0.75},{&quot;2026-08-15&quot;:0.75},{&quot;2026-08-16&quot;:0.74},{&quot;2026-08-17&quot;:0.74},{&quot;2026-08-18&quot;:0.75},{&quot;2026-08-19&quot;:0.75},{&quot;2026-08-20&quot;:0.73},{&quot;2026-08-21&quot;:0.73},{&quot;2026-08-22&quot;:0.75},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.78},{&quot;2026-08-25&quot;:0.77},{&quot;2026-08-26&quot;:0.78},{&quot;2026-08-27&quot;:0.76},{&quot;2026-08-28&quot;:0.77},{&quot;2026-08-29&quot;:0.77},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.78},{&quot;2026-09-02&quot;:0.78},{&quot;2026-09-03&quot;:0.8},{&quot;2026-09-04&quot;:0.96},{&quot;2026-09-05&quot;:0.97},{&quot;2026-09-06&quot;:0.97},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:0.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="76097"
  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-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">
            Orcish Lumberjack
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Orcish Lumberjack" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/f/1f2f7d4b-aa65-42ed-a441-8e35be96743c.jpg?1783926377" />

        <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">
            Orcish Lumberjack
        </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 — Orc</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Orcish Lumberjack" src="https://cards.scryfall.io/large/front/1/f/1f2f7d4b-aa65-42ed-a441-8e35be96743c.jpg?1783926377" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.96
              </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.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-11&quot;:1.12},{&quot;2026-06-12&quot;:1.12},{&quot;2026-06-13&quot;:1.15},{&quot;2026-06-14&quot;:1.15},{&quot;2026-06-15&quot;:1.18},{&quot;2026-06-16&quot;:1.18},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.21},{&quot;2026-06-19&quot;:1.27},{&quot;2026-06-20&quot;:1.29},{&quot;2026-06-21&quot;:1.43},{&quot;2026-06-22&quot;:1.44},{&quot;2026-06-23&quot;:1.43},{&quot;2026-06-24&quot;:1.44},{&quot;2026-06-25&quot;:1.49},{&quot;2026-06-26&quot;:1.53},{&quot;2026-06-27&quot;:1.6},{&quot;2026-06-28&quot;:1.79},{&quot;2026-06-29&quot;:2.15},{&quot;2026-06-30&quot;:2.16},{&quot;2026-07-01&quot;:2.35},{&quot;2026-07-02&quot;:2.52},{&quot;2026-07-03&quot;:2.4},{&quot;2026-07-04&quot;:2.59},{&quot;2026-07-05&quot;:2.55},{&quot;2026-07-06&quot;:2.54},{&quot;2026-07-07&quot;:2.64},{&quot;2026-07-08&quot;:2.5},{&quot;2026-07-09&quot;:2.53},{&quot;2026-07-10&quot;:2.48},{&quot;2026-07-11&quot;:2.51},{&quot;2026-07-12&quot;:2.53},{&quot;2026-07-13&quot;:2.71},{&quot;2026-07-14&quot;:2.71},{&quot;2026-07-15&quot;:2.89},{&quot;2026-07-16&quot;:3.02},{&quot;2026-07-17&quot;:3.07},{&quot;2026-07-18&quot;:3.0},{&quot;2026-07-19&quot;:3.11},{&quot;2026-07-20&quot;:3.1},{&quot;2026-07-21&quot;:3.12},{&quot;2026-07-23&quot;:3.04},{&quot;2026-07-25&quot;:2.86},{&quot;2026-07-26&quot;:2.86},{&quot;2026-07-27&quot;:2.86},{&quot;2026-07-28&quot;:2.87},{&quot;2026-07-29&quot;:2.87},{&quot;2026-07-30&quot;:2.74},{&quot;2026-07-31&quot;:2.77},{&quot;2026-08-01&quot;:2.49},{&quot;2026-08-02&quot;:2.42},{&quot;2026-08-03&quot;:2.14},{&quot;2026-08-04&quot;:2.14},{&quot;2026-08-05&quot;:1.94},{&quot;2026-08-07&quot;:1.79},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.85},{&quot;2026-08-10&quot;:1.85},{&quot;2026-08-11&quot;:1.85},{&quot;2026-08-12&quot;:1.81},{&quot;2026-08-13&quot;:1.63},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.33},{&quot;2026-08-16&quot;:1.27},{&quot;2026-08-17&quot;:1.18},{&quot;2026-08-18&quot;:1.18},{&quot;2026-08-19&quot;:1.1},{&quot;2026-08-20&quot;:1.1},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.12},{&quot;2026-08-23&quot;:1.2},{&quot;2026-08-24&quot;:1.21},{&quot;2026-08-25&quot;:1.21},{&quot;2026-08-26&quot;:1.19},{&quot;2026-08-27&quot;:1.19},{&quot;2026-08-28&quot;:1.16},{&quot;2026-08-29&quot;:1.16},{&quot;2026-08-30&quot;:1.12},{&quot;2026-08-31&quot;:1.04},{&quot;2026-09-01&quot;:1.04},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:0.98},{&quot;2026-09-05&quot;:0.98},{&quot;2026-09-06&quot;:0.93},{&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.97},{&quot;2026-09-11&quot;:0.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="74403"
  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-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">
            Lignify
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.95
          </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="Lignify" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/6/060ed300-76ac-4a44-874c-c687c9ab421c.jpg?1783932405" />

        <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">
            Lignify
        </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">Kindred Enchantment — Treefolk Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lignify" src="https://cards.scryfall.io/large/front/0/6/060ed300-76ac-4a44-874c-c687c9ab421c.jpg?1783932405" />
    </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.95
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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.09},{&quot;2026-06-12&quot;:1.09},{&quot;2026-06-13&quot;:1.09},{&quot;2026-06-14&quot;:1.06},{&quot;2026-06-15&quot;:1.09},{&quot;2026-06-16&quot;:1.09},{&quot;2026-06-17&quot;:1.09},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:1.06},{&quot;2026-06-20&quot;:1.06},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.06},{&quot;2026-06-23&quot;:1.06},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:0.98},{&quot;2026-06-27&quot;:0.93},{&quot;2026-06-28&quot;:0.94},{&quot;2026-06-29&quot;:0.95},{&quot;2026-06-30&quot;:0.95},{&quot;2026-07-01&quot;:0.95},{&quot;2026-07-02&quot;:0.95},{&quot;2026-07-03&quot;:0.95},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.96},{&quot;2026-07-06&quot;:0.96},{&quot;2026-07-07&quot;:0.96},{&quot;2026-07-08&quot;:0.96},{&quot;2026-07-09&quot;:0.96},{&quot;2026-07-10&quot;:0.96},{&quot;2026-07-11&quot;:0.96},{&quot;2026-07-12&quot;:0.96},{&quot;2026-07-13&quot;:0.96},{&quot;2026-07-14&quot;:0.97},{&quot;2026-07-15&quot;:0.97},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:0.97},{&quot;2026-07-19&quot;:0.97},{&quot;2026-07-20&quot;:0.97},{&quot;2026-07-21&quot;:0.96},{&quot;2026-07-23&quot;:0.94},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.93},{&quot;2026-07-27&quot;:0.93},{&quot;2026-07-28&quot;:0.93},{&quot;2026-07-29&quot;:0.93},{&quot;2026-07-30&quot;:0.93},{&quot;2026-07-31&quot;:0.93},{&quot;2026-08-01&quot;:0.93},{&quot;2026-08-02&quot;:0.93},{&quot;2026-08-03&quot;:0.9},{&quot;2026-08-04&quot;:0.89},{&quot;2026-08-05&quot;:0.89},{&quot;2026-08-07&quot;:0.89},{&quot;2026-08-08&quot;:0.91},{&quot;2026-08-09&quot;:0.91},{&quot;2026-08-10&quot;:0.91},{&quot;2026-08-11&quot;:0.91},{&quot;2026-08-12&quot;:0.86},{&quot;2026-08-13&quot;:0.86},{&quot;2026-08-14&quot;:0.86},{&quot;2026-08-15&quot;:0.88},{&quot;2026-08-16&quot;:0.87},{&quot;2026-08-17&quot;:0.89},{&quot;2026-08-18&quot;:0.89},{&quot;2026-08-19&quot;:0.88},{&quot;2026-08-20&quot;:0.88},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.87},{&quot;2026-08-23&quot;:0.87},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.87},{&quot;2026-08-26&quot;:0.88},{&quot;2026-08-27&quot;:0.88},{&quot;2026-08-28&quot;:0.89},{&quot;2026-08-29&quot;:0.89},{&quot;2026-08-30&quot;:0.88},{&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.88},{&quot;2026-09-04&quot;:0.88},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.87},{&quot;2026-09-07&quot;:0.87},{&quot;2026-09-08&quot;:0.95},{&quot;2026-09-09&quot;:0.95},{&quot;2026-09-10&quot;:0.95},{&quot;2026-09-11&quot;:0.95}]}"
        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="74244"
  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-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">
            Force Spike
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Force Spike" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/3/03f6e465-8cfd-4eb6-a32e-76fc47934100.jpg?1783910456" />

        <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">
            Force Spike
        </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">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Force Spike" src="https://cards.scryfall.io/large/front/0/3/03f6e465-8cfd-4eb6-a32e-76fc47934100.jpg?1783910456" />
    </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.93
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.86},{&quot;2026-06-10&quot;:0.86},{&quot;2026-06-11&quot;:0.86},{&quot;2026-06-12&quot;:0.87},{&quot;2026-06-13&quot;:0.87},{&quot;2026-06-14&quot;:0.86},{&quot;2026-06-15&quot;:0.92},{&quot;2026-06-16&quot;:0.91},{&quot;2026-06-17&quot;:0.91},{&quot;2026-06-18&quot;:0.91},{&quot;2026-06-19&quot;:0.9},{&quot;2026-06-20&quot;:0.91},{&quot;2026-06-21&quot;:0.93},{&quot;2026-06-22&quot;:0.93},{&quot;2026-06-24&quot;:0.96},{&quot;2026-06-25&quot;:0.97},{&quot;2026-06-26&quot;:0.98},{&quot;2026-06-27&quot;:0.98},{&quot;2026-06-28&quot;:0.98},{&quot;2026-06-29&quot;:0.99},{&quot;2026-06-30&quot;:0.99},{&quot;2026-07-01&quot;:0.99},{&quot;2026-07-02&quot;:0.99},{&quot;2026-07-03&quot;:0.99},{&quot;2026-07-04&quot;:0.99},{&quot;2026-07-05&quot;:0.99},{&quot;2026-07-06&quot;:0.99},{&quot;2026-07-07&quot;:0.99},{&quot;2026-07-08&quot;:0.99},{&quot;2026-07-09&quot;:0.91},{&quot;2026-07-10&quot;:0.91},{&quot;2026-07-11&quot;:0.91},{&quot;2026-07-12&quot;:0.96},{&quot;2026-07-13&quot;:0.96},{&quot;2026-07-14&quot;:0.96},{&quot;2026-07-15&quot;:0.96},{&quot;2026-07-16&quot;:0.96},{&quot;2026-07-17&quot;:0.96},{&quot;2026-07-18&quot;:0.96},{&quot;2026-07-19&quot;:0.94},{&quot;2026-07-20&quot;:0.94},{&quot;2026-07-21&quot;:0.94},{&quot;2026-07-23&quot;:0.94},{&quot;2026-07-25&quot;:0.94},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-29&quot;:0.94},{&quot;2026-07-30&quot;:0.93},{&quot;2026-07-31&quot;:0.92},{&quot;2026-08-01&quot;:0.92},{&quot;2026-08-02&quot;:0.92},{&quot;2026-08-03&quot;:0.92},{&quot;2026-08-04&quot;:0.92},{&quot;2026-08-05&quot;:0.92},{&quot;2026-08-07&quot;:0.92},{&quot;2026-08-08&quot;:0.92},{&quot;2026-08-09&quot;:0.92},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.91},{&quot;2026-08-12&quot;:0.9},{&quot;2026-08-13&quot;:0.88},{&quot;2026-08-14&quot;:0.88},{&quot;2026-08-15&quot;:0.88},{&quot;2026-08-16&quot;:0.88},{&quot;2026-08-17&quot;:0.86},{&quot;2026-08-18&quot;:0.86},{&quot;2026-08-19&quot;:0.86},{&quot;2026-08-20&quot;:0.86},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.9},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.9},{&quot;2026-08-25&quot;:0.9},{&quot;2026-08-26&quot;:0.92},{&quot;2026-08-27&quot;:0.92},{&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.91},{&quot;2026-09-01&quot;:0.91},{&quot;2026-09-02&quot;:0.92},{&quot;2026-09-03&quot;:0.91},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.91},{&quot;2026-09-06&quot;:0.92},{&quot;2026-09-07&quot;:0.92},{&quot;2026-09-08&quot;:0.93},{&quot;2026-09-09&quot;:0.93},{&quot;2026-09-10&quot;:0.93},{&quot;2026-09-11&quot;:0.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="87832"
  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-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">
            Snake Umbra
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Snake Umbra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4b70dadb-541b-4c5b-ad65-0faf263b86d1.jpg?1783931767" />

        <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">
            Snake Umbra
        </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">Enchantment — Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Snake Umbra" src="https://cards.scryfall.io/large/front/4/b/4b70dadb-541b-4c5b-ad65-0faf263b86d1.jpg?1783931767" />
    </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.93
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.61},{&quot;2026-06-14&quot;:0.61},{&quot;2026-06-15&quot;:0.61},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.62},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.64},{&quot;2026-06-21&quot;:0.64},{&quot;2026-06-22&quot;:0.64},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.63},{&quot;2026-06-25&quot;:0.63},{&quot;2026-06-26&quot;:0.63},{&quot;2026-06-27&quot;:0.63},{&quot;2026-06-28&quot;:0.65},{&quot;2026-06-29&quot;:0.66},{&quot;2026-06-30&quot;:0.65},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.65},{&quot;2026-07-03&quot;:0.65},{&quot;2026-07-04&quot;:0.65},{&quot;2026-07-05&quot;:0.65},{&quot;2026-07-06&quot;:0.66},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.66},{&quot;2026-07-09&quot;:0.67},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.74},{&quot;2026-07-13&quot;:0.74},{&quot;2026-07-14&quot;:0.75},{&quot;2026-07-15&quot;:0.75},{&quot;2026-07-16&quot;:0.75},{&quot;2026-07-17&quot;:0.75},{&quot;2026-07-18&quot;:0.75},{&quot;2026-07-19&quot;:0.8},{&quot;2026-07-20&quot;:0.8},{&quot;2026-07-21&quot;:0.8},{&quot;2026-07-22&quot;:0.8},{&quot;2026-07-23&quot;:0.8},{&quot;2026-07-24&quot;:0.85},{&quot;2026-07-25&quot;:0.87},{&quot;2026-07-26&quot;:0.87},{&quot;2026-07-27&quot;:0.87},{&quot;2026-07-28&quot;:0.82},{&quot;2026-07-29&quot;:0.82},{&quot;2026-07-30&quot;:0.82},{&quot;2026-07-31&quot;:0.82},{&quot;2026-08-01&quot;:0.82},{&quot;2026-08-02&quot;:0.82},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.82},{&quot;2026-08-05&quot;:0.87},{&quot;2026-08-07&quot;:0.87},{&quot;2026-08-08&quot;:0.87},{&quot;2026-08-09&quot;:0.87},{&quot;2026-08-10&quot;:0.87},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.89},{&quot;2026-08-13&quot;:0.9},{&quot;2026-08-14&quot;:0.9},{&quot;2026-08-15&quot;:0.92},{&quot;2026-08-16&quot;:0.92},{&quot;2026-08-17&quot;:0.92},{&quot;2026-08-18&quot;:0.92},{&quot;2026-08-19&quot;:0.92},{&quot;2026-08-20&quot;:0.92},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.92},{&quot;2026-08-23&quot;:0.92},{&quot;2026-08-24&quot;:0.92},{&quot;2026-08-25&quot;:0.92},{&quot;2026-08-26&quot;:0.92},{&quot;2026-08-27&quot;:0.92},{&quot;2026-08-28&quot;:0.92},{&quot;2026-08-29&quot;:0.92},{&quot;2026-08-30&quot;:0.92},{&quot;2026-08-31&quot;:0.92},{&quot;2026-09-01&quot;:0.93},{&quot;2026-09-02&quot;:0.93},{&quot;2026-09-03&quot;:0.93},{&quot;2026-09-04&quot;:0.93},{&quot;2026-09-05&quot;:0.93},{&quot;2026-09-06&quot;:0.93},{&quot;2026-09-07&quot;:0.93},{&quot;2026-09-08&quot;:0.93},{&quot;2026-09-09&quot;:0.93},{&quot;2026-09-10&quot;:0.93},{&quot;2026-09-11&quot;:0.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="80068"
  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-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">
            Reckoner&#39;s Bargain
        </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">
            $0.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="Reckoner&#39;s Bargain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/e/4e02b30f-1bd2-479d-8602-c3df9ba0d3d4.jpg?1783910188" />

        <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">
            Reckoner&#39;s Bargain
        </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">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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reckoner&#39;s Bargain" src="https://cards.scryfall.io/large/front/4/e/4e02b30f-1bd2-479d-8602-c3df9ba0d3d4.jpg?1783910188" />
    </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.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">$0.85</span>
              <span class="text-xs text-grey-text">Credit: $1.11</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.94},{&quot;2026-06-12&quot;:0.94},{&quot;2026-06-13&quot;:0.94},{&quot;2026-06-14&quot;:0.94},{&quot;2026-06-15&quot;:0.94},{&quot;2026-06-16&quot;:0.94},{&quot;2026-06-17&quot;:0.94},{&quot;2026-06-18&quot;:0.94},{&quot;2026-06-19&quot;:0.94},{&quot;2026-06-20&quot;:0.97},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.97},{&quot;2026-06-23&quot;:0.98},{&quot;2026-06-24&quot;:0.97},{&quot;2026-06-25&quot;:0.97},{&quot;2026-06-26&quot;:0.96},{&quot;2026-06-27&quot;:0.95},{&quot;2026-06-28&quot;:0.95},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.01},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:1.03},{&quot;2026-07-04&quot;:1.03},{&quot;2026-07-05&quot;:1.03},{&quot;2026-07-06&quot;:1.03},{&quot;2026-07-07&quot;:1.03},{&quot;2026-07-08&quot;:1.03},{&quot;2026-07-09&quot;:1.03},{&quot;2026-07-10&quot;:1.03},{&quot;2026-07-11&quot;:1.03},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.03},{&quot;2026-07-14&quot;:1.13},{&quot;2026-07-15&quot;:1.22},{&quot;2026-07-16&quot;:1.23},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.29},{&quot;2026-07-19&quot;:1.25},{&quot;2026-07-20&quot;:1.25},{&quot;2026-07-21&quot;:1.26},{&quot;2026-07-23&quot;:1.26},{&quot;2026-07-25&quot;:1.28},{&quot;2026-07-26&quot;:1.29},{&quot;2026-07-27&quot;:1.29},{&quot;2026-07-28&quot;:1.33},{&quot;2026-07-29&quot;:1.28},{&quot;2026-07-30&quot;:1.3},{&quot;2026-07-31&quot;:1.26},{&quot;2026-08-01&quot;:1.26},{&quot;2026-08-02&quot;:1.26},{&quot;2026-08-03&quot;:1.26},{&quot;2026-08-04&quot;:1.26},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.28},{&quot;2026-08-08&quot;:1.17},{&quot;2026-08-09&quot;:1.07},{&quot;2026-08-10&quot;:1.05},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.05},{&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.03},{&quot;2026-08-17&quot;:1.03},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:0.99},{&quot;2026-08-20&quot;:0.99},{&quot;2026-08-21&quot;:0.99},{&quot;2026-08-22&quot;:0.95},{&quot;2026-08-23&quot;:0.95},{&quot;2026-08-24&quot;:0.95},{&quot;2026-08-25&quot;:0.95},{&quot;2026-08-26&quot;:0.96},{&quot;2026-08-27&quot;:0.96},{&quot;2026-08-28&quot;:0.97},{&quot;2026-08-29&quot;:0.97},{&quot;2026-08-30&quot;:0.97},{&quot;2026-08-31&quot;:0.97},{&quot;2026-09-01&quot;:0.97},{&quot;2026-09-02&quot;:0.94},{&quot;2026-09-03&quot;:0.95},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.92},{&quot;2026-09-06&quot;:0.93},{&quot;2026-09-07&quot;:0.93},{&quot;2026-09-08&quot;:0.93},{&quot;2026-09-09&quot;:0.93},{&quot;2026-09-10&quot;:0.93},{&quot;2026-09-11&quot;:0.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="86512"
  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-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">
            Bear Cub
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Bear Cub" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/3/a3d36d12-22e4-4889-8f01-5f54de39e379.jpg?1783931849" />

        <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">
            Bear Cub
        </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 — Bear</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bear Cub" src="https://cards.scryfall.io/large/front/a/3/a3d36d12-22e4-4889-8f01-5f54de39e379.jpg?1783931849" />
    </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.90
              </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">$1.15</span>
              <span class="text-xs text-grey-text">Credit: $1.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.55},{&quot;2026-06-13&quot;:0.54},{&quot;2026-06-14&quot;:0.55},{&quot;2026-06-15&quot;:0.55},{&quot;2026-06-16&quot;:0.55},{&quot;2026-06-17&quot;:0.55},{&quot;2026-06-18&quot;:0.55},{&quot;2026-06-19&quot;:0.54},{&quot;2026-06-20&quot;:0.54},{&quot;2026-06-21&quot;:0.54},{&quot;2026-06-22&quot;:0.54},{&quot;2026-06-23&quot;:0.54},{&quot;2026-06-24&quot;:0.54},{&quot;2026-06-25&quot;:0.54},{&quot;2026-06-26&quot;:0.54},{&quot;2026-06-27&quot;:0.54},{&quot;2026-06-28&quot;:0.54},{&quot;2026-06-29&quot;:0.54},{&quot;2026-06-30&quot;:0.54},{&quot;2026-07-01&quot;:0.54},{&quot;2026-07-02&quot;:0.54},{&quot;2026-07-03&quot;:0.54},{&quot;2026-07-04&quot;:0.54},{&quot;2026-07-05&quot;:0.54},{&quot;2026-07-06&quot;:0.53},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.53},{&quot;2026-07-09&quot;:0.52},{&quot;2026-07-10&quot;:0.52},{&quot;2026-07-11&quot;:0.52},{&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.56},{&quot;2026-07-18&quot;:0.56},{&quot;2026-07-19&quot;:0.56},{&quot;2026-07-20&quot;:0.56},{&quot;2026-07-21&quot;:0.56},{&quot;2026-07-23&quot;:0.56},{&quot;2026-07-24&quot;:0.56},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.56},{&quot;2026-07-28&quot;:0.57},{&quot;2026-07-29&quot;:0.56},{&quot;2026-07-30&quot;:0.57},{&quot;2026-07-31&quot;:0.59},{&quot;2026-08-01&quot;:0.59},{&quot;2026-08-02&quot;:0.59},{&quot;2026-08-03&quot;:0.6},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.64},{&quot;2026-08-07&quot;:0.64},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.64},{&quot;2026-08-10&quot;:0.64},{&quot;2026-08-11&quot;:0.66},{&quot;2026-08-12&quot;:0.66},{&quot;2026-08-13&quot;:0.64},{&quot;2026-08-14&quot;:0.65},{&quot;2026-08-15&quot;:0.65},{&quot;2026-08-16&quot;:0.66},{&quot;2026-08-17&quot;:0.67},{&quot;2026-08-18&quot;:0.61},{&quot;2026-08-19&quot;:0.84},{&quot;2026-08-20&quot;:0.84},{&quot;2026-08-21&quot;:0.99},{&quot;2026-08-22&quot;:1.02},{&quot;2026-08-23&quot;:1.04},{&quot;2026-08-24&quot;:1.04},{&quot;2026-08-25&quot;:1.05},{&quot;2026-08-26&quot;:1.1},{&quot;2026-08-27&quot;:1.1},{&quot;2026-08-28&quot;:1.03},{&quot;2026-08-29&quot;:1.03},{&quot;2026-08-30&quot;:1.01},{&quot;2026-08-31&quot;:1.01},{&quot;2026-09-01&quot;:0.98},{&quot;2026-09-02&quot;:0.98},{&quot;2026-09-03&quot;:0.96},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.97},{&quot;2026-09-06&quot;:0.98},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.93},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.91},{&quot;2026-09-11&quot;:0.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="80352"
  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-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">
            Reckless Fireweaver
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Artificer
      </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.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="Reckless Fireweaver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/b/bb86f28b-2c0b-421a-b728-a5f447150b76.jpg?1783932122" />

        <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">
            Reckless Fireweaver
        </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 — Human Artificer</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reckless Fireweaver" src="https://cards.scryfall.io/large/front/b/b/bb86f28b-2c0b-421a-b728-a5f447150b76.jpg?1783932122" />
    </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>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.89},{&quot;2026-06-12&quot;:0.92},{&quot;2026-06-13&quot;:0.92},{&quot;2026-06-14&quot;:0.92},{&quot;2026-06-15&quot;:0.92},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.93},{&quot;2026-06-18&quot;:0.93},{&quot;2026-06-19&quot;:0.93},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.93},{&quot;2026-06-22&quot;:0.93},{&quot;2026-06-23&quot;:0.93},{&quot;2026-06-24&quot;:0.93},{&quot;2026-06-25&quot;:0.93},{&quot;2026-06-26&quot;:0.93},{&quot;2026-06-27&quot;:0.93},{&quot;2026-06-28&quot;:0.93},{&quot;2026-06-29&quot;:0.93},{&quot;2026-06-30&quot;:0.93},{&quot;2026-07-01&quot;:0.95},{&quot;2026-07-02&quot;:0.95},{&quot;2026-07-03&quot;:0.98},{&quot;2026-07-04&quot;:0.98},{&quot;2026-07-05&quot;:0.98},{&quot;2026-07-06&quot;:0.98},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:0.98},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.0},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.0},{&quot;2026-07-20&quot;:1.0},{&quot;2026-07-21&quot;:0.98},{&quot;2026-07-23&quot;:1.02},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:1.02},{&quot;2026-07-27&quot;:1.02},{&quot;2026-07-28&quot;:1.02},{&quot;2026-07-29&quot;:1.02},{&quot;2026-07-30&quot;:1.02},{&quot;2026-07-31&quot;:1.02},{&quot;2026-08-01&quot;:1.01},{&quot;2026-08-02&quot;:1.01},{&quot;2026-08-03&quot;:1.01},{&quot;2026-08-04&quot;:1.01},{&quot;2026-08-05&quot;:1.01},{&quot;2026-08-07&quot;:1.01},{&quot;2026-08-08&quot;:1.0},{&quot;2026-08-09&quot;:0.99},{&quot;2026-08-10&quot;:0.99},{&quot;2026-08-11&quot;:0.96},{&quot;2026-08-12&quot;:0.99},{&quot;2026-08-13&quot;:1.03},{&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;:0.93},{&quot;2026-08-18&quot;:0.93},{&quot;2026-08-19&quot;:0.93},{&quot;2026-08-20&quot;:0.93},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.96},{&quot;2026-08-23&quot;:0.95},{&quot;2026-08-24&quot;:0.91},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:0.9},{&quot;2026-08-27&quot;:0.9},{&quot;2026-08-28&quot;:0.9},{&quot;2026-08-29&quot;:0.9},{&quot;2026-08-30&quot;:0.9},{&quot;2026-08-31&quot;:0.89},{&quot;2026-09-01&quot;:0.9},{&quot;2026-09-02&quot;:0.88},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.88},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.88},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.87},{&quot;2026-09-09&quot;:0.87},{&quot;2026-09-10&quot;:0.87},{&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="85062"
  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-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">
            Spidersilk Armor
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </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="Spidersilk Armor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/a/5a1fa28a-ebde-4001-9f12-da52ca00eb12.jpg?1783910011" />

        <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">
            Spidersilk Armor
        </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">Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Spidersilk Armor" src="https://cards.scryfall.io/large/front/5/a/5a1fa28a-ebde-4001-9f12-da52ca00eb12.jpg?1783910011" />
    </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-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.8},{&quot;2026-06-10&quot;:0.8},{&quot;2026-06-11&quot;:0.79},{&quot;2026-06-12&quot;:0.79},{&quot;2026-06-13&quot;:0.79},{&quot;2026-06-14&quot;:0.79},{&quot;2026-06-15&quot;:0.78},{&quot;2026-06-16&quot;:0.78},{&quot;2026-06-17&quot;:0.78},{&quot;2026-06-18&quot;:0.78},{&quot;2026-06-19&quot;:0.78},{&quot;2026-06-20&quot;:0.78},{&quot;2026-06-21&quot;:0.78},{&quot;2026-06-22&quot;:0.77},{&quot;2026-06-24&quot;:0.74},{&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.76},{&quot;2026-07-01&quot;:0.76},{&quot;2026-07-02&quot;:0.76},{&quot;2026-07-03&quot;:0.76},{&quot;2026-07-04&quot;:0.76},{&quot;2026-07-05&quot;:0.75},{&quot;2026-07-06&quot;:0.75},{&quot;2026-07-07&quot;:0.75},{&quot;2026-07-08&quot;:0.74},{&quot;2026-07-09&quot;:0.74},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.72},{&quot;2026-07-12&quot;:0.72},{&quot;2026-07-13&quot;:0.74},{&quot;2026-07-14&quot;:0.74},{&quot;2026-07-15&quot;:0.74},{&quot;2026-07-16&quot;:0.72},{&quot;2026-07-17&quot;:0.73},{&quot;2026-07-18&quot;:0.73},{&quot;2026-07-19&quot;:0.74},{&quot;2026-07-20&quot;:0.75},{&quot;2026-07-21&quot;:0.76},{&quot;2026-07-23&quot;:0.74},{&quot;2026-07-25&quot;:0.74},{&quot;2026-07-26&quot;:0.74},{&quot;2026-07-27&quot;:0.81},{&quot;2026-07-29&quot;:0.81},{&quot;2026-07-30&quot;:0.82},{&quot;2026-07-31&quot;:0.82},{&quot;2026-08-01&quot;:0.82},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.82},{&quot;2026-08-05&quot;:0.82},{&quot;2026-08-07&quot;:0.82},{&quot;2026-08-08&quot;:0.82},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.82},{&quot;2026-08-11&quot;:0.84},{&quot;2026-08-12&quot;:0.84},{&quot;2026-08-13&quot;:0.84},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.84},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.86},{&quot;2026-08-18&quot;:0.81},{&quot;2026-08-19&quot;:0.82},{&quot;2026-08-20&quot;:0.82},{&quot;2026-08-21&quot;:0.82},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.81},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.82},{&quot;2026-08-26&quot;:0.83},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.83},{&quot;2026-08-29&quot;:0.83},{&quot;2026-08-30&quot;:0.84},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.85},{&quot;2026-09-02&quot;:0.84},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.87},{&quot;2026-09-05&quot;:0.86},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.87},{&quot;2026-09-08&quot;:0.87},{&quot;2026-09-09&quot;:0.87},{&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="76802"
  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-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">
            Tireless Tribe
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Nomad
      </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.86
          </span>
        </div>
      </div>
    </div>

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Tireless Tribe
        </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 — Human Nomad</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tireless Tribe" src="https://cards.scryfall.io/large/front/5/6/56f97364-affb-47d4-be35-27f4e25c43fb.jpg?1783910336" />
    </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.86
              </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.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.59},{&quot;2026-06-12&quot;:0.58},{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.64},{&quot;2026-06-18&quot;:0.64},{&quot;2026-06-19&quot;:0.64},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.72},{&quot;2026-06-23&quot;:0.72},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.77},{&quot;2026-06-26&quot;:0.89},{&quot;2026-06-27&quot;:0.87},{&quot;2026-06-28&quot;:0.88},{&quot;2026-06-29&quot;:0.88},{&quot;2026-06-30&quot;:0.87},{&quot;2026-07-01&quot;:0.87},{&quot;2026-07-02&quot;:0.88},{&quot;2026-07-03&quot;:0.88},{&quot;2026-07-04&quot;:0.91},{&quot;2026-07-05&quot;:0.91},{&quot;2026-07-06&quot;:0.9},{&quot;2026-07-07&quot;:0.9},{&quot;2026-07-08&quot;:0.9},{&quot;2026-07-09&quot;:0.9},{&quot;2026-07-10&quot;:0.89},{&quot;2026-07-11&quot;:0.89},{&quot;2026-07-12&quot;:0.89},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.88},{&quot;2026-07-15&quot;:0.87},{&quot;2026-07-16&quot;:0.87},{&quot;2026-07-17&quot;:0.89},{&quot;2026-07-18&quot;:0.88},{&quot;2026-07-19&quot;:0.89},{&quot;2026-07-20&quot;:0.89},{&quot;2026-07-21&quot;:0.95},{&quot;2026-07-23&quot;:0.96},{&quot;2026-07-25&quot;:0.98},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:1.03},{&quot;2026-07-28&quot;:1.03},{&quot;2026-07-29&quot;:1.05},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.05},{&quot;2026-08-01&quot;:1.06},{&quot;2026-08-02&quot;:1.06},{&quot;2026-08-03&quot;:1.06},{&quot;2026-08-04&quot;:1.06},{&quot;2026-08-05&quot;:1.06},{&quot;2026-08-07&quot;:1.08},{&quot;2026-08-08&quot;:1.09},{&quot;2026-08-09&quot;:1.09},{&quot;2026-08-10&quot;:1.09},{&quot;2026-08-11&quot;:1.09},{&quot;2026-08-12&quot;:1.09},{&quot;2026-08-13&quot;:1.09},{&quot;2026-08-14&quot;:1.09},{&quot;2026-08-15&quot;:1.11},{&quot;2026-08-16&quot;:1.11},{&quot;2026-08-17&quot;:1.1},{&quot;2026-08-18&quot;:1.09},{&quot;2026-08-19&quot;:1.09},{&quot;2026-08-20&quot;:1.09},{&quot;2026-08-21&quot;:1.09},{&quot;2026-08-22&quot;:1.09},{&quot;2026-08-23&quot;:1.09},{&quot;2026-08-24&quot;:1.09},{&quot;2026-08-25&quot;:1.09},{&quot;2026-08-26&quot;:0.93},{&quot;2026-08-27&quot;:0.93},{&quot;2026-08-28&quot;:0.93},{&quot;2026-08-29&quot;:0.93},{&quot;2026-08-30&quot;:0.94},{&quot;2026-08-31&quot;:0.94},{&quot;2026-09-01&quot;:0.94},{&quot;2026-09-02&quot;:0.94},{&quot;2026-09-03&quot;:0.93},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.88},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.87},{&quot;2026-09-09&quot;:0.87},{&quot;2026-09-10&quot;:0.87},{&quot;2026-09-11&quot;:0.86}]}"
        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="82833"
  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-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">
            Gaea&#39;s Gift
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.85
          </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="Gaea&#39;s Gift" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/f/9fb50748-97b7-43f8-ba4f-b7024d122cfb.jpg?1783910086" />

        <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">
            Gaea&#39;s Gift
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gaea&#39;s Gift" src="https://cards.scryfall.io/large/front/9/f/9fb50748-97b7-43f8-ba4f-b7024d122cfb.jpg?1783910086" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.97},{&quot;2026-06-13&quot;:0.97},{&quot;2026-06-14&quot;:0.97},{&quot;2026-06-15&quot;:0.97},{&quot;2026-06-16&quot;:0.96},{&quot;2026-06-17&quot;:0.95},{&quot;2026-06-18&quot;:0.96},{&quot;2026-06-19&quot;:0.97},{&quot;2026-06-20&quot;:0.98},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.97},{&quot;2026-06-23&quot;:0.97},{&quot;2026-06-24&quot;:0.97},{&quot;2026-06-25&quot;:0.97},{&quot;2026-06-26&quot;:0.97},{&quot;2026-06-27&quot;:0.97},{&quot;2026-06-28&quot;:0.97},{&quot;2026-06-29&quot;:0.97},{&quot;2026-06-30&quot;:1.05},{&quot;2026-07-01&quot;:1.03},{&quot;2026-07-02&quot;:1.04},{&quot;2026-07-03&quot;:1.01},{&quot;2026-07-04&quot;:1.01},{&quot;2026-07-05&quot;:1.01},{&quot;2026-07-06&quot;:1.01},{&quot;2026-07-07&quot;:1.01},{&quot;2026-07-08&quot;:1.02},{&quot;2026-07-09&quot;:1.02},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.02},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.03},{&quot;2026-07-14&quot;:1.03},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.04},{&quot;2026-07-18&quot;:1.01},{&quot;2026-07-19&quot;:1.02},{&quot;2026-07-20&quot;:1.02},{&quot;2026-07-21&quot;:1.01},{&quot;2026-07-23&quot;:1.01},{&quot;2026-07-24&quot;:1.01},{&quot;2026-07-25&quot;:1.05},{&quot;2026-07-26&quot;:1.11},{&quot;2026-07-27&quot;:1.11},{&quot;2026-07-28&quot;:1.11},{&quot;2026-07-29&quot;:1.11},{&quot;2026-07-30&quot;:1.11},{&quot;2026-07-31&quot;:1.01},{&quot;2026-08-01&quot;:1.01},{&quot;2026-08-02&quot;:1.0},{&quot;2026-08-03&quot;:0.99},{&quot;2026-08-04&quot;:0.99},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:0.99},{&quot;2026-08-08&quot;:0.98},{&quot;2026-08-09&quot;:0.97},{&quot;2026-08-10&quot;:0.97},{&quot;2026-08-11&quot;:0.97},{&quot;2026-08-12&quot;:0.97},{&quot;2026-08-13&quot;:0.96},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.96},{&quot;2026-08-16&quot;:0.96},{&quot;2026-08-17&quot;:0.91},{&quot;2026-08-18&quot;:0.86},{&quot;2026-08-19&quot;:0.88},{&quot;2026-08-20&quot;:0.88},{&quot;2026-08-21&quot;:0.89},{&quot;2026-08-22&quot;:0.9},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.9},{&quot;2026-08-25&quot;:0.9},{&quot;2026-08-26&quot;:0.91},{&quot;2026-08-27&quot;:0.93},{&quot;2026-08-28&quot;:0.93},{&quot;2026-08-29&quot;:0.93},{&quot;2026-08-30&quot;:0.93},{&quot;2026-08-31&quot;:0.92},{&quot;2026-09-01&quot;:0.92},{&quot;2026-09-02&quot;:0.92},{&quot;2026-09-03&quot;:0.92},{&quot;2026-09-04&quot;:0.92},{&quot;2026-09-05&quot;:0.92},{&quot;2026-09-06&quot;:0.9},{&quot;2026-09-07&quot;:0.91},{&quot;2026-09-08&quot;:0.87},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.85},{&quot;2026-09-11&quot;:0.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying items 1-50 of 806 in total</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=17">17</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=98&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=98&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=98&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=98&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=98&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=98&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=98&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=98&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=98&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="77501"
          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">
              TSP-70
            </td>

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53370"
          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">
              230
            </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-common ss-fw ss-2x mr-4"></i>
              Relic of Progenitus


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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78030"
          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">
              TD0-A80
            </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-common ss-fw ss-2x mr-4"></i>
              Moment&#39;s Peace


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74475"
          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">
              DDD-17
            </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-common ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85429"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CLB-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-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Decanter of Endless Water


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

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

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

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

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

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

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


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="52974"
          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">
              100
            </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-common 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">
                  $2.73

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84095"
          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">
              CMR-228
            </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-common ss-fw ss-2x mr-4"></i>
              Fyndhorn Elves


            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87739"
          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">
              C17-149
            </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-common ss-fw ss-2x mr-4"></i>
              Farseek


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79577"
          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">
              AKH-112
            </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-common ss-fw ss-2x mr-4"></i>
              Trespasser&#39;s Curse


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78776"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              WAR-94
            </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-common ss-fw ss-2x mr-4"></i>
              Kaya&#39;s Ghostform


            </td>

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

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

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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="81593"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              SHM-150
            </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-common ss-fw ss-2x mr-4"></i>
              Steel of the Godhead


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84815"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MMQ-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-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Land Grant


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78355"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              TMP-86
            </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-common ss-fw ss-2x mr-4"></i>
              Shadow Rift


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75033"
          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">
              NPH-25
            </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-common ss-fw ss-2x mr-4"></i>
              Suture Priest


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82917"
          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">
              KHM-184
            </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-common ss-fw ss-2x mr-4"></i>
              Masked Vandal


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79518"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              SHM-110
            </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-common ss-fw ss-2x mr-4"></i>
              Devoted Druid


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74536"
          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">
              PLS-17
            </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-common ss-fw ss-2x mr-4"></i>
              Sunscape Familiar


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79845"
          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">
              NPH-116
            </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-common ss-fw ss-2x mr-4"></i>
              Mutagenic Growth


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79932"
          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">
              VIS-117
            </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-common ss-fw ss-2x mr-4"></i>
              Quirion Ranger


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78962"
          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">
              DIS-99
            </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-common ss-fw ss-2x mr-4"></i>
              Utopia Sprawl


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75852"
          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">
              KHC-39
            </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-common ss-fw ss-2x mr-4"></i>
              Ghostly Flicker


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78490"
          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">
              JUD-89
            </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-common ss-fw ss-2x mr-4"></i>
              Flaring Pain


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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75832"
          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">
              AER-39
            </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-common ss-fw ss-2x mr-4"></i>
              Metallic Rebuke


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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53262"
          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">
              194
            </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-common ss-fw ss-2x mr-4"></i>
              Kobolds of Kher Keep


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78751"
          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">
              JUD-94
            </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-common ss-fw ss-2x mr-4"></i>
              Lava Dart


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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75604"
          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">
              PCA-35
            </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-common ss-fw ss-2x mr-4"></i>
              Okiba-Gang Shinobi


            </td>

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

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

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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87427"
          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">
              C14-146
            </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-common ss-fw ss-2x mr-4"></i>
              Gray Merchant of Asphodel


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="110981"
          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">
              J25-533
            </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-common ss-fw ss-2x mr-4"></i>
              Crimson Wisps


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75205"
          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">
              DDR-28
            </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-common ss-fw ss-2x mr-4"></i>
              Khalni Garden


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79915"
          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">
              NEM-117
            </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-common ss-fw ss-2x mr-4"></i>
              Skyshroud Claim


            </td>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79915"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79915" src="/boxset_card/79915?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76097"
          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">
              DDL-44
            </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-common ss-fw ss-2x mr-4"></i>
              Orcish Lumberjack


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Orc
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.96

                    <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.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.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76097"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76097" src="/boxset_card/76097?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74403"
          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">
              DDD-16
            </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-common ss-fw ss-2x mr-4"></i>
              Lignify


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Kindred Enchantment — Treefolk Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.95

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74403"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74403" src="/boxset_card/74403?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74244"
          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">
              DDJ-14
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Force Spike


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.93

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.79
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74244"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74244" src="/boxset_card/74244?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87832"
          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">
              C18-162
            </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-common ss-fw ss-2x mr-4"></i>
              Snake Umbra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.93

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.38
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87832"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87832" src="/boxset_card/87832?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80068"
          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">
              NEO-120
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Reckoner&#39;s Bargain


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.92

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80068"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80068" src="/boxset_card/80068?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86512"
          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">
              P02-123
            </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-common ss-fw ss-2x mr-4"></i>
              Bear Cub


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Bear
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.90

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86512"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86512" src="/boxset_card/86512?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80352"
          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">
              KLD-126
            </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-common ss-fw ss-2x mr-4"></i>
              Reckless Fireweaver


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.88

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </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="80352"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80352" src="/boxset_card/80352?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85062"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              MMQ-273
            </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-common ss-fw ss-2x mr-4"></i>
              Spidersilk Armor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.88

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85062"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85062" src="/boxset_card/85062?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76802"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ODY-56
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Tireless Tribe


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Nomad
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.86

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76802"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76802" src="/boxset_card/76802?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82833"
          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">
              BRO-182
            </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-common ss-fw ss-2x mr-4"></i>
              Gaea&#39;s Gift


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="82833"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82833" src="/boxset_card/82833?collection_id=98&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 806 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=17">17</a><a href="/load_collection?collection_id=98&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>