<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="77" 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="12463"
  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-cmr ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Serpent
      </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">
            $12.33
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Aesi, Tyrant of Gyre Strait" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/6/d607b003-6b48-429c-a7fd-45b8dd1bb4f9.jpg?1783928734" />

        <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">
            Aesi, Tyrant of Gyre Strait
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Serpent</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-g'></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="Aesi, Tyrant of Gyre Strait" src="https://cards.scryfall.io/large/front/d/6/d607b003-6b48-429c-a7fd-45b8dd1bb4f9.jpg?1783928734" />
    </div>

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

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

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

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

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

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

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

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

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

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

      <div class="grid grid-cols-2 gap-3">

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$11.50</span>
              <span class="text-xs text-grey-text">Credit: $14.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-08&quot;:11.97},{&quot;2026-06-10&quot;:12.74},{&quot;2026-06-11&quot;:12.74},{&quot;2026-06-12&quot;:12.89},{&quot;2026-06-13&quot;:12.85},{&quot;2026-06-14&quot;:12.98},{&quot;2026-06-15&quot;:12.98},{&quot;2026-06-16&quot;:13.03},{&quot;2026-06-17&quot;:13.03},{&quot;2026-06-18&quot;:13.07},{&quot;2026-06-19&quot;:13.07},{&quot;2026-06-20&quot;:13.02},{&quot;2026-06-21&quot;:12.86},{&quot;2026-06-22&quot;:12.85},{&quot;2026-06-24&quot;:12.45},{&quot;2026-06-25&quot;:12.41},{&quot;2026-06-26&quot;:12.18},{&quot;2026-06-27&quot;:11.91},{&quot;2026-06-28&quot;:12.27},{&quot;2026-06-29&quot;:12.27},{&quot;2026-06-30&quot;:12.27},{&quot;2026-07-01&quot;:12.38},{&quot;2026-07-02&quot;:12.33},{&quot;2026-07-03&quot;:12.33},{&quot;2026-07-04&quot;:12.39},{&quot;2026-07-05&quot;:12.41},{&quot;2026-07-06&quot;:12.28},{&quot;2026-07-07&quot;:12.04},{&quot;2026-07-08&quot;:12.17},{&quot;2026-07-09&quot;:12.17},{&quot;2026-07-10&quot;:12.28},{&quot;2026-07-11&quot;:12.28},{&quot;2026-07-12&quot;:12.07},{&quot;2026-07-13&quot;:12.21},{&quot;2026-07-14&quot;:12.21},{&quot;2026-07-15&quot;:12.21},{&quot;2026-07-16&quot;:12.21},{&quot;2026-07-17&quot;:11.79},{&quot;2026-07-18&quot;:11.32},{&quot;2026-07-19&quot;:11.41},{&quot;2026-07-20&quot;:11.54},{&quot;2026-07-21&quot;:11.54},{&quot;2026-07-23&quot;:11.49},{&quot;2026-07-25&quot;:11.58},{&quot;2026-07-26&quot;:11.18},{&quot;2026-07-27&quot;:11.45},{&quot;2026-07-29&quot;:11.24},{&quot;2026-07-30&quot;:11.13},{&quot;2026-07-31&quot;:10.86},{&quot;2026-08-01&quot;:10.91},{&quot;2026-08-02&quot;:11.12},{&quot;2026-08-03&quot;:10.99},{&quot;2026-08-04&quot;:10.97},{&quot;2026-08-05&quot;:10.98},{&quot;2026-08-07&quot;:11.06},{&quot;2026-08-08&quot;:11.01},{&quot;2026-08-09&quot;:11.72},{&quot;2026-08-10&quot;:11.83},{&quot;2026-08-11&quot;:11.95},{&quot;2026-08-12&quot;:11.95},{&quot;2026-08-13&quot;:12.21},{&quot;2026-08-14&quot;:12.21},{&quot;2026-08-15&quot;:12.51},{&quot;2026-08-16&quot;:12.51},{&quot;2026-08-17&quot;:12.71},{&quot;2026-08-18&quot;:12.92},{&quot;2026-08-19&quot;:13.15},{&quot;2026-08-20&quot;:13.15},{&quot;2026-08-21&quot;:13.23},{&quot;2026-08-22&quot;:13.26},{&quot;2026-08-23&quot;:13.27},{&quot;2026-08-24&quot;:13.25},{&quot;2026-08-25&quot;:13.25},{&quot;2026-08-26&quot;:13.07},{&quot;2026-08-27&quot;:12.93},{&quot;2026-08-28&quot;:12.93},{&quot;2026-08-29&quot;:12.93},{&quot;2026-08-30&quot;:12.61},{&quot;2026-08-31&quot;:12.56},{&quot;2026-09-01&quot;:12.56},{&quot;2026-09-02&quot;:12.55},{&quot;2026-09-03&quot;:12.53},{&quot;2026-09-04&quot;:12.53},{&quot;2026-09-05&quot;:12.55},{&quot;2026-09-06&quot;:12.25},{&quot;2026-09-07&quot;:12.36},{&quot;2026-09-08&quot;:12.35},{&quot;2026-09-09&quot;:12.27},{&quot;2026-09-10&quot;:12.27},{&quot;2026-09-11&quot;:12.33}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12574"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Elder Dinosaur
      </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">
            $8.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="Nezahal, Primal Tide" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/9/a959b40d-dd8c-49d8-8003-744d0c877b04.jpg?1783928719" />

        <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">
            Nezahal, Primal Tide
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Elder Dinosaur</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nezahal, Primal Tide" src="https://cards.scryfall.io/large/front/a/9/a959b40d-dd8c-49d8-8003-744d0c877b04.jpg?1783928719" />
    </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">
                $8.65
              </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.00</span>
              <span class="text-xs text-grey-text">Credit: $7.80</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:9.27},{&quot;2026-06-14&quot;:9.22},{&quot;2026-06-15&quot;:9.09},{&quot;2026-06-16&quot;:9.07},{&quot;2026-06-17&quot;:8.91},{&quot;2026-06-18&quot;:8.83},{&quot;2026-06-19&quot;:8.36},{&quot;2026-06-20&quot;:8.38},{&quot;2026-06-21&quot;:8.42},{&quot;2026-06-22&quot;:8.54},{&quot;2026-06-23&quot;:8.28},{&quot;2026-06-24&quot;:8.27},{&quot;2026-06-25&quot;:8.16},{&quot;2026-06-26&quot;:8.24},{&quot;2026-06-27&quot;:8.17},{&quot;2026-06-28&quot;:8.48},{&quot;2026-06-29&quot;:8.33},{&quot;2026-06-30&quot;:8.8},{&quot;2026-07-01&quot;:9.07},{&quot;2026-07-02&quot;:9.44},{&quot;2026-07-03&quot;:9.72},{&quot;2026-07-04&quot;:9.84},{&quot;2026-07-05&quot;:9.76},{&quot;2026-07-06&quot;:10.26},{&quot;2026-07-07&quot;:10.57},{&quot;2026-07-08&quot;:10.24},{&quot;2026-07-09&quot;:10.04},{&quot;2026-07-10&quot;:9.88},{&quot;2026-07-11&quot;:9.74},{&quot;2026-07-12&quot;:9.24},{&quot;2026-07-13&quot;:8.6},{&quot;2026-07-14&quot;:8.43},{&quot;2026-07-15&quot;:8.14},{&quot;2026-07-16&quot;:8.14},{&quot;2026-07-17&quot;:8.01},{&quot;2026-07-18&quot;:7.63},{&quot;2026-07-19&quot;:7.26},{&quot;2026-07-20&quot;:7.42},{&quot;2026-07-21&quot;:7.4},{&quot;2026-07-22&quot;:7.68},{&quot;2026-07-23&quot;:7.64},{&quot;2026-07-24&quot;:7.65},{&quot;2026-07-25&quot;:7.86},{&quot;2026-07-26&quot;:7.9},{&quot;2026-07-27&quot;:7.78},{&quot;2026-07-28&quot;:7.68},{&quot;2026-07-29&quot;:7.64},{&quot;2026-07-30&quot;:7.67},{&quot;2026-07-31&quot;:7.93},{&quot;2026-08-01&quot;:7.85},{&quot;2026-08-02&quot;:7.88},{&quot;2026-08-03&quot;:8.2},{&quot;2026-08-04&quot;:8.57},{&quot;2026-08-05&quot;:8.61},{&quot;2026-08-07&quot;:8.78},{&quot;2026-08-08&quot;:8.76},{&quot;2026-08-09&quot;:8.74},{&quot;2026-08-10&quot;:8.91},{&quot;2026-08-11&quot;:8.94},{&quot;2026-08-12&quot;:8.94},{&quot;2026-08-13&quot;:8.98},{&quot;2026-08-14&quot;:8.96},{&quot;2026-08-15&quot;:8.82},{&quot;2026-08-16&quot;:8.72},{&quot;2026-08-17&quot;:8.55},{&quot;2026-08-18&quot;:8.8},{&quot;2026-08-19&quot;:8.48},{&quot;2026-08-20&quot;:8.34},{&quot;2026-08-21&quot;:8.4},{&quot;2026-08-22&quot;:8.47},{&quot;2026-08-23&quot;:8.5},{&quot;2026-08-24&quot;:8.37},{&quot;2026-08-25&quot;:8.26},{&quot;2026-08-26&quot;:8.26},{&quot;2026-08-27&quot;:8.09},{&quot;2026-08-28&quot;:8.17},{&quot;2026-08-29&quot;:8.17},{&quot;2026-08-30&quot;:8.26},{&quot;2026-08-31&quot;:8.34},{&quot;2026-09-01&quot;:8.32},{&quot;2026-09-02&quot;:8.56},{&quot;2026-09-03&quot;:8.43},{&quot;2026-09-04&quot;:8.43},{&quot;2026-09-05&quot;:8.67},{&quot;2026-09-06&quot;:8.67},{&quot;2026-09-07&quot;:8.67},{&quot;2026-09-08&quot;:8.67},{&quot;2026-09-09&quot;:8.61},{&quot;2026-09-10&quot;:8.61},{&quot;2026-09-11&quot;:8.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="12673"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ramunap Excavator" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/8/8870ef0b-cb1f-463b-8509-fece4743d3d4.jpg?1783928706" />

        <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">
            Ramunap Excavator
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Snake Cleric</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="Ramunap Excavator" src="https://cards.scryfall.io/large/front/8/8/8870ef0b-cb1f-463b-8509-fece4743d3d4.jpg?1783928706" />
    </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.68
              </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.80</span>
              <span class="text-xs text-grey-text">Credit: $3.64</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.5},{&quot;2026-06-14&quot;:5.91},{&quot;2026-06-15&quot;:6.01},{&quot;2026-06-16&quot;:6.01},{&quot;2026-06-17&quot;:6.06},{&quot;2026-06-18&quot;:6.28},{&quot;2026-06-19&quot;:6.28},{&quot;2026-06-20&quot;:6.25},{&quot;2026-06-21&quot;:6.16},{&quot;2026-06-22&quot;:6.16},{&quot;2026-06-23&quot;:6.16},{&quot;2026-06-24&quot;:6.22},{&quot;2026-06-25&quot;:6.22},{&quot;2026-06-26&quot;:6.22},{&quot;2026-06-27&quot;:6.12},{&quot;2026-06-28&quot;:6.12},{&quot;2026-06-29&quot;:6.12},{&quot;2026-06-30&quot;:6.28},{&quot;2026-07-01&quot;:6.28},{&quot;2026-07-02&quot;:6.15},{&quot;2026-07-03&quot;:6.15},{&quot;2026-07-04&quot;:6.06},{&quot;2026-07-05&quot;:6.06},{&quot;2026-07-06&quot;:6.06},{&quot;2026-07-07&quot;:6.06},{&quot;2026-07-08&quot;:6.06},{&quot;2026-07-09&quot;:5.81},{&quot;2026-07-10&quot;:5.75},{&quot;2026-07-11&quot;:5.75},{&quot;2026-07-12&quot;:5.69},{&quot;2026-07-13&quot;:5.69},{&quot;2026-07-14&quot;:5.54},{&quot;2026-07-15&quot;:5.47},{&quot;2026-07-16&quot;:5.51},{&quot;2026-07-17&quot;:5.49},{&quot;2026-07-18&quot;:5.47},{&quot;2026-07-19&quot;:5.33},{&quot;2026-07-20&quot;:5.37},{&quot;2026-07-21&quot;:5.37},{&quot;2026-07-22&quot;:5.35},{&quot;2026-07-23&quot;:5.42},{&quot;2026-07-24&quot;:5.42},{&quot;2026-07-25&quot;:5.42},{&quot;2026-07-26&quot;:5.42},{&quot;2026-07-27&quot;:5.42},{&quot;2026-07-28&quot;:5.42},{&quot;2026-07-29&quot;:5.53},{&quot;2026-07-30&quot;:5.57},{&quot;2026-07-31&quot;:5.67},{&quot;2026-08-01&quot;:5.67},{&quot;2026-08-02&quot;:5.72},{&quot;2026-08-03&quot;:5.79},{&quot;2026-08-04&quot;:5.79},{&quot;2026-08-05&quot;:5.79},{&quot;2026-08-07&quot;:5.78},{&quot;2026-08-08&quot;:5.8},{&quot;2026-08-09&quot;:5.64},{&quot;2026-08-10&quot;:5.5},{&quot;2026-08-11&quot;:5.37},{&quot;2026-08-12&quot;:5.31},{&quot;2026-08-13&quot;:5.31},{&quot;2026-08-14&quot;:5.31},{&quot;2026-08-15&quot;:5.12},{&quot;2026-08-16&quot;:4.94},{&quot;2026-08-17&quot;:4.94},{&quot;2026-08-18&quot;:4.94},{&quot;2026-08-19&quot;:4.84},{&quot;2026-08-20&quot;:4.83},{&quot;2026-08-21&quot;:4.87},{&quot;2026-08-22&quot;:4.87},{&quot;2026-08-23&quot;:4.76},{&quot;2026-08-24&quot;:4.86},{&quot;2026-08-25&quot;:4.78},{&quot;2026-08-26&quot;:4.78},{&quot;2026-08-27&quot;:4.78},{&quot;2026-08-28&quot;:4.78},{&quot;2026-08-29&quot;:4.78},{&quot;2026-08-30&quot;:4.78},{&quot;2026-08-31&quot;:4.6},{&quot;2026-09-01&quot;:4.5},{&quot;2026-09-02&quot;:4.53},{&quot;2026-09-03&quot;:4.51},{&quot;2026-09-04&quot;:4.41},{&quot;2026-09-05&quot;:4.4},{&quot;2026-09-06&quot;:4.4},{&quot;2026-09-07&quot;:4.53},{&quot;2026-09-08&quot;:4.62},{&quot;2026-09-09&quot;:4.62},{&quot;2026-09-10&quot;:4.59},{&quot;2026-09-11&quot;:4.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12798"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Swiftfoot Boots" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/5/b5c45f3d-cf12-4db7-b161-9539ed969ca7.jpg?1783928686" />

        <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">
            Swiftfoot Boots
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/b/5/b5c45f3d-cf12-4db7-b161-9539ed969ca7.jpg?1783928686" />
    </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.53
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell 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-10&quot;:3.65},{&quot;2026-06-11&quot;:3.65},{&quot;2026-06-12&quot;:4.06},{&quot;2026-06-13&quot;:4.46},{&quot;2026-06-14&quot;:4.52},{&quot;2026-06-15&quot;:4.05},{&quot;2026-06-16&quot;:4.1},{&quot;2026-06-17&quot;:4.15},{&quot;2026-06-18&quot;:4.2},{&quot;2026-06-19&quot;:4.3},{&quot;2026-06-20&quot;:4.33},{&quot;2026-06-21&quot;:4.42},{&quot;2026-06-22&quot;:4.41},{&quot;2026-06-23&quot;:4.41},{&quot;2026-06-24&quot;:4.16},{&quot;2026-06-25&quot;:3.94},{&quot;2026-06-26&quot;:3.61},{&quot;2026-06-27&quot;:3.49},{&quot;2026-06-28&quot;:3.58},{&quot;2026-06-29&quot;:3.41},{&quot;2026-06-30&quot;:3.4},{&quot;2026-07-01&quot;:3.4},{&quot;2026-07-02&quot;:3.51},{&quot;2026-07-03&quot;:3.22},{&quot;2026-07-04&quot;:3.18},{&quot;2026-07-05&quot;:3.37},{&quot;2026-07-06&quot;:3.66},{&quot;2026-07-07&quot;:3.68},{&quot;2026-07-08&quot;:3.48},{&quot;2026-07-09&quot;:3.42},{&quot;2026-07-10&quot;:3.5},{&quot;2026-07-11&quot;:3.35},{&quot;2026-07-12&quot;:3.17},{&quot;2026-07-13&quot;:2.96},{&quot;2026-07-14&quot;:2.89},{&quot;2026-07-15&quot;:2.87},{&quot;2026-07-16&quot;:3.14},{&quot;2026-07-17&quot;:3.09},{&quot;2026-07-18&quot;:2.89},{&quot;2026-07-19&quot;:2.94},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.17},{&quot;2026-07-23&quot;:3.04},{&quot;2026-07-25&quot;:3.09},{&quot;2026-07-26&quot;:3.49},{&quot;2026-07-27&quot;:3.49},{&quot;2026-07-29&quot;:3.35},{&quot;2026-07-30&quot;:3.61},{&quot;2026-07-31&quot;:3.77},{&quot;2026-08-01&quot;:3.77},{&quot;2026-08-02&quot;:3.8},{&quot;2026-08-03&quot;:3.8},{&quot;2026-08-04&quot;:3.66},{&quot;2026-08-05&quot;:3.84},{&quot;2026-08-07&quot;:4.25},{&quot;2026-08-08&quot;:4.3},{&quot;2026-08-09&quot;:4.28},{&quot;2026-08-10&quot;:4.3},{&quot;2026-08-11&quot;:4.32},{&quot;2026-08-12&quot;:4.24},{&quot;2026-08-13&quot;:4.21},{&quot;2026-08-14&quot;:4.17},{&quot;2026-08-15&quot;:3.98},{&quot;2026-08-16&quot;:4.47},{&quot;2026-08-17&quot;:4.26},{&quot;2026-08-18&quot;:4.35},{&quot;2026-08-19&quot;:4.35},{&quot;2026-08-20&quot;:4.35},{&quot;2026-08-21&quot;:4.91},{&quot;2026-08-22&quot;:5.03},{&quot;2026-08-23&quot;:5.12},{&quot;2026-08-24&quot;:5.13},{&quot;2026-08-25&quot;:5.13},{&quot;2026-08-26&quot;:5.02},{&quot;2026-08-27&quot;:5.02},{&quot;2026-08-28&quot;:5.19},{&quot;2026-08-29&quot;:5.19},{&quot;2026-08-30&quot;:5.16},{&quot;2026-08-31&quot;:5.08},{&quot;2026-09-01&quot;:5.08},{&quot;2026-09-02&quot;:4.59},{&quot;2026-09-03&quot;:4.71},{&quot;2026-09-04&quot;:4.51},{&quot;2026-09-05&quot;:4.51},{&quot;2026-09-06&quot;:4.66},{&quot;2026-09-07&quot;:4.49},{&quot;2026-09-08&quot;:4.58},{&quot;2026-09-09&quot;:4.4},{&quot;2026-09-10&quot;:4.4},{&quot;2026-09-11&quot;:4.53}]}"
        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="12839"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $4.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="Reliquary Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/b/bbdf72b4-d188-4d16-a1a9-943cbe3157d6.jpg?1783928680" />

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reliquary Tower" src="https://cards.scryfall.io/large/front/b/b/bbdf72b4-d188-4d16-a1a9-943cbe3157d6.jpg?1783928680" />
    </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.41
              </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">$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;:4.65},{&quot;2026-06-14&quot;:4.65},{&quot;2026-06-15&quot;:4.64},{&quot;2026-06-16&quot;:4.64},{&quot;2026-06-17&quot;:4.68},{&quot;2026-06-18&quot;:4.68},{&quot;2026-06-19&quot;:4.56},{&quot;2026-06-20&quot;:4.52},{&quot;2026-06-21&quot;:4.49},{&quot;2026-06-22&quot;:4.4},{&quot;2026-06-23&quot;:4.4},{&quot;2026-06-24&quot;:4.39},{&quot;2026-06-25&quot;:4.3},{&quot;2026-06-26&quot;:4.3},{&quot;2026-06-27&quot;:4.11},{&quot;2026-06-28&quot;:3.84},{&quot;2026-06-29&quot;:3.72},{&quot;2026-06-30&quot;:3.72},{&quot;2026-07-01&quot;:3.66},{&quot;2026-07-02&quot;:3.61},{&quot;2026-07-03&quot;:3.3},{&quot;2026-07-04&quot;:3.09},{&quot;2026-07-05&quot;:3.28},{&quot;2026-07-06&quot;:3.39},{&quot;2026-07-07&quot;:3.35},{&quot;2026-07-08&quot;:3.38},{&quot;2026-07-09&quot;:3.43},{&quot;2026-07-10&quot;:3.43},{&quot;2026-07-11&quot;:3.47},{&quot;2026-07-12&quot;:3.62},{&quot;2026-07-13&quot;:3.67},{&quot;2026-07-14&quot;:3.68},{&quot;2026-07-15&quot;:3.7},{&quot;2026-07-16&quot;:3.77},{&quot;2026-07-17&quot;:3.84},{&quot;2026-07-18&quot;:4.02},{&quot;2026-07-19&quot;:4.25},{&quot;2026-07-20&quot;:4.25},{&quot;2026-07-21&quot;:4.25},{&quot;2026-07-22&quot;:4.25},{&quot;2026-07-23&quot;:4.26},{&quot;2026-07-24&quot;:4.26},{&quot;2026-07-25&quot;:4.26},{&quot;2026-07-26&quot;:4.26},{&quot;2026-07-27&quot;:4.19},{&quot;2026-07-28&quot;:4.19},{&quot;2026-07-29&quot;:4.19},{&quot;2026-07-30&quot;:4.15},{&quot;2026-07-31&quot;:4.08},{&quot;2026-08-01&quot;:4.19},{&quot;2026-08-02&quot;:4.19},{&quot;2026-08-03&quot;:4.19},{&quot;2026-08-04&quot;:4.26},{&quot;2026-08-05&quot;:4.26},{&quot;2026-08-07&quot;:4.26},{&quot;2026-08-08&quot;:4.26},{&quot;2026-08-09&quot;:4.25},{&quot;2026-08-10&quot;:4.35},{&quot;2026-08-11&quot;:4.42},{&quot;2026-08-12&quot;:4.36},{&quot;2026-08-13&quot;:4.5},{&quot;2026-08-14&quot;:4.5},{&quot;2026-08-15&quot;:4.25},{&quot;2026-08-16&quot;:4.25},{&quot;2026-08-17&quot;:4.15},{&quot;2026-08-18&quot;:4.11},{&quot;2026-08-19&quot;:4.21},{&quot;2026-08-20&quot;:4.3},{&quot;2026-08-21&quot;:4.3},{&quot;2026-08-22&quot;:4.31},{&quot;2026-08-23&quot;:4.31},{&quot;2026-08-24&quot;:4.3},{&quot;2026-08-25&quot;:4.3},{&quot;2026-08-26&quot;:4.29},{&quot;2026-08-27&quot;:4.34},{&quot;2026-08-28&quot;:4.34},{&quot;2026-08-29&quot;:4.34},{&quot;2026-08-30&quot;:4.39},{&quot;2026-08-31&quot;:4.45},{&quot;2026-09-01&quot;:4.45},{&quot;2026-09-02&quot;:4.45},{&quot;2026-09-03&quot;:4.38},{&quot;2026-09-04&quot;:4.4},{&quot;2026-09-05&quot;:4.34},{&quot;2026-09-06&quot;:4.4},{&quot;2026-09-07&quot;:4.36},{&quot;2026-09-08&quot;:4.36},{&quot;2026-09-09&quot;:4.35},{&quot;2026-09-10&quot;:4.35},{&quot;2026-09-11&quot;:4.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="12730"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Simic Charm
        </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">
              ↑
              7%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.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="Simic Charm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/3384ee4e-738f-4442-bccd-4f96022b7219.jpg?1783928696" />

        <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">
            Simic Charm
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Simic Charm" src="https://cards.scryfall.io/large/front/3/3/3384ee4e-738f-4442-bccd-4f96022b7219.jpg?1783928696" />
    </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.47
              </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.70</span>
              <span class="text-xs text-grey-text">Credit: $0.91</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.71},{&quot;2026-06-14&quot;:1.79},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:2.11},{&quot;2026-06-17&quot;:1.96},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.9},{&quot;2026-06-20&quot;:1.9},{&quot;2026-06-21&quot;:1.88},{&quot;2026-06-22&quot;:1.88},{&quot;2026-06-23&quot;:1.88},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.97},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:1.97},{&quot;2026-06-29&quot;:1.98},{&quot;2026-06-30&quot;:1.94},{&quot;2026-07-01&quot;:1.98},{&quot;2026-07-02&quot;:1.71},{&quot;2026-07-03&quot;:1.72},{&quot;2026-07-04&quot;:1.72},{&quot;2026-07-05&quot;:1.72},{&quot;2026-07-06&quot;:1.72},{&quot;2026-07-07&quot;:1.99},{&quot;2026-07-08&quot;:2.73},{&quot;2026-07-09&quot;:2.68},{&quot;2026-07-10&quot;:2.68},{&quot;2026-07-11&quot;:2.68},{&quot;2026-07-12&quot;:2.75},{&quot;2026-07-13&quot;:2.75},{&quot;2026-07-14&quot;:2.75},{&quot;2026-07-15&quot;:3.25},{&quot;2026-07-16&quot;:3.72},{&quot;2026-07-17&quot;:3.72},{&quot;2026-07-18&quot;:4.22},{&quot;2026-07-19&quot;:4.64},{&quot;2026-07-20&quot;:4.64},{&quot;2026-07-21&quot;:4.64},{&quot;2026-07-22&quot;:4.64},{&quot;2026-07-23&quot;:5.05},{&quot;2026-07-24&quot;:4.97},{&quot;2026-07-25&quot;:5.29},{&quot;2026-07-26&quot;:5.29},{&quot;2026-07-27&quot;:5.56},{&quot;2026-07-28&quot;:5.14},{&quot;2026-07-29&quot;:5.19},{&quot;2026-07-30&quot;:5.25},{&quot;2026-07-31&quot;:5.51},{&quot;2026-08-01&quot;:4.99},{&quot;2026-08-02&quot;:4.47},{&quot;2026-08-03&quot;:3.66},{&quot;2026-08-04&quot;:3.73},{&quot;2026-08-05&quot;:3.87},{&quot;2026-08-07&quot;:3.91},{&quot;2026-08-08&quot;:4.01},{&quot;2026-08-09&quot;:3.78},{&quot;2026-08-10&quot;:3.54},{&quot;2026-08-11&quot;:3.54},{&quot;2026-08-12&quot;:3.54},{&quot;2026-08-13&quot;:3.65},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.62},{&quot;2026-08-17&quot;:3.63},{&quot;2026-08-18&quot;:3.58},{&quot;2026-08-19&quot;:3.47},{&quot;2026-08-20&quot;:3.53},{&quot;2026-08-21&quot;:3.49},{&quot;2026-08-22&quot;:3.49},{&quot;2026-08-23&quot;:3.43},{&quot;2026-08-24&quot;:3.43},{&quot;2026-08-25&quot;:3.38},{&quot;2026-08-26&quot;:3.38},{&quot;2026-08-27&quot;:3.35},{&quot;2026-08-28&quot;:3.35},{&quot;2026-08-29&quot;:3.35},{&quot;2026-08-30&quot;:3.23},{&quot;2026-08-31&quot;:3.28},{&quot;2026-09-01&quot;:3.26},{&quot;2026-09-02&quot;:3.26},{&quot;2026-09-03&quot;:3.26},{&quot;2026-09-04&quot;:3.24},{&quot;2026-09-05&quot;:3.25},{&quot;2026-09-06&quot;:3.25},{&quot;2026-09-07&quot;:3.19},{&quot;2026-09-08&quot;:3.25},{&quot;2026-09-09&quot;:3.22},{&quot;2026-09-10&quot;:3.47},{&quot;2026-09-11&quot;:3.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="12580"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Kraken
      </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.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="Scourge of Fleets" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/7/a79471f9-5cc0-48f5-9fa4-1f1374993825.jpg?1783928720" />

        <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">
            Scourge of Fleets
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scourge of Fleets" src="https://cards.scryfall.io/large/front/a/7/a79471f9-5cc0-48f5-9fa4-1f1374993825.jpg?1783928720" />
    </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.98
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:3.57},{&quot;2026-06-14&quot;:3.44},{&quot;2026-06-15&quot;:3.46},{&quot;2026-06-16&quot;:3.46},{&quot;2026-06-17&quot;:3.45},{&quot;2026-06-18&quot;:3.14},{&quot;2026-06-19&quot;:3.17},{&quot;2026-06-20&quot;:3.1},{&quot;2026-06-21&quot;:3.12},{&quot;2026-06-22&quot;:3.12},{&quot;2026-06-23&quot;:2.89},{&quot;2026-06-24&quot;:2.83},{&quot;2026-06-25&quot;:2.84},{&quot;2026-06-26&quot;:2.84},{&quot;2026-06-27&quot;:2.63},{&quot;2026-06-28&quot;:2.63},{&quot;2026-06-29&quot;:2.63},{&quot;2026-06-30&quot;:2.63},{&quot;2026-07-01&quot;:2.62},{&quot;2026-07-02&quot;:2.17},{&quot;2026-07-03&quot;:2.02},{&quot;2026-07-04&quot;:2.03},{&quot;2026-07-05&quot;:2.05},{&quot;2026-07-06&quot;:2.05},{&quot;2026-07-07&quot;:2.11},{&quot;2026-07-08&quot;:2.24},{&quot;2026-07-09&quot;:2.25},{&quot;2026-07-10&quot;:2.18},{&quot;2026-07-11&quot;:2.18},{&quot;2026-07-12&quot;:2.18},{&quot;2026-07-13&quot;:2.18},{&quot;2026-07-14&quot;:2.18},{&quot;2026-07-15&quot;:2.18},{&quot;2026-07-16&quot;:2.19},{&quot;2026-07-17&quot;:2.25},{&quot;2026-07-18&quot;:2.12},{&quot;2026-07-19&quot;:2.37},{&quot;2026-07-20&quot;:2.42},{&quot;2026-07-21&quot;:2.5},{&quot;2026-07-22&quot;:2.5},{&quot;2026-07-23&quot;:2.4},{&quot;2026-07-24&quot;:2.32},{&quot;2026-07-25&quot;:2.39},{&quot;2026-07-26&quot;:2.39},{&quot;2026-07-27&quot;:2.39},{&quot;2026-07-28&quot;:2.39},{&quot;2026-07-29&quot;:2.47},{&quot;2026-07-30&quot;:2.47},{&quot;2026-07-31&quot;:2.47},{&quot;2026-08-01&quot;:2.48},{&quot;2026-08-02&quot;:2.49},{&quot;2026-08-03&quot;:2.51},{&quot;2026-08-04&quot;:2.67},{&quot;2026-08-05&quot;:2.67},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:3.02},{&quot;2026-08-09&quot;:3.19},{&quot;2026-08-10&quot;:3.19},{&quot;2026-08-11&quot;:3.19},{&quot;2026-08-12&quot;:3.18},{&quot;2026-08-13&quot;:3.34},{&quot;2026-08-14&quot;:3.69},{&quot;2026-08-15&quot;:3.69},{&quot;2026-08-16&quot;:3.77},{&quot;2026-08-17&quot;:3.85},{&quot;2026-08-18&quot;:3.79},{&quot;2026-08-19&quot;:3.67},{&quot;2026-08-20&quot;:3.67},{&quot;2026-08-21&quot;:3.67},{&quot;2026-08-22&quot;:3.67},{&quot;2026-08-23&quot;:3.58},{&quot;2026-08-24&quot;:3.36},{&quot;2026-08-25&quot;:3.38},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.27},{&quot;2026-08-29&quot;:3.27},{&quot;2026-08-30&quot;:3.2},{&quot;2026-08-31&quot;:2.94},{&quot;2026-09-01&quot;:2.9},{&quot;2026-09-02&quot;:2.96},{&quot;2026-09-03&quot;:2.9},{&quot;2026-09-04&quot;:2.98},{&quot;2026-09-05&quot;:3.02},{&quot;2026-09-06&quot;:3.08},{&quot;2026-09-07&quot;:3.0},{&quot;2026-09-08&quot;:2.87},{&quot;2026-09-09&quot;:2.87},{&quot;2026-09-10&quot;:2.87},{&quot;2026-09-11&quot;:2.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="12718"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.70
          </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="Murkfiend Liege" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/c/bcd7296c-ace8-43ea-8164-c69f8843d022.jpg?1783928698" />

        <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">
            Murkfiend Liege
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Horror</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-gu'></i><i class='no-tailwind ms ms-cost ml-0 ms-gu'></i><i class='no-tailwind ms ms-cost ml-0 ms-gu'></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="Murkfiend Liege" src="https://cards.scryfall.io/large/front/b/c/bcd7296c-ace8-43ea-8164-c69f8843d022.jpg?1783928698" />
    </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.70
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-11&quot;:1.82},{&quot;2026-06-12&quot;:1.82},{&quot;2026-06-13&quot;:1.82},{&quot;2026-06-14&quot;:1.81},{&quot;2026-06-15&quot;:1.92},{&quot;2026-06-16&quot;:1.91},{&quot;2026-06-17&quot;:1.94},{&quot;2026-06-18&quot;:1.94},{&quot;2026-06-19&quot;:1.88},{&quot;2026-06-20&quot;:1.78},{&quot;2026-06-21&quot;:1.72},{&quot;2026-06-22&quot;:1.7},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.75},{&quot;2026-06-25&quot;:1.75},{&quot;2026-06-26&quot;:1.73},{&quot;2026-06-27&quot;:1.66},{&quot;2026-06-28&quot;:2.33},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.26},{&quot;2026-07-01&quot;:2.26},{&quot;2026-07-02&quot;:2.33},{&quot;2026-07-03&quot;:2.33},{&quot;2026-07-04&quot;:2.36},{&quot;2026-07-05&quot;:3.04},{&quot;2026-07-06&quot;:3.04},{&quot;2026-07-07&quot;:3.34},{&quot;2026-07-08&quot;:3.87},{&quot;2026-07-09&quot;:3.91},{&quot;2026-07-10&quot;:3.96},{&quot;2026-07-11&quot;:3.96},{&quot;2026-07-12&quot;:3.96},{&quot;2026-07-13&quot;:3.96},{&quot;2026-07-14&quot;:3.7},{&quot;2026-07-15&quot;:3.56},{&quot;2026-07-16&quot;:3.96},{&quot;2026-07-17&quot;:3.92},{&quot;2026-07-18&quot;:3.75},{&quot;2026-07-19&quot;:3.16},{&quot;2026-07-20&quot;:3.16},{&quot;2026-07-21&quot;:3.16},{&quot;2026-07-23&quot;:3.22},{&quot;2026-07-25&quot;:3.41},{&quot;2026-07-26&quot;:3.51},{&quot;2026-07-27&quot;:3.66},{&quot;2026-07-28&quot;:3.71},{&quot;2026-07-29&quot;:3.71},{&quot;2026-07-30&quot;:3.71},{&quot;2026-07-31&quot;:3.47},{&quot;2026-08-01&quot;:3.41},{&quot;2026-08-02&quot;:3.54},{&quot;2026-08-03&quot;:3.7},{&quot;2026-08-04&quot;:3.7},{&quot;2026-08-05&quot;:3.73},{&quot;2026-08-07&quot;:3.59},{&quot;2026-08-08&quot;:3.59},{&quot;2026-08-09&quot;:3.52},{&quot;2026-08-10&quot;:3.49},{&quot;2026-08-11&quot;:3.49},{&quot;2026-08-12&quot;:3.39},{&quot;2026-08-13&quot;:3.46},{&quot;2026-08-14&quot;:3.51},{&quot;2026-08-15&quot;:3.46},{&quot;2026-08-16&quot;:3.34},{&quot;2026-08-17&quot;:3.34},{&quot;2026-08-18&quot;:3.33},{&quot;2026-08-19&quot;:3.33},{&quot;2026-08-20&quot;:3.33},{&quot;2026-08-21&quot;:3.11},{&quot;2026-08-22&quot;:3.11},{&quot;2026-08-23&quot;:3.03},{&quot;2026-08-24&quot;:3.06},{&quot;2026-08-25&quot;:3.06},{&quot;2026-08-26&quot;:3.06},{&quot;2026-08-27&quot;:3.06},{&quot;2026-08-28&quot;:3.09},{&quot;2026-08-29&quot;:3.09},{&quot;2026-08-30&quot;:2.87},{&quot;2026-08-31&quot;:2.76},{&quot;2026-09-01&quot;:2.67},{&quot;2026-09-02&quot;:2.67},{&quot;2026-09-03&quot;:2.56},{&quot;2026-09-04&quot;:2.65},{&quot;2026-09-05&quot;:2.7},{&quot;2026-09-06&quot;:2.74},{&quot;2026-09-07&quot;:2.92},{&quot;2026-09-08&quot;:2.62},{&quot;2026-09-09&quot;:2.67},{&quot;2026-09-10&quot;:2.63},{&quot;2026-09-11&quot;:2.7}]}"
        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="12557"
  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-cmr 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">
            Counterspell
        </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">
            $2.51
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Counterspell
        </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><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="Counterspell" src="https://cards.scryfall.io/large/front/c/e/ce30f926-bc06-46ee-9f35-0cdf09a67043.jpg?1783928722" />
    </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.51
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12599"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Whelming Wave" src="https://cards.scryfall.io/large/front/d/d/ddb863a0-3ff8-42a3-a151-4ea9aa433336.jpg?1783928715" />
    </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.34
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.05},{&quot;2026-06-14&quot;:1.16},{&quot;2026-06-15&quot;:1.16},{&quot;2026-06-16&quot;:1.16},{&quot;2026-06-17&quot;:1.15},{&quot;2026-06-18&quot;:1.16},{&quot;2026-06-19&quot;:1.16},{&quot;2026-06-20&quot;:1.16},{&quot;2026-06-21&quot;:1.16},{&quot;2026-06-22&quot;:1.16},{&quot;2026-06-23&quot;:1.16},{&quot;2026-06-24&quot;:1.16},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.14},{&quot;2026-06-27&quot;:1.14},{&quot;2026-06-28&quot;:1.14},{&quot;2026-06-29&quot;:1.13},{&quot;2026-06-30&quot;:1.13},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.08},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.08},{&quot;2026-07-05&quot;:1.08},{&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.05},{&quot;2026-07-10&quot;:1.1},{&quot;2026-07-11&quot;:1.1},{&quot;2026-07-12&quot;:1.1},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:1.01},{&quot;2026-07-17&quot;:1.02},{&quot;2026-07-18&quot;:1.1},{&quot;2026-07-19&quot;:1.07},{&quot;2026-07-20&quot;:1.07},{&quot;2026-07-21&quot;:1.17},{&quot;2026-07-22&quot;:1.19},{&quot;2026-07-23&quot;:1.18},{&quot;2026-07-24&quot;:1.19},{&quot;2026-07-25&quot;:1.19},{&quot;2026-07-26&quot;:1.19},{&quot;2026-07-27&quot;:1.16},{&quot;2026-07-28&quot;:1.18},{&quot;2026-07-29&quot;:1.18},{&quot;2026-07-30&quot;:1.18},{&quot;2026-07-31&quot;:1.17},{&quot;2026-08-01&quot;:1.17},{&quot;2026-08-02&quot;:1.18},{&quot;2026-08-03&quot;:1.18},{&quot;2026-08-04&quot;:1.18},{&quot;2026-08-05&quot;:1.18},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.14},{&quot;2026-08-09&quot;:1.13},{&quot;2026-08-10&quot;:1.16},{&quot;2026-08-11&quot;:1.44},{&quot;2026-08-12&quot;:1.44},{&quot;2026-08-13&quot;:1.62},{&quot;2026-08-14&quot;:1.84},{&quot;2026-08-15&quot;:1.84},{&quot;2026-08-16&quot;:1.82},{&quot;2026-08-17&quot;:1.76},{&quot;2026-08-18&quot;:1.76},{&quot;2026-08-19&quot;:1.72},{&quot;2026-08-20&quot;:1.9},{&quot;2026-08-21&quot;:2.07},{&quot;2026-08-22&quot;:2.12},{&quot;2026-08-23&quot;:2.21},{&quot;2026-08-24&quot;:2.21},{&quot;2026-08-25&quot;:2.21},{&quot;2026-08-26&quot;:2.21},{&quot;2026-08-27&quot;:2.25},{&quot;2026-08-28&quot;:2.36},{&quot;2026-08-29&quot;:2.36},{&quot;2026-08-30&quot;:2.32},{&quot;2026-08-31&quot;:2.32},{&quot;2026-09-01&quot;:2.19},{&quot;2026-09-02&quot;:2.19},{&quot;2026-09-03&quot;:2.34},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.37},{&quot;2026-09-06&quot;:2.37},{&quot;2026-09-07&quot;:2.37},{&quot;2026-09-08&quot;:2.34},{&quot;2026-09-09&quot;:2.34},{&quot;2026-09-10&quot;:2.34},{&quot;2026-09-11&quot;:2.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12593"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Leviathan
      </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">
              ↑
              12%
            </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="Stormtide Leviathan" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/9/996bb4c0-dc72-4233-9f44-2e25aef71ad7.jpg?1783928715" />

        <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">
            Stormtide Leviathan
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stormtide Leviathan" src="https://cards.scryfall.io/large/front/9/9/996bb4c0-dc72-4233-9f44-2e25aef71ad7.jpg?1783928715" />
    </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">
                  ↑
                  12%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.74},{&quot;2026-06-14&quot;:2.61},{&quot;2026-06-15&quot;:2.59},{&quot;2026-06-16&quot;:2.4},{&quot;2026-06-17&quot;:2.33},{&quot;2026-06-18&quot;:2.17},{&quot;2026-06-19&quot;:2.08},{&quot;2026-06-20&quot;:1.98},{&quot;2026-06-21&quot;:1.98},{&quot;2026-06-22&quot;:1.91},{&quot;2026-06-23&quot;:1.92},{&quot;2026-06-24&quot;:1.98},{&quot;2026-06-25&quot;:2.0},{&quot;2026-06-26&quot;:1.88},{&quot;2026-06-27&quot;:1.86},{&quot;2026-06-28&quot;:1.86},{&quot;2026-06-29&quot;:1.86},{&quot;2026-06-30&quot;:1.86},{&quot;2026-07-01&quot;:1.87},{&quot;2026-07-02&quot;:1.85},{&quot;2026-07-03&quot;:1.77},{&quot;2026-07-04&quot;:1.72},{&quot;2026-07-05&quot;:1.65},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.74},{&quot;2026-07-08&quot;:1.83},{&quot;2026-07-09&quot;:1.81},{&quot;2026-07-10&quot;:1.84},{&quot;2026-07-11&quot;:1.84},{&quot;2026-07-12&quot;:1.84},{&quot;2026-07-13&quot;:1.91},{&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.88},{&quot;2026-07-18&quot;:1.83},{&quot;2026-07-19&quot;:1.83},{&quot;2026-07-20&quot;:1.88},{&quot;2026-07-21&quot;:2.04},{&quot;2026-07-22&quot;:2.08},{&quot;2026-07-23&quot;:2.05},{&quot;2026-07-24&quot;:1.97},{&quot;2026-07-25&quot;:1.87},{&quot;2026-07-26&quot;:1.83},{&quot;2026-07-27&quot;:1.77},{&quot;2026-07-28&quot;:1.79},{&quot;2026-07-29&quot;:1.85},{&quot;2026-07-30&quot;:1.86},{&quot;2026-07-31&quot;:1.88},{&quot;2026-08-01&quot;:1.93},{&quot;2026-08-02&quot;:2.21},{&quot;2026-08-03&quot;:2.23},{&quot;2026-08-04&quot;:2.09},{&quot;2026-08-05&quot;:2.09},{&quot;2026-08-07&quot;:2.09},{&quot;2026-08-08&quot;:2.06},{&quot;2026-08-09&quot;:1.99},{&quot;2026-08-10&quot;:1.99},{&quot;2026-08-11&quot;:2.11},{&quot;2026-08-12&quot;:2.08},{&quot;2026-08-13&quot;:2.29},{&quot;2026-08-14&quot;:2.29},{&quot;2026-08-15&quot;:2.29},{&quot;2026-08-16&quot;:2.29},{&quot;2026-08-17&quot;:2.09},{&quot;2026-08-18&quot;:2.09},{&quot;2026-08-19&quot;:1.99},{&quot;2026-08-20&quot;:1.97},{&quot;2026-08-21&quot;:1.94},{&quot;2026-08-22&quot;:1.97},{&quot;2026-08-23&quot;:1.97},{&quot;2026-08-24&quot;:1.87},{&quot;2026-08-25&quot;:1.85},{&quot;2026-08-26&quot;:1.98},{&quot;2026-08-27&quot;:1.98},{&quot;2026-08-28&quot;:2.04},{&quot;2026-08-29&quot;:2.04},{&quot;2026-08-30&quot;:2.12},{&quot;2026-08-31&quot;:2.02},{&quot;2026-09-01&quot;:1.96},{&quot;2026-09-02&quot;:1.95},{&quot;2026-09-03&quot;:1.95},{&quot;2026-09-04&quot;:2.02},{&quot;2026-09-05&quot;:2.02},{&quot;2026-09-06&quot;:2.14},{&quot;2026-09-07&quot;:2.31},{&quot;2026-09-08&quot;:2.22},{&quot;2026-09-09&quot;:2.22},{&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="12551"
  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-cmr 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">
            Arcane Denial
        </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">
            $2.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="Arcane Denial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a531642c-58dd-4f72-ae2b-38e005ae3a6b.jpg?1783928721" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Arcane Denial
        </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-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="Arcane Denial" src="https://cards.scryfall.io/large/front/a/5/a531642c-58dd-4f72-ae2b-38e005ae3a6b.jpg?1783928721" />
    </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.16
              </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.80</span>
              <span class="text-xs text-grey-text">Credit: $2.34</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.06},{&quot;2026-06-14&quot;:3.06},{&quot;2026-06-15&quot;:3.06},{&quot;2026-06-16&quot;:3.06},{&quot;2026-06-17&quot;:2.75},{&quot;2026-06-18&quot;:2.75},{&quot;2026-06-19&quot;:2.75},{&quot;2026-06-20&quot;:2.75},{&quot;2026-06-21&quot;:2.61},{&quot;2026-06-22&quot;:2.61},{&quot;2026-06-23&quot;:2.61},{&quot;2026-06-24&quot;:2.56},{&quot;2026-06-25&quot;:2.49},{&quot;2026-06-26&quot;:2.49},{&quot;2026-06-27&quot;:2.49},{&quot;2026-06-28&quot;:2.5},{&quot;2026-06-29&quot;:2.5},{&quot;2026-06-30&quot;:2.49},{&quot;2026-07-01&quot;:2.49},{&quot;2026-07-02&quot;:2.49},{&quot;2026-07-03&quot;:2.49},{&quot;2026-07-04&quot;:2.47},{&quot;2026-07-05&quot;:2.47},{&quot;2026-07-06&quot;:2.47},{&quot;2026-07-07&quot;:2.42},{&quot;2026-07-08&quot;:2.33},{&quot;2026-07-09&quot;:2.31},{&quot;2026-07-10&quot;:2.31},{&quot;2026-07-11&quot;:2.31},{&quot;2026-07-12&quot;:2.31},{&quot;2026-07-13&quot;:2.36},{&quot;2026-07-14&quot;:2.33},{&quot;2026-07-15&quot;:2.27},{&quot;2026-07-16&quot;:2.3},{&quot;2026-07-17&quot;:2.45},{&quot;2026-07-18&quot;:2.59},{&quot;2026-07-19&quot;:2.59},{&quot;2026-07-20&quot;:2.59},{&quot;2026-07-21&quot;:2.62},{&quot;2026-07-22&quot;:2.62},{&quot;2026-07-23&quot;:2.62},{&quot;2026-07-24&quot;:2.62},{&quot;2026-07-25&quot;:2.62},{&quot;2026-07-26&quot;:2.62},{&quot;2026-07-27&quot;:2.64},{&quot;2026-07-28&quot;:2.65},{&quot;2026-07-29&quot;:2.65},{&quot;2026-07-30&quot;:2.61},{&quot;2026-07-31&quot;:2.56},{&quot;2026-08-01&quot;:2.62},{&quot;2026-08-02&quot;:2.62},{&quot;2026-08-03&quot;:2.61},{&quot;2026-08-04&quot;:2.63},{&quot;2026-08-05&quot;:2.63},{&quot;2026-08-07&quot;:2.72},{&quot;2026-08-08&quot;:2.72},{&quot;2026-08-09&quot;:2.72},{&quot;2026-08-10&quot;:2.74},{&quot;2026-08-11&quot;:2.74},{&quot;2026-08-12&quot;:2.74},{&quot;2026-08-13&quot;:2.68},{&quot;2026-08-14&quot;:2.68},{&quot;2026-08-15&quot;:2.68},{&quot;2026-08-16&quot;:2.68},{&quot;2026-08-17&quot;:2.68},{&quot;2026-08-18&quot;:2.68},{&quot;2026-08-19&quot;:2.62},{&quot;2026-08-20&quot;:2.62},{&quot;2026-08-21&quot;:2.58},{&quot;2026-08-22&quot;:2.53},{&quot;2026-08-23&quot;:2.53},{&quot;2026-08-24&quot;:2.48},{&quot;2026-08-25&quot;:2.35},{&quot;2026-08-26&quot;:2.3},{&quot;2026-08-27&quot;:2.3},{&quot;2026-08-28&quot;:2.29},{&quot;2026-08-29&quot;:2.29},{&quot;2026-08-30&quot;:2.3},{&quot;2026-08-31&quot;:2.35},{&quot;2026-09-01&quot;:2.35},{&quot;2026-09-02&quot;:2.27},{&quot;2026-09-03&quot;:2.27},{&quot;2026-09-04&quot;:2.19},{&quot;2026-09-05&quot;:2.19},{&quot;2026-09-06&quot;:2.14},{&quot;2026-09-07&quot;:2.14},{&quot;2026-09-08&quot;:2.15},{&quot;2026-09-09&quot;:2.15},{&quot;2026-09-10&quot;:2.1},{&quot;2026-09-11&quot;:2.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="12660"
  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-cmr 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">
            Kodama&#39;s Reach
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery — Arcane
      </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.08
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kodama&#39;s Reach" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c36cb953-0553-462c-bd7e-4193987d36c9.jpg?1783928706" />

        <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">
            Kodama&#39;s Reach
        </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 — Arcane</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="Kodama&#39;s Reach" src="https://cards.scryfall.io/large/front/c/3/c36cb953-0553-462c-bd7e-4193987d36c9.jpg?1783928706" />
    </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.08
              </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.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-10&quot;:1.66},{&quot;2026-06-11&quot;:1.66},{&quot;2026-06-12&quot;:1.66},{&quot;2026-06-13&quot;:1.63},{&quot;2026-06-14&quot;:1.63},{&quot;2026-06-15&quot;:1.63},{&quot;2026-06-16&quot;:1.63},{&quot;2026-06-17&quot;:1.63},{&quot;2026-06-18&quot;:1.58},{&quot;2026-06-19&quot;:1.58},{&quot;2026-06-20&quot;:1.63},{&quot;2026-06-21&quot;:1.63},{&quot;2026-06-22&quot;:1.65},{&quot;2026-06-23&quot;:1.65},{&quot;2026-06-24&quot;:1.65},{&quot;2026-06-25&quot;:1.67},{&quot;2026-06-26&quot;:1.67},{&quot;2026-06-27&quot;:1.67},{&quot;2026-06-28&quot;:1.68},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.65},{&quot;2026-07-01&quot;:1.63},{&quot;2026-07-02&quot;:1.69},{&quot;2026-07-03&quot;:1.67},{&quot;2026-07-04&quot;:1.67},{&quot;2026-07-05&quot;:1.67},{&quot;2026-07-06&quot;:1.59},{&quot;2026-07-07&quot;:1.6},{&quot;2026-07-08&quot;:1.6},{&quot;2026-07-09&quot;:1.64},{&quot;2026-07-10&quot;:1.67},{&quot;2026-07-11&quot;:1.69},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.69},{&quot;2026-07-14&quot;:1.69},{&quot;2026-07-15&quot;:1.7},{&quot;2026-07-16&quot;:1.7},{&quot;2026-07-17&quot;:1.7},{&quot;2026-07-18&quot;:1.73},{&quot;2026-07-19&quot;:1.72},{&quot;2026-07-20&quot;:1.76},{&quot;2026-07-21&quot;:1.76},{&quot;2026-07-23&quot;:1.81},{&quot;2026-07-25&quot;:1.81},{&quot;2026-07-26&quot;:1.88},{&quot;2026-07-27&quot;:1.88},{&quot;2026-07-29&quot;:1.96},{&quot;2026-07-30&quot;:1.96},{&quot;2026-07-31&quot;:1.96},{&quot;2026-08-01&quot;:1.93},{&quot;2026-08-02&quot;:1.93},{&quot;2026-08-03&quot;:1.93},{&quot;2026-08-04&quot;:1.97},{&quot;2026-08-05&quot;:1.96},{&quot;2026-08-07&quot;:1.96},{&quot;2026-08-08&quot;:1.96},{&quot;2026-08-09&quot;:1.89},{&quot;2026-08-10&quot;:1.89},{&quot;2026-08-11&quot;:1.89},{&quot;2026-08-12&quot;:1.89},{&quot;2026-08-13&quot;:1.95},{&quot;2026-08-14&quot;:1.95},{&quot;2026-08-15&quot;:2.0},{&quot;2026-08-16&quot;:1.91},{&quot;2026-08-17&quot;:1.91},{&quot;2026-08-18&quot;:1.91},{&quot;2026-08-19&quot;:1.91},{&quot;2026-08-20&quot;:1.91},{&quot;2026-08-21&quot;:1.91},{&quot;2026-08-22&quot;:1.96},{&quot;2026-08-23&quot;:1.96},{&quot;2026-08-24&quot;:1.96},{&quot;2026-08-25&quot;:1.96},{&quot;2026-08-26&quot;:1.97},{&quot;2026-08-27&quot;:2.07},{&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.08},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:2.1},{&quot;2026-09-03&quot;:2.1},{&quot;2026-09-04&quot;:2.1},{&quot;2026-09-05&quot;:2.1},{&quot;2026-09-06&quot;:2.11},{&quot;2026-09-07&quot;:2.14},{&quot;2026-09-08&quot;:2.06},{&quot;2026-09-09&quot;:2.06},{&quot;2026-09-10&quot;:2.08},{&quot;2026-09-11&quot;:2.08}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12647"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Eternal Witness" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/7/d74e7ded-d063-4d90-a9ff-91c44a8098d7.jpg?1783928707" />

        <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">
            Eternal Witness
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eternal Witness" src="https://cards.scryfall.io/large/front/d/7/d74e7ded-d063-4d90-a9ff-91c44a8098d7.jpg?1783928707" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-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-13&quot;:1.92},{&quot;2026-06-14&quot;:1.95},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:2.05},{&quot;2026-06-17&quot;:2.08},{&quot;2026-06-18&quot;:2.08},{&quot;2026-06-19&quot;:2.08},{&quot;2026-06-20&quot;:2.08},{&quot;2026-06-21&quot;:2.03},{&quot;2026-06-22&quot;:1.98},{&quot;2026-06-23&quot;:1.89},{&quot;2026-06-24&quot;:1.93},{&quot;2026-06-25&quot;:1.93},{&quot;2026-06-26&quot;:1.96},{&quot;2026-06-27&quot;:1.96},{&quot;2026-06-28&quot;:1.91},{&quot;2026-06-29&quot;:1.86},{&quot;2026-06-30&quot;:1.84},{&quot;2026-07-01&quot;:1.8},{&quot;2026-07-02&quot;:1.81},{&quot;2026-07-03&quot;:1.81},{&quot;2026-07-04&quot;:1.81},{&quot;2026-07-05&quot;:1.79},{&quot;2026-07-06&quot;:1.79},{&quot;2026-07-07&quot;:1.79},{&quot;2026-07-08&quot;:1.76},{&quot;2026-07-09&quot;:1.75},{&quot;2026-07-10&quot;:1.88},{&quot;2026-07-11&quot;:1.88},{&quot;2026-07-12&quot;:1.9},{&quot;2026-07-13&quot;:1.9},{&quot;2026-07-14&quot;:1.87},{&quot;2026-07-15&quot;:1.94},{&quot;2026-07-16&quot;:1.94},{&quot;2026-07-17&quot;:1.94},{&quot;2026-07-18&quot;:1.95},{&quot;2026-07-19&quot;:1.91},{&quot;2026-07-20&quot;:1.91},{&quot;2026-07-21&quot;:1.87},{&quot;2026-07-22&quot;:1.87},{&quot;2026-07-23&quot;:1.91},{&quot;2026-07-24&quot;:1.92},{&quot;2026-07-25&quot;:1.85},{&quot;2026-07-26&quot;:1.86},{&quot;2026-07-27&quot;:1.93},{&quot;2026-07-28&quot;:1.93},{&quot;2026-07-29&quot;:1.94},{&quot;2026-07-30&quot;:1.97},{&quot;2026-07-31&quot;:1.87},{&quot;2026-08-01&quot;:1.87},{&quot;2026-08-02&quot;:1.87},{&quot;2026-08-03&quot;:1.87},{&quot;2026-08-04&quot;:1.85},{&quot;2026-08-05&quot;:1.83},{&quot;2026-08-07&quot;:1.79},{&quot;2026-08-08&quot;:1.79},{&quot;2026-08-09&quot;:1.81},{&quot;2026-08-10&quot;:1.74},{&quot;2026-08-11&quot;:1.77},{&quot;2026-08-12&quot;:1.71},{&quot;2026-08-13&quot;:1.77},{&quot;2026-08-14&quot;:1.77},{&quot;2026-08-15&quot;:1.72},{&quot;2026-08-16&quot;:1.77},{&quot;2026-08-17&quot;:1.77},{&quot;2026-08-18&quot;:1.76},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.77},{&quot;2026-08-21&quot;:1.77},{&quot;2026-08-22&quot;:1.77},{&quot;2026-08-23&quot;:1.78},{&quot;2026-08-24&quot;:1.78},{&quot;2026-08-25&quot;:1.8},{&quot;2026-08-26&quot;:1.8},{&quot;2026-08-27&quot;:1.8},{&quot;2026-08-28&quot;:1.8},{&quot;2026-08-29&quot;:1.8},{&quot;2026-08-30&quot;:1.92},{&quot;2026-08-31&quot;:1.98},{&quot;2026-09-01&quot;:2.01},{&quot;2026-09-02&quot;:1.97},{&quot;2026-09-03&quot;:1.99},{&quot;2026-09-04&quot;:2.1},{&quot;2026-09-05&quot;:2.11},{&quot;2026-09-06&quot;:2.01},{&quot;2026-09-07&quot;:2.01},{&quot;2026-09-08&quot;:2.01},{&quot;2026-09-09&quot;:2.01},{&quot;2026-09-10&quot;:2.05},{&quot;2026-09-11&quot;:1.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12827"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Jungle Basin
        </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">
              ↑
              9%
            </span>

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

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

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

        <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">
            Jungle Basin
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Jungle Basin" src="https://cards.scryfall.io/large/front/d/4/d4929e39-fccc-450b-bb18-f5ad56a397bd.jpg?1783928682" />
    </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.77
              </span>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.63},{&quot;2026-06-14&quot;:0.63},{&quot;2026-06-15&quot;:0.66},{&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.65},{&quot;2026-06-20&quot;:0.65},{&quot;2026-06-21&quot;:0.65},{&quot;2026-06-22&quot;:0.65},{&quot;2026-06-23&quot;:0.65},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.65},{&quot;2026-06-27&quot;:0.64},{&quot;2026-06-28&quot;:0.64},{&quot;2026-06-29&quot;:0.66},{&quot;2026-06-30&quot;:0.66},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.65},{&quot;2026-07-03&quot;:0.68},{&quot;2026-07-04&quot;:0.68},{&quot;2026-07-05&quot;:0.68},{&quot;2026-07-06&quot;:0.68},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.79},{&quot;2026-07-11&quot;:0.79},{&quot;2026-07-12&quot;:0.79},{&quot;2026-07-13&quot;:0.79},{&quot;2026-07-14&quot;:0.79},{&quot;2026-07-15&quot;:0.79},{&quot;2026-07-16&quot;:0.76},{&quot;2026-07-17&quot;:0.76},{&quot;2026-07-18&quot;:0.76},{&quot;2026-07-19&quot;:0.76},{&quot;2026-07-20&quot;:0.78},{&quot;2026-07-21&quot;:0.76},{&quot;2026-07-22&quot;:0.76},{&quot;2026-07-23&quot;:0.77},{&quot;2026-07-24&quot;:0.77},{&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.81},{&quot;2026-07-29&quot;:0.82},{&quot;2026-07-30&quot;:0.82},{&quot;2026-07-31&quot;:0.81},{&quot;2026-08-01&quot;:0.81},{&quot;2026-08-02&quot;:0.8},{&quot;2026-08-03&quot;:0.79},{&quot;2026-08-04&quot;:0.83},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.79},{&quot;2026-08-08&quot;:0.79},{&quot;2026-08-09&quot;:0.81},{&quot;2026-08-10&quot;:0.81},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.89},{&quot;2026-08-13&quot;:0.87},{&quot;2026-08-14&quot;:0.85},{&quot;2026-08-15&quot;:0.82},{&quot;2026-08-16&quot;:0.87},{&quot;2026-08-17&quot;:0.87},{&quot;2026-08-18&quot;:0.86},{&quot;2026-08-19&quot;:0.86},{&quot;2026-08-20&quot;:0.91},{&quot;2026-08-21&quot;:0.99},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.2},{&quot;2026-08-24&quot;:1.31},{&quot;2026-08-25&quot;:1.4},{&quot;2026-08-26&quot;:1.4},{&quot;2026-08-27&quot;:1.48},{&quot;2026-08-28&quot;:1.48},{&quot;2026-08-29&quot;:1.48},{&quot;2026-08-30&quot;:1.48},{&quot;2026-08-31&quot;:1.48},{&quot;2026-09-01&quot;:1.45},{&quot;2026-09-02&quot;:1.62},{&quot;2026-09-03&quot;:1.62},{&quot;2026-09-04&quot;:1.62},{&quot;2026-09-05&quot;:1.62},{&quot;2026-09-06&quot;:1.66},{&quot;2026-09-07&quot;:1.76},{&quot;2026-09-08&quot;:1.8},{&quot;2026-09-09&quot;:1.8},{&quot;2026-09-10&quot;:1.73},{&quot;2026-09-11&quot;:1.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12793"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/5/8/58b26011-e103-45c4-a253-900f4e6b2eeb.jpg?1783928686" />
    </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.74
              </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.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.48},{&quot;2026-06-14&quot;:1.48},{&quot;2026-06-15&quot;:1.5},{&quot;2026-06-16&quot;:1.5},{&quot;2026-06-17&quot;:1.44},{&quot;2026-06-18&quot;:1.44},{&quot;2026-06-19&quot;:1.44},{&quot;2026-06-20&quot;:1.41},{&quot;2026-06-21&quot;:1.41},{&quot;2026-06-22&quot;:1.44},{&quot;2026-06-23&quot;:1.42},{&quot;2026-06-24&quot;:1.4},{&quot;2026-06-25&quot;:1.37},{&quot;2026-06-26&quot;:1.34},{&quot;2026-06-27&quot;:1.4},{&quot;2026-06-28&quot;:1.4},{&quot;2026-06-29&quot;:1.45},{&quot;2026-06-30&quot;:1.44},{&quot;2026-07-01&quot;:1.42},{&quot;2026-07-02&quot;:1.44},{&quot;2026-07-03&quot;:1.44},{&quot;2026-07-04&quot;:1.45},{&quot;2026-07-05&quot;:1.46},{&quot;2026-07-06&quot;:1.48},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.55},{&quot;2026-07-09&quot;:1.55},{&quot;2026-07-10&quot;:1.55},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.56},{&quot;2026-07-14&quot;:1.54},{&quot;2026-07-15&quot;:1.54},{&quot;2026-07-16&quot;:1.53},{&quot;2026-07-17&quot;:1.55},{&quot;2026-07-18&quot;:1.57},{&quot;2026-07-19&quot;:1.6},{&quot;2026-07-20&quot;:1.6},{&quot;2026-07-21&quot;:1.58},{&quot;2026-07-22&quot;:1.59},{&quot;2026-07-23&quot;:1.58},{&quot;2026-07-24&quot;:1.59},{&quot;2026-07-25&quot;:1.56},{&quot;2026-07-26&quot;:1.58},{&quot;2026-07-27&quot;:1.55},{&quot;2026-07-28&quot;:1.55},{&quot;2026-07-29&quot;:1.57},{&quot;2026-07-30&quot;:1.57},{&quot;2026-07-31&quot;:1.56},{&quot;2026-08-01&quot;:1.63},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.62},{&quot;2026-08-04&quot;:1.67},{&quot;2026-08-05&quot;:1.67},{&quot;2026-08-07&quot;:1.7},{&quot;2026-08-08&quot;:1.7},{&quot;2026-08-09&quot;:1.7},{&quot;2026-08-10&quot;:1.66},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.63},{&quot;2026-08-13&quot;:1.65},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.7},{&quot;2026-08-16&quot;:1.7},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.67},{&quot;2026-08-19&quot;:1.66},{&quot;2026-08-20&quot;:1.76},{&quot;2026-08-21&quot;:1.75},{&quot;2026-08-22&quot;:1.79},{&quot;2026-08-23&quot;:1.75},{&quot;2026-08-24&quot;:1.75},{&quot;2026-08-25&quot;:1.75},{&quot;2026-08-26&quot;:1.83},{&quot;2026-08-27&quot;:1.82},{&quot;2026-08-28&quot;:1.82},{&quot;2026-08-29&quot;:1.82},{&quot;2026-08-30&quot;:1.82},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.87},{&quot;2026-09-02&quot;:1.84},{&quot;2026-09-03&quot;:1.86},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.78},{&quot;2026-09-06&quot;:1.74},{&quot;2026-09-07&quot;:1.71},{&quot;2026-09-08&quot;:1.69},{&quot;2026-09-09&quot;:1.71},{&quot;2026-09-10&quot;:1.71},{&quot;2026-09-11&quot;:1.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12639"
  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-cmr ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Avenger of Zendikar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/3/03dea775-bbb3-4e9c-8514-0605b5ad2e8b.jpg?1783928711" />

        <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">
            Avenger of Zendikar
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Avenger of Zendikar" src="https://cards.scryfall.io/large/front/0/3/03dea775-bbb3-4e9c-8514-0605b5ad2e8b.jpg?1783928711" />
    </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.02
              </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.65</span>
              <span class="text-xs text-grey-text">Credit: $0.85</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12642"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Beast Within
        </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">
              ↑
              11%
            </span>

          <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="Beast Within" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/2/e228bede-5972-4381-969b-9de26e570117.jpg?1783928708" />

        <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">
            Beast Within
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Beast Within" src="https://cards.scryfall.io/large/front/e/2/e228bede-5972-4381-969b-9de26e570117.jpg?1783928708" />
    </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>

                <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">$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;:0.78},{&quot;2026-06-14&quot;:0.78},{&quot;2026-06-15&quot;:0.78},{&quot;2026-06-16&quot;:0.75},{&quot;2026-06-17&quot;:0.75},{&quot;2026-06-18&quot;:0.75},{&quot;2026-06-19&quot;:0.75},{&quot;2026-06-20&quot;:0.75},{&quot;2026-06-21&quot;:0.75},{&quot;2026-06-22&quot;:0.75},{&quot;2026-06-23&quot;:0.74},{&quot;2026-06-24&quot;:0.74},{&quot;2026-06-25&quot;:0.74},{&quot;2026-06-26&quot;:0.74},{&quot;2026-06-27&quot;:0.74},{&quot;2026-06-28&quot;:0.74},{&quot;2026-06-29&quot;:0.74},{&quot;2026-06-30&quot;:0.74},{&quot;2026-07-01&quot;:0.74},{&quot;2026-07-02&quot;:0.74},{&quot;2026-07-03&quot;:0.74},{&quot;2026-07-04&quot;:0.74},{&quot;2026-07-05&quot;:0.74},{&quot;2026-07-06&quot;:0.75},{&quot;2026-07-07&quot;:0.72},{&quot;2026-07-08&quot;:0.72},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.66},{&quot;2026-07-12&quot;:0.7},{&quot;2026-07-13&quot;:0.7},{&quot;2026-07-14&quot;:0.74},{&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.73},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.74},{&quot;2026-07-21&quot;:0.75},{&quot;2026-07-22&quot;:0.75},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-24&quot;:0.75},{&quot;2026-07-25&quot;:0.75},{&quot;2026-07-26&quot;:0.75},{&quot;2026-07-27&quot;:0.75},{&quot;2026-07-28&quot;:0.71},{&quot;2026-07-29&quot;:0.71},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.7},{&quot;2026-08-01&quot;:0.7},{&quot;2026-08-02&quot;:0.7},{&quot;2026-08-03&quot;:0.7},{&quot;2026-08-04&quot;:0.7},{&quot;2026-08-05&quot;:0.7},{&quot;2026-08-07&quot;:0.71},{&quot;2026-08-08&quot;:0.74},{&quot;2026-08-09&quot;:0.74},{&quot;2026-08-10&quot;:0.75},{&quot;2026-08-11&quot;:0.72},{&quot;2026-08-12&quot;:0.71},{&quot;2026-08-13&quot;:0.71},{&quot;2026-08-14&quot;:0.71},{&quot;2026-08-15&quot;:0.71},{&quot;2026-08-16&quot;:0.72},{&quot;2026-08-17&quot;:0.75},{&quot;2026-08-18&quot;:0.75},{&quot;2026-08-19&quot;:0.75},{&quot;2026-08-20&quot;:0.7},{&quot;2026-08-21&quot;:0.7},{&quot;2026-08-22&quot;:0.7},{&quot;2026-08-23&quot;:0.71},{&quot;2026-08-24&quot;:0.71},{&quot;2026-08-25&quot;:0.78},{&quot;2026-08-26&quot;:0.78},{&quot;2026-08-27&quot;:0.78},{&quot;2026-08-28&quot;:0.78},{&quot;2026-08-29&quot;:0.78},{&quot;2026-08-30&quot;:0.76},{&quot;2026-08-31&quot;:0.76},{&quot;2026-09-01&quot;:0.82},{&quot;2026-09-02&quot;:0.82},{&quot;2026-09-03&quot;:0.82},{&quot;2026-09-04&quot;:0.83},{&quot;2026-09-05&quot;:0.83},{&quot;2026-09-06&quot;:0.83},{&quot;2026-09-07&quot;:0.89},{&quot;2026-09-08&quot;:0.89},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.92},{&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="12569"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Moonfolk Wizard
      </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.81
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Meloku the Clouded Mirror" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/60b9db96-a6ab-454b-99a7-910ef77560d7.jpg?1783928719" />

        <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">
            Meloku the Clouded Mirror
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Moonfolk Wizard</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="Meloku the Clouded Mirror" src="https://cards.scryfall.io/large/front/6/0/60b9db96-a6ab-454b-99a7-910ef77560d7.jpg?1783928719" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12690"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Verdant Sun&#39;s Avatar
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Verdant Sun&#39;s Avatar" src="https://cards.scryfall.io/large/front/c/c/cc2d03a9-815d-4662-a3ee-d6b24047128c.jpg?1783928700" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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.49},{&quot;2026-06-10&quot;:0.49},{&quot;2026-06-11&quot;:0.48},{&quot;2026-06-12&quot;:0.48},{&quot;2026-06-13&quot;:0.48},{&quot;2026-06-14&quot;:0.5},{&quot;2026-06-15&quot;:0.5},{&quot;2026-06-16&quot;:0.51},{&quot;2026-06-17&quot;:0.52},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.59},{&quot;2026-06-20&quot;:0.59},{&quot;2026-06-21&quot;:0.6},{&quot;2026-06-22&quot;:0.6},{&quot;2026-06-24&quot;:0.6},{&quot;2026-06-25&quot;:0.59},{&quot;2026-06-26&quot;:0.6},{&quot;2026-06-27&quot;:0.6},{&quot;2026-06-28&quot;:0.61},{&quot;2026-06-29&quot;:0.61},{&quot;2026-06-30&quot;:0.61},{&quot;2026-07-01&quot;:0.61},{&quot;2026-07-02&quot;:0.61},{&quot;2026-07-03&quot;:0.61},{&quot;2026-07-04&quot;:0.61},{&quot;2026-07-05&quot;:0.61},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.61},{&quot;2026-07-08&quot;:0.61},{&quot;2026-07-09&quot;:0.63},{&quot;2026-07-10&quot;:0.64},{&quot;2026-07-11&quot;:0.63},{&quot;2026-07-12&quot;:0.61},{&quot;2026-07-13&quot;:0.6},{&quot;2026-07-14&quot;:0.59},{&quot;2026-07-15&quot;:0.6},{&quot;2026-07-16&quot;:0.61},{&quot;2026-07-17&quot;:0.61},{&quot;2026-07-18&quot;:0.62},{&quot;2026-07-19&quot;:0.67},{&quot;2026-07-20&quot;:0.71},{&quot;2026-07-21&quot;:0.71},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-25&quot;:0.76},{&quot;2026-07-26&quot;:0.79},{&quot;2026-07-27&quot;:0.79},{&quot;2026-07-29&quot;:0.87},{&quot;2026-07-30&quot;:0.84},{&quot;2026-07-31&quot;:0.84},{&quot;2026-08-01&quot;:0.84},{&quot;2026-08-02&quot;:0.84},{&quot;2026-08-03&quot;:0.84},{&quot;2026-08-04&quot;:0.86},{&quot;2026-08-05&quot;:0.87},{&quot;2026-08-07&quot;:0.91},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.94},{&quot;2026-08-10&quot;:0.97},{&quot;2026-08-11&quot;:1.01},{&quot;2026-08-12&quot;:0.97},{&quot;2026-08-13&quot;:0.97},{&quot;2026-08-14&quot;:0.97},{&quot;2026-08-15&quot;:0.95},{&quot;2026-08-16&quot;:0.95},{&quot;2026-08-17&quot;:0.94},{&quot;2026-08-18&quot;:0.94},{&quot;2026-08-19&quot;:0.94},{&quot;2026-08-20&quot;:0.94},{&quot;2026-08-21&quot;:0.95},{&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.94},{&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.93},{&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.92},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.87},{&quot;2026-09-08&quot;:0.8},{&quot;2026-09-09&quot;:0.8},{&quot;2026-09-10&quot;:0.8},{&quot;2026-09-11&quot;:0.8}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12466"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.70
          </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="Trench Behemoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/0/909dc123-8234-4e81-bb7b-77404d94a87c.jpg?1783928735" />

        <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">
            Trench Behemoth
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Trench Behemoth" src="https://cards.scryfall.io/large/front/9/0/909dc123-8234-4e81-bb7b-77404d94a87c.jpg?1783928735" />
    </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.70
              </span>

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

      </div>

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.62
          </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="Coral Atoll" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/7/77e3ea71-ea9f-4bbf-93cb-0f6339f8a3ab.jpg?1783928686" />

        <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">
            Coral Atoll
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Coral Atoll" src="https://cards.scryfall.io/large/front/7/7/77e3ea71-ea9f-4bbf-93cb-0f6339f8a3ab.jpg?1783928686" />
    </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.62
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.57},{&quot;2026-06-10&quot;:0.57},{&quot;2026-06-11&quot;:0.56},{&quot;2026-06-12&quot;:0.56},{&quot;2026-06-13&quot;:0.56},{&quot;2026-06-14&quot;:0.56},{&quot;2026-06-15&quot;:0.56},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.56},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.56},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.56},{&quot;2026-07-01&quot;:0.57},{&quot;2026-07-02&quot;:0.57},{&quot;2026-07-03&quot;:0.57},{&quot;2026-07-04&quot;:0.57},{&quot;2026-07-05&quot;:0.57},{&quot;2026-07-06&quot;:0.57},{&quot;2026-07-07&quot;:0.58},{&quot;2026-07-08&quot;:0.58},{&quot;2026-07-09&quot;:0.58},{&quot;2026-07-10&quot;:0.58},{&quot;2026-07-11&quot;:0.58},{&quot;2026-07-12&quot;:0.58},{&quot;2026-07-13&quot;:0.58},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.58},{&quot;2026-07-16&quot;:0.55},{&quot;2026-07-17&quot;:0.55},{&quot;2026-07-18&quot;:0.56},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.56},{&quot;2026-07-29&quot;:0.57},{&quot;2026-07-30&quot;:0.57},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.58},{&quot;2026-08-07&quot;:0.58},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.57},{&quot;2026-08-13&quot;:0.57},{&quot;2026-08-14&quot;:0.56},{&quot;2026-08-15&quot;:0.56},{&quot;2026-08-16&quot;:0.56},{&quot;2026-08-17&quot;:0.56},{&quot;2026-08-18&quot;:0.56},{&quot;2026-08-19&quot;:0.56},{&quot;2026-08-20&quot;:0.56},{&quot;2026-08-21&quot;:0.59},{&quot;2026-08-22&quot;:0.62},{&quot;2026-08-23&quot;:0.62},{&quot;2026-08-24&quot;:0.62},{&quot;2026-08-25&quot;:0.62},{&quot;2026-08-26&quot;:0.62},{&quot;2026-08-27&quot;:0.62},{&quot;2026-08-28&quot;:0.62},{&quot;2026-08-29&quot;:0.62},{&quot;2026-08-30&quot;:0.63},{&quot;2026-08-31&quot;:0.63},{&quot;2026-09-01&quot;:0.63},{&quot;2026-09-02&quot;:0.63},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.63},{&quot;2026-09-05&quot;:0.62},{&quot;2026-09-06&quot;:0.62},{&quot;2026-09-07&quot;:0.62},{&quot;2026-09-08&quot;:0.62},{&quot;2026-09-09&quot;:0.62},{&quot;2026-09-10&quot;:0.62},{&quot;2026-09-11&quot;:0.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12471"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

        <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">
            Stumpsquall Hydra
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stumpsquall Hydra" src="https://cards.scryfall.io/large/front/8/f/8fe8096b-332a-4832-b957-7a35bb350e4e.jpg?1783928734" />
    </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.52
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-10&quot;:0.58},{&quot;2026-06-11&quot;:0.58},{&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.63},{&quot;2026-06-16&quot;:0.63},{&quot;2026-06-17&quot;:0.58},{&quot;2026-06-18&quot;:0.58},{&quot;2026-06-19&quot;:0.58},{&quot;2026-06-20&quot;:0.55},{&quot;2026-06-21&quot;:0.55},{&quot;2026-06-22&quot;:0.55},{&quot;2026-06-23&quot;:0.55},{&quot;2026-06-24&quot;:0.57},{&quot;2026-06-25&quot;:0.57},{&quot;2026-06-26&quot;:0.57},{&quot;2026-06-27&quot;:0.56},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.55},{&quot;2026-07-01&quot;:0.54},{&quot;2026-07-02&quot;:0.55},{&quot;2026-07-03&quot;:0.55},{&quot;2026-07-04&quot;:0.55},{&quot;2026-07-05&quot;:0.55},{&quot;2026-07-06&quot;:0.55},{&quot;2026-07-07&quot;:0.55},{&quot;2026-07-08&quot;:0.55},{&quot;2026-07-09&quot;:0.54},{&quot;2026-07-10&quot;:0.54},{&quot;2026-07-11&quot;:0.54},{&quot;2026-07-12&quot;:0.54},{&quot;2026-07-13&quot;:0.54},{&quot;2026-07-14&quot;:0.54},{&quot;2026-07-15&quot;:0.54},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.55},{&quot;2026-07-18&quot;:0.55},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.56},{&quot;2026-07-21&quot;:0.56},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.56},{&quot;2026-07-29&quot;:0.55},{&quot;2026-07-30&quot;:0.55},{&quot;2026-07-31&quot;:0.55},{&quot;2026-08-01&quot;:0.55},{&quot;2026-08-02&quot;:0.55},{&quot;2026-08-03&quot;:0.55},{&quot;2026-08-04&quot;:0.55},{&quot;2026-08-05&quot;:0.55},{&quot;2026-08-07&quot;:0.55},{&quot;2026-08-08&quot;:0.55},{&quot;2026-08-09&quot;:0.54},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.55},{&quot;2026-08-12&quot;:0.55},{&quot;2026-08-13&quot;:0.55},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.53},{&quot;2026-08-16&quot;:0.53},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.53},{&quot;2026-08-19&quot;:0.53},{&quot;2026-08-20&quot;:0.53},{&quot;2026-08-21&quot;:0.53},{&quot;2026-08-22&quot;:0.53},{&quot;2026-08-23&quot;:0.53},{&quot;2026-08-24&quot;:0.53},{&quot;2026-08-25&quot;:0.53},{&quot;2026-08-26&quot;:0.53},{&quot;2026-08-27&quot;:0.53},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.53},{&quot;2026-08-31&quot;:0.52},{&quot;2026-09-01&quot;:0.52},{&quot;2026-09-02&quot;:0.52},{&quot;2026-09-03&quot;:0.52},{&quot;2026-09-04&quot;:0.52},{&quot;2026-09-05&quot;:0.52},{&quot;2026-09-06&quot;:0.52},{&quot;2026-09-07&quot;:0.52},{&quot;2026-09-08&quot;:0.52},{&quot;2026-09-09&quot;:0.52},{&quot;2026-09-10&quot;:0.52},{&quot;2026-09-11&quot;:0.52}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12645"
  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-cmr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cultivate" src="https://cards.scryfall.io/large/front/5/a/5a108064-8143-4b20-a5a2-eeb3b80af82f.jpg?1783928707" />
    </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.52
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12651"
  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-cmr 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">
            Explore
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Explore
        </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="Explore" src="https://cards.scryfall.io/large/front/f/3/f3405ac8-a8e3-4c65-807e-6bfcfa162852.jpg?1783928707" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:0.37},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.44},{&quot;2026-06-20&quot;:0.43},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.44},{&quot;2026-06-23&quot;:0.44},{&quot;2026-06-24&quot;:0.44},{&quot;2026-06-25&quot;:0.44},{&quot;2026-06-26&quot;:0.44},{&quot;2026-06-27&quot;:0.44},{&quot;2026-06-28&quot;:0.44},{&quot;2026-06-29&quot;:0.44},{&quot;2026-06-30&quot;:0.44},{&quot;2026-07-01&quot;:0.44},{&quot;2026-07-02&quot;:0.44},{&quot;2026-07-03&quot;:0.44},{&quot;2026-07-04&quot;:0.44},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.45},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.45},{&quot;2026-07-10&quot;:0.45},{&quot;2026-07-11&quot;:0.45},{&quot;2026-07-12&quot;:0.45},{&quot;2026-07-13&quot;:0.45},{&quot;2026-07-14&quot;:0.45},{&quot;2026-07-15&quot;:0.45},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.45},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.45},{&quot;2026-07-21&quot;:0.45},{&quot;2026-07-22&quot;:0.45},{&quot;2026-07-23&quot;:0.45},{&quot;2026-07-24&quot;:0.45},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.56},{&quot;2026-07-29&quot;:0.56},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.61},{&quot;2026-08-04&quot;:0.61},{&quot;2026-08-05&quot;:0.61},{&quot;2026-08-07&quot;:0.61},{&quot;2026-08-08&quot;:0.61},{&quot;2026-08-09&quot;:0.61},{&quot;2026-08-10&quot;:0.62},{&quot;2026-08-11&quot;:0.62},{&quot;2026-08-12&quot;:0.62},{&quot;2026-08-13&quot;:0.62},{&quot;2026-08-14&quot;:0.62},{&quot;2026-08-15&quot;:0.62},{&quot;2026-08-16&quot;:0.62},{&quot;2026-08-17&quot;:0.62},{&quot;2026-08-18&quot;:0.62},{&quot;2026-08-19&quot;:0.56},{&quot;2026-08-20&quot;:0.56},{&quot;2026-08-21&quot;:0.56},{&quot;2026-08-22&quot;:0.57},{&quot;2026-08-23&quot;:0.58},{&quot;2026-08-24&quot;:0.58},{&quot;2026-08-25&quot;:0.58},{&quot;2026-08-26&quot;:0.58},{&quot;2026-08-27&quot;:0.58},{&quot;2026-08-28&quot;:0.58},{&quot;2026-08-29&quot;:0.58},{&quot;2026-08-30&quot;:0.59},{&quot;2026-08-31&quot;:0.59},{&quot;2026-09-01&quot;:0.6},{&quot;2026-09-02&quot;:0.6},{&quot;2026-09-03&quot;:0.45},{&quot;2026-09-04&quot;:0.45},{&quot;2026-09-05&quot;:0.5},{&quot;2026-09-06&quot;:0.5},{&quot;2026-09-07&quot;:0.47},{&quot;2026-09-08&quot;:0.47},{&quot;2026-09-09&quot;:0.47},{&quot;2026-09-10&quot;:0.47},{&quot;2026-09-11&quot;:0.47}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12667"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rampaging Baloths" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/6/766c7781-d94e-482d-98f0-9b135ec5b8ae.jpg?1783928706" />

        <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">
            Rampaging Baloths
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Beast</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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rampaging Baloths" src="https://cards.scryfall.io/large/front/7/6/766c7781-d94e-482d-98f0-9b135ec5b8ae.jpg?1783928706" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12680"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Retreat to Kazandu" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/5/553ac818-f476-43fd-841c-c91d78c2506e.jpg?1783928702" />

        <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">
            Retreat to Kazandu
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Retreat to Kazandu" src="https://cards.scryfall.io/large/front/5/5/553ac818-f476-43fd-841c-c91d78c2506e.jpg?1783928702" />
    </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.46
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.39},{&quot;2026-06-11&quot;:1.39},{&quot;2026-06-12&quot;:1.39},{&quot;2026-06-13&quot;:1.38},{&quot;2026-06-14&quot;:1.38},{&quot;2026-06-15&quot;:1.38},{&quot;2026-06-16&quot;:1.38},{&quot;2026-06-17&quot;:1.4},{&quot;2026-06-18&quot;:1.38},{&quot;2026-06-19&quot;:1.38},{&quot;2026-06-20&quot;:1.38},{&quot;2026-06-21&quot;:1.38},{&quot;2026-06-22&quot;:1.31},{&quot;2026-06-23&quot;:1.31},{&quot;2026-06-24&quot;:1.31},{&quot;2026-06-25&quot;:1.31},{&quot;2026-06-26&quot;:1.24},{&quot;2026-06-27&quot;:1.24},{&quot;2026-06-28&quot;:1.18},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.03},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:0.79},{&quot;2026-07-03&quot;:0.79},{&quot;2026-07-04&quot;:0.79},{&quot;2026-07-05&quot;:0.79},{&quot;2026-07-06&quot;:0.79},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.79},{&quot;2026-07-09&quot;:0.73},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.68},{&quot;2026-07-14&quot;:0.68},{&quot;2026-07-15&quot;:0.67},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.61},{&quot;2026-07-18&quot;:0.61},{&quot;2026-07-19&quot;:0.61},{&quot;2026-07-20&quot;:0.61},{&quot;2026-07-21&quot;:0.61},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-25&quot;:0.52},{&quot;2026-07-26&quot;:0.5},{&quot;2026-07-27&quot;:0.5},{&quot;2026-07-29&quot;:0.5},{&quot;2026-07-30&quot;:0.5},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.52},{&quot;2026-08-03&quot;:0.52},{&quot;2026-08-04&quot;:0.52},{&quot;2026-08-05&quot;:0.52},{&quot;2026-08-07&quot;:0.52},{&quot;2026-08-08&quot;:0.52},{&quot;2026-08-09&quot;:0.52},{&quot;2026-08-10&quot;:0.52},{&quot;2026-08-11&quot;:0.52},{&quot;2026-08-12&quot;:0.52},{&quot;2026-08-13&quot;:0.52},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.52},{&quot;2026-08-16&quot;:0.52},{&quot;2026-08-17&quot;:0.52},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.52},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.52},{&quot;2026-08-25&quot;:0.52},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.5},{&quot;2026-08-28&quot;:0.5},{&quot;2026-08-29&quot;:0.5},{&quot;2026-08-30&quot;:0.5},{&quot;2026-08-31&quot;:0.5},{&quot;2026-09-01&quot;:0.5},{&quot;2026-09-02&quot;:0.5},{&quot;2026-09-03&quot;:0.5},{&quot;2026-09-04&quot;:0.5},{&quot;2026-09-05&quot;:0.49},{&quot;2026-09-06&quot;:0.49},{&quot;2026-09-07&quot;:0.49},{&quot;2026-09-08&quot;:0.49},{&quot;2026-09-09&quot;:0.47},{&quot;2026-09-10&quot;:0.46},{&quot;2026-09-11&quot;:0.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12670"
  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-cmr 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">
            Rampant Growth
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rampant Growth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/c/5cbceb9b-4212-40b4-913f-e4a19db00fae.jpg?1783928705" />

        <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">
            Rampant 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">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="Rampant Growth" src="https://cards.scryfall.io/large/front/5/c/5cbceb9b-4212-40b4-913f-e4a19db00fae.jpg?1783928705" />
    </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.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">$0.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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.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="Command Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/4/64e72ac3-2b4f-43d8-9708-afe1b67c5d00.jpg?1783928684" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/6/4/64e72ac3-2b4f-43d8-9708-afe1b67c5d00.jpg?1783928684" />
    </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.44
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </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-10&quot;:0.34},{&quot;2026-06-11&quot;:0.34},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.37},{&quot;2026-07-06&quot;:0.36},{&quot;2026-07-07&quot;:0.36},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.34},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.31},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.3},{&quot;2026-07-27&quot;:0.3},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.29},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.3},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.3},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.39},{&quot;2026-08-31&quot;:0.39},{&quot;2026-09-01&quot;:0.39},{&quot;2026-09-02&quot;:0.39},{&quot;2026-09-03&quot;:0.4},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.43},{&quot;2026-09-06&quot;:0.44},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.43},{&quot;2026-09-09&quot;:0.44},{&quot;2026-09-10&quot;:0.44},{&quot;2026-09-11&quot;:0.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="12708"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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.42
          </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="Fathom Mage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/b/cbb9c5be-4bca-4c59-bbfc-50378e0404df.jpg?1783928699" />

        <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">
            Fathom Mage
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Fathom Mage" src="https://cards.scryfall.io/large/front/c/b/cbb9c5be-4bca-4c59-bbfc-50378e0404df.jpg?1783928699" />
    </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.42
              </span>

            </div>
          </div>

      </div>

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

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mulldrifter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/e/8e06fc13-6a58-40f8-a3e6-5558a7a0d18f.jpg?1783928719" />

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

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Elemental</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="Mulldrifter" src="https://cards.scryfall.io/large/front/8/e/8e06fc13-6a58-40f8-a3e6-5558a7a0d18f.jpg?1783928719" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.36},{&quot;2026-06-12&quot;:0.36},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.37},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.3},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.29},{&quot;2026-07-25&quot;:0.31},{&quot;2026-07-26&quot;:0.31},{&quot;2026-07-27&quot;:0.31},{&quot;2026-07-28&quot;:0.31},{&quot;2026-07-29&quot;:0.31},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12654"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Harmonize" src="https://cards.scryfall.io/large/front/1/5/159e0372-de5e-4830-b690-f5154ed1036c.jpg?1783928707" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.41},{&quot;2026-06-11&quot;:0.4},{&quot;2026-06-12&quot;:0.4},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.39},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.38},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.37},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.36},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.36},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.39},{&quot;2026-08-18&quot;:0.39},{&quot;2026-08-19&quot;:0.39},{&quot;2026-08-20&quot;:0.39},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.39},{&quot;2026-08-24&quot;:0.4},{&quot;2026-08-25&quot;:0.4},{&quot;2026-08-26&quot;:0.4},{&quot;2026-08-27&quot;:0.41},{&quot;2026-08-28&quot;:0.41},{&quot;2026-08-29&quot;:0.41},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.41},{&quot;2026-09-01&quot;:0.41},{&quot;2026-09-02&quot;:0.41},{&quot;2026-09-03&quot;:0.41},{&quot;2026-09-04&quot;:0.4},{&quot;2026-09-05&quot;:0.4},{&quot;2026-09-06&quot;:0.4},{&quot;2026-09-07&quot;:0.4},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.4},{&quot;2026-09-10&quot;:0.39},{&quot;2026-09-11&quot;:0.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12688"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Terastodon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/2/32141ae3-0c1c-480c-8f61-90a46d5ce54c.jpg?1783928701" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Terastodon" src="https://cards.scryfall.io/large/front/3/2/32141ae3-0c1c-480c-8f61-90a46d5ce54c.jpg?1783928701" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Blighted Woodland" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/a/0a949030-a46c-4bac-bedc-c07d5c8464af.jpg?1783928685" />

        <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">
            Blighted Woodland
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blighted Woodland" src="https://cards.scryfall.io/large/front/0/a/0a949030-a46c-4bac-bedc-c07d5c8464af.jpg?1783928685" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12656"
  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-cmr 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 Heart Expedition
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Khalni Heart Expedition" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/45cbbcfb-1b1b-4991-988d-17a22a08d5b0.jpg?1783928706" />

        <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 Heart Expedition
        </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-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="Khalni Heart Expedition" src="https://cards.scryfall.io/large/front/4/5/45cbbcfb-1b1b-4991-988d-17a22a08d5b0.jpg?1783928706" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.3},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.31},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.31},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.31},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.3},{&quot;2026-07-03&quot;:0.29},{&quot;2026-07-04&quot;:0.29},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.28},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.28},{&quot;2026-07-15&quot;:0.28},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-22&quot;:0.29},{&quot;2026-07-23&quot;:0.29},{&quot;2026-07-24&quot;:0.28},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.28},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.27},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.27},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.27},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.27},{&quot;2026-08-17&quot;:0.26},{&quot;2026-08-18&quot;:0.26},{&quot;2026-08-19&quot;:0.28},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.29},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.32},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12584"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

        <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">
            Shipbreaker Kraken
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Kraken</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><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="Shipbreaker Kraken" src="https://cards.scryfall.io/large/front/2/e/2e558f0a-f921-4ecf-b1c9-2c93aa2d3fd9.jpg?1783928718" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.39},{&quot;2026-06-11&quot;:0.39},{&quot;2026-06-12&quot;:0.4},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.41},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.41},{&quot;2026-06-23&quot;:0.42},{&quot;2026-06-24&quot;:0.42},{&quot;2026-06-25&quot;:0.42},{&quot;2026-06-26&quot;:0.42},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.42},{&quot;2026-06-29&quot;:0.42},{&quot;2026-06-30&quot;:0.42},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.41},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.42},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.43},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.43},{&quot;2026-07-16&quot;:0.43},{&quot;2026-07-17&quot;:0.43},{&quot;2026-07-18&quot;:0.43},{&quot;2026-07-19&quot;:0.43},{&quot;2026-07-20&quot;:0.43},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.37},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.37},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.35},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.35},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.36},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12596"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tromokratis" src="https://cards.scryfall.io/large/front/1/6/160686f3-44fd-4f7a-81cf-d3b5b964bfba.jpg?1783928714" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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.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-08&quot;:0.31},{&quot;2026-06-10&quot;:0.31},{&quot;2026-06-11&quot;:0.31},{&quot;2026-06-12&quot;:0.31},{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-24&quot;:0.27},{&quot;2026-06-25&quot;:0.27},{&quot;2026-06-26&quot;:0.28},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.28},{&quot;2026-07-04&quot;:0.29},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.3},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.31},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.32},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.43},{&quot;2026-07-18&quot;:0.43},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.43},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-23&quot;:0.43},{&quot;2026-07-25&quot;:0.42},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-29&quot;:0.41},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.4},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.43},{&quot;2026-08-08&quot;:0.43},{&quot;2026-08-09&quot;:0.43},{&quot;2026-08-10&quot;:0.42},{&quot;2026-08-11&quot;:0.42},{&quot;2026-08-12&quot;:0.41},{&quot;2026-08-13&quot;:0.41},{&quot;2026-08-14&quot;:0.41},{&quot;2026-08-15&quot;:0.4},{&quot;2026-08-16&quot;:0.41},{&quot;2026-08-17&quot;:0.41},{&quot;2026-08-18&quot;:0.41},{&quot;2026-08-19&quot;:0.41},{&quot;2026-08-20&quot;:0.41},{&quot;2026-08-21&quot;:0.41},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.35},{&quot;2026-09-11&quot;:0.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12685"
  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-cmr 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">
            Sporemound
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Sporemound
        </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 — Fungus</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </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="Sporemound" src="https://cards.scryfall.io/large/front/0/9/092bfc5f-8002-43da-8e70-c19fccfe54ac.jpg?1783928702" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12587"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Slinn Voda, the Rising Deep" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/e/cebf2c16-bd9d-4a8f-a1b6-6e0c393178bc.jpg?1783928715" />

        <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">
            Slinn Voda, the Rising Deep
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Slinn Voda, the Rising Deep" src="https://cards.scryfall.io/large/front/c/e/cebf2c16-bd9d-4a8f-a1b6-6e0c393178bc.jpg?1783928715" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12852"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Simic Growth Chamber" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/0/b0b84ef6-ba13-4c65-987e-cc6aa750086c.jpg?1783928679" />

        <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">
            Simic Growth Chamber
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Simic Growth Chamber" src="https://cards.scryfall.io/large/front/b/0/b0b84ef6-ba13-4c65-987e-cc6aa750086c.jpg?1783928679" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12702"
  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-cmr 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">
            Coiling Oracle
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Coiling Oracle" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/4/e42b8b16-dd09-466b-ba1e-979e963ea384.jpg?1783928699" />

        <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">
            Coiling Oracle
        </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 — Snake 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><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="Coiling Oracle" src="https://cards.scryfall.io/large/front/e/4/e42b8b16-dd09-466b-ba1e-979e963ea384.jpg?1783928699" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>


      <!-- 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.23},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.23},{&quot;2026-06-16&quot;:0.23},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.23},{&quot;2026-06-19&quot;:0.23},{&quot;2026-06-20&quot;:0.23},{&quot;2026-06-21&quot;:0.23},{&quot;2026-06-22&quot;:0.23},{&quot;2026-06-23&quot;:0.23},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.23},{&quot;2026-06-26&quot;:0.23},{&quot;2026-06-27&quot;:0.23},{&quot;2026-06-28&quot;:0.23},{&quot;2026-06-29&quot;:0.23},{&quot;2026-06-30&quot;:0.23},{&quot;2026-07-01&quot;:0.24},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.24},{&quot;2026-07-04&quot;:0.24},{&quot;2026-07-05&quot;:0.24},{&quot;2026-07-06&quot;:0.24},{&quot;2026-07-07&quot;:0.24},{&quot;2026-07-08&quot;:0.24},{&quot;2026-07-09&quot;:0.24},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.25},{&quot;2026-07-12&quot;:0.25},{&quot;2026-07-13&quot;:0.26},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.27},{&quot;2026-07-17&quot;:0.27},{&quot;2026-07-18&quot;:0.27},{&quot;2026-07-19&quot;:0.27},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-22&quot;:0.27},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-24&quot;:0.27},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.29},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.3},{&quot;2026-08-02&quot;:0.3},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.28},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.29},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.28},{&quot;2026-08-19&quot;:0.28},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.29},{&quot;2026-08-23&quot;:0.29},{&quot;2026-08-24&quot;:0.29},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12743"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Urban Evolution" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/b/2ba443c5-ed9f-4bc0-8821-0053b536d648.jpg?1783928692" />

        <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">
            Urban Evolution
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Urban Evolution" src="https://cards.scryfall.io/large/front/2/b/2ba443c5-ed9f-4bc0-8821-0053b536d648.jpg?1783928692" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>


      <!-- 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.28},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.28},{&quot;2026-06-14&quot;:0.28},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.28},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.3},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.34},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.35},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.35},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.35},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12789"
  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-cmr 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">
            Simic Signet
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Simic Signet
        </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="Simic Signet" src="https://cards.scryfall.io/large/front/6/a/6a8ce2ab-d3e6-486c-a577-2d4f2c750cde.jpg?1783928687" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.3},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.29},{&quot;2026-07-02&quot;:0.29},{&quot;2026-07-03&quot;:0.29},{&quot;2026-07-04&quot;:0.29},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.29},{&quot;2026-07-07&quot;:0.29},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.29},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.3},{&quot;2026-07-22&quot;:0.3},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-24&quot;:0.3},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.3},{&quot;2026-07-27&quot;:0.3},{&quot;2026-07-28&quot;:0.3},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.3},{&quot;2026-08-02&quot;:0.3},{&quot;2026-08-03&quot;:0.3},{&quot;2026-08-04&quot;:0.3},{&quot;2026-08-05&quot;:0.3},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.31},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.31},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12877"
  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-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Vivid Creek
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vivid Creek" src="https://cards.scryfall.io/large/front/7/f/7fde8caf-975e-4d43-b994-27199e0557fa.jpg?1783928675" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.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.45},{&quot;2026-06-15&quot;:0.45},{&quot;2026-06-16&quot;:0.45},{&quot;2026-06-17&quot;:0.45},{&quot;2026-06-18&quot;:0.45},{&quot;2026-06-19&quot;:0.44},{&quot;2026-06-20&quot;:0.44},{&quot;2026-06-21&quot;:0.44},{&quot;2026-06-22&quot;:0.43},{&quot;2026-06-23&quot;:0.43},{&quot;2026-06-24&quot;:0.43},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.43},{&quot;2026-06-27&quot;:0.43},{&quot;2026-06-28&quot;:0.43},{&quot;2026-06-29&quot;:0.43},{&quot;2026-06-30&quot;:0.43},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.43},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.43},{&quot;2026-07-07&quot;:0.43},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.42},{&quot;2026-07-10&quot;:0.42},{&quot;2026-07-11&quot;:0.41},{&quot;2026-07-12&quot;:0.41},{&quot;2026-07-13&quot;:0.41},{&quot;2026-07-14&quot;:0.41},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.41},{&quot;2026-07-18&quot;:0.41},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.41},{&quot;2026-07-21&quot;:0.41},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.41},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-28&quot;:0.41},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.4},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.4},{&quot;2026-08-09&quot;:0.4},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.4},{&quot;2026-08-12&quot;:0.4},{&quot;2026-08-13&quot;:0.4},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12563"
  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-cmr 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">
            Into the Roil
        </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">
            $0.32
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Into the Roil
        </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-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="Into the Roil" src="https://cards.scryfall.io/large/front/f/3/f3463be0-df9e-4cb9-a90f-5d9d2ee729e0.jpg?1783928722" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.27},{&quot;2026-06-14&quot;:0.27},{&quot;2026-06-15&quot;:0.27},{&quot;2026-06-16&quot;:0.27},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.26},{&quot;2026-06-19&quot;:0.26},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.31},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.31},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.39},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.38},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.36},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.31},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12733"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

        <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">
            Simic Sky Swallower
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Simic Sky Swallower" src="https://cards.scryfall.io/large/front/f/7/f791b7fa-3d12-409d-b017-cb9fd8b71af7.jpg?1783928695" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12683"
  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-cmr 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">
            Search for Tomorrow
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Search for Tomorrow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/029b6d93-0f7a-4df4-8c01-96cbd5e03315.jpg?1783928704" />

        <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">
            Search for Tomorrow
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Search for Tomorrow" src="https://cards.scryfall.io/large/front/0/2/029b6d93-0f7a-4df4-8c01-96cbd5e03315.jpg?1783928704" />
    </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.31
              </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-13&quot;:0.3},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.3},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.32},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.32},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.32},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.34},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-24&quot;:0.34},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.32},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.31},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.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="12566"
  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-cmr 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">
            Ior Ruin Expedition
        </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">
              ↑
              11%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ior Ruin Expedition" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/d/fd466b20-d11d-419e-8765-9befb9590299.jpg?1783928720" />

        <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">
            Ior Ruin Expedition
        </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ior Ruin Expedition" src="https://cards.scryfall.io/large/front/f/d/fd466b20-d11d-419e-8765-9befb9590299.jpg?1783928720" />
    </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.30
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  11%
                </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-12&quot;:0.21},{&quot;2026-06-13&quot;:0.23},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.23},{&quot;2026-06-16&quot;:0.23},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.22},{&quot;2026-06-19&quot;:0.22},{&quot;2026-06-20&quot;:0.22},{&quot;2026-06-21&quot;:0.22},{&quot;2026-06-22&quot;:0.22},{&quot;2026-06-23&quot;:0.22},{&quot;2026-06-24&quot;:0.21},{&quot;2026-06-25&quot;:0.21},{&quot;2026-06-26&quot;:0.21},{&quot;2026-06-27&quot;:0.22},{&quot;2026-06-28&quot;:0.22},{&quot;2026-06-29&quot;:0.22},{&quot;2026-06-30&quot;:0.22},{&quot;2026-07-01&quot;:0.22},{&quot;2026-07-02&quot;:0.22},{&quot;2026-07-03&quot;:0.22},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.22},{&quot;2026-07-06&quot;:0.22},{&quot;2026-07-07&quot;:0.22},{&quot;2026-07-08&quot;:0.23},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.23},{&quot;2026-07-11&quot;:0.23},{&quot;2026-07-12&quot;:0.23},{&quot;2026-07-13&quot;:0.23},{&quot;2026-07-14&quot;:0.23},{&quot;2026-07-15&quot;:0.23},{&quot;2026-07-16&quot;:0.23},{&quot;2026-07-17&quot;:0.23},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.23},{&quot;2026-07-20&quot;:0.23},{&quot;2026-07-21&quot;:0.23},{&quot;2026-07-23&quot;:0.23},{&quot;2026-07-24&quot;:0.23},{&quot;2026-07-25&quot;:0.23},{&quot;2026-07-26&quot;:0.23},{&quot;2026-07-27&quot;:0.23},{&quot;2026-07-28&quot;:0.23},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.23},{&quot;2026-07-31&quot;:0.23},{&quot;2026-08-01&quot;:0.23},{&quot;2026-08-02&quot;:0.23},{&quot;2026-08-03&quot;:0.22},{&quot;2026-08-04&quot;:0.22},{&quot;2026-08-05&quot;:0.23},{&quot;2026-08-07&quot;:0.23},{&quot;2026-08-08&quot;:0.24},{&quot;2026-08-09&quot;:0.24},{&quot;2026-08-10&quot;:0.24},{&quot;2026-08-11&quot;:0.24},{&quot;2026-08-12&quot;:0.24},{&quot;2026-08-13&quot;:0.24},{&quot;2026-08-14&quot;:0.25},{&quot;2026-08-15&quot;:0.25},{&quot;2026-08-16&quot;:0.25},{&quot;2026-08-17&quot;:0.25},{&quot;2026-08-18&quot;:0.26},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.26},{&quot;2026-08-22&quot;:0.26},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.26},{&quot;2026-08-25&quot;:0.26},{&quot;2026-08-26&quot;:0.26},{&quot;2026-08-27&quot;:0.26},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.26},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.27},{&quot;2026-09-05&quot;:0.27},{&quot;2026-09-06&quot;:0.27},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.3}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12474"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Elder Deep-Fiend" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/c/4cffed4c-4e2b-414a-9b20-90ce21b47d16.jpg?1783928734" />

        <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">
            Elder Deep-Fiend
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elder Deep-Fiend" src="https://cards.scryfall.io/large/front/4/c/4cffed4c-4e2b-414a-9b20-90ce21b47d16.jpg?1783928734" />
    </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.28
              </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-11&quot;:0.23},{&quot;2026-06-12&quot;:0.24},{&quot;2026-06-13&quot;:0.24},{&quot;2026-06-14&quot;:0.24},{&quot;2026-06-15&quot;:0.24},{&quot;2026-06-16&quot;:0.24},{&quot;2026-06-17&quot;:0.24},{&quot;2026-06-18&quot;:0.25},{&quot;2026-06-19&quot;:0.25},{&quot;2026-06-20&quot;:0.25},{&quot;2026-06-21&quot;:0.26},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.26},{&quot;2026-06-24&quot;:0.26},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.26},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.27},{&quot;2026-07-04&quot;:0.27},{&quot;2026-07-05&quot;:0.27},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.27},{&quot;2026-07-10&quot;:0.27},{&quot;2026-07-11&quot;:0.27},{&quot;2026-07-12&quot;:0.27},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.27},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.29},{&quot;2026-07-25&quot;:0.29},{&quot;2026-07-26&quot;:0.29},{&quot;2026-07-27&quot;:0.29},{&quot;2026-07-28&quot;:0.29},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.28},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.29},{&quot;2026-08-09&quot;:0.29},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.29},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.27},{&quot;2026-08-17&quot;:0.27},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.27},{&quot;2026-08-20&quot;:0.27},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.27},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.28},{&quot;2026-08-29&quot;:0.28},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.27},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.28},{&quot;2026-09-05&quot;:0.28},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12590"
  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-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sphinx of Uthuun" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/b/5bd5cd33-20e2-4063-b422-2bde13021888.jpg?1783928716" />

        <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">
            Sphinx of Uthuun
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sphinx of Uthuun" src="https://cards.scryfall.io/large/front/5/b/5bd5cd33-20e2-4063-b422-2bde13021888.jpg?1783928716" />
    </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.28
              </span>

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

      </div>


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.19},{&quot;2026-06-10&quot;:0.19},{&quot;2026-06-11&quot;:0.19},{&quot;2026-06-12&quot;:0.19},{&quot;2026-06-13&quot;:0.2},{&quot;2026-06-14&quot;:0.2},{&quot;2026-06-15&quot;:0.2},{&quot;2026-06-16&quot;:0.2},{&quot;2026-06-17&quot;:0.21},{&quot;2026-06-18&quot;:0.21},{&quot;2026-06-19&quot;:0.21},{&quot;2026-06-20&quot;:0.21},{&quot;2026-06-21&quot;:0.23},{&quot;2026-06-22&quot;:0.23},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.23},{&quot;2026-06-26&quot;:0.23},{&quot;2026-06-27&quot;:0.23},{&quot;2026-06-28&quot;:0.23},{&quot;2026-06-29&quot;:0.24},{&quot;2026-06-30&quot;:0.24},{&quot;2026-07-01&quot;:0.23},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.24},{&quot;2026-07-04&quot;:0.24},{&quot;2026-07-05&quot;:0.24},{&quot;2026-07-06&quot;:0.24},{&quot;2026-07-07&quot;:0.24},{&quot;2026-07-08&quot;:0.24},{&quot;2026-07-09&quot;:0.24},{&quot;2026-07-10&quot;:0.24},{&quot;2026-07-11&quot;:0.24},{&quot;2026-07-12&quot;:0.24},{&quot;2026-07-13&quot;:0.24},{&quot;2026-07-14&quot;:0.24},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.24},{&quot;2026-07-17&quot;:0.23},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.23},{&quot;2026-07-20&quot;:0.23},{&quot;2026-07-21&quot;:0.23},{&quot;2026-07-23&quot;:0.23},{&quot;2026-07-25&quot;:0.24},{&quot;2026-07-26&quot;:0.24},{&quot;2026-07-27&quot;:0.24},{&quot;2026-07-29&quot;:0.24},{&quot;2026-07-30&quot;:0.24},{&quot;2026-07-31&quot;:0.24},{&quot;2026-08-01&quot;:0.24},{&quot;2026-08-02&quot;:0.24},{&quot;2026-08-03&quot;:0.24},{&quot;2026-08-04&quot;:0.24},{&quot;2026-08-05&quot;:0.24},{&quot;2026-08-07&quot;:0.24},{&quot;2026-08-08&quot;:0.24},{&quot;2026-08-09&quot;:0.24},{&quot;2026-08-10&quot;:0.25},{&quot;2026-08-11&quot;:0.25},{&quot;2026-08-12&quot;:0.24},{&quot;2026-08-13&quot;:0.24},{&quot;2026-08-14&quot;:0.24},{&quot;2026-08-15&quot;:0.24},{&quot;2026-08-16&quot;:0.25},{&quot;2026-08-17&quot;:0.25},{&quot;2026-08-18&quot;:0.25},{&quot;2026-08-19&quot;:0.25},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.25},{&quot;2026-08-22&quot;:0.25},{&quot;2026-08-23&quot;:0.25},{&quot;2026-08-24&quot;:0.25},{&quot;2026-08-25&quot;:0.25},{&quot;2026-08-26&quot;:0.26},{&quot;2026-08-27&quot;:0.25},{&quot;2026-08-28&quot;:0.25},{&quot;2026-08-29&quot;:0.25},{&quot;2026-08-30&quot;:0.27},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}]}"
        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 74 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=77&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=77&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=77&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=77&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=77&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=77&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=77&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=77&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=77&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=77&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=77&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="12463"
          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">
              365
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Aesi, Tyrant of Gyre Strait


            </td>

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

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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


            </td>

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.94
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12593"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12593" src="/boxset_card/12593?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12551"
          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">
              393
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Arcane Denial


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.16

                    <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.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.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12551"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12551" src="/boxset_card/12551?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12660"
          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">
              429
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Kodama&#39;s Reach


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery — Arcane
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.08

                    <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.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12660"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12660" src="/boxset_card/12660?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12647"
          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">
              425
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Eternal Witness


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.97

                    <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.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12647"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12647" src="/boxset_card/12647?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12827"
          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">
              484
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Jungle Basin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12827"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12827" src="/boxset_card/12827?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12793"
          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">
              472
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.74

                    <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.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">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12793"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12793" src="/boxset_card/12793?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12639"
          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">
              422
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Avenger of Zendikar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.02

                    <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.65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.64
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12639"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12639" src="/boxset_card/12639?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12642"
          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">
              423
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Beast Within


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.92

                    <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">
                $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.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12642"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12642" src="/boxset_card/12642?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12569"
          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">
              399
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Meloku the Clouded Mirror


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Moonfolk Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.81

                    <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.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12569"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12569" src="/boxset_card/12569?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12690"
          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">
              439
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Verdant Sun&#39;s Avatar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur Avatar
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.80

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12690"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12690" src="/boxset_card/12690?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12466"
          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">
              366
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Trench Behemoth


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Kraken
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.70

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12466"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12466" src="/boxset_card/12466?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12815"
          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">
              480
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Coral Atoll


            </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.62

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12815"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12815" src="/boxset_card/12815?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12471"
          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">
              367
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Stumpsquall Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.52

                </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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12471"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12471" src="/boxset_card/12471?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12645"
          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">
              424
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Cultivate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.52

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12645"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12645" src="/boxset_card/12645?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12651"
          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">
              426
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Explore


            </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">
                  $0.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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="12651"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12651" src="/boxset_card/12651?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12667"
          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">
              431
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Rampaging Baloths


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Beast
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.47

                    <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.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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12667"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12667" src="/boxset_card/12667?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12680"
          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">
              435
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Retreat to Kazandu


            </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.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12680"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12680" src="/boxset_card/12680?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12670"
          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">
              432
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Rampant Growth


            </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">
                  $0.44

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12670"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12670" src="/boxset_card/12670?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12812"
          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">
              479
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.44

                    <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">
            </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="12812"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12812" src="/boxset_card/12812?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12708"
          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">
              445
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Fathom Mage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.42

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12708"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12708" src="/boxset_card/12708?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12571"
          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">
              400
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Mulldrifter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                    <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.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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12571"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12571" src="/boxset_card/12571?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12654"
          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">
              427
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Harmonize


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><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.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12654"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12654" src="/boxset_card/12654?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12688"
          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">
              438
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Terastodon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elephant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.65
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12688"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12688" src="/boxset_card/12688?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12804"
          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">
              476
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Blighted Woodland


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="12804"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12804" src="/boxset_card/12804?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12656"
          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">
              428
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Khalni Heart Expedition


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12656"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12656" src="/boxset_card/12656?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12584"
          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">
              404
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Shipbreaker Kraken


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Kraken
            </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><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.36

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="12584"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12584" src="/boxset_card/12584?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12596"
          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">
              408
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Tromokratis


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Kraken
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <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.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.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12596"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12596" src="/boxset_card/12596?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12685"
          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">
              437
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Sporemound


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Fungus
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="12685"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12685" src="/boxset_card/12685?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12587"
          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">
              405
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Slinn Voda, the Rising Deep


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Leviathan
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12587"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12587" src="/boxset_card/12587?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12852"
          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">
              492
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Simic Growth Chamber


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.32
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12852"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12852" src="/boxset_card/12852?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12702"
          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">
              443
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Coiling Oracle


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Snake 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><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.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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="12702"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12702" src="/boxset_card/12702?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12743"
          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">
              455
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Urban Evolution


            </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><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.33

                </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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12743"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12743" src="/boxset_card/12743?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12789"
          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">
              471
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Simic Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="12789"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12789" src="/boxset_card/12789?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12877"
          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">
              500
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Vivid Creek


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      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.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12877"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12877" src="/boxset_card/12877?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12563"
          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">
              397
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Into the Roil


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12563"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12563" src="/boxset_card/12563?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12733"
          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">
              452
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Simic Sky Swallower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Leviathan
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      27%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="12733"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12733" src="/boxset_card/12733?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12683"
          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">
              436
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Search for Tomorrow


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                </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.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12683"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12683" src="/boxset_card/12683?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12566"
          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">
              398
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-common ss-fw ss-2x mr-4"></i>
              Ior Ruin Expedition


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <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">
            </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="12566"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12566" src="/boxset_card/12566?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12474"
          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">
              368
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Elder Deep-Fiend


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Eldrazi Octopus
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.28

                </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.86
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12474"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12474" src="/boxset_card/12474?collection_id=77&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12590"
          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">
              406
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Sphinx of Uthuun


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Sphinx
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="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="12590"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12590" src="/boxset_card/12590?collection_id=77&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 74 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=77&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=77&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>