<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="344" 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="74638"
  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-ltr 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">
            Nazgûl
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $26.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="Nazgûl" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/9/a92d5a03-a4c9-4432-b3bb-f5bb21f65db0.jpg?1783916197" />

        <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">
            Nazgûl
        </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 — Wraith Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nazgûl" src="https://cards.scryfall.io/large/front/a/9/a92d5a03-a4c9-4432-b3bb-f5bb21f65db0.jpg?1783916197" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-14&quot;:27.27},{&quot;2026-06-15&quot;:27.27},{&quot;2026-06-16&quot;:27.38},{&quot;2026-06-17&quot;:27.38},{&quot;2026-06-18&quot;:27.38},{&quot;2026-06-19&quot;:27.38},{&quot;2026-06-20&quot;:27.38},{&quot;2026-06-21&quot;:27.38},{&quot;2026-06-22&quot;:27.38},{&quot;2026-06-23&quot;:28.0},{&quot;2026-06-24&quot;:28.0},{&quot;2026-06-25&quot;:28.0},{&quot;2026-06-26&quot;:28.05},{&quot;2026-06-27&quot;:28.05},{&quot;2026-06-28&quot;:28.05},{&quot;2026-06-29&quot;:28.05},{&quot;2026-06-30&quot;:28.05},{&quot;2026-07-01&quot;:28.08},{&quot;2026-07-02&quot;:28.08},{&quot;2026-07-03&quot;:28.08},{&quot;2026-07-04&quot;:28.08},{&quot;2026-07-05&quot;:28.08},{&quot;2026-07-06&quot;:28.08},{&quot;2026-07-07&quot;:28.04},{&quot;2026-07-08&quot;:28.02},{&quot;2026-07-09&quot;:28.31},{&quot;2026-07-10&quot;:28.31},{&quot;2026-07-11&quot;:28.26},{&quot;2026-07-12&quot;:28.26},{&quot;2026-07-13&quot;:28.26},{&quot;2026-07-14&quot;:28.26},{&quot;2026-07-15&quot;:28.37},{&quot;2026-07-16&quot;:28.37},{&quot;2026-07-17&quot;:28.39},{&quot;2026-07-18&quot;:28.64},{&quot;2026-07-19&quot;:28.64},{&quot;2026-07-20&quot;:28.64},{&quot;2026-07-21&quot;:28.64},{&quot;2026-07-23&quot;:28.8},{&quot;2026-07-24&quot;:28.8},{&quot;2026-07-25&quot;:28.8},{&quot;2026-07-26&quot;:28.8},{&quot;2026-07-27&quot;:28.8},{&quot;2026-07-28&quot;:28.8},{&quot;2026-07-29&quot;:28.8},{&quot;2026-07-30&quot;:28.88},{&quot;2026-07-31&quot;:28.88},{&quot;2026-08-01&quot;:28.88},{&quot;2026-08-02&quot;:29.06},{&quot;2026-08-03&quot;:29.06},{&quot;2026-08-04&quot;:29.16},{&quot;2026-08-05&quot;:29.16},{&quot;2026-08-07&quot;:29.16},{&quot;2026-08-08&quot;:29.16},{&quot;2026-08-09&quot;:29.16},{&quot;2026-08-10&quot;:29.16},{&quot;2026-08-11&quot;:29.35},{&quot;2026-08-12&quot;:29.55},{&quot;2026-08-13&quot;:29.67},{&quot;2026-08-14&quot;:29.67},{&quot;2026-08-15&quot;:29.67},{&quot;2026-08-16&quot;:29.67},{&quot;2026-08-17&quot;:29.42},{&quot;2026-08-18&quot;:29.42},{&quot;2026-08-19&quot;:29.42},{&quot;2026-08-20&quot;:29.42},{&quot;2026-08-21&quot;:29.45},{&quot;2026-08-22&quot;:29.45},{&quot;2026-08-23&quot;:29.45},{&quot;2026-08-24&quot;:29.45},{&quot;2026-08-25&quot;:29.45},{&quot;2026-08-26&quot;:29.55},{&quot;2026-08-27&quot;:29.55},{&quot;2026-08-28&quot;:29.55},{&quot;2026-08-29&quot;:29.55},{&quot;2026-08-30&quot;:29.53},{&quot;2026-08-31&quot;:29.53},{&quot;2026-09-01&quot;:29.35},{&quot;2026-09-02&quot;:29.13},{&quot;2026-09-03&quot;:29.13},{&quot;2026-09-04&quot;:29.13},{&quot;2026-09-05&quot;:29.13},{&quot;2026-09-06&quot;:29.13},{&quot;2026-09-07&quot;:29.21},{&quot;2026-09-08&quot;:29.28},{&quot;2026-09-09&quot;:29.16},{&quot;2026-09-10&quot;:29.16},{&quot;2026-09-11&quot;:29.16},{&quot;2026-09-12&quot;:29.16},{&quot;2026-09-13&quot;:29.16}],&quot;normal&quot;:[{&quot;2026-06-14&quot;:23.96},{&quot;2026-06-15&quot;:23.75},{&quot;2026-06-16&quot;:23.59},{&quot;2026-06-17&quot;:23.45},{&quot;2026-06-18&quot;:22.79},{&quot;2026-06-19&quot;:22.73},{&quot;2026-06-20&quot;:22.77},{&quot;2026-06-21&quot;:22.95},{&quot;2026-06-22&quot;:22.95},{&quot;2026-06-23&quot;:22.99},{&quot;2026-06-24&quot;:23.31},{&quot;2026-06-25&quot;:23.5},{&quot;2026-06-26&quot;:23.87},{&quot;2026-06-27&quot;:23.97},{&quot;2026-06-28&quot;:23.91},{&quot;2026-06-29&quot;:24.14},{&quot;2026-06-30&quot;:24.26},{&quot;2026-07-01&quot;:24.05},{&quot;2026-07-02&quot;:24.03},{&quot;2026-07-03&quot;:24.48},{&quot;2026-07-04&quot;:24.67},{&quot;2026-07-05&quot;:24.6},{&quot;2026-07-06&quot;:24.45},{&quot;2026-07-07&quot;:24.38},{&quot;2026-07-08&quot;:24.88},{&quot;2026-07-09&quot;:24.66},{&quot;2026-07-10&quot;:24.85},{&quot;2026-07-11&quot;:24.83},{&quot;2026-07-12&quot;:24.41},{&quot;2026-07-13&quot;:24.63},{&quot;2026-07-14&quot;:24.75},{&quot;2026-07-15&quot;:24.3},{&quot;2026-07-16&quot;:24.05},{&quot;2026-07-17&quot;:24.01},{&quot;2026-07-18&quot;:24.05},{&quot;2026-07-19&quot;:23.88},{&quot;2026-07-20&quot;:23.73},{&quot;2026-07-21&quot;:23.47},{&quot;2026-07-23&quot;:23.29},{&quot;2026-07-24&quot;:23.25},{&quot;2026-07-25&quot;:22.85},{&quot;2026-07-26&quot;:22.82},{&quot;2026-07-27&quot;:22.75},{&quot;2026-07-28&quot;:22.57},{&quot;2026-07-29&quot;:22.1},{&quot;2026-07-30&quot;:21.88},{&quot;2026-07-31&quot;:22.26},{&quot;2026-08-01&quot;:22.36},{&quot;2026-08-02&quot;:22.45},{&quot;2026-08-03&quot;:22.71},{&quot;2026-08-04&quot;:23.37},{&quot;2026-08-05&quot;:23.51},{&quot;2026-08-07&quot;:23.53},{&quot;2026-08-08&quot;:23.44},{&quot;2026-08-09&quot;:23.41},{&quot;2026-08-10&quot;:23.34},{&quot;2026-08-11&quot;:23.26},{&quot;2026-08-12&quot;:23.51},{&quot;2026-08-13&quot;:23.65},{&quot;2026-08-14&quot;:24.15},{&quot;2026-08-15&quot;:24.3},{&quot;2026-08-16&quot;:24.62},{&quot;2026-08-17&quot;:25.01},{&quot;2026-08-18&quot;:24.79},{&quot;2026-08-19&quot;:25.09},{&quot;2026-08-20&quot;:25.09},{&quot;2026-08-21&quot;:24.99},{&quot;2026-08-22&quot;:24.76},{&quot;2026-08-23&quot;:24.69},{&quot;2026-08-24&quot;:25.33},{&quot;2026-08-25&quot;:25.79},{&quot;2026-08-26&quot;:25.76},{&quot;2026-08-27&quot;:25.26},{&quot;2026-08-28&quot;:25.78},{&quot;2026-08-29&quot;:25.78},{&quot;2026-08-30&quot;:25.78},{&quot;2026-08-31&quot;:25.49},{&quot;2026-09-01&quot;:25.67},{&quot;2026-09-02&quot;:25.93},{&quot;2026-09-03&quot;:26.08},{&quot;2026-09-04&quot;:25.98},{&quot;2026-09-05&quot;:25.89},{&quot;2026-09-06&quot;:25.97},{&quot;2026-09-07&quot;:26.07},{&quot;2026-09-08&quot;:26.09},{&quot;2026-09-09&quot;:26.32},{&quot;2026-09-10&quot;:26.33},{&quot;2026-09-11&quot;:26.33},{&quot;2026-09-12&quot;:26.25},{&quot;2026-09-13&quot;:26.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="73942"
  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-ltr 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">
            Nazgûl
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nazgûl" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/3/833936c6-9381-4c0b-a81c-4a938be95040.jpg?1783916298" />

        <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">
            Nazgûl
        </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 — Wraith Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nazgûl" src="https://cards.scryfall.io/large/front/8/3/833936c6-9381-4c0b-a81c-4a938be95040.jpg?1783916298" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $36.66
              </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">$19.00</span>
              <span class="text-xs text-grey-text">Credit: $24.70</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-15&quot;:32.15},{&quot;2026-06-16&quot;:32.15},{&quot;2026-06-17&quot;:32.15},{&quot;2026-06-18&quot;:32.15},{&quot;2026-06-19&quot;:32.15},{&quot;2026-06-20&quot;:32.24},{&quot;2026-06-21&quot;:32.24},{&quot;2026-06-22&quot;:32.49},{&quot;2026-06-23&quot;:33.11},{&quot;2026-06-24&quot;:33.11},{&quot;2026-06-25&quot;:33.11},{&quot;2026-06-26&quot;:32.64},{&quot;2026-06-27&quot;:32.64},{&quot;2026-06-28&quot;:32.64},{&quot;2026-06-29&quot;:32.64},{&quot;2026-06-30&quot;:32.64},{&quot;2026-07-01&quot;:32.64},{&quot;2026-07-02&quot;:33.0},{&quot;2026-07-03&quot;:33.0},{&quot;2026-07-04&quot;:33.0},{&quot;2026-07-05&quot;:33.0},{&quot;2026-07-06&quot;:33.0},{&quot;2026-07-07&quot;:33.0},{&quot;2026-07-08&quot;:33.33},{&quot;2026-07-09&quot;:33.8},{&quot;2026-07-10&quot;:33.8},{&quot;2026-07-11&quot;:33.8},{&quot;2026-07-12&quot;:33.8},{&quot;2026-07-13&quot;:33.8},{&quot;2026-07-14&quot;:33.8},{&quot;2026-07-15&quot;:35.36},{&quot;2026-07-16&quot;:35.36},{&quot;2026-07-17&quot;:35.85},{&quot;2026-07-18&quot;:36.17},{&quot;2026-07-19&quot;:36.17},{&quot;2026-07-20&quot;:36.17},{&quot;2026-07-21&quot;:36.17},{&quot;2026-07-22&quot;:36.7},{&quot;2026-07-23&quot;:36.7},{&quot;2026-07-24&quot;:36.7},{&quot;2026-07-25&quot;:36.7},{&quot;2026-07-26&quot;:36.7},{&quot;2026-07-27&quot;:36.7},{&quot;2026-07-28&quot;:36.9},{&quot;2026-07-29&quot;:36.9},{&quot;2026-07-30&quot;:36.9},{&quot;2026-07-31&quot;:36.9},{&quot;2026-08-01&quot;:36.9},{&quot;2026-08-02&quot;:37.09},{&quot;2026-08-03&quot;:37.09},{&quot;2026-08-04&quot;:37.38},{&quot;2026-08-05&quot;:37.38},{&quot;2026-08-07&quot;:37.38},{&quot;2026-08-08&quot;:37.06},{&quot;2026-08-09&quot;:37.06},{&quot;2026-08-10&quot;:37.06},{&quot;2026-08-11&quot;:36.82},{&quot;2026-08-12&quot;:36.82},{&quot;2026-08-13&quot;:36.82},{&quot;2026-08-14&quot;:36.82},{&quot;2026-08-15&quot;:36.82},{&quot;2026-08-16&quot;:36.82},{&quot;2026-08-17&quot;:36.45},{&quot;2026-08-18&quot;:36.45},{&quot;2026-08-19&quot;:36.45},{&quot;2026-08-20&quot;:36.45},{&quot;2026-08-21&quot;:36.45},{&quot;2026-08-22&quot;:36.45},{&quot;2026-08-23&quot;:36.45},{&quot;2026-08-24&quot;:36.45},{&quot;2026-08-25&quot;:36.45},{&quot;2026-08-26&quot;:36.45},{&quot;2026-08-27&quot;:36.25},{&quot;2026-08-28&quot;:36.25},{&quot;2026-08-29&quot;:36.25},{&quot;2026-08-30&quot;:36.25},{&quot;2026-08-31&quot;:36.25},{&quot;2026-09-01&quot;:35.96},{&quot;2026-09-02&quot;:35.72},{&quot;2026-09-03&quot;:35.72},{&quot;2026-09-04&quot;:35.72},{&quot;2026-09-05&quot;:35.72},{&quot;2026-09-06&quot;:35.72},{&quot;2026-09-07&quot;:35.84},{&quot;2026-09-08&quot;:35.86},{&quot;2026-09-09&quot;:36.17},{&quot;2026-09-10&quot;:36.17},{&quot;2026-09-11&quot;:36.17},{&quot;2026-09-12&quot;:36.17},{&quot;2026-09-13&quot;:36.66}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:22.36},{&quot;2026-06-16&quot;:23.13},{&quot;2026-06-17&quot;:23.18},{&quot;2026-06-18&quot;:23.26},{&quot;2026-06-19&quot;:23.43},{&quot;2026-06-20&quot;:23.65},{&quot;2026-06-21&quot;:23.19},{&quot;2026-06-22&quot;:23.23},{&quot;2026-06-23&quot;:23.61},{&quot;2026-06-24&quot;:23.6},{&quot;2026-06-25&quot;:23.67},{&quot;2026-06-26&quot;:23.63},{&quot;2026-06-27&quot;:23.46},{&quot;2026-06-28&quot;:23.38},{&quot;2026-06-29&quot;:23.58},{&quot;2026-06-30&quot;:23.19},{&quot;2026-07-01&quot;:22.9},{&quot;2026-07-02&quot;:23.69},{&quot;2026-07-03&quot;:23.45},{&quot;2026-07-04&quot;:23.2},{&quot;2026-07-05&quot;:22.94},{&quot;2026-07-06&quot;:22.81},{&quot;2026-07-07&quot;:22.71},{&quot;2026-07-08&quot;:22.48},{&quot;2026-07-09&quot;:22.21},{&quot;2026-07-10&quot;:21.12},{&quot;2026-07-11&quot;:21.2},{&quot;2026-07-12&quot;:21.29},{&quot;2026-07-13&quot;:21.37},{&quot;2026-07-14&quot;:20.89},{&quot;2026-07-15&quot;:20.84},{&quot;2026-07-16&quot;:20.8},{&quot;2026-07-17&quot;:21.2},{&quot;2026-07-18&quot;:21.28},{&quot;2026-07-19&quot;:20.8},{&quot;2026-07-20&quot;:20.96},{&quot;2026-07-21&quot;:20.92},{&quot;2026-07-22&quot;:21.19},{&quot;2026-07-23&quot;:21.16},{&quot;2026-07-24&quot;:20.89},{&quot;2026-07-25&quot;:20.97},{&quot;2026-07-26&quot;:21.2},{&quot;2026-07-27&quot;:21.41},{&quot;2026-07-28&quot;:21.5},{&quot;2026-07-29&quot;:21.98},{&quot;2026-07-30&quot;:22.49},{&quot;2026-07-31&quot;:22.72},{&quot;2026-08-01&quot;:22.92},{&quot;2026-08-02&quot;:23.2},{&quot;2026-08-03&quot;:22.57},{&quot;2026-08-04&quot;:22.91},{&quot;2026-08-05&quot;:23.69},{&quot;2026-08-07&quot;:22.73},{&quot;2026-08-08&quot;:22.8},{&quot;2026-08-09&quot;:21.93},{&quot;2026-08-10&quot;:20.85},{&quot;2026-08-11&quot;:21.02},{&quot;2026-08-12&quot;:21.3},{&quot;2026-08-13&quot;:21.54},{&quot;2026-08-14&quot;:22.07},{&quot;2026-08-15&quot;:22.41},{&quot;2026-08-16&quot;:22.79},{&quot;2026-08-17&quot;:22.8},{&quot;2026-08-18&quot;:22.83},{&quot;2026-08-19&quot;:22.79},{&quot;2026-08-20&quot;:22.85},{&quot;2026-08-21&quot;:23.06},{&quot;2026-08-22&quot;:23.16},{&quot;2026-08-23&quot;:22.9},{&quot;2026-08-24&quot;:22.47},{&quot;2026-08-25&quot;:22.57},{&quot;2026-08-26&quot;:22.34},{&quot;2026-08-27&quot;:22.35},{&quot;2026-08-28&quot;:22.33},{&quot;2026-08-29&quot;:22.33},{&quot;2026-08-30&quot;:23.16},{&quot;2026-08-31&quot;:23.23},{&quot;2026-09-01&quot;:23.69},{&quot;2026-09-02&quot;:23.72},{&quot;2026-09-03&quot;:23.6},{&quot;2026-09-04&quot;:23.72},{&quot;2026-09-05&quot;:23.94},{&quot;2026-09-06&quot;:23.94},{&quot;2026-09-07&quot;:23.77},{&quot;2026-09-08&quot;:24.25},{&quot;2026-09-09&quot;:24.29},{&quot;2026-09-10&quot;:24.31},{&quot;2026-09-11&quot;:24.64},{&quot;2026-09-12&quot;:24.96},{&quot;2026-09-13&quot;:24.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74646"
  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-ltr 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">
            Nazgûl
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Wraith Knight
      </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">
            $21.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="Nazgûl" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/0/4023a6de-3ac7-488a-b1a9-b1e26681d9bc.jpg?1783916195" />

        <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">
            Nazgûl
        </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 — Wraith Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nazgûl" src="https://cards.scryfall.io/large/front/4/0/4023a6de-3ac7-488a-b1a9-b1e26681d9bc.jpg?1783916195" />
    </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">
                $21.81
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:32.33},{&quot;2026-06-16&quot;:32.33},{&quot;2026-06-17&quot;:32.33},{&quot;2026-06-18&quot;:32.33},{&quot;2026-06-19&quot;:32.33},{&quot;2026-06-20&quot;:32.33},{&quot;2026-06-21&quot;:32.33},{&quot;2026-06-22&quot;:32.33},{&quot;2026-06-23&quot;:32.33},{&quot;2026-06-24&quot;:32.33},{&quot;2026-06-25&quot;:32.33},{&quot;2026-06-26&quot;:32.72},{&quot;2026-06-27&quot;:32.72},{&quot;2026-06-28&quot;:32.72},{&quot;2026-06-29&quot;:32.72},{&quot;2026-06-30&quot;:32.72},{&quot;2026-07-01&quot;:32.72},{&quot;2026-07-02&quot;:32.72},{&quot;2026-07-03&quot;:32.72},{&quot;2026-07-04&quot;:32.72},{&quot;2026-07-05&quot;:32.72},{&quot;2026-07-06&quot;:32.72},{&quot;2026-07-07&quot;:32.72},{&quot;2026-07-08&quot;:32.9},{&quot;2026-07-09&quot;:33.07},{&quot;2026-07-10&quot;:33.07},{&quot;2026-07-11&quot;:33.07},{&quot;2026-07-12&quot;:33.07},{&quot;2026-07-13&quot;:33.07},{&quot;2026-07-14&quot;:33.95},{&quot;2026-07-15&quot;:33.95},{&quot;2026-07-16&quot;:33.95},{&quot;2026-07-17&quot;:33.95},{&quot;2026-07-18&quot;:33.91},{&quot;2026-07-19&quot;:33.7},{&quot;2026-07-20&quot;:33.48},{&quot;2026-07-21&quot;:33.48},{&quot;2026-07-22&quot;:33.48},{&quot;2026-07-23&quot;:33.48},{&quot;2026-07-24&quot;:33.48},{&quot;2026-07-25&quot;:33.48},{&quot;2026-07-26&quot;:33.48},{&quot;2026-07-27&quot;:33.48},{&quot;2026-07-28&quot;:34.14},{&quot;2026-07-29&quot;:34.14},{&quot;2026-07-30&quot;:34.5},{&quot;2026-07-31&quot;:34.5},{&quot;2026-08-01&quot;:34.5},{&quot;2026-08-02&quot;:34.71},{&quot;2026-08-03&quot;:34.71},{&quot;2026-08-04&quot;:35.09},{&quot;2026-08-05&quot;:35.09},{&quot;2026-08-07&quot;:35.09},{&quot;2026-08-08&quot;:35.09},{&quot;2026-08-09&quot;:35.09},{&quot;2026-08-10&quot;:35.09},{&quot;2026-08-11&quot;:35.01},{&quot;2026-08-12&quot;:35.01},{&quot;2026-08-13&quot;:35.01},{&quot;2026-08-14&quot;:35.05},{&quot;2026-08-15&quot;:35.05},{&quot;2026-08-16&quot;:35.05},{&quot;2026-08-17&quot;:34.47},{&quot;2026-08-18&quot;:34.61},{&quot;2026-08-19&quot;:34.67},{&quot;2026-08-20&quot;:34.86},{&quot;2026-08-21&quot;:34.86},{&quot;2026-08-22&quot;:34.86},{&quot;2026-08-23&quot;:34.86},{&quot;2026-08-24&quot;:34.73},{&quot;2026-08-25&quot;:35.12},{&quot;2026-08-26&quot;:35.12},{&quot;2026-08-27&quot;:35.12},{&quot;2026-08-28&quot;:35.12},{&quot;2026-08-29&quot;:35.12},{&quot;2026-08-30&quot;:35.26},{&quot;2026-08-31&quot;:35.26},{&quot;2026-09-01&quot;:35.06},{&quot;2026-09-02&quot;:35.48},{&quot;2026-09-03&quot;:35.48},{&quot;2026-09-04&quot;:35.48},{&quot;2026-09-05&quot;:35.48},{&quot;2026-09-06&quot;:35.48},{&quot;2026-09-07&quot;:35.24},{&quot;2026-09-08&quot;:35.15},{&quot;2026-09-09&quot;:35.15},{&quot;2026-09-10&quot;:35.15},{&quot;2026-09-11&quot;:35.15},{&quot;2026-09-12&quot;:35.15},{&quot;2026-09-13&quot;:35.43}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:21.5},{&quot;2026-06-16&quot;:21.65},{&quot;2026-06-17&quot;:20.91},{&quot;2026-06-18&quot;:20.78},{&quot;2026-06-19&quot;:21.46},{&quot;2026-06-20&quot;:22.6},{&quot;2026-06-21&quot;:22.63},{&quot;2026-06-22&quot;:22.21},{&quot;2026-06-23&quot;:22.47},{&quot;2026-06-24&quot;:22.81},{&quot;2026-06-25&quot;:22.48},{&quot;2026-06-26&quot;:22.78},{&quot;2026-06-27&quot;:22.21},{&quot;2026-06-28&quot;:22.08},{&quot;2026-06-29&quot;:21.77},{&quot;2026-06-30&quot;:21.25},{&quot;2026-07-01&quot;:20.58},{&quot;2026-07-02&quot;:19.83},{&quot;2026-07-03&quot;:20.18},{&quot;2026-07-04&quot;:20.32},{&quot;2026-07-05&quot;:20.51},{&quot;2026-07-06&quot;:19.07},{&quot;2026-07-07&quot;:19.18},{&quot;2026-07-08&quot;:19.51},{&quot;2026-07-09&quot;:18.84},{&quot;2026-07-10&quot;:18.83},{&quot;2026-07-11&quot;:19.65},{&quot;2026-07-12&quot;:19.51},{&quot;2026-07-13&quot;:19.51},{&quot;2026-07-14&quot;:19.18},{&quot;2026-07-15&quot;:19.0},{&quot;2026-07-16&quot;:19.28},{&quot;2026-07-17&quot;:19.47},{&quot;2026-07-18&quot;:19.65},{&quot;2026-07-19&quot;:19.98},{&quot;2026-07-20&quot;:20.68},{&quot;2026-07-21&quot;:20.68},{&quot;2026-07-22&quot;:20.74},{&quot;2026-07-23&quot;:20.19},{&quot;2026-07-24&quot;:19.65},{&quot;2026-07-25&quot;:19.35},{&quot;2026-07-26&quot;:19.37},{&quot;2026-07-27&quot;:19.16},{&quot;2026-07-28&quot;:18.94},{&quot;2026-07-29&quot;:19.26},{&quot;2026-07-30&quot;:19.49},{&quot;2026-07-31&quot;:20.02},{&quot;2026-08-01&quot;:20.02},{&quot;2026-08-02&quot;:19.81},{&quot;2026-08-03&quot;:17.47},{&quot;2026-08-04&quot;:17.64},{&quot;2026-08-05&quot;:18.16},{&quot;2026-08-07&quot;:16.76},{&quot;2026-08-08&quot;:17.31},{&quot;2026-08-09&quot;:18.95},{&quot;2026-08-10&quot;:18.78},{&quot;2026-08-11&quot;:18.92},{&quot;2026-08-12&quot;:18.82},{&quot;2026-08-13&quot;:19.81},{&quot;2026-08-14&quot;:20.22},{&quot;2026-08-15&quot;:20.12},{&quot;2026-08-16&quot;:20.64},{&quot;2026-08-17&quot;:19.86},{&quot;2026-08-18&quot;:19.76},{&quot;2026-08-19&quot;:21.64},{&quot;2026-08-20&quot;:21.79},{&quot;2026-08-21&quot;:22.34},{&quot;2026-08-22&quot;:22.57},{&quot;2026-08-23&quot;:22.76},{&quot;2026-08-24&quot;:24.34},{&quot;2026-08-25&quot;:24.92},{&quot;2026-08-26&quot;:24.35},{&quot;2026-08-27&quot;:24.84},{&quot;2026-08-28&quot;:24.45},{&quot;2026-08-29&quot;:24.45},{&quot;2026-08-30&quot;:23.42},{&quot;2026-08-31&quot;:24.13},{&quot;2026-09-01&quot;:23.23},{&quot;2026-09-02&quot;:23.22},{&quot;2026-09-03&quot;:22.14},{&quot;2026-09-04&quot;:22.27},{&quot;2026-09-05&quot;:21.99},{&quot;2026-09-06&quot;:21.1},{&quot;2026-09-07&quot;:20.93},{&quot;2026-09-08&quot;:21.99},{&quot;2026-09-09&quot;:22.67},{&quot;2026-09-10&quot;:21.54},{&quot;2026-09-11&quot;:21.89},{&quot;2026-09-12&quot;:22.25},{&quot;2026-09-13&quot;:21.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="77501"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $12.27
              </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">$8.50</span>
              <span class="text-xs text-grey-text">Credit: $11.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;:12.46},{&quot;2026-06-14&quot;:12.46},{&quot;2026-06-15&quot;:12.52},{&quot;2026-06-16&quot;:12.52},{&quot;2026-06-17&quot;:12.65},{&quot;2026-06-18&quot;:12.55},{&quot;2026-06-19&quot;:12.6},{&quot;2026-06-20&quot;:12.61},{&quot;2026-06-21&quot;:12.49},{&quot;2026-06-22&quot;:12.48},{&quot;2026-06-23&quot;:12.48},{&quot;2026-06-24&quot;:12.51},{&quot;2026-06-25&quot;:12.51},{&quot;2026-06-26&quot;:12.62},{&quot;2026-06-27&quot;:12.62},{&quot;2026-06-28&quot;:12.36},{&quot;2026-06-29&quot;:12.27},{&quot;2026-06-30&quot;:12.27},{&quot;2026-07-01&quot;:12.27},{&quot;2026-07-02&quot;:12.29},{&quot;2026-07-03&quot;:12.25},{&quot;2026-07-04&quot;:12.3},{&quot;2026-07-05&quot;:12.3},{&quot;2026-07-06&quot;:12.23},{&quot;2026-07-07&quot;:12.18},{&quot;2026-07-08&quot;:12.16},{&quot;2026-07-09&quot;:12.16},{&quot;2026-07-10&quot;:12.16},{&quot;2026-07-11&quot;:12.16},{&quot;2026-07-12&quot;:12.16},{&quot;2026-07-13&quot;:12.18},{&quot;2026-07-14&quot;:12.27},{&quot;2026-07-15&quot;:12.27},{&quot;2026-07-16&quot;:12.18},{&quot;2026-07-17&quot;:12.21},{&quot;2026-07-18&quot;:12.21},{&quot;2026-07-19&quot;:12.21},{&quot;2026-07-20&quot;:12.21},{&quot;2026-07-21&quot;:12.37},{&quot;2026-07-23&quot;:12.31},{&quot;2026-07-25&quot;:12.29},{&quot;2026-07-26&quot;:12.15},{&quot;2026-07-27&quot;:12.0},{&quot;2026-07-28&quot;:11.97},{&quot;2026-07-29&quot;:11.84},{&quot;2026-07-30&quot;:11.71},{&quot;2026-07-31&quot;:11.73},{&quot;2026-08-01&quot;:11.73},{&quot;2026-08-02&quot;:11.67},{&quot;2026-08-03&quot;:11.76},{&quot;2026-08-04&quot;:11.7},{&quot;2026-08-05&quot;:11.71},{&quot;2026-08-07&quot;:11.63},{&quot;2026-08-08&quot;:11.65},{&quot;2026-08-09&quot;:11.65},{&quot;2026-08-10&quot;:11.58},{&quot;2026-08-11&quot;:11.32},{&quot;2026-08-12&quot;:11.32},{&quot;2026-08-13&quot;:11.23},{&quot;2026-08-14&quot;:11.24},{&quot;2026-08-15&quot;:11.66},{&quot;2026-08-16&quot;:11.48},{&quot;2026-08-17&quot;:11.54},{&quot;2026-08-18&quot;:11.5},{&quot;2026-08-19&quot;:11.54},{&quot;2026-08-20&quot;:11.54},{&quot;2026-08-21&quot;:11.77},{&quot;2026-08-22&quot;:12.06},{&quot;2026-08-23&quot;:11.94},{&quot;2026-08-24&quot;:11.94},{&quot;2026-08-25&quot;:12.02},{&quot;2026-08-26&quot;:12.08},{&quot;2026-08-27&quot;:12.14},{&quot;2026-08-28&quot;:12.14},{&quot;2026-08-29&quot;:12.14},{&quot;2026-08-30&quot;:12.34},{&quot;2026-08-31&quot;:12.37},{&quot;2026-09-01&quot;:12.44},{&quot;2026-09-02&quot;:12.21},{&quot;2026-09-03&quot;:12.21},{&quot;2026-09-04&quot;:12.21},{&quot;2026-09-05&quot;:12.08},{&quot;2026-09-06&quot;:12.01},{&quot;2026-09-07&quot;:12.07},{&quot;2026-09-08&quot;:12.13},{&quot;2026-09-09&quot;:11.97},{&quot;2026-09-10&quot;:12.06},{&quot;2026-09-11&quot;:12.14},{&quot;2026-09-12&quot;:12.26},{&quot;2026-09-13&quot;:12.27}]}"
        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="83714"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.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="Price of Glory" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/e/4ee1ca2a-8692-4af0-a99e-8fe144ba8cb3.jpg?1783910056" />

        <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">
            Price of Glory
        </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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Price of Glory" src="https://cards.scryfall.io/large/front/4/e/4ee1ca2a-8692-4af0-a99e-8fe144ba8cb3.jpg?1783910056" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-15&quot;:6.42},{&quot;2026-06-16&quot;:6.37},{&quot;2026-06-17&quot;:6.37},{&quot;2026-06-18&quot;:6.4},{&quot;2026-06-19&quot;:6.4},{&quot;2026-06-20&quot;:6.4},{&quot;2026-06-21&quot;:6.54},{&quot;2026-06-22&quot;:6.3},{&quot;2026-06-23&quot;:6.22},{&quot;2026-06-24&quot;:6.13},{&quot;2026-06-25&quot;:6.11},{&quot;2026-06-26&quot;:6.34},{&quot;2026-06-27&quot;:6.36},{&quot;2026-06-28&quot;:6.4},{&quot;2026-06-29&quot;:6.4},{&quot;2026-06-30&quot;:6.4},{&quot;2026-07-01&quot;:6.44},{&quot;2026-07-02&quot;:6.39},{&quot;2026-07-03&quot;:6.36},{&quot;2026-07-04&quot;:6.27},{&quot;2026-07-05&quot;:6.37},{&quot;2026-07-06&quot;:6.46},{&quot;2026-07-07&quot;:6.47},{&quot;2026-07-08&quot;:6.47},{&quot;2026-07-09&quot;:6.37},{&quot;2026-07-10&quot;:6.37},{&quot;2026-07-11&quot;:6.16},{&quot;2026-07-12&quot;:6.13},{&quot;2026-07-13&quot;:6.04},{&quot;2026-07-14&quot;:6.04},{&quot;2026-07-15&quot;:6.01},{&quot;2026-07-16&quot;:5.92},{&quot;2026-07-17&quot;:5.85},{&quot;2026-07-18&quot;:5.77},{&quot;2026-07-19&quot;:5.72},{&quot;2026-07-20&quot;:5.72},{&quot;2026-07-21&quot;:5.72},{&quot;2026-07-22&quot;:5.74},{&quot;2026-07-23&quot;:6.06},{&quot;2026-07-24&quot;:6.27},{&quot;2026-07-25&quot;:6.12},{&quot;2026-07-26&quot;:6.26},{&quot;2026-07-27&quot;:6.32},{&quot;2026-07-28&quot;:6.05},{&quot;2026-07-29&quot;:5.73},{&quot;2026-07-30&quot;:5.65},{&quot;2026-07-31&quot;:5.32},{&quot;2026-08-01&quot;:5.32},{&quot;2026-08-02&quot;:4.93},{&quot;2026-08-03&quot;:4.73},{&quot;2026-08-04&quot;:4.67},{&quot;2026-08-05&quot;:4.5},{&quot;2026-08-07&quot;:4.83},{&quot;2026-08-08&quot;:4.79},{&quot;2026-08-09&quot;:4.64},{&quot;2026-08-10&quot;:4.57},{&quot;2026-08-11&quot;:4.54},{&quot;2026-08-12&quot;:4.86},{&quot;2026-08-13&quot;:4.91},{&quot;2026-08-14&quot;:5.16},{&quot;2026-08-15&quot;:5.02},{&quot;2026-08-16&quot;:5.35},{&quot;2026-08-17&quot;:5.72},{&quot;2026-08-18&quot;:5.76},{&quot;2026-08-19&quot;:6.5},{&quot;2026-08-20&quot;:6.09},{&quot;2026-08-21&quot;:6.42},{&quot;2026-08-22&quot;:6.54},{&quot;2026-08-23&quot;:6.97},{&quot;2026-08-24&quot;:6.68},{&quot;2026-08-25&quot;:6.69},{&quot;2026-08-26&quot;:6.76},{&quot;2026-08-27&quot;:6.92},{&quot;2026-08-28&quot;:7.23},{&quot;2026-08-29&quot;:7.23},{&quot;2026-08-30&quot;:7.14},{&quot;2026-08-31&quot;:7.14},{&quot;2026-09-01&quot;:7.14},{&quot;2026-09-02&quot;:7.24},{&quot;2026-09-03&quot;:7.26},{&quot;2026-09-04&quot;:7.3},{&quot;2026-09-05&quot;:7.27},{&quot;2026-09-06&quot;:7.31},{&quot;2026-09-07&quot;:7.15},{&quot;2026-09-08&quot;:7.15},{&quot;2026-09-09&quot;:6.98},{&quot;2026-09-10&quot;:7.07},{&quot;2026-09-11&quot;:7.14},{&quot;2026-09-12&quot;:7.13},{&quot;2026-09-13&quot;:7.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="77894"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.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="Animate Dead" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/c/4c732dc7-dd6b-4cc1-bbe0-ff3b1d2c7419.jpg?1783926581" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Animate Dead" src="https://cards.scryfall.io/large/front/4/c/4c732dc7-dd6b-4cc1-bbe0-ff3b1d2c7419.jpg?1783926581" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:9.6},{&quot;2026-06-13&quot;:9.42},{&quot;2026-06-14&quot;:9.44},{&quot;2026-06-15&quot;:9.46},{&quot;2026-06-16&quot;:9.54},{&quot;2026-06-17&quot;:9.54},{&quot;2026-06-18&quot;:9.54},{&quot;2026-06-19&quot;:9.11},{&quot;2026-06-20&quot;:9.11},{&quot;2026-06-21&quot;:8.92},{&quot;2026-06-22&quot;:8.92},{&quot;2026-06-23&quot;:8.65},{&quot;2026-06-24&quot;:8.24},{&quot;2026-06-25&quot;:7.98},{&quot;2026-06-26&quot;:7.97},{&quot;2026-06-27&quot;:7.68},{&quot;2026-06-28&quot;:7.39},{&quot;2026-06-29&quot;:7.23},{&quot;2026-06-30&quot;:7.07},{&quot;2026-07-01&quot;:7.07},{&quot;2026-07-02&quot;:7.07},{&quot;2026-07-03&quot;:7.07},{&quot;2026-07-04&quot;:7.07},{&quot;2026-07-05&quot;:7.16},{&quot;2026-07-06&quot;:7.16},{&quot;2026-07-07&quot;:7.16},{&quot;2026-07-08&quot;:7.16},{&quot;2026-07-09&quot;:7.16},{&quot;2026-07-10&quot;:7.16},{&quot;2026-07-11&quot;:7.16},{&quot;2026-07-12&quot;:7.16},{&quot;2026-07-13&quot;:7.22},{&quot;2026-07-14&quot;:7.03},{&quot;2026-07-15&quot;:6.84},{&quot;2026-07-16&quot;:6.59},{&quot;2026-07-17&quot;:6.49},{&quot;2026-07-18&quot;:6.42},{&quot;2026-07-19&quot;:6.29},{&quot;2026-07-20&quot;:6.16},{&quot;2026-07-21&quot;:5.89},{&quot;2026-07-23&quot;:5.51},{&quot;2026-07-25&quot;:5.54},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.55},{&quot;2026-07-29&quot;:5.37},{&quot;2026-07-30&quot;:5.3},{&quot;2026-07-31&quot;:5.24},{&quot;2026-08-01&quot;:5.25},{&quot;2026-08-02&quot;:5.38},{&quot;2026-08-03&quot;:5.35},{&quot;2026-08-04&quot;:5.34},{&quot;2026-08-05&quot;:5.32},{&quot;2026-08-07&quot;:5.38},{&quot;2026-08-08&quot;:5.34},{&quot;2026-08-09&quot;:5.34},{&quot;2026-08-10&quot;:5.34},{&quot;2026-08-11&quot;:5.36},{&quot;2026-08-12&quot;:5.35},{&quot;2026-08-13&quot;:5.41},{&quot;2026-08-14&quot;:5.43},{&quot;2026-08-15&quot;:5.23},{&quot;2026-08-16&quot;:5.32},{&quot;2026-08-17&quot;:5.35},{&quot;2026-08-18&quot;:5.37},{&quot;2026-08-19&quot;:5.61},{&quot;2026-08-20&quot;:5.61},{&quot;2026-08-21&quot;:5.66},{&quot;2026-08-22&quot;:5.76},{&quot;2026-08-23&quot;:5.84},{&quot;2026-08-24&quot;:5.84},{&quot;2026-08-25&quot;:5.84},{&quot;2026-08-26&quot;:5.89},{&quot;2026-08-27&quot;:5.93},{&quot;2026-08-28&quot;:5.97},{&quot;2026-08-29&quot;:5.97},{&quot;2026-08-30&quot;:5.97},{&quot;2026-08-31&quot;:5.94},{&quot;2026-09-01&quot;:5.94},{&quot;2026-09-02&quot;:6.23},{&quot;2026-09-03&quot;:6.16},{&quot;2026-09-04&quot;:6.21},{&quot;2026-09-05&quot;:6.45},{&quot;2026-09-06&quot;:6.49},{&quot;2026-09-07&quot;:6.48},{&quot;2026-09-08&quot;:6.45},{&quot;2026-09-09&quot;:6.47},{&quot;2026-09-10&quot;:6.51},{&quot;2026-09-11&quot;:6.54},{&quot;2026-09-12&quot;:6.48},{&quot;2026-09-13&quot;:6.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="41742"
  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-neo 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">
            Tamiyo&#39;s Safekeeping
        </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">
            3 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Tamiyo&#39;s Safekeeping" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/d/fd4b7ee2-de65-4288-872d-486065a4f226.jpg?1783923839" />

        <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">
            Tamiyo&#39;s Safekeeping
        </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-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="Tamiyo&#39;s Safekeeping" src="https://cards.scryfall.io/large/front/f/d/fd4b7ee2-de65-4288-872d-486065a4f226.jpg?1783923839" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:6.18},{&quot;2026-06-16&quot;:6.28},{&quot;2026-06-17&quot;:6.28},{&quot;2026-06-18&quot;:6.08},{&quot;2026-06-19&quot;:6.17},{&quot;2026-06-20&quot;:6.17},{&quot;2026-06-21&quot;:6.17},{&quot;2026-06-22&quot;:6.13},{&quot;2026-06-23&quot;:6.43},{&quot;2026-06-24&quot;:5.99},{&quot;2026-06-25&quot;:6.15},{&quot;2026-06-26&quot;:6.14},{&quot;2026-06-27&quot;:6.19},{&quot;2026-06-28&quot;:6.1},{&quot;2026-06-29&quot;:6.1},{&quot;2026-06-30&quot;:6.1},{&quot;2026-07-01&quot;:6.34},{&quot;2026-07-02&quot;:6.57},{&quot;2026-07-03&quot;:6.94},{&quot;2026-07-04&quot;:7.74},{&quot;2026-07-05&quot;:7.97},{&quot;2026-07-06&quot;:8.63},{&quot;2026-07-07&quot;:8.98},{&quot;2026-07-08&quot;:10.72},{&quot;2026-07-09&quot;:11.69},{&quot;2026-07-10&quot;:10.92},{&quot;2026-07-11&quot;:10.72},{&quot;2026-07-12&quot;:10.72},{&quot;2026-07-13&quot;:10.55},{&quot;2026-07-14&quot;:10.63},{&quot;2026-07-15&quot;:10.81},{&quot;2026-07-16&quot;:10.85},{&quot;2026-07-17&quot;:10.47},{&quot;2026-07-18&quot;:10.42},{&quot;2026-07-19&quot;:10.07},{&quot;2026-07-20&quot;:10.07},{&quot;2026-07-21&quot;:10.07},{&quot;2026-07-22&quot;:10.6},{&quot;2026-07-23&quot;:10.6},{&quot;2026-07-24&quot;:10.03},{&quot;2026-07-25&quot;:9.3},{&quot;2026-07-26&quot;:9.3},{&quot;2026-07-27&quot;:8.71},{&quot;2026-07-28&quot;:8.71},{&quot;2026-07-29&quot;:8.61},{&quot;2026-07-30&quot;:7.92},{&quot;2026-07-31&quot;:8.47},{&quot;2026-08-01&quot;:8.41},{&quot;2026-08-02&quot;:8.92},{&quot;2026-08-03&quot;:9.32},{&quot;2026-08-04&quot;:10.2},{&quot;2026-08-05&quot;:11.39},{&quot;2026-08-07&quot;:9.89},{&quot;2026-08-08&quot;:9.89},{&quot;2026-08-09&quot;:9.43},{&quot;2026-08-10&quot;:9.43},{&quot;2026-08-11&quot;:9.56},{&quot;2026-08-12&quot;:9.56},{&quot;2026-08-13&quot;:9.67},{&quot;2026-08-14&quot;:9.74},{&quot;2026-08-15&quot;:9.74},{&quot;2026-08-16&quot;:9.74},{&quot;2026-08-17&quot;:9.74},{&quot;2026-08-18&quot;:9.74},{&quot;2026-08-19&quot;:9.28},{&quot;2026-08-20&quot;:9.74},{&quot;2026-08-21&quot;:9.2},{&quot;2026-08-22&quot;:9.2},{&quot;2026-08-23&quot;:8.67},{&quot;2026-08-24&quot;:8.67},{&quot;2026-08-25&quot;:8.76},{&quot;2026-08-26&quot;:8.76},{&quot;2026-08-27&quot;:8.76},{&quot;2026-08-28&quot;:8.76},{&quot;2026-08-29&quot;:8.76},{&quot;2026-08-30&quot;:8.97},{&quot;2026-08-31&quot;:8.97},{&quot;2026-09-01&quot;:9.11},{&quot;2026-09-02&quot;:10.31},{&quot;2026-09-03&quot;:11.98},{&quot;2026-09-04&quot;:12.05},{&quot;2026-09-05&quot;:12.06},{&quot;2026-09-06&quot;:12.06},{&quot;2026-09-07&quot;:12.56},{&quot;2026-09-08&quot;:13.77},{&quot;2026-09-09&quot;:13.94},{&quot;2026-09-10&quot;:14.74},{&quot;2026-09-11&quot;:14.69},{&quot;2026-09-12&quot;:14.75},{&quot;2026-09-13&quot;:14.75}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:5.73},{&quot;2026-06-16&quot;:5.61},{&quot;2026-06-17&quot;:5.04},{&quot;2026-06-18&quot;:4.84},{&quot;2026-06-19&quot;:4.97},{&quot;2026-06-20&quot;:5.07},{&quot;2026-06-21&quot;:5.01},{&quot;2026-06-22&quot;:5.22},{&quot;2026-06-23&quot;:4.94},{&quot;2026-06-24&quot;:5.12},{&quot;2026-06-25&quot;:5.08},{&quot;2026-06-26&quot;:4.85},{&quot;2026-06-27&quot;:4.94},{&quot;2026-06-28&quot;:5.09},{&quot;2026-06-29&quot;:4.84},{&quot;2026-06-30&quot;:4.98},{&quot;2026-07-01&quot;:4.84},{&quot;2026-07-02&quot;:4.92},{&quot;2026-07-03&quot;:4.94},{&quot;2026-07-04&quot;:4.93},{&quot;2026-07-05&quot;:4.97},{&quot;2026-07-06&quot;:4.77},{&quot;2026-07-07&quot;:4.75},{&quot;2026-07-08&quot;:4.71},{&quot;2026-07-09&quot;:4.75},{&quot;2026-07-10&quot;:5.05},{&quot;2026-07-11&quot;:4.82},{&quot;2026-07-12&quot;:4.92},{&quot;2026-07-13&quot;:5.32},{&quot;2026-07-14&quot;:5.5},{&quot;2026-07-15&quot;:5.2},{&quot;2026-07-16&quot;:5.07},{&quot;2026-07-17&quot;:4.68},{&quot;2026-07-18&quot;:4.72},{&quot;2026-07-19&quot;:4.85},{&quot;2026-07-20&quot;:5.56},{&quot;2026-07-21&quot;:5.28},{&quot;2026-07-22&quot;:5.12},{&quot;2026-07-23&quot;:5.57},{&quot;2026-07-24&quot;:5.76},{&quot;2026-07-25&quot;:5.85},{&quot;2026-07-26&quot;:5.75},{&quot;2026-07-27&quot;:5.76},{&quot;2026-07-28&quot;:6.61},{&quot;2026-07-29&quot;:7.61},{&quot;2026-07-30&quot;:6.11},{&quot;2026-07-31&quot;:5.71},{&quot;2026-08-01&quot;:6.11},{&quot;2026-08-02&quot;:6.06},{&quot;2026-08-03&quot;:5.63},{&quot;2026-08-04&quot;:4.98},{&quot;2026-08-05&quot;:4.73},{&quot;2026-08-07&quot;:4.95},{&quot;2026-08-08&quot;:4.94},{&quot;2026-08-09&quot;:5.24},{&quot;2026-08-10&quot;:5.38},{&quot;2026-08-11&quot;:5.4},{&quot;2026-08-12&quot;:5.45},{&quot;2026-08-13&quot;:5.19},{&quot;2026-08-14&quot;:5.21},{&quot;2026-08-15&quot;:5.31},{&quot;2026-08-16&quot;:5.36},{&quot;2026-08-17&quot;:5.47},{&quot;2026-08-18&quot;:5.19},{&quot;2026-08-19&quot;:5.04},{&quot;2026-08-20&quot;:5.1},{&quot;2026-08-21&quot;:5.13},{&quot;2026-08-22&quot;:5.31},{&quot;2026-08-23&quot;:5.42},{&quot;2026-08-24&quot;:5.35},{&quot;2026-08-25&quot;:5.51},{&quot;2026-08-26&quot;:5.3},{&quot;2026-08-27&quot;:5.29},{&quot;2026-08-28&quot;:5.42},{&quot;2026-08-29&quot;:5.42},{&quot;2026-08-30&quot;:5.27},{&quot;2026-08-31&quot;:5.34},{&quot;2026-09-01&quot;:5.4},{&quot;2026-09-02&quot;:5.18},{&quot;2026-09-03&quot;:5.36},{&quot;2026-09-04&quot;:5.12},{&quot;2026-09-05&quot;:5.22},{&quot;2026-09-06&quot;:5.65},{&quot;2026-09-07&quot;:5.67},{&quot;2026-09-08&quot;:5.47},{&quot;2026-09-09&quot;:5.45},{&quot;2026-09-10&quot;:6.33},{&quot;2026-09-11&quot;:6.6},{&quot;2026-09-12&quot;:6.21},{&quot;2026-09-13&quot;:5.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="87288"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Liliana&#39;s Caress" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/8473dc6f-f413-46c1-bca3-59e3c37101c1.jpg?1783909946" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Liliana&#39;s Caress" src="https://cards.scryfall.io/large/front/8/4/8473dc6f-f413-46c1-bca3-59e3c37101c1.jpg?1783909946" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:5.66},{&quot;2026-06-12&quot;:5.72},{&quot;2026-06-13&quot;:5.88},{&quot;2026-06-14&quot;:5.91},{&quot;2026-06-15&quot;:5.91},{&quot;2026-06-16&quot;:5.96},{&quot;2026-06-17&quot;:6.03},{&quot;2026-06-18&quot;:6.04},{&quot;2026-06-19&quot;:6.04},{&quot;2026-06-20&quot;:6.17},{&quot;2026-06-21&quot;:6.12},{&quot;2026-06-22&quot;:6.31},{&quot;2026-06-24&quot;:6.43},{&quot;2026-06-25&quot;:6.42},{&quot;2026-06-26&quot;:6.3},{&quot;2026-06-27&quot;:6.48},{&quot;2026-06-28&quot;:6.45},{&quot;2026-06-29&quot;:6.39},{&quot;2026-06-30&quot;:6.46},{&quot;2026-07-01&quot;:6.51},{&quot;2026-07-02&quot;:6.38},{&quot;2026-07-03&quot;:6.35},{&quot;2026-07-04&quot;:6.39},{&quot;2026-07-05&quot;:6.52},{&quot;2026-07-06&quot;:6.59},{&quot;2026-07-07&quot;:6.59},{&quot;2026-07-08&quot;:6.56},{&quot;2026-07-09&quot;:6.54},{&quot;2026-07-10&quot;:6.54},{&quot;2026-07-11&quot;:6.54},{&quot;2026-07-12&quot;:6.54},{&quot;2026-07-13&quot;:6.5},{&quot;2026-07-14&quot;:6.57},{&quot;2026-07-15&quot;:6.57},{&quot;2026-07-16&quot;:6.57},{&quot;2026-07-17&quot;:6.57},{&quot;2026-07-18&quot;:6.57},{&quot;2026-07-19&quot;:6.57},{&quot;2026-07-20&quot;:6.58},{&quot;2026-07-21&quot;:6.65},{&quot;2026-07-23&quot;:6.59},{&quot;2026-07-25&quot;:6.59},{&quot;2026-07-26&quot;:6.55},{&quot;2026-07-27&quot;:6.56},{&quot;2026-07-29&quot;:6.55},{&quot;2026-07-30&quot;:6.56},{&quot;2026-07-31&quot;:6.53},{&quot;2026-08-01&quot;:6.5},{&quot;2026-08-02&quot;:6.44},{&quot;2026-08-03&quot;:6.32},{&quot;2026-08-04&quot;:6.12},{&quot;2026-08-05&quot;:5.92},{&quot;2026-08-07&quot;:5.64},{&quot;2026-08-08&quot;:5.64},{&quot;2026-08-09&quot;:5.24},{&quot;2026-08-10&quot;:5.23},{&quot;2026-08-11&quot;:5.08},{&quot;2026-08-12&quot;:5.07},{&quot;2026-08-13&quot;:5.07},{&quot;2026-08-14&quot;:5.03},{&quot;2026-08-15&quot;:5.06},{&quot;2026-08-16&quot;:5.05},{&quot;2026-08-17&quot;:5.05},{&quot;2026-08-18&quot;:5.07},{&quot;2026-08-19&quot;:4.93},{&quot;2026-08-20&quot;:4.93},{&quot;2026-08-21&quot;:4.87},{&quot;2026-08-22&quot;:4.89},{&quot;2026-08-23&quot;:4.89},{&quot;2026-08-24&quot;:4.89},{&quot;2026-08-25&quot;:4.89},{&quot;2026-08-26&quot;:5.03},{&quot;2026-08-27&quot;:5.03},{&quot;2026-08-28&quot;:5.04},{&quot;2026-08-29&quot;:5.04},{&quot;2026-08-30&quot;:5.12},{&quot;2026-08-31&quot;:5.16},{&quot;2026-09-01&quot;:5.16},{&quot;2026-09-02&quot;:5.32},{&quot;2026-09-03&quot;:5.35},{&quot;2026-09-04&quot;:5.31},{&quot;2026-09-05&quot;:5.31},{&quot;2026-09-06&quot;:5.3},{&quot;2026-09-07&quot;:5.27},{&quot;2026-09-08&quot;:5.37},{&quot;2026-09-09&quot;:5.36},{&quot;2026-09-10&quot;:5.27},{&quot;2026-09-11&quot;:5.27},{&quot;2026-09-12&quot;:5.27},{&quot;2026-09-13&quot;:5.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="13128"
  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-clb ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Decanter of Endless Water" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/1/914b42b3-03af-4945-9f1f-46c09a1a2314.jpg?1783922618" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Decanter of Endless Water" src="https://cards.scryfall.io/large/front/9/1/914b42b3-03af-4945-9f1f-46c09a1a2314.jpg?1783922618" />
    </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-nine-white">
            1
          </span>
        </div>

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $5.06
              </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">$2.75</span>
              <span class="text-xs text-grey-text">Credit: $3.58</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$2.40</span>
              <span class="text-xs text-grey-text">Credit: $3.12</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.76},{&quot;2026-06-14&quot;:4.76},{&quot;2026-06-15&quot;:4.61},{&quot;2026-06-16&quot;:4.61},{&quot;2026-06-17&quot;:4.61},{&quot;2026-06-18&quot;:4.48},{&quot;2026-06-19&quot;:4.48},{&quot;2026-06-20&quot;:4.31},{&quot;2026-06-21&quot;:4.18},{&quot;2026-06-22&quot;:4.03},{&quot;2026-06-23&quot;:4.07},{&quot;2026-06-24&quot;:4.19},{&quot;2026-06-25&quot;:4.19},{&quot;2026-06-26&quot;:4.0},{&quot;2026-06-27&quot;:4.05},{&quot;2026-06-28&quot;:4.05},{&quot;2026-06-29&quot;:4.05},{&quot;2026-06-30&quot;:4.07},{&quot;2026-07-01&quot;:4.07},{&quot;2026-07-02&quot;:4.2},{&quot;2026-07-03&quot;:4.4},{&quot;2026-07-04&quot;:4.51},{&quot;2026-07-05&quot;:4.57},{&quot;2026-07-06&quot;:4.47},{&quot;2026-07-07&quot;:4.45},{&quot;2026-07-08&quot;:4.45},{&quot;2026-07-09&quot;:4.61},{&quot;2026-07-10&quot;:4.61},{&quot;2026-07-11&quot;:4.61},{&quot;2026-07-12&quot;:4.53},{&quot;2026-07-13&quot;:4.45},{&quot;2026-07-14&quot;:4.45},{&quot;2026-07-15&quot;:4.47},{&quot;2026-07-16&quot;:4.39},{&quot;2026-07-17&quot;:4.41},{&quot;2026-07-18&quot;:4.06},{&quot;2026-07-19&quot;:4.12},{&quot;2026-07-20&quot;:4.08},{&quot;2026-07-21&quot;:4.21},{&quot;2026-07-23&quot;:4.16},{&quot;2026-07-25&quot;:4.25},{&quot;2026-07-26&quot;:4.31},{&quot;2026-07-27&quot;:4.36},{&quot;2026-07-28&quot;:4.53},{&quot;2026-07-29&quot;:4.6},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.55},{&quot;2026-08-01&quot;:4.46},{&quot;2026-08-02&quot;:4.46},{&quot;2026-08-03&quot;:4.55},{&quot;2026-08-04&quot;:4.55},{&quot;2026-08-05&quot;:4.55},{&quot;2026-08-07&quot;:4.72},{&quot;2026-08-08&quot;:4.81},{&quot;2026-08-09&quot;:4.75},{&quot;2026-08-10&quot;:4.75},{&quot;2026-08-11&quot;:4.83},{&quot;2026-08-12&quot;:4.83},{&quot;2026-08-13&quot;:4.83},{&quot;2026-08-14&quot;:4.69},{&quot;2026-08-15&quot;:4.69},{&quot;2026-08-16&quot;:4.65},{&quot;2026-08-17&quot;:4.68},{&quot;2026-08-18&quot;:4.42},{&quot;2026-08-19&quot;:4.42},{&quot;2026-08-20&quot;:4.42},{&quot;2026-08-21&quot;:4.26},{&quot;2026-08-22&quot;:3.94},{&quot;2026-08-23&quot;:4.04},{&quot;2026-08-24&quot;:4.0},{&quot;2026-08-25&quot;:4.0},{&quot;2026-08-26&quot;:4.01},{&quot;2026-08-27&quot;:3.98},{&quot;2026-08-28&quot;:3.82},{&quot;2026-08-29&quot;:3.82},{&quot;2026-08-30&quot;:3.84},{&quot;2026-08-31&quot;:3.84},{&quot;2026-09-01&quot;:3.84},{&quot;2026-09-02&quot;:4.17},{&quot;2026-09-03&quot;:4.27},{&quot;2026-09-04&quot;:4.3},{&quot;2026-09-05&quot;:4.3},{&quot;2026-09-06&quot;:4.62},{&quot;2026-09-07&quot;:4.88},{&quot;2026-09-08&quot;:4.88},{&quot;2026-09-09&quot;:4.88},{&quot;2026-09-10&quot;:4.75},{&quot;2026-09-11&quot;:4.75},{&quot;2026-09-12&quot;:4.84},{&quot;2026-09-13&quot;:5.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.04},{&quot;2026-06-14&quot;:3.06},{&quot;2026-06-15&quot;:3.09},{&quot;2026-06-16&quot;:3.12},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.4},{&quot;2026-06-19&quot;:3.36},{&quot;2026-06-20&quot;:3.23},{&quot;2026-06-21&quot;:3.09},{&quot;2026-06-22&quot;:3.14},{&quot;2026-06-23&quot;:2.9},{&quot;2026-06-24&quot;:2.77},{&quot;2026-06-25&quot;:2.71},{&quot;2026-06-26&quot;:2.77},{&quot;2026-06-27&quot;:2.65},{&quot;2026-06-28&quot;:2.61},{&quot;2026-06-29&quot;:2.27},{&quot;2026-06-30&quot;:2.17},{&quot;2026-07-01&quot;:2.25},{&quot;2026-07-02&quot;:2.14},{&quot;2026-07-03&quot;:2.1},{&quot;2026-07-04&quot;:1.91},{&quot;2026-07-05&quot;:1.85},{&quot;2026-07-06&quot;:1.82},{&quot;2026-07-07&quot;:1.93},{&quot;2026-07-08&quot;:2.05},{&quot;2026-07-09&quot;:2.05},{&quot;2026-07-10&quot;:2.0},{&quot;2026-07-11&quot;:2.0},{&quot;2026-07-12&quot;:2.02},{&quot;2026-07-13&quot;:2.09},{&quot;2026-07-14&quot;:2.11},{&quot;2026-07-15&quot;:2.08},{&quot;2026-07-16&quot;:2.01},{&quot;2026-07-17&quot;:1.88},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.78},{&quot;2026-07-20&quot;:1.68},{&quot;2026-07-21&quot;:2.09},{&quot;2026-07-23&quot;:2.47},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.5},{&quot;2026-07-27&quot;:2.51},{&quot;2026-07-28&quot;:2.51},{&quot;2026-07-29&quot;:2.27},{&quot;2026-07-30&quot;:2.25},{&quot;2026-07-31&quot;:2.25},{&quot;2026-08-01&quot;:2.34},{&quot;2026-08-02&quot;:2.54},{&quot;2026-08-03&quot;:2.7},{&quot;2026-08-04&quot;:2.6},{&quot;2026-08-05&quot;:2.65},{&quot;2026-08-07&quot;:2.7},{&quot;2026-08-08&quot;:2.83},{&quot;2026-08-09&quot;:2.81},{&quot;2026-08-10&quot;:2.8},{&quot;2026-08-11&quot;:2.86},{&quot;2026-08-12&quot;:2.76},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.79},{&quot;2026-08-15&quot;:2.84},{&quot;2026-08-16&quot;:2.86},{&quot;2026-08-17&quot;:2.89},{&quot;2026-08-18&quot;:2.9},{&quot;2026-08-19&quot;:2.92},{&quot;2026-08-20&quot;:2.92},{&quot;2026-08-21&quot;:2.59},{&quot;2026-08-22&quot;:2.64},{&quot;2026-08-23&quot;:2.72},{&quot;2026-08-24&quot;:2.72},{&quot;2026-08-25&quot;:2.72},{&quot;2026-08-26&quot;:2.79},{&quot;2026-08-27&quot;:2.77},{&quot;2026-08-28&quot;:2.92},{&quot;2026-08-29&quot;:2.92},{&quot;2026-08-30&quot;:3.2},{&quot;2026-08-31&quot;:3.21},{&quot;2026-09-01&quot;:3.21},{&quot;2026-09-02&quot;:2.7},{&quot;2026-09-03&quot;:2.56},{&quot;2026-09-04&quot;:2.42},{&quot;2026-09-05&quot;:2.39},{&quot;2026-09-06&quot;:2.3},{&quot;2026-09-07&quot;:2.29},{&quot;2026-09-08&quot;:2.27},{&quot;2026-09-09&quot;:2.2},{&quot;2026-09-10&quot;:2.1},{&quot;2026-09-11&quot;:2.26},{&quot;2026-09-12&quot;:2.73},{&quot;2026-09-13&quot;:3.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="48710"
  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-mh1 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">
            Ephemerate
        </span>


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ephemerate" src="https://cards.scryfall.io/large/front/2/d/2da5f3f8-5eef-498f-ba2c-2f3fbc3745aa.jpg?1783933164" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:10.19},{&quot;2026-06-16&quot;:10.19},{&quot;2026-06-17&quot;:10.19},{&quot;2026-06-18&quot;:10.19},{&quot;2026-06-19&quot;:10.08},{&quot;2026-06-20&quot;:10.08},{&quot;2026-06-21&quot;:10.08},{&quot;2026-06-22&quot;:10.08},{&quot;2026-06-23&quot;:10.08},{&quot;2026-06-24&quot;:10.08},{&quot;2026-06-25&quot;:10.08},{&quot;2026-06-26&quot;:10.08},{&quot;2026-06-27&quot;:10.08},{&quot;2026-06-28&quot;:10.08},{&quot;2026-06-29&quot;:10.28},{&quot;2026-06-30&quot;:10.28},{&quot;2026-07-01&quot;:10.37},{&quot;2026-07-02&quot;:10.37},{&quot;2026-07-03&quot;:10.37},{&quot;2026-07-04&quot;:10.37},{&quot;2026-07-05&quot;:10.37},{&quot;2026-07-06&quot;:10.24},{&quot;2026-07-07&quot;:10.24},{&quot;2026-07-08&quot;:10.24},{&quot;2026-07-09&quot;:10.24},{&quot;2026-07-10&quot;:10.24},{&quot;2026-07-11&quot;:10.24},{&quot;2026-07-12&quot;:10.24},{&quot;2026-07-13&quot;:10.24},{&quot;2026-07-14&quot;:10.24},{&quot;2026-07-15&quot;:10.31},{&quot;2026-07-16&quot;:10.31},{&quot;2026-07-17&quot;:10.31},{&quot;2026-07-18&quot;:10.31},{&quot;2026-07-19&quot;:10.31},{&quot;2026-07-20&quot;:10.31},{&quot;2026-07-21&quot;:10.31},{&quot;2026-07-22&quot;:10.3},{&quot;2026-07-23&quot;:10.3},{&quot;2026-07-24&quot;:10.3},{&quot;2026-07-25&quot;:10.3},{&quot;2026-07-26&quot;:10.53},{&quot;2026-07-27&quot;:10.53},{&quot;2026-07-28&quot;:10.53},{&quot;2026-07-29&quot;:10.53},{&quot;2026-07-30&quot;:10.53},{&quot;2026-07-31&quot;:10.62},{&quot;2026-08-01&quot;:10.62},{&quot;2026-08-02&quot;:10.69},{&quot;2026-08-03&quot;:10.69},{&quot;2026-08-04&quot;:10.72},{&quot;2026-08-05&quot;:10.72},{&quot;2026-08-07&quot;:10.72},{&quot;2026-08-08&quot;:10.84},{&quot;2026-08-09&quot;:10.84},{&quot;2026-08-10&quot;:10.84},{&quot;2026-08-11&quot;:10.84},{&quot;2026-08-12&quot;:10.84},{&quot;2026-08-13&quot;:10.84},{&quot;2026-08-14&quot;:10.84},{&quot;2026-08-15&quot;:10.84},{&quot;2026-08-16&quot;:10.84},{&quot;2026-08-17&quot;:10.84},{&quot;2026-08-18&quot;:10.84},{&quot;2026-08-19&quot;:10.92},{&quot;2026-08-20&quot;:10.92},{&quot;2026-08-21&quot;:10.92},{&quot;2026-08-22&quot;:10.92},{&quot;2026-08-23&quot;:10.92},{&quot;2026-08-24&quot;:10.92},{&quot;2026-08-25&quot;:10.92},{&quot;2026-08-26&quot;:10.92},{&quot;2026-08-27&quot;:10.92},{&quot;2026-08-28&quot;:10.92},{&quot;2026-08-29&quot;:10.92},{&quot;2026-08-30&quot;:10.92},{&quot;2026-08-31&quot;:10.92},{&quot;2026-09-01&quot;:10.93},{&quot;2026-09-02&quot;:10.93},{&quot;2026-09-03&quot;:10.93},{&quot;2026-09-04&quot;:11.16},{&quot;2026-09-05&quot;:11.16},{&quot;2026-09-06&quot;:11.16},{&quot;2026-09-07&quot;:11.16},{&quot;2026-09-08&quot;:11.16},{&quot;2026-09-09&quot;:11.16},{&quot;2026-09-10&quot;:11.16},{&quot;2026-09-11&quot;:11.16},{&quot;2026-09-12&quot;:11.14},{&quot;2026-09-13&quot;:11.14}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:4.74},{&quot;2026-06-16&quot;:4.82},{&quot;2026-06-17&quot;:4.87},{&quot;2026-06-18&quot;:4.89},{&quot;2026-06-19&quot;:5.36},{&quot;2026-06-20&quot;:5.46},{&quot;2026-06-21&quot;:5.37},{&quot;2026-06-22&quot;:5.22},{&quot;2026-06-23&quot;:5.04},{&quot;2026-06-24&quot;:5.07},{&quot;2026-06-25&quot;:5.33},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.58},{&quot;2026-06-28&quot;:5.71},{&quot;2026-06-29&quot;:5.72},{&quot;2026-06-30&quot;:5.67},{&quot;2026-07-01&quot;:5.63},{&quot;2026-07-02&quot;:5.76},{&quot;2026-07-03&quot;:5.58},{&quot;2026-07-04&quot;:5.55},{&quot;2026-07-05&quot;:5.64},{&quot;2026-07-06&quot;:5.32},{&quot;2026-07-07&quot;:5.46},{&quot;2026-07-08&quot;:5.18},{&quot;2026-07-09&quot;:5.23},{&quot;2026-07-10&quot;:5.07},{&quot;2026-07-11&quot;:5.03},{&quot;2026-07-12&quot;:5.22},{&quot;2026-07-13&quot;:5.2},{&quot;2026-07-14&quot;:5.24},{&quot;2026-07-15&quot;:5.18},{&quot;2026-07-16&quot;:5.04},{&quot;2026-07-17&quot;:4.84},{&quot;2026-07-18&quot;:4.84},{&quot;2026-07-19&quot;:5.08},{&quot;2026-07-20&quot;:5.05},{&quot;2026-07-21&quot;:5.18},{&quot;2026-07-22&quot;:5.05},{&quot;2026-07-23&quot;:5.12},{&quot;2026-07-24&quot;:5.19},{&quot;2026-07-25&quot;:5.4},{&quot;2026-07-26&quot;:5.53},{&quot;2026-07-27&quot;:5.51},{&quot;2026-07-28&quot;:5.41},{&quot;2026-07-29&quot;:5.29},{&quot;2026-07-30&quot;:5.27},{&quot;2026-07-31&quot;:5.07},{&quot;2026-08-01&quot;:5.06},{&quot;2026-08-02&quot;:5.45},{&quot;2026-08-03&quot;:5.6},{&quot;2026-08-04&quot;:5.74},{&quot;2026-08-05&quot;:5.82},{&quot;2026-08-07&quot;:5.06},{&quot;2026-08-08&quot;:5.37},{&quot;2026-08-09&quot;:5.4},{&quot;2026-08-10&quot;:5.43},{&quot;2026-08-11&quot;:5.45},{&quot;2026-08-12&quot;:5.44},{&quot;2026-08-13&quot;:5.4},{&quot;2026-08-14&quot;:5.19},{&quot;2026-08-15&quot;:5.0},{&quot;2026-08-16&quot;:4.95},{&quot;2026-08-17&quot;:5.23},{&quot;2026-08-18&quot;:5.19},{&quot;2026-08-19&quot;:5.22},{&quot;2026-08-20&quot;:5.29},{&quot;2026-08-21&quot;:5.34},{&quot;2026-08-22&quot;:5.27},{&quot;2026-08-23&quot;:5.3},{&quot;2026-08-24&quot;:5.38},{&quot;2026-08-25&quot;:5.19},{&quot;2026-08-26&quot;:5.15},{&quot;2026-08-27&quot;:5.1},{&quot;2026-08-28&quot;:5.21},{&quot;2026-08-29&quot;:5.21},{&quot;2026-08-30&quot;:5.4},{&quot;2026-08-31&quot;:5.47},{&quot;2026-09-01&quot;:5.58},{&quot;2026-09-02&quot;:5.61},{&quot;2026-09-03&quot;:5.55},{&quot;2026-09-04&quot;:5.42},{&quot;2026-09-05&quot;:5.41},{&quot;2026-09-06&quot;:5.12},{&quot;2026-09-07&quot;:5.25},{&quot;2026-09-08&quot;:5.51},{&quot;2026-09-09&quot;:5.42},{&quot;2026-09-10&quot;:5.4},{&quot;2026-09-11&quot;:5.39},{&quot;2026-09-12&quot;:5.29},{&quot;2026-09-13&quot;:5.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Crop Rotation
        </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-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="Crop Rotation" src="https://cards.scryfall.io/large/front/b/5/b5f95c69-2b41-4d67-ae7c-a4c1df9d384d.jpg?1783932438" />
    </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.60
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-15&quot;:5.22},{&quot;2026-06-16&quot;:5.22},{&quot;2026-06-17&quot;:5.22},{&quot;2026-06-18&quot;:5.22},{&quot;2026-06-19&quot;:5.22},{&quot;2026-06-20&quot;:5.14},{&quot;2026-06-21&quot;:5.1},{&quot;2026-06-22&quot;:4.86},{&quot;2026-06-23&quot;:4.86},{&quot;2026-06-24&quot;:4.76},{&quot;2026-06-25&quot;:4.61},{&quot;2026-06-26&quot;:4.6},{&quot;2026-06-27&quot;:4.78},{&quot;2026-06-28&quot;:4.78},{&quot;2026-06-29&quot;:4.78},{&quot;2026-06-30&quot;:4.78},{&quot;2026-07-01&quot;:4.78},{&quot;2026-07-02&quot;:4.71},{&quot;2026-07-03&quot;:4.71},{&quot;2026-07-04&quot;:4.71},{&quot;2026-07-05&quot;:4.62},{&quot;2026-07-06&quot;:4.62},{&quot;2026-07-07&quot;:4.64},{&quot;2026-07-08&quot;:4.64},{&quot;2026-07-09&quot;:4.64},{&quot;2026-07-10&quot;:4.64},{&quot;2026-07-11&quot;:4.62},{&quot;2026-07-12&quot;:4.61},{&quot;2026-07-13&quot;:4.53},{&quot;2026-07-14&quot;:4.53},{&quot;2026-07-15&quot;:4.53},{&quot;2026-07-16&quot;:4.53},{&quot;2026-07-17&quot;:4.55},{&quot;2026-07-18&quot;:4.47},{&quot;2026-07-19&quot;:4.47},{&quot;2026-07-20&quot;:4.47},{&quot;2026-07-21&quot;:4.59},{&quot;2026-07-22&quot;:4.49},{&quot;2026-07-23&quot;:4.49},{&quot;2026-07-24&quot;:4.49},{&quot;2026-07-25&quot;:4.49},{&quot;2026-07-26&quot;:4.49},{&quot;2026-07-27&quot;:4.49},{&quot;2026-07-28&quot;:4.49},{&quot;2026-07-29&quot;:4.54},{&quot;2026-07-30&quot;:4.54},{&quot;2026-07-31&quot;:4.54},{&quot;2026-08-01&quot;:4.54},{&quot;2026-08-02&quot;:4.54},{&quot;2026-08-03&quot;:4.54},{&quot;2026-08-04&quot;:4.54},{&quot;2026-08-05&quot;:4.54},{&quot;2026-08-07&quot;:4.39},{&quot;2026-08-08&quot;:4.39},{&quot;2026-08-09&quot;:4.44},{&quot;2026-08-10&quot;:4.43},{&quot;2026-08-11&quot;:4.43},{&quot;2026-08-12&quot;:4.38},{&quot;2026-08-13&quot;:4.33},{&quot;2026-08-14&quot;:4.46},{&quot;2026-08-15&quot;:4.5},{&quot;2026-08-16&quot;:4.61},{&quot;2026-08-17&quot;:4.54},{&quot;2026-08-18&quot;:4.54},{&quot;2026-08-19&quot;:4.54},{&quot;2026-08-20&quot;:4.49},{&quot;2026-08-21&quot;:4.49},{&quot;2026-08-22&quot;:4.44},{&quot;2026-08-23&quot;:4.44},{&quot;2026-08-24&quot;:4.44},{&quot;2026-08-25&quot;:4.44},{&quot;2026-08-26&quot;:4.44},{&quot;2026-08-27&quot;:4.38},{&quot;2026-08-28&quot;:4.38},{&quot;2026-08-29&quot;:4.38},{&quot;2026-08-30&quot;:4.38},{&quot;2026-08-31&quot;:4.44},{&quot;2026-09-01&quot;:4.44},{&quot;2026-09-02&quot;:4.55},{&quot;2026-09-03&quot;:4.55},{&quot;2026-09-04&quot;:4.55},{&quot;2026-09-05&quot;:4.55},{&quot;2026-09-06&quot;:4.58},{&quot;2026-09-07&quot;:4.58},{&quot;2026-09-08&quot;:4.58},{&quot;2026-09-09&quot;:4.58},{&quot;2026-09-10&quot;:4.58},{&quot;2026-09-11&quot;:4.58},{&quot;2026-09-12&quot;:4.6},{&quot;2026-09-13&quot;:4.6}]}"
        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="95519"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-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">
            Cid, Timeless Artificer
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Cid, Timeless Artificer
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><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="Cid, Timeless Artificer" src="https://cards.scryfall.io/large/front/5/a/5a9b1404-3061-4979-81eb-e056bc212205.jpg?1783906497" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:16.29},{&quot;2026-06-16&quot;:16.29},{&quot;2026-06-17&quot;:16.29},{&quot;2026-06-18&quot;:16.29},{&quot;2026-06-19&quot;:16.29},{&quot;2026-06-20&quot;:16.37},{&quot;2026-06-21&quot;:16.37},{&quot;2026-06-22&quot;:16.44},{&quot;2026-06-23&quot;:16.44},{&quot;2026-06-24&quot;:16.44},{&quot;2026-06-25&quot;:16.44},{&quot;2026-06-26&quot;:16.44},{&quot;2026-06-27&quot;:16.44},{&quot;2026-06-28&quot;:16.44},{&quot;2026-06-29&quot;:16.21},{&quot;2026-06-30&quot;:16.21},{&quot;2026-07-01&quot;:16.1},{&quot;2026-07-02&quot;:16.1},{&quot;2026-07-03&quot;:16.1},{&quot;2026-07-04&quot;:16.1},{&quot;2026-07-05&quot;:16.1},{&quot;2026-07-06&quot;:16.1},{&quot;2026-07-07&quot;:16.1},{&quot;2026-07-08&quot;:16.11},{&quot;2026-07-09&quot;:16.11},{&quot;2026-07-10&quot;:16.12},{&quot;2026-07-11&quot;:16.05},{&quot;2026-07-12&quot;:15.91},{&quot;2026-07-13&quot;:15.91},{&quot;2026-07-14&quot;:15.91},{&quot;2026-07-15&quot;:15.8},{&quot;2026-07-16&quot;:15.8},{&quot;2026-07-17&quot;:15.8},{&quot;2026-07-18&quot;:15.74},{&quot;2026-07-19&quot;:15.74},{&quot;2026-07-20&quot;:15.74},{&quot;2026-07-21&quot;:15.74},{&quot;2026-07-22&quot;:15.74},{&quot;2026-07-23&quot;:15.74},{&quot;2026-07-24&quot;:15.49},{&quot;2026-07-25&quot;:15.49},{&quot;2026-07-26&quot;:15.55},{&quot;2026-07-27&quot;:15.55},{&quot;2026-07-28&quot;:15.34},{&quot;2026-07-29&quot;:15.34},{&quot;2026-07-30&quot;:15.34},{&quot;2026-07-31&quot;:15.21},{&quot;2026-08-01&quot;:15.21},{&quot;2026-08-02&quot;:15.21},{&quot;2026-08-03&quot;:15.25},{&quot;2026-08-04&quot;:15.3},{&quot;2026-08-05&quot;:15.14},{&quot;2026-08-07&quot;:15.14},{&quot;2026-08-08&quot;:15.19},{&quot;2026-08-09&quot;:15.19},{&quot;2026-08-10&quot;:15.19},{&quot;2026-08-11&quot;:15.19},{&quot;2026-08-12&quot;:15.19},{&quot;2026-08-13&quot;:15.19},{&quot;2026-08-14&quot;:15.19},{&quot;2026-08-15&quot;:15.03},{&quot;2026-08-16&quot;:15.03},{&quot;2026-08-17&quot;:15.1},{&quot;2026-08-18&quot;:14.7},{&quot;2026-08-19&quot;:14.7},{&quot;2026-08-20&quot;:14.7},{&quot;2026-08-21&quot;:14.47},{&quot;2026-08-22&quot;:14.53},{&quot;2026-08-23&quot;:14.53},{&quot;2026-08-24&quot;:14.53},{&quot;2026-08-25&quot;:14.53},{&quot;2026-08-26&quot;:14.53},{&quot;2026-08-27&quot;:14.53},{&quot;2026-08-28&quot;:14.53},{&quot;2026-08-29&quot;:14.53},{&quot;2026-08-30&quot;:14.53},{&quot;2026-08-31&quot;:14.53},{&quot;2026-09-01&quot;:14.53},{&quot;2026-09-02&quot;:14.53},{&quot;2026-09-03&quot;:14.39},{&quot;2026-09-04&quot;:14.39},{&quot;2026-09-05&quot;:14.39},{&quot;2026-09-06&quot;:14.39},{&quot;2026-09-07&quot;:14.3},{&quot;2026-09-08&quot;:14.27},{&quot;2026-09-09&quot;:14.15},{&quot;2026-09-10&quot;:14.21},{&quot;2026-09-11&quot;:14.21},{&quot;2026-09-12&quot;:14.23},{&quot;2026-09-13&quot;:14.23}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:3.91},{&quot;2026-06-16&quot;:3.97},{&quot;2026-06-17&quot;:3.96},{&quot;2026-06-18&quot;:4.01},{&quot;2026-06-19&quot;:4.04},{&quot;2026-06-20&quot;:4.08},{&quot;2026-06-21&quot;:4.24},{&quot;2026-06-22&quot;:4.31},{&quot;2026-06-23&quot;:4.35},{&quot;2026-06-24&quot;:4.31},{&quot;2026-06-25&quot;:4.37},{&quot;2026-06-26&quot;:4.31},{&quot;2026-06-27&quot;:4.28},{&quot;2026-06-28&quot;:4.25},{&quot;2026-06-29&quot;:4.18},{&quot;2026-06-30&quot;:4.15},{&quot;2026-07-01&quot;:4.25},{&quot;2026-07-02&quot;:4.26},{&quot;2026-07-03&quot;:4.43},{&quot;2026-07-04&quot;:4.35},{&quot;2026-07-05&quot;:4.53},{&quot;2026-07-06&quot;:4.59},{&quot;2026-07-07&quot;:4.54},{&quot;2026-07-08&quot;:4.54},{&quot;2026-07-09&quot;:4.54},{&quot;2026-07-10&quot;:4.54},{&quot;2026-07-11&quot;:4.6},{&quot;2026-07-12&quot;:4.61},{&quot;2026-07-13&quot;:4.83},{&quot;2026-07-14&quot;:5.16},{&quot;2026-07-15&quot;:5.16},{&quot;2026-07-16&quot;:5.12},{&quot;2026-07-17&quot;:5.12},{&quot;2026-07-18&quot;:5.21},{&quot;2026-07-19&quot;:5.08},{&quot;2026-07-20&quot;:5.38},{&quot;2026-07-21&quot;:5.35},{&quot;2026-07-22&quot;:5.12},{&quot;2026-07-23&quot;:4.76},{&quot;2026-07-24&quot;:5.14},{&quot;2026-07-25&quot;:5.15},{&quot;2026-07-26&quot;:4.83},{&quot;2026-07-27&quot;:4.85},{&quot;2026-07-28&quot;:4.8},{&quot;2026-07-29&quot;:4.49},{&quot;2026-07-30&quot;:4.48},{&quot;2026-07-31&quot;:4.48},{&quot;2026-08-01&quot;:4.48},{&quot;2026-08-02&quot;:4.61},{&quot;2026-08-03&quot;:4.33},{&quot;2026-08-04&quot;:4.16},{&quot;2026-08-05&quot;:4.16},{&quot;2026-08-07&quot;:4.29},{&quot;2026-08-08&quot;:4.01},{&quot;2026-08-09&quot;:4.08},{&quot;2026-08-10&quot;:4.15},{&quot;2026-08-11&quot;:4.23},{&quot;2026-08-12&quot;:4.23},{&quot;2026-08-13&quot;:4.29},{&quot;2026-08-14&quot;:4.26},{&quot;2026-08-15&quot;:4.33},{&quot;2026-08-16&quot;:4.33},{&quot;2026-08-17&quot;:4.33},{&quot;2026-08-18&quot;:4.33},{&quot;2026-08-19&quot;:4.33},{&quot;2026-08-20&quot;:4.33},{&quot;2026-08-21&quot;:4.36},{&quot;2026-08-22&quot;:4.3},{&quot;2026-08-23&quot;:4.3},{&quot;2026-08-24&quot;:4.3},{&quot;2026-08-25&quot;:4.36},{&quot;2026-08-26&quot;:4.36},{&quot;2026-08-27&quot;:4.36},{&quot;2026-08-28&quot;:4.4},{&quot;2026-08-29&quot;:4.4},{&quot;2026-08-30&quot;:4.29},{&quot;2026-08-31&quot;:4.29},{&quot;2026-09-01&quot;:4.29},{&quot;2026-09-02&quot;:4.22},{&quot;2026-09-03&quot;:4.24},{&quot;2026-09-04&quot;:4.39},{&quot;2026-09-05&quot;:4.54},{&quot;2026-09-06&quot;:4.49},{&quot;2026-09-07&quot;:4.53},{&quot;2026-09-08&quot;:4.58},{&quot;2026-09-09&quot;:4.58},{&quot;2026-09-10&quot;:4.47},{&quot;2026-09-11&quot;:4.53},{&quot;2026-09-12&quot;:4.5},{&quot;2026-09-13&quot;:4.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Counterspell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/a/6ac949a7-51ea-4c7e-ad46-87e5ee88b99b.jpg?1783931820" />

        <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/6/a/6ac949a7-51ea-4c7e-ad46-87e5ee88b99b.jpg?1783931820" />
    </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.31
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-14&quot;:3.7},{&quot;2026-06-15&quot;:3.7},{&quot;2026-06-16&quot;:3.76},{&quot;2026-06-17&quot;:3.79},{&quot;2026-06-18&quot;:3.79},{&quot;2026-06-19&quot;:3.79},{&quot;2026-06-20&quot;:3.85},{&quot;2026-06-21&quot;:3.85},{&quot;2026-06-22&quot;:3.85},{&quot;2026-06-23&quot;:3.89},{&quot;2026-06-24&quot;:3.89},{&quot;2026-06-25&quot;:3.97},{&quot;2026-06-26&quot;:3.97},{&quot;2026-06-27&quot;:4.13},{&quot;2026-06-28&quot;:4.13},{&quot;2026-06-29&quot;:4.13},{&quot;2026-06-30&quot;:4.13},{&quot;2026-07-01&quot;:4.13},{&quot;2026-07-02&quot;:4.17},{&quot;2026-07-03&quot;:4.17},{&quot;2026-07-04&quot;:4.17},{&quot;2026-07-05&quot;:4.17},{&quot;2026-07-06&quot;:4.17},{&quot;2026-07-07&quot;:4.17},{&quot;2026-07-08&quot;:4.1},{&quot;2026-07-09&quot;:4.1},{&quot;2026-07-10&quot;:4.1},{&quot;2026-07-11&quot;:4.07},{&quot;2026-07-12&quot;:4.07},{&quot;2026-07-13&quot;:4.07},{&quot;2026-07-14&quot;:4.05},{&quot;2026-07-15&quot;:4.05},{&quot;2026-07-16&quot;:4.05},{&quot;2026-07-17&quot;:4.05},{&quot;2026-07-18&quot;:4.05},{&quot;2026-07-19&quot;:4.05},{&quot;2026-07-20&quot;:4.05},{&quot;2026-07-21&quot;:4.05},{&quot;2026-07-23&quot;:4.08},{&quot;2026-07-24&quot;:4.13},{&quot;2026-07-25&quot;:4.13},{&quot;2026-07-26&quot;:4.13},{&quot;2026-07-27&quot;:4.15},{&quot;2026-07-28&quot;:4.26},{&quot;2026-07-29&quot;:4.34},{&quot;2026-07-30&quot;:4.36},{&quot;2026-07-31&quot;:4.29},{&quot;2026-08-01&quot;:4.46},{&quot;2026-08-02&quot;:4.47},{&quot;2026-08-03&quot;:4.24},{&quot;2026-08-04&quot;:4.24},{&quot;2026-08-05&quot;:4.24},{&quot;2026-08-07&quot;:4.2},{&quot;2026-08-08&quot;:4.2},{&quot;2026-08-09&quot;:4.2},{&quot;2026-08-10&quot;:4.16},{&quot;2026-08-11&quot;:4.16},{&quot;2026-08-12&quot;:4.16},{&quot;2026-08-13&quot;:4.16},{&quot;2026-08-14&quot;:4.16},{&quot;2026-08-15&quot;:4.06},{&quot;2026-08-16&quot;:4.06},{&quot;2026-08-17&quot;:4.06},{&quot;2026-08-18&quot;:4.06},{&quot;2026-08-19&quot;:4.07},{&quot;2026-08-20&quot;:4.07},{&quot;2026-08-21&quot;:3.86},{&quot;2026-08-22&quot;:3.86},{&quot;2026-08-23&quot;:3.86},{&quot;2026-08-24&quot;:3.86},{&quot;2026-08-25&quot;:3.88},{&quot;2026-08-26&quot;:3.88},{&quot;2026-08-27&quot;:3.89},{&quot;2026-08-28&quot;:3.94},{&quot;2026-08-29&quot;:3.94},{&quot;2026-08-30&quot;:3.9},{&quot;2026-08-31&quot;:4.18},{&quot;2026-09-01&quot;:4.18},{&quot;2026-09-02&quot;:4.18},{&quot;2026-09-03&quot;:4.23},{&quot;2026-09-04&quot;:4.23},{&quot;2026-09-05&quot;:4.23},{&quot;2026-09-06&quot;:4.23},{&quot;2026-09-07&quot;:4.11},{&quot;2026-09-08&quot;:4.11},{&quot;2026-09-09&quot;:4.09},{&quot;2026-09-10&quot;:4.09},{&quot;2026-09-11&quot;:4.09},{&quot;2026-09-12&quot;:4.2},{&quot;2026-09-13&quot;:4.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="78495"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Faerie 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-100 text-badge-text">
              ↓
              4%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Spellstutter Sprite" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/181434ed-65eb-4b47-9b12-7bbe6e0d262e.jpg?1783915156" />

        <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">
            Spellstutter Sprite
        </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 — Faerie Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Spellstutter Sprite" src="https://cards.scryfall.io/large/front/1/8/181434ed-65eb-4b47-9b12-7bbe6e0d262e.jpg?1783915156" />
    </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.03
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-15&quot;:5.01},{&quot;2026-06-16&quot;:5.0},{&quot;2026-06-17&quot;:5.05},{&quot;2026-06-18&quot;:5.19},{&quot;2026-06-19&quot;:5.17},{&quot;2026-06-20&quot;:5.17},{&quot;2026-06-21&quot;:4.86},{&quot;2026-06-22&quot;:4.95},{&quot;2026-06-23&quot;:4.96},{&quot;2026-06-24&quot;:4.9},{&quot;2026-06-25&quot;:4.96},{&quot;2026-06-26&quot;:4.86},{&quot;2026-06-27&quot;:4.62},{&quot;2026-06-28&quot;:4.62},{&quot;2026-06-29&quot;:4.5},{&quot;2026-06-30&quot;:4.42},{&quot;2026-07-01&quot;:4.32},{&quot;2026-07-02&quot;:4.37},{&quot;2026-07-03&quot;:4.34},{&quot;2026-07-04&quot;:4.32},{&quot;2026-07-05&quot;:4.32},{&quot;2026-07-06&quot;:4.29},{&quot;2026-07-07&quot;:4.29},{&quot;2026-07-08&quot;:4.35},{&quot;2026-07-09&quot;:4.38},{&quot;2026-07-10&quot;:4.5},{&quot;2026-07-11&quot;:4.5},{&quot;2026-07-12&quot;:4.5},{&quot;2026-07-13&quot;:4.5},{&quot;2026-07-14&quot;:4.47},{&quot;2026-07-15&quot;:4.56},{&quot;2026-07-16&quot;:4.59},{&quot;2026-07-17&quot;:4.59},{&quot;2026-07-18&quot;:4.62},{&quot;2026-07-19&quot;:4.62},{&quot;2026-07-20&quot;:4.52},{&quot;2026-07-21&quot;:4.43},{&quot;2026-07-22&quot;:4.43},{&quot;2026-07-23&quot;:4.43},{&quot;2026-07-24&quot;:4.49},{&quot;2026-07-25&quot;:4.43},{&quot;2026-07-26&quot;:4.43},{&quot;2026-07-27&quot;:4.48},{&quot;2026-07-28&quot;:4.38},{&quot;2026-07-29&quot;:4.31},{&quot;2026-07-30&quot;:4.31},{&quot;2026-07-31&quot;:4.5},{&quot;2026-08-01&quot;:4.5},{&quot;2026-08-02&quot;:4.48},{&quot;2026-08-03&quot;:4.54},{&quot;2026-08-04&quot;:4.59},{&quot;2026-08-05&quot;:4.61},{&quot;2026-08-07&quot;:4.8},{&quot;2026-08-08&quot;:4.55},{&quot;2026-08-09&quot;:4.47},{&quot;2026-08-10&quot;:4.53},{&quot;2026-08-11&quot;:4.23},{&quot;2026-08-12&quot;:4.58},{&quot;2026-08-13&quot;:4.71},{&quot;2026-08-14&quot;:4.57},{&quot;2026-08-15&quot;:4.66},{&quot;2026-08-16&quot;:4.41},{&quot;2026-08-17&quot;:4.3},{&quot;2026-08-18&quot;:4.22},{&quot;2026-08-19&quot;:4.27},{&quot;2026-08-20&quot;:4.32},{&quot;2026-08-21&quot;:4.32},{&quot;2026-08-22&quot;:4.24},{&quot;2026-08-23&quot;:4.2},{&quot;2026-08-24&quot;:4.07},{&quot;2026-08-25&quot;:4.07},{&quot;2026-08-26&quot;:3.85},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.68},{&quot;2026-08-29&quot;:3.68},{&quot;2026-08-30&quot;:3.75},{&quot;2026-08-31&quot;:3.84},{&quot;2026-09-01&quot;:3.82},{&quot;2026-09-02&quot;:3.84},{&quot;2026-09-03&quot;:3.83},{&quot;2026-09-04&quot;:3.95},{&quot;2026-09-05&quot;:4.03},{&quot;2026-09-06&quot;:4.03},{&quot;2026-09-07&quot;:4.19},{&quot;2026-09-08&quot;:4.22},{&quot;2026-09-09&quot;:4.17},{&quot;2026-09-10&quot;:4.23},{&quot;2026-09-11&quot;:4.23},{&quot;2026-09-12&quot;:4.23},{&quot;2026-09-13&quot;:4.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Tortured Existence" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1efe6c2f-eb19-4a34-925a-3b90d2dbe680.jpg?1783929701" />

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <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">
            Snap
        </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="Snap" src="https://cards.scryfall.io/large/front/f/1/f13406c6-f208-402a-94d3-a94a24f03563.jpg?1783918488" />
    </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">
            4
          </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.75
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:3.99},{&quot;2026-06-16&quot;:3.99},{&quot;2026-06-17&quot;:3.99},{&quot;2026-06-18&quot;:3.99},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:3.89},{&quot;2026-06-21&quot;:3.86},{&quot;2026-06-22&quot;:3.85},{&quot;2026-06-23&quot;:3.83},{&quot;2026-06-24&quot;:3.83},{&quot;2026-06-25&quot;:3.83},{&quot;2026-06-26&quot;:3.81},{&quot;2026-06-27&quot;:3.83},{&quot;2026-06-28&quot;:3.79},{&quot;2026-06-29&quot;:3.65},{&quot;2026-06-30&quot;:3.65},{&quot;2026-07-01&quot;:3.62},{&quot;2026-07-02&quot;:3.59},{&quot;2026-07-03&quot;:3.64},{&quot;2026-07-04&quot;:3.59},{&quot;2026-07-05&quot;:3.6},{&quot;2026-07-06&quot;:3.6},{&quot;2026-07-07&quot;:3.61},{&quot;2026-07-08&quot;:3.58},{&quot;2026-07-09&quot;:3.58},{&quot;2026-07-10&quot;:3.56},{&quot;2026-07-11&quot;:3.53},{&quot;2026-07-12&quot;:3.53},{&quot;2026-07-13&quot;:3.58},{&quot;2026-07-14&quot;:3.52},{&quot;2026-07-15&quot;:3.58},{&quot;2026-07-16&quot;:3.52},{&quot;2026-07-17&quot;:3.65},{&quot;2026-07-18&quot;:3.67},{&quot;2026-07-19&quot;:3.63},{&quot;2026-07-20&quot;:3.57},{&quot;2026-07-21&quot;:3.56},{&quot;2026-07-22&quot;:3.7},{&quot;2026-07-23&quot;:3.75},{&quot;2026-07-24&quot;:3.75},{&quot;2026-07-25&quot;:3.85},{&quot;2026-07-26&quot;:3.87},{&quot;2026-07-27&quot;:3.87},{&quot;2026-07-28&quot;:3.86},{&quot;2026-07-29&quot;:3.94},{&quot;2026-07-30&quot;:3.98},{&quot;2026-07-31&quot;:4.09},{&quot;2026-08-01&quot;:4.09},{&quot;2026-08-02&quot;:4.13},{&quot;2026-08-03&quot;:4.13},{&quot;2026-08-04&quot;:4.13},{&quot;2026-08-05&quot;:4.13},{&quot;2026-08-07&quot;:4.17},{&quot;2026-08-08&quot;:4.19},{&quot;2026-08-09&quot;:4.14},{&quot;2026-08-10&quot;:4.14},{&quot;2026-08-11&quot;:4.15},{&quot;2026-08-12&quot;:4.22},{&quot;2026-08-13&quot;:4.35},{&quot;2026-08-14&quot;:4.37},{&quot;2026-08-15&quot;:4.37},{&quot;2026-08-16&quot;:4.28},{&quot;2026-08-17&quot;:4.27},{&quot;2026-08-18&quot;:4.27},{&quot;2026-08-19&quot;:4.24},{&quot;2026-08-20&quot;:4.24},{&quot;2026-08-21&quot;:4.27},{&quot;2026-08-22&quot;:4.27},{&quot;2026-08-23&quot;:4.24},{&quot;2026-08-24&quot;:4.14},{&quot;2026-08-25&quot;:4.14},{&quot;2026-08-26&quot;:4.11},{&quot;2026-08-27&quot;:4.11},{&quot;2026-08-28&quot;:4.11},{&quot;2026-08-29&quot;:4.11},{&quot;2026-08-30&quot;:4.15},{&quot;2026-08-31&quot;:4.18},{&quot;2026-09-01&quot;:4.19},{&quot;2026-09-02&quot;:4.21},{&quot;2026-09-03&quot;:4.24},{&quot;2026-09-04&quot;:4.24},{&quot;2026-09-05&quot;:4.22},{&quot;2026-09-06&quot;:4.2},{&quot;2026-09-07&quot;:4.28},{&quot;2026-09-08&quot;:4.3},{&quot;2026-09-09&quot;:4.31},{&quot;2026-09-10&quot;:4.31},{&quot;2026-09-11&quot;:4.31},{&quot;2026-09-12&quot;:4.31},{&quot;2026-09-13&quot;:4.32}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:3.4},{&quot;2026-06-16&quot;:3.42},{&quot;2026-06-17&quot;:3.47},{&quot;2026-06-18&quot;:3.56},{&quot;2026-06-19&quot;:3.69},{&quot;2026-06-20&quot;:3.46},{&quot;2026-06-21&quot;:3.19},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.32},{&quot;2026-06-24&quot;:3.28},{&quot;2026-06-25&quot;:3.22},{&quot;2026-06-26&quot;:3.32},{&quot;2026-06-27&quot;:3.36},{&quot;2026-06-28&quot;:3.5},{&quot;2026-06-29&quot;:3.47},{&quot;2026-06-30&quot;:3.24},{&quot;2026-07-01&quot;:3.24},{&quot;2026-07-02&quot;:3.29},{&quot;2026-07-03&quot;:3.46},{&quot;2026-07-04&quot;:3.4},{&quot;2026-07-05&quot;:3.5},{&quot;2026-07-06&quot;:3.72},{&quot;2026-07-07&quot;:3.67},{&quot;2026-07-08&quot;:3.53},{&quot;2026-07-09&quot;:3.41},{&quot;2026-07-10&quot;:3.46},{&quot;2026-07-11&quot;:3.44},{&quot;2026-07-12&quot;:3.46},{&quot;2026-07-13&quot;:3.37},{&quot;2026-07-14&quot;:3.39},{&quot;2026-07-15&quot;:3.39},{&quot;2026-07-16&quot;:3.36},{&quot;2026-07-17&quot;:3.28},{&quot;2026-07-18&quot;:3.27},{&quot;2026-07-19&quot;:3.34},{&quot;2026-07-20&quot;:3.29},{&quot;2026-07-21&quot;:3.33},{&quot;2026-07-22&quot;:3.33},{&quot;2026-07-23&quot;:3.37},{&quot;2026-07-24&quot;:3.45},{&quot;2026-07-25&quot;:3.27},{&quot;2026-07-26&quot;:2.84},{&quot;2026-07-27&quot;:2.99},{&quot;2026-07-28&quot;:3.06},{&quot;2026-07-29&quot;:3.12},{&quot;2026-07-30&quot;:2.97},{&quot;2026-07-31&quot;:3.05},{&quot;2026-08-01&quot;:3.17},{&quot;2026-08-02&quot;:3.21},{&quot;2026-08-03&quot;:3.03},{&quot;2026-08-04&quot;:3.09},{&quot;2026-08-05&quot;:3.17},{&quot;2026-08-07&quot;:3.27},{&quot;2026-08-08&quot;:3.51},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.69},{&quot;2026-08-11&quot;:3.61},{&quot;2026-08-12&quot;:3.61},{&quot;2026-08-13&quot;:3.64},{&quot;2026-08-14&quot;:3.71},{&quot;2026-08-15&quot;:3.73},{&quot;2026-08-16&quot;:3.5},{&quot;2026-08-17&quot;:3.61},{&quot;2026-08-18&quot;:3.72},{&quot;2026-08-19&quot;:3.57},{&quot;2026-08-20&quot;:3.55},{&quot;2026-08-21&quot;:3.58},{&quot;2026-08-22&quot;:3.58},{&quot;2026-08-23&quot;:3.55},{&quot;2026-08-24&quot;:3.53},{&quot;2026-08-25&quot;:3.63},{&quot;2026-08-26&quot;:3.58},{&quot;2026-08-27&quot;:3.5},{&quot;2026-08-28&quot;:3.42},{&quot;2026-08-29&quot;:3.42},{&quot;2026-08-30&quot;:3.53},{&quot;2026-08-31&quot;:3.69},{&quot;2026-09-01&quot;:3.68},{&quot;2026-09-02&quot;:3.58},{&quot;2026-09-03&quot;:3.4},{&quot;2026-09-04&quot;:3.36},{&quot;2026-09-05&quot;:3.33},{&quot;2026-09-06&quot;:3.44},{&quot;2026-09-07&quot;:3.45},{&quot;2026-09-08&quot;:3.79},{&quot;2026-09-09&quot;:3.94},{&quot;2026-09-10&quot;:3.57},{&quot;2026-09-11&quot;:3.59},{&quot;2026-09-12&quot;:3.43},{&quot;2026-09-13&quot;:3.75}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="90242"
  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-fdn 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">
            Hare Apparent
        </span>


      </div>

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

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

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

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

        <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">
            Hare Apparent
        </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 — Rabbit Noble</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hare Apparent" src="https://cards.scryfall.io/large/front/9/f/9fc6f0e9-eb5f-4bc0-b3d7-756644b66d12.jpg?1783909127" />
    </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">
            6
          </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.73
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:4.42},{&quot;2026-06-16&quot;:4.42},{&quot;2026-06-17&quot;:4.64},{&quot;2026-06-18&quot;:4.67},{&quot;2026-06-19&quot;:4.67},{&quot;2026-06-20&quot;:4.66},{&quot;2026-06-21&quot;:4.66},{&quot;2026-06-22&quot;:4.74},{&quot;2026-06-23&quot;:4.74},{&quot;2026-06-24&quot;:4.74},{&quot;2026-06-25&quot;:4.69},{&quot;2026-06-26&quot;:4.62},{&quot;2026-06-27&quot;:4.59},{&quot;2026-06-28&quot;:4.61},{&quot;2026-06-29&quot;:4.53},{&quot;2026-06-30&quot;:4.46},{&quot;2026-07-01&quot;:4.32},{&quot;2026-07-02&quot;:4.05},{&quot;2026-07-03&quot;:3.92},{&quot;2026-07-04&quot;:3.61},{&quot;2026-07-05&quot;:3.61},{&quot;2026-07-06&quot;:3.58},{&quot;2026-07-07&quot;:3.58},{&quot;2026-07-08&quot;:3.18},{&quot;2026-07-09&quot;:3.13},{&quot;2026-07-10&quot;:3.06},{&quot;2026-07-11&quot;:3.08},{&quot;2026-07-12&quot;:3.01},{&quot;2026-07-13&quot;:2.88},{&quot;2026-07-14&quot;:2.79},{&quot;2026-07-15&quot;:2.85},{&quot;2026-07-16&quot;:3.03},{&quot;2026-07-17&quot;:2.97},{&quot;2026-07-18&quot;:2.83},{&quot;2026-07-19&quot;:2.67},{&quot;2026-07-20&quot;:2.64},{&quot;2026-07-21&quot;:2.66},{&quot;2026-07-22&quot;:2.67},{&quot;2026-07-23&quot;:2.56},{&quot;2026-07-24&quot;:2.52},{&quot;2026-07-25&quot;:2.39},{&quot;2026-07-26&quot;:2.41},{&quot;2026-07-27&quot;:2.41},{&quot;2026-07-28&quot;:2.45},{&quot;2026-07-29&quot;:2.48},{&quot;2026-07-30&quot;:2.54},{&quot;2026-07-31&quot;:2.68},{&quot;2026-08-01&quot;:2.71},{&quot;2026-08-02&quot;:2.79},{&quot;2026-08-03&quot;:3.3},{&quot;2026-08-04&quot;:3.3},{&quot;2026-08-05&quot;:3.18},{&quot;2026-08-07&quot;:2.94},{&quot;2026-08-08&quot;:3.01},{&quot;2026-08-09&quot;:2.89},{&quot;2026-08-10&quot;:2.65},{&quot;2026-08-11&quot;:2.79},{&quot;2026-08-12&quot;:2.75},{&quot;2026-08-13&quot;:2.71},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.71},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.7},{&quot;2026-08-18&quot;:2.65},{&quot;2026-08-19&quot;:2.71},{&quot;2026-08-20&quot;:2.71},{&quot;2026-08-21&quot;:2.7},{&quot;2026-08-22&quot;:2.67},{&quot;2026-08-23&quot;:2.73},{&quot;2026-08-24&quot;:2.76},{&quot;2026-08-25&quot;:2.74},{&quot;2026-08-26&quot;:2.78},{&quot;2026-08-27&quot;:2.89},{&quot;2026-08-28&quot;:2.89},{&quot;2026-08-29&quot;:2.89},{&quot;2026-08-30&quot;:3.22},{&quot;2026-08-31&quot;:3.22},{&quot;2026-09-01&quot;:3.3},{&quot;2026-09-02&quot;:3.39},{&quot;2026-09-03&quot;:4.11},{&quot;2026-09-04&quot;:4.03},{&quot;2026-09-05&quot;:4.06},{&quot;2026-09-06&quot;:4.24},{&quot;2026-09-07&quot;:4.36},{&quot;2026-09-08&quot;:4.36},{&quot;2026-09-09&quot;:4.41},{&quot;2026-09-10&quot;:4.41},{&quot;2026-09-11&quot;:4.41},{&quot;2026-09-12&quot;:4.41},{&quot;2026-09-13&quot;:4.8}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:2.94},{&quot;2026-06-16&quot;:3.26},{&quot;2026-06-17&quot;:2.76},{&quot;2026-06-18&quot;:3.0},{&quot;2026-06-19&quot;:2.74},{&quot;2026-06-20&quot;:2.7},{&quot;2026-06-21&quot;:2.56},{&quot;2026-06-22&quot;:2.61},{&quot;2026-06-23&quot;:2.84},{&quot;2026-06-24&quot;:2.66},{&quot;2026-06-25&quot;:2.79},{&quot;2026-06-26&quot;:2.73},{&quot;2026-06-27&quot;:2.77},{&quot;2026-06-28&quot;:2.6},{&quot;2026-06-29&quot;:2.44},{&quot;2026-06-30&quot;:2.49},{&quot;2026-07-01&quot;:2.31},{&quot;2026-07-02&quot;:2.38},{&quot;2026-07-03&quot;:2.42},{&quot;2026-07-04&quot;:2.44},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.55},{&quot;2026-07-07&quot;:2.5},{&quot;2026-07-08&quot;:2.4},{&quot;2026-07-09&quot;:2.5},{&quot;2026-07-10&quot;:2.38},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.49},{&quot;2026-07-13&quot;:2.43},{&quot;2026-07-14&quot;:2.37},{&quot;2026-07-15&quot;:2.09},{&quot;2026-07-16&quot;:1.67},{&quot;2026-07-17&quot;:2.01},{&quot;2026-07-18&quot;:2.07},{&quot;2026-07-19&quot;:2.0},{&quot;2026-07-20&quot;:2.11},{&quot;2026-07-21&quot;:2.32},{&quot;2026-07-22&quot;:2.22},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-24&quot;:2.1},{&quot;2026-07-25&quot;:2.06},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.31},{&quot;2026-07-28&quot;:2.32},{&quot;2026-07-29&quot;:2.49},{&quot;2026-07-30&quot;:2.57},{&quot;2026-07-31&quot;:2.42},{&quot;2026-08-01&quot;:2.28},{&quot;2026-08-02&quot;:2.44},{&quot;2026-08-03&quot;:2.66},{&quot;2026-08-04&quot;:2.64},{&quot;2026-08-05&quot;:2.51},{&quot;2026-08-07&quot;:2.42},{&quot;2026-08-08&quot;:2.54},{&quot;2026-08-09&quot;:2.45},{&quot;2026-08-10&quot;:2.44},{&quot;2026-08-11&quot;:2.89},{&quot;2026-08-12&quot;:3.03},{&quot;2026-08-13&quot;:2.77},{&quot;2026-08-14&quot;:2.92},{&quot;2026-08-15&quot;:2.92},{&quot;2026-08-16&quot;:2.87},{&quot;2026-08-17&quot;:2.56},{&quot;2026-08-18&quot;:2.79},{&quot;2026-08-19&quot;:2.85},{&quot;2026-08-20&quot;:2.83},{&quot;2026-08-21&quot;:2.79},{&quot;2026-08-22&quot;:2.81},{&quot;2026-08-23&quot;:3.28},{&quot;2026-08-24&quot;:3.12},{&quot;2026-08-25&quot;:2.98},{&quot;2026-08-26&quot;:2.87},{&quot;2026-08-27&quot;:2.98},{&quot;2026-08-28&quot;:3.09},{&quot;2026-08-29&quot;:3.09},{&quot;2026-08-30&quot;:3.0},{&quot;2026-08-31&quot;:2.64},{&quot;2026-09-01&quot;:2.6},{&quot;2026-09-02&quot;:2.91},{&quot;2026-09-03&quot;:3.79},{&quot;2026-09-04&quot;:3.98},{&quot;2026-09-05&quot;:3.38},{&quot;2026-09-06&quot;:3.41},{&quot;2026-09-07&quot;:3.28},{&quot;2026-09-08&quot;:2.95},{&quot;2026-09-09&quot;:2.88},{&quot;2026-09-10&quot;:2.76},{&quot;2026-09-11&quot;:3.04},{&quot;2026-09-12&quot;:3.43},{&quot;2026-09-13&quot;:3.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20787"
  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-2xm 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">
            Myr Retriever
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Myr Retriever
        </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 Creature — Myr</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="Myr Retriever" src="https://cards.scryfall.io/large/front/7/f/7f0149d4-0731-474a-a1c3-28c25e486c14.jpg?1783930101" />
    </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">
            6
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $3.40
              </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 class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$1.40</span>
              <span class="text-xs text-grey-text">Credit: $1.82</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:3.45},{&quot;2026-06-16&quot;:3.5},{&quot;2026-06-17&quot;:3.56},{&quot;2026-06-18&quot;:3.44},{&quot;2026-06-19&quot;:3.56},{&quot;2026-06-20&quot;:3.57},{&quot;2026-06-21&quot;:3.57},{&quot;2026-06-22&quot;:3.47},{&quot;2026-06-23&quot;:3.46},{&quot;2026-06-24&quot;:3.46},{&quot;2026-06-25&quot;:3.58},{&quot;2026-06-26&quot;:3.59},{&quot;2026-06-27&quot;:3.59},{&quot;2026-06-28&quot;:3.6},{&quot;2026-06-29&quot;:3.55},{&quot;2026-06-30&quot;:3.55},{&quot;2026-07-01&quot;:3.55},{&quot;2026-07-02&quot;:3.31},{&quot;2026-07-03&quot;:3.31},{&quot;2026-07-04&quot;:3.31},{&quot;2026-07-05&quot;:3.16},{&quot;2026-07-06&quot;:3.16},{&quot;2026-07-07&quot;:3.19},{&quot;2026-07-08&quot;:3.23},{&quot;2026-07-09&quot;:3.19},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.36},{&quot;2026-07-12&quot;:3.36},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.29},{&quot;2026-07-15&quot;:3.29},{&quot;2026-07-16&quot;:3.29},{&quot;2026-07-17&quot;:3.29},{&quot;2026-07-18&quot;:3.39},{&quot;2026-07-19&quot;:3.39},{&quot;2026-07-20&quot;:3.37},{&quot;2026-07-21&quot;:3.5},{&quot;2026-07-22&quot;:3.5},{&quot;2026-07-23&quot;:3.54},{&quot;2026-07-24&quot;:3.55},{&quot;2026-07-25&quot;:3.55},{&quot;2026-07-26&quot;:3.62},{&quot;2026-07-27&quot;:3.62},{&quot;2026-07-28&quot;:3.62},{&quot;2026-07-29&quot;:3.55},{&quot;2026-07-30&quot;:3.55},{&quot;2026-07-31&quot;:3.52},{&quot;2026-08-01&quot;:3.55},{&quot;2026-08-02&quot;:3.48},{&quot;2026-08-03&quot;:3.4},{&quot;2026-08-04&quot;:3.4},{&quot;2026-08-05&quot;:3.4},{&quot;2026-08-07&quot;:3.38},{&quot;2026-08-08&quot;:3.38},{&quot;2026-08-09&quot;:3.38},{&quot;2026-08-10&quot;:3.57},{&quot;2026-08-11&quot;:3.57},{&quot;2026-08-12&quot;:3.68},{&quot;2026-08-13&quot;:3.57},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.43},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.46},{&quot;2026-08-19&quot;:3.46},{&quot;2026-08-20&quot;:3.46},{&quot;2026-08-21&quot;:3.46},{&quot;2026-08-22&quot;:3.3},{&quot;2026-08-23&quot;:3.27},{&quot;2026-08-24&quot;:3.36},{&quot;2026-08-25&quot;:3.36},{&quot;2026-08-26&quot;:3.36},{&quot;2026-08-27&quot;:3.36},{&quot;2026-08-28&quot;:3.46},{&quot;2026-08-29&quot;:3.46},{&quot;2026-08-30&quot;:3.51},{&quot;2026-08-31&quot;:3.51},{&quot;2026-09-01&quot;:3.51},{&quot;2026-09-02&quot;:3.28},{&quot;2026-09-03&quot;:3.28},{&quot;2026-09-04&quot;:3.39},{&quot;2026-09-05&quot;:3.43},{&quot;2026-09-06&quot;:3.46},{&quot;2026-09-07&quot;:3.46},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.4},{&quot;2026-09-10&quot;:3.4},{&quot;2026-09-11&quot;:3.35},{&quot;2026-09-12&quot;:3.4},{&quot;2026-09-13&quot;:3.4}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:3.41},{&quot;2026-06-16&quot;:3.41},{&quot;2026-06-17&quot;:3.32},{&quot;2026-06-18&quot;:3.09},{&quot;2026-06-19&quot;:3.25},{&quot;2026-06-20&quot;:3.05},{&quot;2026-06-21&quot;:3.45},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.81},{&quot;2026-06-24&quot;:3.93},{&quot;2026-06-25&quot;:3.89},{&quot;2026-06-26&quot;:4.25},{&quot;2026-06-27&quot;:4.24},{&quot;2026-06-28&quot;:4.05},{&quot;2026-06-29&quot;:3.98},{&quot;2026-06-30&quot;:3.9},{&quot;2026-07-01&quot;:3.63},{&quot;2026-07-02&quot;:3.53},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.54},{&quot;2026-07-05&quot;:3.67},{&quot;2026-07-06&quot;:3.76},{&quot;2026-07-07&quot;:3.77},{&quot;2026-07-08&quot;:3.8},{&quot;2026-07-09&quot;:3.53},{&quot;2026-07-10&quot;:3.61},{&quot;2026-07-11&quot;:3.42},{&quot;2026-07-12&quot;:3.37},{&quot;2026-07-13&quot;:3.03},{&quot;2026-07-14&quot;:3.42},{&quot;2026-07-15&quot;:3.34},{&quot;2026-07-16&quot;:3.42},{&quot;2026-07-17&quot;:3.59},{&quot;2026-07-18&quot;:3.66},{&quot;2026-07-19&quot;:3.91},{&quot;2026-07-20&quot;:4.24},{&quot;2026-07-21&quot;:4.44},{&quot;2026-07-22&quot;:4.12},{&quot;2026-07-23&quot;:4.0},{&quot;2026-07-24&quot;:3.92},{&quot;2026-07-25&quot;:3.78},{&quot;2026-07-26&quot;:3.76},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-28&quot;:3.41},{&quot;2026-07-29&quot;:3.04},{&quot;2026-07-30&quot;:3.05},{&quot;2026-07-31&quot;:2.92},{&quot;2026-08-01&quot;:2.92},{&quot;2026-08-02&quot;:2.92},{&quot;2026-08-03&quot;:2.8},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.97},{&quot;2026-08-07&quot;:2.92},{&quot;2026-08-08&quot;:3.02},{&quot;2026-08-09&quot;:3.88},{&quot;2026-08-10&quot;:4.16},{&quot;2026-08-11&quot;:4.2},{&quot;2026-08-12&quot;:4.15},{&quot;2026-08-13&quot;:4.15},{&quot;2026-08-14&quot;:4.2},{&quot;2026-08-15&quot;:4.21},{&quot;2026-08-16&quot;:4.15},{&quot;2026-08-17&quot;:4.28},{&quot;2026-08-18&quot;:4.28},{&quot;2026-08-19&quot;:4.0},{&quot;2026-08-20&quot;:3.8},{&quot;2026-08-21&quot;:3.57},{&quot;2026-08-22&quot;:3.57},{&quot;2026-08-23&quot;:3.47},{&quot;2026-08-24&quot;:3.43},{&quot;2026-08-25&quot;:3.32},{&quot;2026-08-26&quot;:3.62},{&quot;2026-08-27&quot;:3.62},{&quot;2026-08-28&quot;:3.73},{&quot;2026-08-29&quot;:3.73},{&quot;2026-08-30&quot;:3.55},{&quot;2026-08-31&quot;:3.68},{&quot;2026-09-01&quot;:3.7},{&quot;2026-09-02&quot;:3.64},{&quot;2026-09-03&quot;:3.66},{&quot;2026-09-04&quot;:3.66},{&quot;2026-09-05&quot;:3.53},{&quot;2026-09-06&quot;:3.58},{&quot;2026-09-07&quot;:3.59},{&quot;2026-09-08&quot;:4.0},{&quot;2026-09-09&quot;:3.95},{&quot;2026-09-10&quot;:3.95},{&quot;2026-09-11&quot;:3.95},{&quot;2026-09-12&quot;:3.77},{&quot;2026-09-13&quot;:3.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95513"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-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">
            Cid, Timeless Artificer
        </span>


      </div>

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

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

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

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

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

        <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">
            Cid, Timeless Artificer
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><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="Cid, Timeless Artificer" src="https://cards.scryfall.io/large/front/2/b/2bbab097-acb3-480d-a433-e4f81dde62e4.jpg?1783906498" />
    </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.66
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:7.45},{&quot;2026-06-13&quot;:7.45},{&quot;2026-06-14&quot;:7.44},{&quot;2026-06-15&quot;:7.44},{&quot;2026-06-16&quot;:7.44},{&quot;2026-06-17&quot;:7.33},{&quot;2026-06-18&quot;:7.33},{&quot;2026-06-19&quot;:7.32},{&quot;2026-06-20&quot;:7.32},{&quot;2026-06-21&quot;:7.32},{&quot;2026-06-22&quot;:7.32},{&quot;2026-06-23&quot;:7.35},{&quot;2026-06-24&quot;:7.35},{&quot;2026-06-25&quot;:7.39},{&quot;2026-06-26&quot;:7.39},{&quot;2026-06-27&quot;:7.39},{&quot;2026-06-28&quot;:7.28},{&quot;2026-06-29&quot;:7.28},{&quot;2026-06-30&quot;:7.28},{&quot;2026-07-01&quot;:7.28},{&quot;2026-07-02&quot;:7.35},{&quot;2026-07-03&quot;:7.43},{&quot;2026-07-04&quot;:7.42},{&quot;2026-07-05&quot;:7.42},{&quot;2026-07-06&quot;:7.46},{&quot;2026-07-07&quot;:7.46},{&quot;2026-07-08&quot;:7.46},{&quot;2026-07-09&quot;:7.46},{&quot;2026-07-10&quot;:7.47},{&quot;2026-07-11&quot;:7.29},{&quot;2026-07-12&quot;:7.29},{&quot;2026-07-13&quot;:7.29},{&quot;2026-07-14&quot;:7.37},{&quot;2026-07-15&quot;:7.48},{&quot;2026-07-16&quot;:7.48},{&quot;2026-07-17&quot;:7.48},{&quot;2026-07-18&quot;:7.52},{&quot;2026-07-19&quot;:7.52},{&quot;2026-07-20&quot;:7.52},{&quot;2026-07-21&quot;:7.52},{&quot;2026-07-23&quot;:7.52},{&quot;2026-07-25&quot;:7.52},{&quot;2026-07-26&quot;:7.52},{&quot;2026-07-27&quot;:7.52},{&quot;2026-07-29&quot;:7.52},{&quot;2026-07-30&quot;:7.52},{&quot;2026-07-31&quot;:7.52},{&quot;2026-08-01&quot;:7.52},{&quot;2026-08-02&quot;:7.52},{&quot;2026-08-03&quot;:7.97},{&quot;2026-08-04&quot;:8.33},{&quot;2026-08-05&quot;:8.24},{&quot;2026-08-07&quot;:8.24},{&quot;2026-08-08&quot;:8.24},{&quot;2026-08-09&quot;:8.24},{&quot;2026-08-10&quot;:8.24},{&quot;2026-08-11&quot;:8.24},{&quot;2026-08-12&quot;:8.24},{&quot;2026-08-13&quot;:8.24},{&quot;2026-08-14&quot;:8.24},{&quot;2026-08-15&quot;:8.23},{&quot;2026-08-16&quot;:8.23},{&quot;2026-08-17&quot;:8.23},{&quot;2026-08-18&quot;:8.22},{&quot;2026-08-19&quot;:8.22},{&quot;2026-08-20&quot;:8.22},{&quot;2026-08-21&quot;:8.3},{&quot;2026-08-22&quot;:8.3},{&quot;2026-08-23&quot;:8.3},{&quot;2026-08-24&quot;:8.3},{&quot;2026-08-25&quot;:8.3},{&quot;2026-08-26&quot;:8.3},{&quot;2026-08-27&quot;:8.3},{&quot;2026-08-28&quot;:8.3},{&quot;2026-08-29&quot;:8.3},{&quot;2026-08-30&quot;:8.3},{&quot;2026-08-31&quot;:8.34},{&quot;2026-09-01&quot;:8.34},{&quot;2026-09-02&quot;:8.34},{&quot;2026-09-03&quot;:8.4},{&quot;2026-09-04&quot;:8.4},{&quot;2026-09-05&quot;:8.4},{&quot;2026-09-06&quot;:8.4},{&quot;2026-09-07&quot;:8.47},{&quot;2026-09-08&quot;:8.49},{&quot;2026-09-09&quot;:8.49},{&quot;2026-09-10&quot;:8.49},{&quot;2026-09-11&quot;:8.55},{&quot;2026-09-12&quot;:8.55},{&quot;2026-09-13&quot;:8.56}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.09},{&quot;2026-06-13&quot;:3.09},{&quot;2026-06-14&quot;:3.22},{&quot;2026-06-15&quot;:3.2},{&quot;2026-06-16&quot;:3.21},{&quot;2026-06-17&quot;:3.4},{&quot;2026-06-18&quot;:3.48},{&quot;2026-06-19&quot;:3.71},{&quot;2026-06-20&quot;:3.78},{&quot;2026-06-21&quot;:3.47},{&quot;2026-06-22&quot;:3.52},{&quot;2026-06-23&quot;:3.52},{&quot;2026-06-24&quot;:3.54},{&quot;2026-06-25&quot;:3.57},{&quot;2026-06-26&quot;:3.55},{&quot;2026-06-27&quot;:3.64},{&quot;2026-06-28&quot;:3.74},{&quot;2026-06-29&quot;:3.62},{&quot;2026-06-30&quot;:3.71},{&quot;2026-07-01&quot;:3.85},{&quot;2026-07-02&quot;:3.85},{&quot;2026-07-03&quot;:3.98},{&quot;2026-07-04&quot;:3.92},{&quot;2026-07-05&quot;:3.92},{&quot;2026-07-06&quot;:3.88},{&quot;2026-07-07&quot;:3.9},{&quot;2026-07-08&quot;:3.87},{&quot;2026-07-09&quot;:4.12},{&quot;2026-07-10&quot;:4.09},{&quot;2026-07-11&quot;:3.95},{&quot;2026-07-12&quot;:3.6},{&quot;2026-07-13&quot;:3.66},{&quot;2026-07-14&quot;:3.8},{&quot;2026-07-15&quot;:3.86},{&quot;2026-07-16&quot;:3.94},{&quot;2026-07-17&quot;:3.94},{&quot;2026-07-18&quot;:3.94},{&quot;2026-07-19&quot;:3.8},{&quot;2026-07-20&quot;:3.89},{&quot;2026-07-21&quot;:3.85},{&quot;2026-07-23&quot;:3.75},{&quot;2026-07-25&quot;:4.02},{&quot;2026-07-26&quot;:4.02},{&quot;2026-07-27&quot;:3.8},{&quot;2026-07-29&quot;:3.49},{&quot;2026-07-30&quot;:3.54},{&quot;2026-07-31&quot;:3.34},{&quot;2026-08-01&quot;:3.34},{&quot;2026-08-02&quot;:3.4},{&quot;2026-08-03&quot;:3.4},{&quot;2026-08-04&quot;:3.42},{&quot;2026-08-05&quot;:3.42},{&quot;2026-08-07&quot;:3.57},{&quot;2026-08-08&quot;:3.41},{&quot;2026-08-09&quot;:3.37},{&quot;2026-08-10&quot;:3.51},{&quot;2026-08-11&quot;:3.5},{&quot;2026-08-12&quot;:3.5},{&quot;2026-08-13&quot;:3.55},{&quot;2026-08-14&quot;:3.63},{&quot;2026-08-15&quot;:3.63},{&quot;2026-08-16&quot;:3.58},{&quot;2026-08-17&quot;:3.76},{&quot;2026-08-18&quot;:3.78},{&quot;2026-08-19&quot;:3.78},{&quot;2026-08-20&quot;:3.78},{&quot;2026-08-21&quot;:3.7},{&quot;2026-08-22&quot;:3.7},{&quot;2026-08-23&quot;:3.67},{&quot;2026-08-24&quot;:3.69},{&quot;2026-08-25&quot;:3.69},{&quot;2026-08-26&quot;:3.78},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.78},{&quot;2026-08-29&quot;:3.78},{&quot;2026-08-30&quot;:3.76},{&quot;2026-08-31&quot;:3.68},{&quot;2026-09-01&quot;:3.68},{&quot;2026-09-02&quot;:3.65},{&quot;2026-09-03&quot;:3.65},{&quot;2026-09-04&quot;:3.75},{&quot;2026-09-05&quot;:3.73},{&quot;2026-09-06&quot;:3.69},{&quot;2026-09-07&quot;:3.69},{&quot;2026-09-08&quot;:3.7},{&quot;2026-09-09&quot;:3.74},{&quot;2026-09-10&quot;:3.67},{&quot;2026-09-11&quot;:3.63},{&quot;2026-09-12&quot;:3.63},{&quot;2026-09-13&quot;:3.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18090"
  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-dmr 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">
            7 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">
            $3.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="Counterspell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/02da8709-4228-4fed-9d2d-781e686661df.jpg?1783918498" />

        <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/0/2/02da8709-4228-4fed-9d2d-781e686661df.jpg?1783918498" />
    </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">
            7
          </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.34
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:3.2},{&quot;2026-06-13&quot;:3.17},{&quot;2026-06-14&quot;:3.21},{&quot;2026-06-15&quot;:3.21},{&quot;2026-06-16&quot;:3.21},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.24},{&quot;2026-06-19&quot;:3.26},{&quot;2026-06-20&quot;:3.24},{&quot;2026-06-21&quot;:3.24},{&quot;2026-06-22&quot;:3.24},{&quot;2026-06-23&quot;:3.31},{&quot;2026-06-24&quot;:2.84},{&quot;2026-06-25&quot;:2.68},{&quot;2026-06-26&quot;:2.69},{&quot;2026-06-27&quot;:2.67},{&quot;2026-06-28&quot;:2.67},{&quot;2026-06-29&quot;:2.6},{&quot;2026-06-30&quot;:2.6},{&quot;2026-07-01&quot;:2.66},{&quot;2026-07-02&quot;:2.72},{&quot;2026-07-03&quot;:2.7},{&quot;2026-07-04&quot;:2.83},{&quot;2026-07-05&quot;:2.86},{&quot;2026-07-06&quot;:2.86},{&quot;2026-07-07&quot;:2.97},{&quot;2026-07-08&quot;:2.99},{&quot;2026-07-09&quot;:2.99},{&quot;2026-07-10&quot;:2.96},{&quot;2026-07-11&quot;:2.96},{&quot;2026-07-12&quot;:2.95},{&quot;2026-07-13&quot;:2.9},{&quot;2026-07-14&quot;:2.88},{&quot;2026-07-15&quot;:2.86},{&quot;2026-07-16&quot;:2.86},{&quot;2026-07-17&quot;:2.85},{&quot;2026-07-18&quot;:2.85},{&quot;2026-07-19&quot;:2.83},{&quot;2026-07-20&quot;:2.84},{&quot;2026-07-21&quot;:2.84},{&quot;2026-07-23&quot;:2.87},{&quot;2026-07-25&quot;:2.92},{&quot;2026-07-26&quot;:2.96},{&quot;2026-07-27&quot;:3.05},{&quot;2026-07-29&quot;:3.1},{&quot;2026-07-30&quot;:3.06},{&quot;2026-07-31&quot;:2.97},{&quot;2026-08-01&quot;:2.97},{&quot;2026-08-02&quot;:2.97},{&quot;2026-08-03&quot;:2.97},{&quot;2026-08-04&quot;:2.97},{&quot;2026-08-05&quot;:2.98},{&quot;2026-08-07&quot;:2.98},{&quot;2026-08-08&quot;:2.94},{&quot;2026-08-09&quot;:2.94},{&quot;2026-08-10&quot;:2.94},{&quot;2026-08-11&quot;:2.94},{&quot;2026-08-12&quot;:2.99},{&quot;2026-08-13&quot;:2.98},{&quot;2026-08-14&quot;:2.98},{&quot;2026-08-15&quot;:2.89},{&quot;2026-08-16&quot;:2.89},{&quot;2026-08-17&quot;:2.84},{&quot;2026-08-18&quot;:2.84},{&quot;2026-08-19&quot;:2.82},{&quot;2026-08-20&quot;:2.82},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.16},{&quot;2026-08-23&quot;:3.28},{&quot;2026-08-24&quot;:3.52},{&quot;2026-08-25&quot;:3.52},{&quot;2026-08-26&quot;:3.57},{&quot;2026-08-27&quot;:3.57},{&quot;2026-08-28&quot;:3.49},{&quot;2026-08-29&quot;:3.49},{&quot;2026-08-30&quot;:3.35},{&quot;2026-08-31&quot;:3.32},{&quot;2026-09-01&quot;:3.32},{&quot;2026-09-02&quot;:3.43},{&quot;2026-09-03&quot;:3.22},{&quot;2026-09-04&quot;:3.25},{&quot;2026-09-05&quot;:3.58},{&quot;2026-09-06&quot;:3.63},{&quot;2026-09-07&quot;:3.64},{&quot;2026-09-08&quot;:3.6},{&quot;2026-09-09&quot;:3.63},{&quot;2026-09-10&quot;:3.56},{&quot;2026-09-11&quot;:3.61},{&quot;2026-09-12&quot;:3.61},{&quot;2026-09-13&quot;:3.68}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.92},{&quot;2026-06-13&quot;:2.95},{&quot;2026-06-14&quot;:3.1},{&quot;2026-06-15&quot;:3.34},{&quot;2026-06-16&quot;:3.3},{&quot;2026-06-17&quot;:3.31},{&quot;2026-06-18&quot;:3.12},{&quot;2026-06-19&quot;:2.79},{&quot;2026-06-20&quot;:2.47},{&quot;2026-06-21&quot;:2.94},{&quot;2026-06-22&quot;:2.81},{&quot;2026-06-23&quot;:2.7},{&quot;2026-06-24&quot;:2.56},{&quot;2026-06-25&quot;:2.91},{&quot;2026-06-26&quot;:3.1},{&quot;2026-06-27&quot;:3.21},{&quot;2026-06-28&quot;:3.21},{&quot;2026-06-29&quot;:3.34},{&quot;2026-06-30&quot;:3.17},{&quot;2026-07-01&quot;:3.24},{&quot;2026-07-02&quot;:3.15},{&quot;2026-07-03&quot;:2.92},{&quot;2026-07-04&quot;:2.93},{&quot;2026-07-05&quot;:2.83},{&quot;2026-07-06&quot;:3.01},{&quot;2026-07-07&quot;:2.91},{&quot;2026-07-08&quot;:3.13},{&quot;2026-07-09&quot;:2.99},{&quot;2026-07-10&quot;:2.94},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.14},{&quot;2026-07-13&quot;:3.24},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.02},{&quot;2026-07-16&quot;:2.9},{&quot;2026-07-17&quot;:2.63},{&quot;2026-07-18&quot;:2.63},{&quot;2026-07-19&quot;:2.63},{&quot;2026-07-20&quot;:2.91},{&quot;2026-07-21&quot;:2.99},{&quot;2026-07-23&quot;:2.73},{&quot;2026-07-25&quot;:2.63},{&quot;2026-07-26&quot;:2.89},{&quot;2026-07-27&quot;:2.78},{&quot;2026-07-29&quot;:2.35},{&quot;2026-07-30&quot;:2.35},{&quot;2026-07-31&quot;:2.77},{&quot;2026-08-01&quot;:2.85},{&quot;2026-08-02&quot;:2.55},{&quot;2026-08-03&quot;:2.58},{&quot;2026-08-04&quot;:2.93},{&quot;2026-08-05&quot;:2.99},{&quot;2026-08-07&quot;:3.17},{&quot;2026-08-08&quot;:3.0},{&quot;2026-08-09&quot;:3.13},{&quot;2026-08-10&quot;:3.21},{&quot;2026-08-11&quot;:3.25},{&quot;2026-08-12&quot;:3.12},{&quot;2026-08-13&quot;:3.29},{&quot;2026-08-14&quot;:3.22},{&quot;2026-08-15&quot;:3.17},{&quot;2026-08-16&quot;:3.13},{&quot;2026-08-17&quot;:3.35},{&quot;2026-08-18&quot;:3.3},{&quot;2026-08-19&quot;:3.16},{&quot;2026-08-20&quot;:3.16},{&quot;2026-08-21&quot;:3.95},{&quot;2026-08-22&quot;:3.83},{&quot;2026-08-23&quot;:3.62},{&quot;2026-08-24&quot;:3.45},{&quot;2026-08-25&quot;:3.45},{&quot;2026-08-26&quot;:3.44},{&quot;2026-08-27&quot;:3.37},{&quot;2026-08-28&quot;:3.51},{&quot;2026-08-29&quot;:3.51},{&quot;2026-08-30&quot;:3.78},{&quot;2026-08-31&quot;:4.08},{&quot;2026-09-01&quot;:4.08},{&quot;2026-09-02&quot;:3.34},{&quot;2026-09-03&quot;:3.74},{&quot;2026-09-04&quot;:3.57},{&quot;2026-09-05&quot;:3.67},{&quot;2026-09-06&quot;:3.87},{&quot;2026-09-07&quot;:3.59},{&quot;2026-09-08&quot;:3.64},{&quot;2026-09-09&quot;:3.76},{&quot;2026-09-10&quot;:3.76},{&quot;2026-09-11&quot;:3.66},{&quot;2026-09-12&quot;:3.44},{&quot;2026-09-13&quot;:3.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="81109"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Impact Tremors
        </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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Impact Tremors" src="https://cards.scryfall.io/large/front/a/c/acabeb7d-6f8f-4750-a29d-e0dd4e781c52.jpg?1783932086" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.39},{&quot;2026-06-14&quot;:4.39},{&quot;2026-06-15&quot;:4.44},{&quot;2026-06-16&quot;:4.43},{&quot;2026-06-17&quot;:4.43},{&quot;2026-06-18&quot;:4.32},{&quot;2026-06-19&quot;:4.35},{&quot;2026-06-20&quot;:4.29},{&quot;2026-06-21&quot;:4.29},{&quot;2026-06-22&quot;:4.36},{&quot;2026-06-23&quot;:4.36},{&quot;2026-06-24&quot;:4.36},{&quot;2026-06-25&quot;:4.36},{&quot;2026-06-26&quot;:4.36},{&quot;2026-06-27&quot;:4.36},{&quot;2026-06-28&quot;:4.29},{&quot;2026-06-29&quot;:4.36},{&quot;2026-06-30&quot;:4.36},{&quot;2026-07-01&quot;:4.2},{&quot;2026-07-02&quot;:4.2},{&quot;2026-07-03&quot;:4.2},{&quot;2026-07-04&quot;:4.12},{&quot;2026-07-05&quot;:4.12},{&quot;2026-07-06&quot;:4.12},{&quot;2026-07-07&quot;:3.95},{&quot;2026-07-08&quot;:3.95},{&quot;2026-07-09&quot;:3.95},{&quot;2026-07-10&quot;:3.95},{&quot;2026-07-11&quot;:3.95},{&quot;2026-07-12&quot;:3.95},{&quot;2026-07-13&quot;:3.87},{&quot;2026-07-14&quot;:3.87},{&quot;2026-07-15&quot;:3.88},{&quot;2026-07-16&quot;:3.79},{&quot;2026-07-17&quot;:3.76},{&quot;2026-07-18&quot;:3.74},{&quot;2026-07-19&quot;:3.74},{&quot;2026-07-20&quot;:3.74},{&quot;2026-07-21&quot;:3.74},{&quot;2026-07-23&quot;:3.76},{&quot;2026-07-25&quot;:3.75},{&quot;2026-07-26&quot;:3.75},{&quot;2026-07-27&quot;:3.75},{&quot;2026-07-28&quot;:3.75},{&quot;2026-07-29&quot;:3.75},{&quot;2026-07-30&quot;:3.8},{&quot;2026-07-31&quot;:3.8},{&quot;2026-08-01&quot;:3.71},{&quot;2026-08-02&quot;:3.71},{&quot;2026-08-03&quot;:3.71},{&quot;2026-08-04&quot;:3.81},{&quot;2026-08-05&quot;:3.81},{&quot;2026-08-07&quot;:3.87},{&quot;2026-08-08&quot;:3.87},{&quot;2026-08-09&quot;:3.75},{&quot;2026-08-10&quot;:3.75},{&quot;2026-08-11&quot;:3.75},{&quot;2026-08-12&quot;:3.75},{&quot;2026-08-13&quot;:3.72},{&quot;2026-08-14&quot;:3.67},{&quot;2026-08-15&quot;:3.67},{&quot;2026-08-16&quot;:3.67},{&quot;2026-08-17&quot;:3.67},{&quot;2026-08-18&quot;:3.67},{&quot;2026-08-19&quot;:3.67},{&quot;2026-08-20&quot;:3.67},{&quot;2026-08-21&quot;:3.53},{&quot;2026-08-22&quot;:3.53},{&quot;2026-08-23&quot;:3.53},{&quot;2026-08-24&quot;:3.53},{&quot;2026-08-25&quot;:3.53},{&quot;2026-08-26&quot;:3.53},{&quot;2026-08-27&quot;:3.44},{&quot;2026-08-28&quot;:3.36},{&quot;2026-08-29&quot;:3.36},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.45},{&quot;2026-09-01&quot;:3.45},{&quot;2026-09-02&quot;:3.45},{&quot;2026-09-03&quot;:3.37},{&quot;2026-09-04&quot;:3.37},{&quot;2026-09-05&quot;:3.37},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.36},{&quot;2026-09-08&quot;:3.36},{&quot;2026-09-09&quot;:3.24},{&quot;2026-09-10&quot;:3.24},{&quot;2026-09-11&quot;:3.16},{&quot;2026-09-12&quot;:3.16},{&quot;2026-09-13&quot;:3.17}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79251"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-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">
            Simian Spirit Guide
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Simian Spirit Guide" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/e/0e57335d-4066-4d73-83cd-67a215e01a4e.jpg?1783927787" />

        <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">
            Simian Spirit Guide
        </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 — Ape Spirit</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Simian Spirit Guide" src="https://cards.scryfall.io/large/front/0/e/0e57335d-4066-4d73-83cd-67a215e01a4e.jpg?1783927787" />
    </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">
            5
          </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.16
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:26.75},{&quot;2026-06-16&quot;:26.75},{&quot;2026-06-17&quot;:26.75},{&quot;2026-06-18&quot;:26.75},{&quot;2026-06-19&quot;:26.75},{&quot;2026-06-20&quot;:26.75},{&quot;2026-06-21&quot;:26.75},{&quot;2026-06-22&quot;:26.75},{&quot;2026-06-23&quot;:26.86},{&quot;2026-06-24&quot;:26.86},{&quot;2026-06-25&quot;:26.86},{&quot;2026-06-26&quot;:26.86},{&quot;2026-06-27&quot;:26.86},{&quot;2026-06-28&quot;:26.86},{&quot;2026-06-29&quot;:26.86},{&quot;2026-06-30&quot;:26.64},{&quot;2026-07-01&quot;:26.64},{&quot;2026-07-02&quot;:26.64},{&quot;2026-07-03&quot;:26.64},{&quot;2026-07-04&quot;:26.64},{&quot;2026-07-05&quot;:26.64},{&quot;2026-07-06&quot;:26.64},{&quot;2026-07-07&quot;:26.64},{&quot;2026-07-08&quot;:26.64},{&quot;2026-07-09&quot;:26.78},{&quot;2026-07-10&quot;:26.78},{&quot;2026-07-11&quot;:26.78},{&quot;2026-07-12&quot;:26.78},{&quot;2026-07-13&quot;:26.78},{&quot;2026-07-14&quot;:26.78},{&quot;2026-07-15&quot;:26.78},{&quot;2026-07-16&quot;:26.78},{&quot;2026-07-17&quot;:26.78},{&quot;2026-07-18&quot;:26.78},{&quot;2026-07-19&quot;:26.78},{&quot;2026-07-20&quot;:26.78},{&quot;2026-07-21&quot;:26.78},{&quot;2026-07-22&quot;:26.78},{&quot;2026-07-23&quot;:26.78},{&quot;2026-07-24&quot;:26.78},{&quot;2026-07-25&quot;:26.78},{&quot;2026-07-26&quot;:26.92},{&quot;2026-07-27&quot;:26.91},{&quot;2026-07-28&quot;:26.91},{&quot;2026-07-29&quot;:26.91},{&quot;2026-07-30&quot;:26.91},{&quot;2026-07-31&quot;:26.91},{&quot;2026-08-01&quot;:26.91},{&quot;2026-08-02&quot;:26.91},{&quot;2026-08-03&quot;:26.91},{&quot;2026-08-04&quot;:26.91},{&quot;2026-08-05&quot;:26.91},{&quot;2026-08-07&quot;:26.91},{&quot;2026-08-08&quot;:26.66},{&quot;2026-08-09&quot;:26.66},{&quot;2026-08-10&quot;:26.66},{&quot;2026-08-11&quot;:26.66},{&quot;2026-08-12&quot;:26.66},{&quot;2026-08-13&quot;:26.66},{&quot;2026-08-14&quot;:26.66},{&quot;2026-08-15&quot;:26.66},{&quot;2026-08-16&quot;:26.66},{&quot;2026-08-17&quot;:26.0},{&quot;2026-08-18&quot;:26.0},{&quot;2026-08-19&quot;:26.0},{&quot;2026-08-20&quot;:26.0},{&quot;2026-08-21&quot;:26.0},{&quot;2026-08-22&quot;:26.0},{&quot;2026-08-23&quot;:26.0},{&quot;2026-08-24&quot;:26.0},{&quot;2026-08-25&quot;:25.06},{&quot;2026-08-26&quot;:25.06},{&quot;2026-08-27&quot;:25.06},{&quot;2026-08-28&quot;:25.06},{&quot;2026-08-29&quot;:25.06},{&quot;2026-08-30&quot;:25.06},{&quot;2026-08-31&quot;:25.06},{&quot;2026-09-01&quot;:25.06},{&quot;2026-09-02&quot;:25.06},{&quot;2026-09-03&quot;:25.06},{&quot;2026-09-04&quot;:25.06},{&quot;2026-09-05&quot;:25.06},{&quot;2026-09-06&quot;:25.06},{&quot;2026-09-07&quot;:25.06},{&quot;2026-09-08&quot;:25.37},{&quot;2026-09-09&quot;:25.37},{&quot;2026-09-10&quot;:25.37},{&quot;2026-09-11&quot;:25.37},{&quot;2026-09-12&quot;:25.37},{&quot;2026-09-13&quot;:25.37}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:3.19},{&quot;2026-06-16&quot;:3.3},{&quot;2026-06-17&quot;:3.34},{&quot;2026-06-18&quot;:3.39},{&quot;2026-06-19&quot;:3.43},{&quot;2026-06-20&quot;:3.48},{&quot;2026-06-21&quot;:3.52},{&quot;2026-06-22&quot;:3.6},{&quot;2026-06-23&quot;:3.54},{&quot;2026-06-24&quot;:3.52},{&quot;2026-06-25&quot;:3.44},{&quot;2026-06-26&quot;:3.41},{&quot;2026-06-27&quot;:3.27},{&quot;2026-06-28&quot;:3.45},{&quot;2026-06-29&quot;:3.59},{&quot;2026-06-30&quot;:3.44},{&quot;2026-07-01&quot;:3.27},{&quot;2026-07-02&quot;:3.27},{&quot;2026-07-03&quot;:3.14},{&quot;2026-07-04&quot;:3.11},{&quot;2026-07-05&quot;:3.07},{&quot;2026-07-06&quot;:3.0},{&quot;2026-07-07&quot;:2.9},{&quot;2026-07-08&quot;:2.92},{&quot;2026-07-09&quot;:2.93},{&quot;2026-07-10&quot;:3.24},{&quot;2026-07-11&quot;:3.02},{&quot;2026-07-12&quot;:2.75},{&quot;2026-07-13&quot;:2.56},{&quot;2026-07-14&quot;:2.65},{&quot;2026-07-15&quot;:2.75},{&quot;2026-07-16&quot;:2.94},{&quot;2026-07-17&quot;:3.24},{&quot;2026-07-18&quot;:3.28},{&quot;2026-07-19&quot;:3.39},{&quot;2026-07-20&quot;:3.32},{&quot;2026-07-21&quot;:3.14},{&quot;2026-07-22&quot;:2.99},{&quot;2026-07-23&quot;:2.9},{&quot;2026-07-24&quot;:2.87},{&quot;2026-07-25&quot;:2.9},{&quot;2026-07-26&quot;:2.75},{&quot;2026-07-27&quot;:2.88},{&quot;2026-07-28&quot;:3.26},{&quot;2026-07-29&quot;:3.35},{&quot;2026-07-30&quot;:3.36},{&quot;2026-07-31&quot;:3.3},{&quot;2026-08-01&quot;:3.3},{&quot;2026-08-02&quot;:3.34},{&quot;2026-08-03&quot;:3.29},{&quot;2026-08-04&quot;:3.16},{&quot;2026-08-05&quot;:3.09},{&quot;2026-08-07&quot;:2.76},{&quot;2026-08-08&quot;:2.81},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.97},{&quot;2026-08-11&quot;:3.03},{&quot;2026-08-12&quot;:3.18},{&quot;2026-08-13&quot;:3.28},{&quot;2026-08-14&quot;:3.26},{&quot;2026-08-15&quot;:3.17},{&quot;2026-08-16&quot;:2.89},{&quot;2026-08-17&quot;:3.06},{&quot;2026-08-18&quot;:3.23},{&quot;2026-08-19&quot;:3.38},{&quot;2026-08-20&quot;:3.21},{&quot;2026-08-21&quot;:2.97},{&quot;2026-08-22&quot;:2.99},{&quot;2026-08-23&quot;:2.9},{&quot;2026-08-24&quot;:3.09},{&quot;2026-08-25&quot;:3.04},{&quot;2026-08-26&quot;:3.2},{&quot;2026-08-27&quot;:3.29},{&quot;2026-08-28&quot;:3.44},{&quot;2026-08-29&quot;:3.44},{&quot;2026-08-30&quot;:3.68},{&quot;2026-08-31&quot;:3.53},{&quot;2026-09-01&quot;:3.49},{&quot;2026-09-02&quot;:3.36},{&quot;2026-09-03&quot;:3.44},{&quot;2026-09-04&quot;:3.29},{&quot;2026-09-05&quot;:3.43},{&quot;2026-09-06&quot;:3.37},{&quot;2026-09-07&quot;:3.28},{&quot;2026-09-08&quot;:3.1},{&quot;2026-09-09&quot;:3.18},{&quot;2026-09-10&quot;:3.23},{&quot;2026-09-11&quot;:3.3},{&quot;2026-09-12&quot;:3.26},{&quot;2026-09-13&quot;:3.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="28801"
  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-afc ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a2a64307-b0ab-4f28-ad37-47d8b4c8b882.jpg?1783926190" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/a/2/a2a64307-b0ab-4f28-ad37-47d8b4c8b882.jpg?1783926190" />
    </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.11
              </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.11},{&quot;2026-06-14&quot;:4.11},{&quot;2026-06-15&quot;:4.11},{&quot;2026-06-16&quot;:4.02},{&quot;2026-06-17&quot;:4.02},{&quot;2026-06-18&quot;:4.02},{&quot;2026-06-19&quot;:4.02},{&quot;2026-06-20&quot;:4.1},{&quot;2026-06-21&quot;:4.1},{&quot;2026-06-22&quot;:4.1},{&quot;2026-06-23&quot;:4.1},{&quot;2026-06-24&quot;:4.1},{&quot;2026-06-25&quot;:3.97},{&quot;2026-06-26&quot;:3.67},{&quot;2026-06-27&quot;:3.88},{&quot;2026-06-28&quot;:3.64},{&quot;2026-06-29&quot;:3.64},{&quot;2026-06-30&quot;:3.64},{&quot;2026-07-01&quot;:3.64},{&quot;2026-07-02&quot;:3.62},{&quot;2026-07-03&quot;:3.62},{&quot;2026-07-04&quot;:3.58},{&quot;2026-07-05&quot;:3.54},{&quot;2026-07-06&quot;:3.54},{&quot;2026-07-07&quot;:3.51},{&quot;2026-07-08&quot;:3.51},{&quot;2026-07-09&quot;:3.51},{&quot;2026-07-10&quot;:3.51},{&quot;2026-07-11&quot;:3.41},{&quot;2026-07-12&quot;:3.44},{&quot;2026-07-13&quot;:3.6},{&quot;2026-07-14&quot;:3.58},{&quot;2026-07-15&quot;:3.51},{&quot;2026-07-16&quot;:3.51},{&quot;2026-07-17&quot;:3.54},{&quot;2026-07-18&quot;:3.54},{&quot;2026-07-19&quot;:3.54},{&quot;2026-07-20&quot;:3.43},{&quot;2026-07-21&quot;:3.37},{&quot;2026-07-23&quot;:3.41},{&quot;2026-07-25&quot;:3.44},{&quot;2026-07-26&quot;:3.4},{&quot;2026-07-27&quot;:3.4},{&quot;2026-07-28&quot;:3.37},{&quot;2026-07-29&quot;:3.34},{&quot;2026-07-30&quot;:3.29},{&quot;2026-07-31&quot;:3.23},{&quot;2026-08-01&quot;:3.23},{&quot;2026-08-02&quot;:3.23},{&quot;2026-08-03&quot;:3.23},{&quot;2026-08-04&quot;:3.25},{&quot;2026-08-05&quot;:3.25},{&quot;2026-08-07&quot;:3.19},{&quot;2026-08-08&quot;:3.19},{&quot;2026-08-09&quot;:3.09},{&quot;2026-08-10&quot;:3.23},{&quot;2026-08-11&quot;:3.23},{&quot;2026-08-12&quot;:3.25},{&quot;2026-08-13&quot;:3.24},{&quot;2026-08-14&quot;:3.24},{&quot;2026-08-15&quot;:3.24},{&quot;2026-08-16&quot;:3.17},{&quot;2026-08-17&quot;:3.08},{&quot;2026-08-18&quot;:3.06},{&quot;2026-08-19&quot;:3.06},{&quot;2026-08-20&quot;:3.06},{&quot;2026-08-21&quot;:3.06},{&quot;2026-08-22&quot;:3.09},{&quot;2026-08-23&quot;:3.07},{&quot;2026-08-24&quot;:3.07},{&quot;2026-08-25&quot;:3.07},{&quot;2026-08-26&quot;:3.06},{&quot;2026-08-27&quot;:3.06},{&quot;2026-08-28&quot;:3.06},{&quot;2026-08-29&quot;:3.06},{&quot;2026-08-30&quot;:3.05},{&quot;2026-08-31&quot;:3.09},{&quot;2026-09-01&quot;:3.13},{&quot;2026-09-02&quot;:3.12},{&quot;2026-09-03&quot;:3.12},{&quot;2026-09-04&quot;:3.11},{&quot;2026-09-05&quot;:3.05},{&quot;2026-09-06&quot;:3.05},{&quot;2026-09-07&quot;:3.05},{&quot;2026-09-08&quot;:3.05},{&quot;2026-09-09&quot;:2.99},{&quot;2026-09-10&quot;:2.99},{&quot;2026-09-11&quot;:3.03},{&quot;2026-09-12&quot;:3.07},{&quot;2026-09-13&quot;:3.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49520"
  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-mh2 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">
            Counterspell
        </span>

          <span
            class="
              px-1.5 py-0.5 text-xs rounded bg-purple-900/30 text-purple-400
              border border-purple-500/30 flex-shrink-0
            "
            title="Etched"
          >
            E
          </span>

      </div>

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

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

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

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

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

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

        <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">
            uncommon
          </span>

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Counterspell" src="https://cards.scryfall.io/large/front/1/9/1920dae4-fb92-4f19-ae4b-eb3276b8dac7.jpg?1783926788" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:2.96},{&quot;2026-06-16&quot;:2.95},{&quot;2026-06-17&quot;:2.95},{&quot;2026-06-18&quot;:3.15},{&quot;2026-06-19&quot;:3.15},{&quot;2026-06-20&quot;:3.15},{&quot;2026-06-21&quot;:3.15},{&quot;2026-06-22&quot;:3.15},{&quot;2026-06-23&quot;:3.14},{&quot;2026-06-24&quot;:3.14},{&quot;2026-06-25&quot;:3.14},{&quot;2026-06-26&quot;:3.14},{&quot;2026-06-27&quot;:3.14},{&quot;2026-06-28&quot;:3.14},{&quot;2026-06-29&quot;:3.02},{&quot;2026-06-30&quot;:3.12},{&quot;2026-07-01&quot;:3.12},{&quot;2026-07-02&quot;:3.07},{&quot;2026-07-03&quot;:3.1},{&quot;2026-07-04&quot;:3.07},{&quot;2026-07-05&quot;:3.07},{&quot;2026-07-06&quot;:3.07},{&quot;2026-07-07&quot;:3.08},{&quot;2026-07-08&quot;:3.12},{&quot;2026-07-09&quot;:3.12},{&quot;2026-07-10&quot;:3.12},{&quot;2026-07-11&quot;:3.12},{&quot;2026-07-12&quot;:3.16},{&quot;2026-07-13&quot;:3.16},{&quot;2026-07-14&quot;:3.16},{&quot;2026-07-15&quot;:3.16},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.16},{&quot;2026-07-18&quot;:3.16},{&quot;2026-07-19&quot;:3.16},{&quot;2026-07-20&quot;:3.16},{&quot;2026-07-21&quot;:3.16},{&quot;2026-07-22&quot;:3.16},{&quot;2026-07-23&quot;:3.16},{&quot;2026-07-24&quot;:3.16},{&quot;2026-07-25&quot;:3.16},{&quot;2026-07-26&quot;:3.16},{&quot;2026-07-27&quot;:3.16},{&quot;2026-07-28&quot;:3.16},{&quot;2026-07-29&quot;:3.16},{&quot;2026-07-30&quot;:3.16},{&quot;2026-07-31&quot;:3.31},{&quot;2026-08-01&quot;:3.31},{&quot;2026-08-02&quot;:3.31},{&quot;2026-08-03&quot;:3.31},{&quot;2026-08-04&quot;:3.31},{&quot;2026-08-05&quot;:3.31},{&quot;2026-08-07&quot;:3.19},{&quot;2026-08-08&quot;:3.19},{&quot;2026-08-09&quot;:3.19},{&quot;2026-08-10&quot;:3.29},{&quot;2026-08-11&quot;:3.28},{&quot;2026-08-12&quot;:3.28},{&quot;2026-08-13&quot;:3.19},{&quot;2026-08-14&quot;:3.19},{&quot;2026-08-15&quot;:3.19},{&quot;2026-08-16&quot;:3.19},{&quot;2026-08-17&quot;:3.19},{&quot;2026-08-18&quot;:3.26},{&quot;2026-08-19&quot;:3.26},{&quot;2026-08-20&quot;:3.26},{&quot;2026-08-21&quot;:3.36},{&quot;2026-08-22&quot;:3.36},{&quot;2026-08-23&quot;:3.5},{&quot;2026-08-24&quot;:3.5},{&quot;2026-08-25&quot;:3.4},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.4},{&quot;2026-08-29&quot;:3.4},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.4},{&quot;2026-09-01&quot;:3.45},{&quot;2026-09-02&quot;:3.45},{&quot;2026-09-03&quot;:3.45},{&quot;2026-09-04&quot;:3.5},{&quot;2026-09-05&quot;:3.47},{&quot;2026-09-06&quot;:3.47},{&quot;2026-09-07&quot;:3.44},{&quot;2026-09-08&quot;:3.56},{&quot;2026-09-09&quot;:3.56},{&quot;2026-09-10&quot;:3.56},{&quot;2026-09-11&quot;:3.47},{&quot;2026-09-12&quot;:3.47},{&quot;2026-09-13&quot;:3.43}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:2.88},{&quot;2026-06-16&quot;:2.84},{&quot;2026-06-17&quot;:2.69},{&quot;2026-06-18&quot;:2.76},{&quot;2026-06-19&quot;:2.76},{&quot;2026-06-20&quot;:2.72},{&quot;2026-06-21&quot;:2.53},{&quot;2026-06-22&quot;:2.41},{&quot;2026-06-23&quot;:2.49},{&quot;2026-06-24&quot;:2.45},{&quot;2026-06-25&quot;:2.69},{&quot;2026-06-26&quot;:2.63},{&quot;2026-06-27&quot;:2.82},{&quot;2026-06-28&quot;:3.01},{&quot;2026-06-29&quot;:2.81},{&quot;2026-06-30&quot;:2.9},{&quot;2026-07-01&quot;:2.91},{&quot;2026-07-02&quot;:2.78},{&quot;2026-07-03&quot;:3.02},{&quot;2026-07-04&quot;:2.91},{&quot;2026-07-05&quot;:2.88},{&quot;2026-07-06&quot;:2.77},{&quot;2026-07-07&quot;:2.99},{&quot;2026-07-08&quot;:3.11},{&quot;2026-07-09&quot;:3.07},{&quot;2026-07-10&quot;:2.94},{&quot;2026-07-11&quot;:2.74},{&quot;2026-07-12&quot;:2.69},{&quot;2026-07-13&quot;:2.77},{&quot;2026-07-14&quot;:2.75},{&quot;2026-07-15&quot;:2.76},{&quot;2026-07-16&quot;:2.65},{&quot;2026-07-17&quot;:2.63},{&quot;2026-07-18&quot;:2.53},{&quot;2026-07-19&quot;:2.54},{&quot;2026-07-20&quot;:2.47},{&quot;2026-07-21&quot;:2.49},{&quot;2026-07-22&quot;:2.43},{&quot;2026-07-23&quot;:2.46},{&quot;2026-07-24&quot;:2.41},{&quot;2026-07-25&quot;:2.48},{&quot;2026-07-26&quot;:2.5},{&quot;2026-07-27&quot;:2.58},{&quot;2026-07-28&quot;:2.66},{&quot;2026-07-29&quot;:2.69},{&quot;2026-07-30&quot;:2.66},{&quot;2026-07-31&quot;:2.55},{&quot;2026-08-01&quot;:2.82},{&quot;2026-08-02&quot;:2.95},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:2.97},{&quot;2026-08-07&quot;:2.96},{&quot;2026-08-08&quot;:2.95},{&quot;2026-08-09&quot;:2.65},{&quot;2026-08-10&quot;:2.8},{&quot;2026-08-11&quot;:2.82},{&quot;2026-08-12&quot;:2.9},{&quot;2026-08-13&quot;:2.8},{&quot;2026-08-14&quot;:2.83},{&quot;2026-08-15&quot;:3.0},{&quot;2026-08-16&quot;:3.12},{&quot;2026-08-17&quot;:3.29},{&quot;2026-08-18&quot;:2.97},{&quot;2026-08-19&quot;:3.04},{&quot;2026-08-20&quot;:2.95},{&quot;2026-08-21&quot;:3.01},{&quot;2026-08-22&quot;:2.74},{&quot;2026-08-23&quot;:2.65},{&quot;2026-08-24&quot;:2.56},{&quot;2026-08-25&quot;:2.74},{&quot;2026-08-26&quot;:3.01},{&quot;2026-08-27&quot;:2.99},{&quot;2026-08-28&quot;:2.99},{&quot;2026-08-29&quot;:2.99},{&quot;2026-08-30&quot;:2.66},{&quot;2026-08-31&quot;:2.72},{&quot;2026-09-01&quot;:3.16},{&quot;2026-09-02&quot;:3.23},{&quot;2026-09-03&quot;:3.38},{&quot;2026-09-04&quot;:3.3},{&quot;2026-09-05&quot;:3.37},{&quot;2026-09-06&quot;:3.14},{&quot;2026-09-07&quot;:3.26},{&quot;2026-09-08&quot;:4.09},{&quot;2026-09-09&quot;:4.34},{&quot;2026-09-10&quot;:4.01},{&quot;2026-09-11&quot;:3.77},{&quot;2026-09-12&quot;:3.59},{&quot;2026-09-13&quot;:3.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="90843"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-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">
            Laboratory Maniac
        </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">
            3 owned
          </div>

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

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

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

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

        <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">
            Laboratory Maniac
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Laboratory Maniac" src="https://cards.scryfall.io/large/front/7/a/7a5be94c-08b8-4964-a79d-e22ea6e94be8.jpg?1783908162" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:2.07},{&quot;2026-06-12&quot;:2.07},{&quot;2026-06-13&quot;:2.07},{&quot;2026-06-14&quot;:1.7},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.96},{&quot;2026-06-17&quot;:2.14},{&quot;2026-06-18&quot;:2.22},{&quot;2026-06-19&quot;:2.19},{&quot;2026-06-20&quot;:2.13},{&quot;2026-06-21&quot;:2.13},{&quot;2026-06-22&quot;:2.13},{&quot;2026-06-24&quot;:2.21},{&quot;2026-06-25&quot;:2.25},{&quot;2026-06-26&quot;:2.27},{&quot;2026-06-27&quot;:2.27},{&quot;2026-06-28&quot;:2.27},{&quot;2026-06-29&quot;:2.37},{&quot;2026-06-30&quot;:2.35},{&quot;2026-07-01&quot;:2.45},{&quot;2026-07-02&quot;:2.37},{&quot;2026-07-03&quot;:2.26},{&quot;2026-07-04&quot;:2.26},{&quot;2026-07-05&quot;:2.27},{&quot;2026-07-06&quot;:2.27},{&quot;2026-07-07&quot;:2.27},{&quot;2026-07-08&quot;:2.27},{&quot;2026-07-09&quot;:2.21},{&quot;2026-07-10&quot;:2.28},{&quot;2026-07-11&quot;:2.37},{&quot;2026-07-12&quot;:2.37},{&quot;2026-07-13&quot;:2.55},{&quot;2026-07-14&quot;:2.53},{&quot;2026-07-15&quot;:2.49},{&quot;2026-07-16&quot;:2.38},{&quot;2026-07-17&quot;:2.38},{&quot;2026-07-18&quot;:2.44},{&quot;2026-07-19&quot;:2.62},{&quot;2026-07-20&quot;:2.62},{&quot;2026-07-21&quot;:2.62},{&quot;2026-07-23&quot;:2.66},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.66},{&quot;2026-07-27&quot;:2.66},{&quot;2026-07-29&quot;:2.74},{&quot;2026-07-30&quot;:2.72},{&quot;2026-07-31&quot;:2.72},{&quot;2026-08-01&quot;:2.65},{&quot;2026-08-02&quot;:2.65},{&quot;2026-08-03&quot;:2.65},{&quot;2026-08-04&quot;:2.59},{&quot;2026-08-05&quot;:2.59},{&quot;2026-08-07&quot;:2.63},{&quot;2026-08-08&quot;:2.5},{&quot;2026-08-09&quot;:2.5},{&quot;2026-08-10&quot;:2.45},{&quot;2026-08-11&quot;:2.4},{&quot;2026-08-12&quot;:2.38},{&quot;2026-08-13&quot;:2.39},{&quot;2026-08-14&quot;:2.39},{&quot;2026-08-15&quot;:2.33},{&quot;2026-08-16&quot;:2.46},{&quot;2026-08-17&quot;:2.46},{&quot;2026-08-18&quot;:2.39},{&quot;2026-08-19&quot;:2.42},{&quot;2026-08-20&quot;:2.42},{&quot;2026-08-21&quot;:2.45},{&quot;2026-08-22&quot;:2.56},{&quot;2026-08-23&quot;:2.55},{&quot;2026-08-24&quot;:2.58},{&quot;2026-08-25&quot;:2.58},{&quot;2026-08-26&quot;:2.63},{&quot;2026-08-27&quot;:2.61},{&quot;2026-08-28&quot;:2.46},{&quot;2026-08-29&quot;:2.46},{&quot;2026-08-30&quot;:2.36},{&quot;2026-08-31&quot;:2.41},{&quot;2026-09-01&quot;:2.41},{&quot;2026-09-02&quot;:2.46},{&quot;2026-09-03&quot;:2.36},{&quot;2026-09-04&quot;:2.36},{&quot;2026-09-05&quot;:2.38},{&quot;2026-09-06&quot;:2.38},{&quot;2026-09-07&quot;:2.45},{&quot;2026-09-08&quot;:2.43},{&quot;2026-09-09&quot;:2.43},{&quot;2026-09-10&quot;:2.45},{&quot;2026-09-11&quot;:2.45},{&quot;2026-09-12&quot;:2.43},{&quot;2026-09-13&quot;:2.43}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.23},{&quot;2026-06-12&quot;:1.87},{&quot;2026-06-13&quot;:1.57},{&quot;2026-06-14&quot;:1.63},{&quot;2026-06-15&quot;:1.63},{&quot;2026-06-16&quot;:1.55},{&quot;2026-06-17&quot;:1.49},{&quot;2026-06-18&quot;:1.76},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.86},{&quot;2026-06-21&quot;:2.04},{&quot;2026-06-22&quot;:2.15},{&quot;2026-06-24&quot;:2.32},{&quot;2026-06-25&quot;:2.27},{&quot;2026-06-26&quot;:2.18},{&quot;2026-06-27&quot;:2.18},{&quot;2026-06-28&quot;:2.17},{&quot;2026-06-29&quot;:2.18},{&quot;2026-06-30&quot;:2.18},{&quot;2026-07-01&quot;:2.12},{&quot;2026-07-02&quot;:2.1},{&quot;2026-07-03&quot;:1.88},{&quot;2026-07-04&quot;:1.82},{&quot;2026-07-05&quot;:1.71},{&quot;2026-07-06&quot;:1.8},{&quot;2026-07-07&quot;:1.64},{&quot;2026-07-08&quot;:1.77},{&quot;2026-07-09&quot;:1.73},{&quot;2026-07-10&quot;:1.74},{&quot;2026-07-11&quot;:1.69},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.65},{&quot;2026-07-14&quot;:1.79},{&quot;2026-07-15&quot;:2.06},{&quot;2026-07-16&quot;:2.06},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.4},{&quot;2026-07-19&quot;:2.38},{&quot;2026-07-20&quot;:2.24},{&quot;2026-07-21&quot;:2.39},{&quot;2026-07-23&quot;:2.46},{&quot;2026-07-25&quot;:2.46},{&quot;2026-07-26&quot;:2.33},{&quot;2026-07-27&quot;:2.17},{&quot;2026-07-29&quot;:2.03},{&quot;2026-07-30&quot;:1.96},{&quot;2026-07-31&quot;:2.29},{&quot;2026-08-01&quot;:2.16},{&quot;2026-08-02&quot;:2.45},{&quot;2026-08-03&quot;:2.25},{&quot;2026-08-04&quot;:2.26},{&quot;2026-08-05&quot;:2.19},{&quot;2026-08-07&quot;:2.19},{&quot;2026-08-08&quot;:2.34},{&quot;2026-08-09&quot;:2.31},{&quot;2026-08-10&quot;:2.37},{&quot;2026-08-11&quot;:2.42},{&quot;2026-08-12&quot;:2.26},{&quot;2026-08-13&quot;:2.27},{&quot;2026-08-14&quot;:2.43},{&quot;2026-08-15&quot;:2.46},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.59},{&quot;2026-08-18&quot;:2.49},{&quot;2026-08-19&quot;:2.3},{&quot;2026-08-20&quot;:2.3},{&quot;2026-08-21&quot;:2.42},{&quot;2026-08-22&quot;:2.53},{&quot;2026-08-23&quot;:2.54},{&quot;2026-08-24&quot;:2.52},{&quot;2026-08-25&quot;:2.52},{&quot;2026-08-26&quot;:2.56},{&quot;2026-08-27&quot;:2.59},{&quot;2026-08-28&quot;:2.56},{&quot;2026-08-29&quot;:2.56},{&quot;2026-08-30&quot;:2.31},{&quot;2026-08-31&quot;:2.32},{&quot;2026-09-01&quot;:2.32},{&quot;2026-09-02&quot;:2.2},{&quot;2026-09-03&quot;:2.61},{&quot;2026-09-04&quot;:2.62},{&quot;2026-09-05&quot;:2.62},{&quot;2026-09-06&quot;:2.49},{&quot;2026-09-07&quot;:2.71},{&quot;2026-09-08&quot;:2.67},{&quot;2026-09-09&quot;:2.65},{&quot;2026-09-10&quot;:2.52},{&quot;2026-09-11&quot;:2.88},{&quot;2026-09-12&quot;:3.04},{&quot;2026-09-13&quot;:2.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20150"
  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-2xm 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">
            Pongify
        </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">
              ↑
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Pongify" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/0/40b7a6db-e0a3-45f7-9ef7-e4fd5490adb7.jpg?1783930197" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Pongify" src="https://cards.scryfall.io/large/front/4/0/40b7a6db-e0a3-45f7-9ef7-e4fd5490adb7.jpg?1783930197" />
    </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.81
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:2.86},{&quot;2026-06-16&quot;:2.95},{&quot;2026-06-17&quot;:2.98},{&quot;2026-06-18&quot;:2.98},{&quot;2026-06-19&quot;:2.98},{&quot;2026-06-20&quot;:2.98},{&quot;2026-06-21&quot;:2.94},{&quot;2026-06-22&quot;:2.94},{&quot;2026-06-23&quot;:2.94},{&quot;2026-06-24&quot;:2.94},{&quot;2026-06-25&quot;:2.94},{&quot;2026-06-26&quot;:2.94},{&quot;2026-06-27&quot;:2.94},{&quot;2026-06-28&quot;:2.98},{&quot;2026-06-29&quot;:3.0},{&quot;2026-06-30&quot;:3.02},{&quot;2026-07-01&quot;:3.02},{&quot;2026-07-02&quot;:3.02},{&quot;2026-07-03&quot;:3.02},{&quot;2026-07-04&quot;:3.02},{&quot;2026-07-05&quot;:3.05},{&quot;2026-07-06&quot;:3.05},{&quot;2026-07-07&quot;:3.1},{&quot;2026-07-08&quot;:3.1},{&quot;2026-07-09&quot;:3.1},{&quot;2026-07-10&quot;:3.1},{&quot;2026-07-11&quot;:3.1},{&quot;2026-07-12&quot;:3.1},{&quot;2026-07-13&quot;:3.1},{&quot;2026-07-14&quot;:3.11},{&quot;2026-07-15&quot;:3.11},{&quot;2026-07-16&quot;:3.07},{&quot;2026-07-17&quot;:3.12},{&quot;2026-07-18&quot;:3.12},{&quot;2026-07-19&quot;:3.12},{&quot;2026-07-20&quot;:3.12},{&quot;2026-07-21&quot;:3.13},{&quot;2026-07-22&quot;:3.13},{&quot;2026-07-23&quot;:3.14},{&quot;2026-07-24&quot;:3.14},{&quot;2026-07-25&quot;:3.14},{&quot;2026-07-26&quot;:3.14},{&quot;2026-07-27&quot;:3.14},{&quot;2026-07-28&quot;:3.14},{&quot;2026-07-29&quot;:3.2},{&quot;2026-07-30&quot;:3.21},{&quot;2026-07-31&quot;:3.21},{&quot;2026-08-01&quot;:3.21},{&quot;2026-08-02&quot;:3.21},{&quot;2026-08-03&quot;:3.21},{&quot;2026-08-04&quot;:3.21},{&quot;2026-08-05&quot;:3.21},{&quot;2026-08-07&quot;:3.21},{&quot;2026-08-08&quot;:3.21},{&quot;2026-08-09&quot;:3.21},{&quot;2026-08-10&quot;:3.21},{&quot;2026-08-11&quot;:3.25},{&quot;2026-08-12&quot;:3.25},{&quot;2026-08-13&quot;:3.25},{&quot;2026-08-14&quot;:3.28},{&quot;2026-08-15&quot;:3.28},{&quot;2026-08-16&quot;:3.28},{&quot;2026-08-17&quot;:3.28},{&quot;2026-08-18&quot;:3.28},{&quot;2026-08-19&quot;:3.24},{&quot;2026-08-20&quot;:3.22},{&quot;2026-08-21&quot;:3.2},{&quot;2026-08-22&quot;:3.2},{&quot;2026-08-23&quot;:3.2},{&quot;2026-08-24&quot;:3.26},{&quot;2026-08-25&quot;:3.27},{&quot;2026-08-26&quot;:3.27},{&quot;2026-08-27&quot;:3.27},{&quot;2026-08-28&quot;:3.27},{&quot;2026-08-29&quot;:3.27},{&quot;2026-08-30&quot;:3.27},{&quot;2026-08-31&quot;:3.27},{&quot;2026-09-01&quot;:3.28},{&quot;2026-09-02&quot;:3.26},{&quot;2026-09-03&quot;:3.26},{&quot;2026-09-04&quot;:3.26},{&quot;2026-09-05&quot;:3.28},{&quot;2026-09-06&quot;:3.28},{&quot;2026-09-07&quot;:3.44},{&quot;2026-09-08&quot;:3.46},{&quot;2026-09-09&quot;:3.46},{&quot;2026-09-10&quot;:3.46},{&quot;2026-09-11&quot;:3.4},{&quot;2026-09-12&quot;:3.37},{&quot;2026-09-13&quot;:3.37}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:2.65},{&quot;2026-06-16&quot;:2.65},{&quot;2026-06-17&quot;:2.73},{&quot;2026-06-18&quot;:2.73},{&quot;2026-06-19&quot;:2.73},{&quot;2026-06-20&quot;:2.73},{&quot;2026-06-21&quot;:2.77},{&quot;2026-06-22&quot;:2.77},{&quot;2026-06-23&quot;:2.77},{&quot;2026-06-24&quot;:2.77},{&quot;2026-06-25&quot;:2.72},{&quot;2026-06-26&quot;:2.77},{&quot;2026-06-27&quot;:2.77},{&quot;2026-06-28&quot;:2.8},{&quot;2026-06-29&quot;:2.85},{&quot;2026-06-30&quot;:2.84},{&quot;2026-07-01&quot;:2.84},{&quot;2026-07-02&quot;:2.79},{&quot;2026-07-03&quot;:2.76},{&quot;2026-07-04&quot;:2.76},{&quot;2026-07-05&quot;:2.76},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.74},{&quot;2026-07-08&quot;:2.76},{&quot;2026-07-09&quot;:2.76},{&quot;2026-07-10&quot;:2.76},{&quot;2026-07-11&quot;:2.76},{&quot;2026-07-12&quot;:2.76},{&quot;2026-07-13&quot;:2.75},{&quot;2026-07-14&quot;:2.77},{&quot;2026-07-15&quot;:2.67},{&quot;2026-07-16&quot;:2.72},{&quot;2026-07-17&quot;:2.8},{&quot;2026-07-18&quot;:2.87},{&quot;2026-07-19&quot;:2.83},{&quot;2026-07-20&quot;:2.83},{&quot;2026-07-21&quot;:2.83},{&quot;2026-07-22&quot;:2.83},{&quot;2026-07-23&quot;:2.82},{&quot;2026-07-24&quot;:2.82},{&quot;2026-07-25&quot;:2.88},{&quot;2026-07-26&quot;:2.88},{&quot;2026-07-27&quot;:2.8},{&quot;2026-07-28&quot;:2.8},{&quot;2026-07-29&quot;:2.7},{&quot;2026-07-30&quot;:2.63},{&quot;2026-07-31&quot;:2.52},{&quot;2026-08-01&quot;:2.52},{&quot;2026-08-02&quot;:2.5},{&quot;2026-08-03&quot;:2.44},{&quot;2026-08-04&quot;:2.44},{&quot;2026-08-05&quot;:2.46},{&quot;2026-08-07&quot;:2.43},{&quot;2026-08-08&quot;:2.38},{&quot;2026-08-09&quot;:2.38},{&quot;2026-08-10&quot;:2.38},{&quot;2026-08-11&quot;:2.38},{&quot;2026-08-12&quot;:2.25},{&quot;2026-08-13&quot;:2.3},{&quot;2026-08-14&quot;:2.26},{&quot;2026-08-15&quot;:2.26},{&quot;2026-08-16&quot;:2.28},{&quot;2026-08-17&quot;:2.33},{&quot;2026-08-18&quot;:2.32},{&quot;2026-08-19&quot;:2.32},{&quot;2026-08-20&quot;:2.33},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.35},{&quot;2026-08-23&quot;:2.4},{&quot;2026-08-24&quot;:2.3},{&quot;2026-08-25&quot;:2.3},{&quot;2026-08-26&quot;:2.39},{&quot;2026-08-27&quot;:2.52},{&quot;2026-08-28&quot;:2.5},{&quot;2026-08-29&quot;:2.5},{&quot;2026-08-30&quot;:2.46},{&quot;2026-08-31&quot;:2.46},{&quot;2026-09-01&quot;:2.46},{&quot;2026-09-02&quot;:2.43},{&quot;2026-09-03&quot;:2.45},{&quot;2026-09-04&quot;:2.45},{&quot;2026-09-05&quot;:2.45},{&quot;2026-09-06&quot;:2.44},{&quot;2026-09-07&quot;:2.55},{&quot;2026-09-08&quot;:2.61},{&quot;2026-09-09&quot;:2.7},{&quot;2026-09-10&quot;:2.78},{&quot;2026-09-11&quot;:2.78},{&quot;2026-09-12&quot;:2.81},{&quot;2026-09-13&quot;:2.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="80527"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-common ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

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

        <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/1/0/102d20e6-5179-44b7-9abd-f1defc15ca6a.jpg?1783933789" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $3.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">$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;2026-06-12&quot;:3.89},{&quot;2026-06-13&quot;:3.89},{&quot;2026-06-14&quot;:3.89},{&quot;2026-06-15&quot;:3.89},{&quot;2026-06-16&quot;:3.89},{&quot;2026-06-17&quot;:3.89},{&quot;2026-06-18&quot;:3.89},{&quot;2026-06-19&quot;:3.89},{&quot;2026-06-20&quot;:3.89},{&quot;2026-06-21&quot;:3.89},{&quot;2026-06-22&quot;:3.89},{&quot;2026-06-23&quot;:3.74},{&quot;2026-06-24&quot;:3.74},{&quot;2026-06-25&quot;:3.74},{&quot;2026-06-26&quot;:3.74},{&quot;2026-06-27&quot;:3.74},{&quot;2026-06-28&quot;:3.74},{&quot;2026-06-29&quot;:3.74},{&quot;2026-06-30&quot;:3.74},{&quot;2026-07-01&quot;:3.75},{&quot;2026-07-02&quot;:3.82},{&quot;2026-07-03&quot;:3.82},{&quot;2026-07-04&quot;:3.82},{&quot;2026-07-05&quot;:3.82},{&quot;2026-07-06&quot;:3.82},{&quot;2026-07-07&quot;:3.75},{&quot;2026-07-08&quot;:3.75},{&quot;2026-07-09&quot;:3.75},{&quot;2026-07-10&quot;:3.75},{&quot;2026-07-11&quot;:3.75},{&quot;2026-07-12&quot;:3.75},{&quot;2026-07-13&quot;:3.75},{&quot;2026-07-14&quot;:3.75},{&quot;2026-07-15&quot;:3.75},{&quot;2026-07-16&quot;:3.63},{&quot;2026-07-17&quot;:3.63},{&quot;2026-07-18&quot;:3.63},{&quot;2026-07-19&quot;:3.63},{&quot;2026-07-20&quot;:3.63},{&quot;2026-07-21&quot;:3.63},{&quot;2026-07-23&quot;:3.63},{&quot;2026-07-25&quot;:3.63},{&quot;2026-07-26&quot;:3.63},{&quot;2026-07-27&quot;:3.63},{&quot;2026-07-29&quot;:3.63},{&quot;2026-07-30&quot;:3.63},{&quot;2026-07-31&quot;:3.69},{&quot;2026-08-01&quot;:3.69},{&quot;2026-08-02&quot;:3.69},{&quot;2026-08-03&quot;:3.65},{&quot;2026-08-04&quot;:3.61},{&quot;2026-08-05&quot;:3.67},{&quot;2026-08-07&quot;:3.57},{&quot;2026-08-08&quot;:3.45},{&quot;2026-08-09&quot;:3.45},{&quot;2026-08-10&quot;:3.45},{&quot;2026-08-11&quot;:3.45},{&quot;2026-08-12&quot;:3.45},{&quot;2026-08-13&quot;:3.39},{&quot;2026-08-14&quot;:3.39},{&quot;2026-08-15&quot;:3.39},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.39},{&quot;2026-08-19&quot;:3.27},{&quot;2026-08-20&quot;:3.27},{&quot;2026-08-21&quot;:3.27},{&quot;2026-08-22&quot;:3.27},{&quot;2026-08-23&quot;:3.27},{&quot;2026-08-24&quot;:3.27},{&quot;2026-08-25&quot;:3.27},{&quot;2026-08-26&quot;:3.27},{&quot;2026-08-27&quot;:3.27},{&quot;2026-08-28&quot;:3.27},{&quot;2026-08-29&quot;:3.27},{&quot;2026-08-30&quot;:3.27},{&quot;2026-08-31&quot;:3.27},{&quot;2026-09-01&quot;:3.27},{&quot;2026-09-02&quot;:3.27},{&quot;2026-09-03&quot;:3.27},{&quot;2026-09-04&quot;:3.28},{&quot;2026-09-05&quot;:3.34},{&quot;2026-09-06&quot;:3.34},{&quot;2026-09-07&quot;:3.34},{&quot;2026-09-08&quot;:3.34},{&quot;2026-09-09&quot;:3.34},{&quot;2026-09-10&quot;:3.34},{&quot;2026-09-11&quot;:3.34},{&quot;2026-09-12&quot;:3.34},{&quot;2026-09-13&quot;:3.34}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.78},{&quot;2026-06-13&quot;:1.77},{&quot;2026-06-14&quot;:1.84},{&quot;2026-06-15&quot;:1.8},{&quot;2026-06-16&quot;:1.83},{&quot;2026-06-17&quot;:1.94},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.82},{&quot;2026-06-20&quot;:1.87},{&quot;2026-06-21&quot;:1.69},{&quot;2026-06-22&quot;:1.49},{&quot;2026-06-23&quot;:1.49},{&quot;2026-06-24&quot;:1.6},{&quot;2026-06-25&quot;:1.57},{&quot;2026-06-26&quot;:1.83},{&quot;2026-06-27&quot;:1.81},{&quot;2026-06-28&quot;:1.81},{&quot;2026-06-29&quot;:2.01},{&quot;2026-06-30&quot;:1.9},{&quot;2026-07-01&quot;:1.77},{&quot;2026-07-02&quot;:1.72},{&quot;2026-07-03&quot;:1.67},{&quot;2026-07-04&quot;:1.76},{&quot;2026-07-05&quot;:1.81},{&quot;2026-07-06&quot;:1.94},{&quot;2026-07-07&quot;:2.01},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.36},{&quot;2026-07-10&quot;:2.39},{&quot;2026-07-11&quot;:2.3},{&quot;2026-07-12&quot;:2.32},{&quot;2026-07-13&quot;:2.39},{&quot;2026-07-14&quot;:2.39},{&quot;2026-07-15&quot;:2.34},{&quot;2026-07-16&quot;:2.4},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.34},{&quot;2026-07-19&quot;:2.27},{&quot;2026-07-20&quot;:2.32},{&quot;2026-07-21&quot;:2.39},{&quot;2026-07-23&quot;:2.3},{&quot;2026-07-25&quot;:2.53},{&quot;2026-07-26&quot;:2.64},{&quot;2026-07-27&quot;:2.6},{&quot;2026-07-29&quot;:2.72},{&quot;2026-07-30&quot;:2.58},{&quot;2026-07-31&quot;:2.45},{&quot;2026-08-01&quot;:2.43},{&quot;2026-08-02&quot;:2.31},{&quot;2026-08-03&quot;:2.31},{&quot;2026-08-04&quot;:2.1},{&quot;2026-08-05&quot;:1.94},{&quot;2026-08-07&quot;:2.04},{&quot;2026-08-08&quot;:2.03},{&quot;2026-08-09&quot;:2.06},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:2.32},{&quot;2026-08-12&quot;:2.58},{&quot;2026-08-13&quot;:2.73},{&quot;2026-08-14&quot;:2.73},{&quot;2026-08-15&quot;:2.76},{&quot;2026-08-16&quot;:2.61},{&quot;2026-08-17&quot;:2.68},{&quot;2026-08-18&quot;:2.64},{&quot;2026-08-19&quot;:2.69},{&quot;2026-08-20&quot;:2.69},{&quot;2026-08-21&quot;:2.42},{&quot;2026-08-22&quot;:2.47},{&quot;2026-08-23&quot;:2.47},{&quot;2026-08-24&quot;:2.47},{&quot;2026-08-25&quot;:2.47},{&quot;2026-08-26&quot;:2.51},{&quot;2026-08-27&quot;:2.51},{&quot;2026-08-28&quot;:2.45},{&quot;2026-08-29&quot;:2.45},{&quot;2026-08-30&quot;:2.3},{&quot;2026-08-31&quot;:2.24},{&quot;2026-09-01&quot;:2.24},{&quot;2026-09-02&quot;:2.21},{&quot;2026-09-03&quot;:2.16},{&quot;2026-09-04&quot;:2.34},{&quot;2026-09-05&quot;:2.5},{&quot;2026-09-06&quot;:2.54},{&quot;2026-09-07&quot;:2.64},{&quot;2026-09-08&quot;:2.69},{&quot;2026-09-09&quot;:2.69},{&quot;2026-09-10&quot;:2.7},{&quot;2026-09-11&quot;:2.88},{&quot;2026-09-12&quot;:2.88},{&quot;2026-09-13&quot;:2.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="94787"
  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-fca 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">
            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">
            2 owned
          </div>

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

          <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="Counterspell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e1e48b21-1a4f-4708-a4b4-e2e296df924c.jpg?1783906394" />

        <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">
            uncommon
          </span>

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Counterspell" src="https://cards.scryfall.io/large/front/e/1/e1e48b21-1a4f-4708-a4b4-e2e296df924c.jpg?1783906394" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:5.41},{&quot;2026-06-16&quot;:5.41},{&quot;2026-06-17&quot;:5.36},{&quot;2026-06-18&quot;:5.37},{&quot;2026-06-19&quot;:5.3},{&quot;2026-06-20&quot;:5.31},{&quot;2026-06-21&quot;:5.31},{&quot;2026-06-22&quot;:5.23},{&quot;2026-06-23&quot;:5.23},{&quot;2026-06-24&quot;:5.24},{&quot;2026-06-25&quot;:5.26},{&quot;2026-06-26&quot;:5.26},{&quot;2026-06-27&quot;:5.33},{&quot;2026-06-28&quot;:5.32},{&quot;2026-06-29&quot;:5.41},{&quot;2026-06-30&quot;:5.39},{&quot;2026-07-01&quot;:5.46},{&quot;2026-07-02&quot;:5.37},{&quot;2026-07-03&quot;:5.35},{&quot;2026-07-04&quot;:5.38},{&quot;2026-07-05&quot;:5.38},{&quot;2026-07-06&quot;:5.43},{&quot;2026-07-07&quot;:5.43},{&quot;2026-07-08&quot;:5.43},{&quot;2026-07-09&quot;:5.56},{&quot;2026-07-10&quot;:5.46},{&quot;2026-07-11&quot;:5.46},{&quot;2026-07-12&quot;:5.46},{&quot;2026-07-13&quot;:5.28},{&quot;2026-07-14&quot;:5.26},{&quot;2026-07-15&quot;:5.15},{&quot;2026-07-16&quot;:5.08},{&quot;2026-07-17&quot;:5.1},{&quot;2026-07-18&quot;:5.11},{&quot;2026-07-19&quot;:5.11},{&quot;2026-07-20&quot;:5.15},{&quot;2026-07-21&quot;:5.15},{&quot;2026-07-22&quot;:5.14},{&quot;2026-07-23&quot;:5.06},{&quot;2026-07-24&quot;:5.01},{&quot;2026-07-25&quot;:5.01},{&quot;2026-07-26&quot;:5.05},{&quot;2026-07-27&quot;:5.11},{&quot;2026-07-28&quot;:5.07},{&quot;2026-07-29&quot;:5.13},{&quot;2026-07-30&quot;:5.17},{&quot;2026-07-31&quot;:5.14},{&quot;2026-08-01&quot;:5.14},{&quot;2026-08-02&quot;:5.14},{&quot;2026-08-03&quot;:5.14},{&quot;2026-08-04&quot;:5.14},{&quot;2026-08-05&quot;:5.16},{&quot;2026-08-07&quot;:5.2},{&quot;2026-08-08&quot;:5.18},{&quot;2026-08-09&quot;:5.14},{&quot;2026-08-10&quot;:5.06},{&quot;2026-08-11&quot;:5.08},{&quot;2026-08-12&quot;:5.18},{&quot;2026-08-13&quot;:5.09},{&quot;2026-08-14&quot;:5.15},{&quot;2026-08-15&quot;:5.1},{&quot;2026-08-16&quot;:5.21},{&quot;2026-08-17&quot;:5.21},{&quot;2026-08-18&quot;:5.03},{&quot;2026-08-19&quot;:5.06},{&quot;2026-08-20&quot;:5.13},{&quot;2026-08-21&quot;:5.13},{&quot;2026-08-22&quot;:5.16},{&quot;2026-08-23&quot;:5.13},{&quot;2026-08-24&quot;:5.15},{&quot;2026-08-25&quot;:5.15},{&quot;2026-08-26&quot;:5.14},{&quot;2026-08-27&quot;:5.03},{&quot;2026-08-28&quot;:5.05},{&quot;2026-08-29&quot;:5.05},{&quot;2026-08-30&quot;:4.88},{&quot;2026-08-31&quot;:4.94},{&quot;2026-09-01&quot;:5.04},{&quot;2026-09-02&quot;:5.04},{&quot;2026-09-03&quot;:5.03},{&quot;2026-09-04&quot;:5.03},{&quot;2026-09-05&quot;:5.03},{&quot;2026-09-06&quot;:4.94},{&quot;2026-09-07&quot;:4.98},{&quot;2026-09-08&quot;:5.14},{&quot;2026-09-09&quot;:5.15},{&quot;2026-09-10&quot;:5.12},{&quot;2026-09-11&quot;:5.14},{&quot;2026-09-12&quot;:5.14},{&quot;2026-09-13&quot;:5.27}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.96},{&quot;2026-06-16&quot;:2.27},{&quot;2026-06-17&quot;:2.44},{&quot;2026-06-18&quot;:2.5},{&quot;2026-06-19&quot;:2.33},{&quot;2026-06-20&quot;:2.09},{&quot;2026-06-21&quot;:2.16},{&quot;2026-06-22&quot;:2.18},{&quot;2026-06-23&quot;:2.05},{&quot;2026-06-24&quot;:2.16},{&quot;2026-06-25&quot;:2.03},{&quot;2026-06-26&quot;:1.88},{&quot;2026-06-27&quot;:2.18},{&quot;2026-06-28&quot;:1.99},{&quot;2026-06-29&quot;:2.08},{&quot;2026-06-30&quot;:2.16},{&quot;2026-07-01&quot;:2.49},{&quot;2026-07-02&quot;:2.54},{&quot;2026-07-03&quot;:2.45},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.14},{&quot;2026-07-06&quot;:2.16},{&quot;2026-07-07&quot;:2.45},{&quot;2026-07-08&quot;:2.4},{&quot;2026-07-09&quot;:2.42},{&quot;2026-07-10&quot;:2.06},{&quot;2026-07-11&quot;:2.06},{&quot;2026-07-12&quot;:2.02},{&quot;2026-07-13&quot;:2.05},{&quot;2026-07-14&quot;:2.26},{&quot;2026-07-15&quot;:2.18},{&quot;2026-07-16&quot;:1.94},{&quot;2026-07-17&quot;:1.88},{&quot;2026-07-18&quot;:2.44},{&quot;2026-07-19&quot;:2.38},{&quot;2026-07-20&quot;:2.18},{&quot;2026-07-21&quot;:2.23},{&quot;2026-07-22&quot;:2.51},{&quot;2026-07-23&quot;:2.14},{&quot;2026-07-24&quot;:2.27},{&quot;2026-07-25&quot;:2.27},{&quot;2026-07-26&quot;:2.48},{&quot;2026-07-27&quot;:2.68},{&quot;2026-07-28&quot;:2.58},{&quot;2026-07-29&quot;:2.35},{&quot;2026-07-30&quot;:2.17},{&quot;2026-07-31&quot;:2.43},{&quot;2026-08-01&quot;:2.63},{&quot;2026-08-02&quot;:3.1},{&quot;2026-08-03&quot;:3.01},{&quot;2026-08-04&quot;:2.88},{&quot;2026-08-05&quot;:2.26},{&quot;2026-08-07&quot;:2.24},{&quot;2026-08-08&quot;:2.51},{&quot;2026-08-09&quot;:2.53},{&quot;2026-08-10&quot;:2.62},{&quot;2026-08-11&quot;:2.51},{&quot;2026-08-12&quot;:2.42},{&quot;2026-08-13&quot;:2.46},{&quot;2026-08-14&quot;:2.45},{&quot;2026-08-15&quot;:2.37},{&quot;2026-08-16&quot;:2.64},{&quot;2026-08-17&quot;:2.4},{&quot;2026-08-18&quot;:2.2},{&quot;2026-08-19&quot;:1.83},{&quot;2026-08-20&quot;:2.2},{&quot;2026-08-21&quot;:2.49},{&quot;2026-08-22&quot;:2.39},{&quot;2026-08-23&quot;:2.47},{&quot;2026-08-24&quot;:2.77},{&quot;2026-08-25&quot;:2.69},{&quot;2026-08-26&quot;:2.44},{&quot;2026-08-27&quot;:2.44},{&quot;2026-08-28&quot;:2.66},{&quot;2026-08-29&quot;:2.66},{&quot;2026-08-30&quot;:2.78},{&quot;2026-08-31&quot;:2.76},{&quot;2026-09-01&quot;:2.6},{&quot;2026-09-02&quot;:2.51},{&quot;2026-09-03&quot;:2.59},{&quot;2026-09-04&quot;:2.57},{&quot;2026-09-05&quot;:2.51},{&quot;2026-09-06&quot;:2.32},{&quot;2026-09-07&quot;:2.41},{&quot;2026-09-08&quot;:2.53},{&quot;2026-09-09&quot;:2.66},{&quot;2026-09-10&quot;:2.82},{&quot;2026-09-11&quot;:2.8},{&quot;2026-09-12&quot;:2.78},{&quot;2026-09-13&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="9467"
  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-c18 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">
            Ponder
        </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">
            $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="Ponder" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/1/91382955-bcfc-4fb6-8cce-dc107e5b4c32.jpg?1783934309" />

        <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">
            Ponder
        </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-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="Ponder" src="https://cards.scryfall.io/large/front/9/1/91382955-bcfc-4fb6-8cce-dc107e5b4c32.jpg?1783934309" />
    </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-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">$2.30</span>
              <span class="text-xs text-grey-text">Credit: $2.99</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.77},{&quot;2026-06-17&quot;:1.76},{&quot;2026-06-18&quot;:1.76},{&quot;2026-06-19&quot;:1.76},{&quot;2026-06-20&quot;:1.76},{&quot;2026-06-21&quot;:1.78},{&quot;2026-06-22&quot;:1.8},{&quot;2026-06-23&quot;:1.8},{&quot;2026-06-24&quot;:1.8},{&quot;2026-06-25&quot;:1.8},{&quot;2026-06-26&quot;:1.81},{&quot;2026-06-27&quot;:1.81},{&quot;2026-06-28&quot;:1.81},{&quot;2026-06-29&quot;:1.81},{&quot;2026-06-30&quot;:1.8},{&quot;2026-07-01&quot;:1.8},{&quot;2026-07-02&quot;:1.82},{&quot;2026-07-03&quot;:1.82},{&quot;2026-07-04&quot;:1.82},{&quot;2026-07-05&quot;:1.82},{&quot;2026-07-06&quot;:1.82},{&quot;2026-07-07&quot;:1.82},{&quot;2026-07-08&quot;:1.82},{&quot;2026-07-09&quot;:1.82},{&quot;2026-07-10&quot;:1.82},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.82},{&quot;2026-07-13&quot;:1.82},{&quot;2026-07-14&quot;:1.82},{&quot;2026-07-15&quot;:1.82},{&quot;2026-07-16&quot;:1.8},{&quot;2026-07-17&quot;:1.81},{&quot;2026-07-18&quot;:1.81},{&quot;2026-07-19&quot;:1.81},{&quot;2026-07-20&quot;:1.81},{&quot;2026-07-21&quot;:1.8},{&quot;2026-07-22&quot;:1.82},{&quot;2026-07-23&quot;:1.88},{&quot;2026-07-24&quot;:1.88},{&quot;2026-07-25&quot;:1.88},{&quot;2026-07-26&quot;:1.88},{&quot;2026-07-27&quot;:1.88},{&quot;2026-07-28&quot;:1.88},{&quot;2026-07-29&quot;:1.88},{&quot;2026-07-30&quot;:1.89},{&quot;2026-07-31&quot;:1.89},{&quot;2026-08-01&quot;:1.89},{&quot;2026-08-02&quot;:1.89},{&quot;2026-08-03&quot;:2.08},{&quot;2026-08-04&quot;:2.08},{&quot;2026-08-05&quot;:2.11},{&quot;2026-08-07&quot;:2.13},{&quot;2026-08-08&quot;:2.13},{&quot;2026-08-09&quot;:2.13},{&quot;2026-08-10&quot;:2.13},{&quot;2026-08-11&quot;:2.13},{&quot;2026-08-12&quot;:2.16},{&quot;2026-08-13&quot;:2.16},{&quot;2026-08-14&quot;:2.16},{&quot;2026-08-15&quot;:2.16},{&quot;2026-08-16&quot;:2.16},{&quot;2026-08-17&quot;:2.16},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.22},{&quot;2026-08-20&quot;:2.22},{&quot;2026-08-21&quot;:2.21},{&quot;2026-08-22&quot;:2.22},{&quot;2026-08-23&quot;:2.22},{&quot;2026-08-24&quot;:2.22},{&quot;2026-08-25&quot;:2.22},{&quot;2026-08-26&quot;:2.21},{&quot;2026-08-27&quot;:2.22},{&quot;2026-08-28&quot;:2.22},{&quot;2026-08-29&quot;:2.22},{&quot;2026-08-30&quot;:2.23},{&quot;2026-08-31&quot;:2.23},{&quot;2026-09-01&quot;:2.23},{&quot;2026-09-02&quot;:2.25},{&quot;2026-09-03&quot;:2.25},{&quot;2026-09-04&quot;:2.25},{&quot;2026-09-05&quot;:2.25},{&quot;2026-09-06&quot;:2.25},{&quot;2026-09-07&quot;:2.25},{&quot;2026-09-08&quot;:2.28},{&quot;2026-09-09&quot;:2.28},{&quot;2026-09-10&quot;:2.3},{&quot;2026-09-11&quot;:2.32},{&quot;2026-09-12&quot;:2.32},{&quot;2026-09-13&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="86971"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Brainstorm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/4/54a9a943-0831-49ae-bbfb-3e6a9f57160e.jpg?1783931822" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Brainstorm" src="https://cards.scryfall.io/large/front/5/4/54a9a943-0831-49ae-bbfb-3e6a9f57160e.jpg?1783931822" />
    </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.32
              </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.40</span>
              <span class="text-xs text-grey-text">Credit: $1.82</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-15&quot;:2.13},{&quot;2026-06-16&quot;:2.13},{&quot;2026-06-17&quot;:2.13},{&quot;2026-06-18&quot;:2.13},{&quot;2026-06-19&quot;:2.13},{&quot;2026-06-20&quot;:2.17},{&quot;2026-06-21&quot;:2.13},{&quot;2026-06-22&quot;:2.1},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.25},{&quot;2026-06-25&quot;:2.25},{&quot;2026-06-26&quot;:2.25},{&quot;2026-06-27&quot;:2.25},{&quot;2026-06-28&quot;:2.28},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.26},{&quot;2026-07-01&quot;:2.2},{&quot;2026-07-02&quot;:2.22},{&quot;2026-07-03&quot;:2.2},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.2},{&quot;2026-07-06&quot;:2.2},{&quot;2026-07-07&quot;:2.2},{&quot;2026-07-08&quot;:2.2},{&quot;2026-07-09&quot;:2.2},{&quot;2026-07-10&quot;:2.2},{&quot;2026-07-11&quot;:2.2},{&quot;2026-07-12&quot;:2.2},{&quot;2026-07-13&quot;:2.2},{&quot;2026-07-14&quot;:2.2},{&quot;2026-07-15&quot;:2.2},{&quot;2026-07-16&quot;:2.2},{&quot;2026-07-17&quot;:2.2},{&quot;2026-07-18&quot;:2.17},{&quot;2026-07-19&quot;:2.14},{&quot;2026-07-20&quot;:2.14},{&quot;2026-07-21&quot;:2.25},{&quot;2026-07-22&quot;:2.25},{&quot;2026-07-23&quot;:2.17},{&quot;2026-07-24&quot;:2.17},{&quot;2026-07-25&quot;:2.17},{&quot;2026-07-26&quot;:2.17},{&quot;2026-07-27&quot;:2.17},{&quot;2026-07-28&quot;:2.17},{&quot;2026-07-29&quot;:2.17},{&quot;2026-07-30&quot;:2.17},{&quot;2026-07-31&quot;:2.18},{&quot;2026-08-01&quot;:2.18},{&quot;2026-08-02&quot;:2.18},{&quot;2026-08-03&quot;:2.18},{&quot;2026-08-04&quot;:2.18},{&quot;2026-08-05&quot;:2.18},{&quot;2026-08-07&quot;:2.1},{&quot;2026-08-08&quot;:2.14},{&quot;2026-08-09&quot;:2.14},{&quot;2026-08-10&quot;:2.09},{&quot;2026-08-11&quot;:2.11},{&quot;2026-08-12&quot;:2.11},{&quot;2026-08-13&quot;:2.11},{&quot;2026-08-14&quot;:2.12},{&quot;2026-08-15&quot;:2.12},{&quot;2026-08-16&quot;:2.12},{&quot;2026-08-17&quot;:2.06},{&quot;2026-08-18&quot;:2.04},{&quot;2026-08-19&quot;:2.03},{&quot;2026-08-20&quot;:2.09},{&quot;2026-08-21&quot;:2.13},{&quot;2026-08-22&quot;:2.13},{&quot;2026-08-23&quot;:2.19},{&quot;2026-08-24&quot;:2.19},{&quot;2026-08-25&quot;:2.19},{&quot;2026-08-26&quot;:2.19},{&quot;2026-08-27&quot;:2.19},{&quot;2026-08-28&quot;:2.19},{&quot;2026-08-29&quot;:2.19},{&quot;2026-08-30&quot;:2.21},{&quot;2026-08-31&quot;:2.21},{&quot;2026-09-01&quot;:2.28},{&quot;2026-09-02&quot;:2.25},{&quot;2026-09-03&quot;:2.25},{&quot;2026-09-04&quot;:2.25},{&quot;2026-09-05&quot;:2.25},{&quot;2026-09-06&quot;:2.36},{&quot;2026-09-07&quot;:2.36},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.32},{&quot;2026-09-10&quot;:2.32},{&quot;2026-09-11&quot;:2.32},{&quot;2026-09-12&quot;:2.32},{&quot;2026-09-13&quot;:2.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="53149"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Counterbalance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95949438-884d-420d-b7c4-972327ca486b.jpg?1783910571" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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="Counterbalance" src="https://cards.scryfall.io/large/front/9/5/95949438-884d-420d-b7c4-972327ca486b.jpg?1783910571" />
    </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.30
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:23.44},{&quot;2026-06-14&quot;:23.44},{&quot;2026-06-15&quot;:23.44},{&quot;2026-06-16&quot;:23.44},{&quot;2026-06-17&quot;:23.44},{&quot;2026-06-18&quot;:23.44},{&quot;2026-06-19&quot;:23.36},{&quot;2026-06-20&quot;:23.36},{&quot;2026-06-21&quot;:23.36},{&quot;2026-06-22&quot;:23.36},{&quot;2026-06-23&quot;:23.36},{&quot;2026-06-24&quot;:23.36},{&quot;2026-06-25&quot;:23.36},{&quot;2026-06-26&quot;:23.36},{&quot;2026-06-27&quot;:23.36},{&quot;2026-06-28&quot;:23.44},{&quot;2026-06-29&quot;:23.44},{&quot;2026-06-30&quot;:23.44},{&quot;2026-07-01&quot;:23.48},{&quot;2026-07-02&quot;:23.48},{&quot;2026-07-03&quot;:23.48},{&quot;2026-07-04&quot;:23.48},{&quot;2026-07-05&quot;:23.48},{&quot;2026-07-06&quot;:23.48},{&quot;2026-07-07&quot;:23.48},{&quot;2026-07-08&quot;:23.48},{&quot;2026-07-09&quot;:23.48},{&quot;2026-07-10&quot;:23.48},{&quot;2026-07-11&quot;:23.48},{&quot;2026-07-12&quot;:23.48},{&quot;2026-07-13&quot;:23.48},{&quot;2026-07-14&quot;:23.48},{&quot;2026-07-15&quot;:23.48},{&quot;2026-07-16&quot;:23.48},{&quot;2026-07-17&quot;:23.48},{&quot;2026-07-18&quot;:23.49},{&quot;2026-07-19&quot;:23.49},{&quot;2026-07-20&quot;:23.49},{&quot;2026-07-21&quot;:23.49},{&quot;2026-07-23&quot;:23.49},{&quot;2026-07-25&quot;:23.49},{&quot;2026-07-26&quot;:23.49},{&quot;2026-07-27&quot;:23.51},{&quot;2026-07-28&quot;:23.51},{&quot;2026-07-29&quot;:23.51},{&quot;2026-07-30&quot;:23.51},{&quot;2026-07-31&quot;:23.51},{&quot;2026-08-01&quot;:23.51},{&quot;2026-08-02&quot;:23.51},{&quot;2026-08-03&quot;:23.51},{&quot;2026-08-04&quot;:23.51},{&quot;2026-08-05&quot;:23.51},{&quot;2026-08-07&quot;:23.46},{&quot;2026-08-08&quot;:23.46},{&quot;2026-08-09&quot;:23.46},{&quot;2026-08-10&quot;:23.46},{&quot;2026-08-11&quot;:23.46},{&quot;2026-08-12&quot;:23.46},{&quot;2026-08-13&quot;:23.46},{&quot;2026-08-14&quot;:23.46},{&quot;2026-08-15&quot;:23.5},{&quot;2026-08-16&quot;:23.5},{&quot;2026-08-17&quot;:23.5},{&quot;2026-08-18&quot;:23.71},{&quot;2026-08-19&quot;:23.71},{&quot;2026-08-20&quot;:23.71},{&quot;2026-08-21&quot;:23.61},{&quot;2026-08-22&quot;:23.96},{&quot;2026-08-23&quot;:23.96},{&quot;2026-08-24&quot;:23.96},{&quot;2026-08-25&quot;:23.96},{&quot;2026-08-26&quot;:23.96},{&quot;2026-08-27&quot;:23.96},{&quot;2026-08-28&quot;:23.96},{&quot;2026-08-29&quot;:23.96},{&quot;2026-08-30&quot;:23.96},{&quot;2026-08-31&quot;:23.96},{&quot;2026-09-01&quot;:23.96},{&quot;2026-09-02&quot;:23.96},{&quot;2026-09-03&quot;:24.03},{&quot;2026-09-04&quot;:24.03},{&quot;2026-09-05&quot;:24.03},{&quot;2026-09-06&quot;:24.03},{&quot;2026-09-07&quot;:24.03},{&quot;2026-09-08&quot;:24.03},{&quot;2026-09-09&quot;:24.03},{&quot;2026-09-10&quot;:24.03},{&quot;2026-09-11&quot;:24.03},{&quot;2026-09-12&quot;:24.03},{&quot;2026-09-13&quot;:24.03}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.59},{&quot;2026-06-14&quot;:3.62},{&quot;2026-06-15&quot;:3.68},{&quot;2026-06-16&quot;:3.68},{&quot;2026-06-17&quot;:3.66},{&quot;2026-06-18&quot;:3.71},{&quot;2026-06-19&quot;:3.75},{&quot;2026-06-20&quot;:3.8},{&quot;2026-06-21&quot;:3.81},{&quot;2026-06-22&quot;:3.81},{&quot;2026-06-23&quot;:3.79},{&quot;2026-06-24&quot;:3.78},{&quot;2026-06-25&quot;:3.71},{&quot;2026-06-26&quot;:3.71},{&quot;2026-06-27&quot;:3.71},{&quot;2026-06-28&quot;:3.67},{&quot;2026-06-29&quot;:3.66},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.73},{&quot;2026-07-02&quot;:3.69},{&quot;2026-07-03&quot;:3.69},{&quot;2026-07-04&quot;:3.66},{&quot;2026-07-05&quot;:3.66},{&quot;2026-07-06&quot;:3.66},{&quot;2026-07-07&quot;:3.75},{&quot;2026-07-08&quot;:3.79},{&quot;2026-07-09&quot;:3.65},{&quot;2026-07-10&quot;:3.58},{&quot;2026-07-11&quot;:3.58},{&quot;2026-07-12&quot;:3.58},{&quot;2026-07-13&quot;:3.58},{&quot;2026-07-14&quot;:3.61},{&quot;2026-07-15&quot;:3.63},{&quot;2026-07-16&quot;:3.77},{&quot;2026-07-17&quot;:3.76},{&quot;2026-07-18&quot;:3.64},{&quot;2026-07-19&quot;:3.7},{&quot;2026-07-20&quot;:3.73},{&quot;2026-07-21&quot;:3.74},{&quot;2026-07-23&quot;:3.73},{&quot;2026-07-25&quot;:3.89},{&quot;2026-07-26&quot;:3.84},{&quot;2026-07-27&quot;:3.81},{&quot;2026-07-28&quot;:3.72},{&quot;2026-07-29&quot;:3.72},{&quot;2026-07-30&quot;:3.72},{&quot;2026-07-31&quot;:3.67},{&quot;2026-08-01&quot;:3.7},{&quot;2026-08-02&quot;:3.69},{&quot;2026-08-03&quot;:3.75},{&quot;2026-08-04&quot;:3.66},{&quot;2026-08-05&quot;:3.61},{&quot;2026-08-07&quot;:3.52},{&quot;2026-08-08&quot;:3.52},{&quot;2026-08-09&quot;:3.39},{&quot;2026-08-10&quot;:3.39},{&quot;2026-08-11&quot;:3.46},{&quot;2026-08-12&quot;:3.64},{&quot;2026-08-13&quot;:3.6},{&quot;2026-08-14&quot;:3.48},{&quot;2026-08-15&quot;:3.48},{&quot;2026-08-16&quot;:3.41},{&quot;2026-08-17&quot;:3.33},{&quot;2026-08-18&quot;:3.01},{&quot;2026-08-19&quot;:3.07},{&quot;2026-08-20&quot;:3.07},{&quot;2026-08-21&quot;:2.99},{&quot;2026-08-22&quot;:2.91},{&quot;2026-08-23&quot;:2.91},{&quot;2026-08-24&quot;:2.85},{&quot;2026-08-25&quot;:2.69},{&quot;2026-08-26&quot;:2.53},{&quot;2026-08-27&quot;:2.5},{&quot;2026-08-28&quot;:2.43},{&quot;2026-08-29&quot;:2.43},{&quot;2026-08-30&quot;:2.54},{&quot;2026-08-31&quot;:2.61},{&quot;2026-09-01&quot;:2.61},{&quot;2026-09-02&quot;:2.68},{&quot;2026-09-03&quot;:2.58},{&quot;2026-09-04&quot;:2.58},{&quot;2026-09-05&quot;:2.66},{&quot;2026-09-06&quot;:2.66},{&quot;2026-09-07&quot;:2.66},{&quot;2026-09-08&quot;:2.53},{&quot;2026-09-09&quot;:2.42},{&quot;2026-09-10&quot;:2.39},{&quot;2026-09-11&quot;:2.39},{&quot;2026-09-12&quot;:2.39},{&quot;2026-09-13&quot;:2.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="48933"
  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-mh1 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">
            Changeling Outcast
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Changeling Outcast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08151d00-513a-4957-aa16-01c0f0245112.jpg?1783933130" />

        <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">
            Changeling Outcast
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Changeling Outcast" src="https://cards.scryfall.io/large/front/0/8/08151d00-513a-4957-aa16-01c0f0245112.jpg?1783933130" />
    </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">
            5
          </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.48
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:5.77},{&quot;2026-06-16&quot;:5.77},{&quot;2026-06-17&quot;:5.77},{&quot;2026-06-18&quot;:5.77},{&quot;2026-06-19&quot;:5.77},{&quot;2026-06-20&quot;:5.77},{&quot;2026-06-21&quot;:5.77},{&quot;2026-06-22&quot;:5.77},{&quot;2026-06-23&quot;:5.77},{&quot;2026-06-24&quot;:5.77},{&quot;2026-06-25&quot;:5.77},{&quot;2026-06-26&quot;:5.77},{&quot;2026-06-27&quot;:5.77},{&quot;2026-06-28&quot;:5.83},{&quot;2026-06-29&quot;:5.83},{&quot;2026-06-30&quot;:5.83},{&quot;2026-07-01&quot;:5.83},{&quot;2026-07-02&quot;:5.83},{&quot;2026-07-03&quot;:5.83},{&quot;2026-07-04&quot;:5.83},{&quot;2026-07-05&quot;:5.83},{&quot;2026-07-06&quot;:5.83},{&quot;2026-07-07&quot;:5.83},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:5.89},{&quot;2026-07-10&quot;:5.89},{&quot;2026-07-11&quot;:5.89},{&quot;2026-07-12&quot;:5.89},{&quot;2026-07-13&quot;:5.89},{&quot;2026-07-14&quot;:5.89},{&quot;2026-07-15&quot;:5.89},{&quot;2026-07-16&quot;:5.89},{&quot;2026-07-17&quot;:5.94},{&quot;2026-07-18&quot;:5.94},{&quot;2026-07-19&quot;:5.94},{&quot;2026-07-20&quot;:5.94},{&quot;2026-07-21&quot;:5.94},{&quot;2026-07-22&quot;:5.94},{&quot;2026-07-23&quot;:5.94},{&quot;2026-07-24&quot;:5.94},{&quot;2026-07-25&quot;:5.94},{&quot;2026-07-26&quot;:5.94},{&quot;2026-07-27&quot;:5.94},{&quot;2026-07-28&quot;:5.94},{&quot;2026-07-29&quot;:5.94},{&quot;2026-07-30&quot;:5.94},{&quot;2026-07-31&quot;:5.94},{&quot;2026-08-01&quot;:5.94},{&quot;2026-08-02&quot;:5.94},{&quot;2026-08-03&quot;:5.94},{&quot;2026-08-04&quot;:5.98},{&quot;2026-08-05&quot;:5.99},{&quot;2026-08-07&quot;:5.99},{&quot;2026-08-08&quot;:5.99},{&quot;2026-08-09&quot;:5.99},{&quot;2026-08-10&quot;:5.99},{&quot;2026-08-11&quot;:5.99},{&quot;2026-08-12&quot;:5.99},{&quot;2026-08-13&quot;:5.99},{&quot;2026-08-14&quot;:5.99},{&quot;2026-08-15&quot;:5.99},{&quot;2026-08-16&quot;:5.99},{&quot;2026-08-17&quot;:6.06},{&quot;2026-08-18&quot;:6.09},{&quot;2026-08-19&quot;:6.09},{&quot;2026-08-20&quot;:6.15},{&quot;2026-08-21&quot;:6.16},{&quot;2026-08-22&quot;:6.16},{&quot;2026-08-23&quot;:6.16},{&quot;2026-08-24&quot;:6.16},{&quot;2026-08-25&quot;:6.17},{&quot;2026-08-26&quot;:6.17},{&quot;2026-08-27&quot;:6.17},{&quot;2026-08-28&quot;:6.17},{&quot;2026-08-29&quot;:6.17},{&quot;2026-08-30&quot;:6.17},{&quot;2026-08-31&quot;:6.22},{&quot;2026-09-01&quot;:6.22},{&quot;2026-09-02&quot;:6.22},{&quot;2026-09-03&quot;:6.22},{&quot;2026-09-04&quot;:6.22},{&quot;2026-09-05&quot;:6.22},{&quot;2026-09-06&quot;:6.22},{&quot;2026-09-07&quot;:6.24},{&quot;2026-09-08&quot;:6.31},{&quot;2026-09-09&quot;:6.43},{&quot;2026-09-10&quot;:6.44},{&quot;2026-09-11&quot;:6.43},{&quot;2026-09-12&quot;:6.43},{&quot;2026-09-13&quot;:6.43}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.91},{&quot;2026-06-16&quot;:1.85},{&quot;2026-06-17&quot;:1.74},{&quot;2026-06-18&quot;:1.71},{&quot;2026-06-19&quot;:1.56},{&quot;2026-06-20&quot;:1.62},{&quot;2026-06-21&quot;:1.63},{&quot;2026-06-22&quot;:1.79},{&quot;2026-06-23&quot;:1.8},{&quot;2026-06-24&quot;:1.79},{&quot;2026-06-25&quot;:1.77},{&quot;2026-06-26&quot;:1.76},{&quot;2026-06-27&quot;:1.76},{&quot;2026-06-28&quot;:1.78},{&quot;2026-06-29&quot;:1.85},{&quot;2026-06-30&quot;:1.86},{&quot;2026-07-01&quot;:1.83},{&quot;2026-07-02&quot;:1.77},{&quot;2026-07-03&quot;:1.72},{&quot;2026-07-04&quot;:1.69},{&quot;2026-07-05&quot;:1.75},{&quot;2026-07-06&quot;:1.73},{&quot;2026-07-07&quot;:1.67},{&quot;2026-07-08&quot;:1.55},{&quot;2026-07-09&quot;:1.55},{&quot;2026-07-10&quot;:1.71},{&quot;2026-07-11&quot;:1.51},{&quot;2026-07-12&quot;:1.4},{&quot;2026-07-13&quot;:1.5},{&quot;2026-07-14&quot;:1.72},{&quot;2026-07-15&quot;:1.78},{&quot;2026-07-16&quot;:1.75},{&quot;2026-07-17&quot;:1.61},{&quot;2026-07-18&quot;:1.5},{&quot;2026-07-19&quot;:1.78},{&quot;2026-07-20&quot;:1.71},{&quot;2026-07-21&quot;:1.69},{&quot;2026-07-22&quot;:1.65},{&quot;2026-07-23&quot;:1.57},{&quot;2026-07-24&quot;:1.5},{&quot;2026-07-25&quot;:1.4},{&quot;2026-07-26&quot;:1.45},{&quot;2026-07-27&quot;:1.58},{&quot;2026-07-28&quot;:1.71},{&quot;2026-07-29&quot;:1.66},{&quot;2026-07-30&quot;:1.59},{&quot;2026-07-31&quot;:1.58},{&quot;2026-08-01&quot;:1.64},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.74},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.85},{&quot;2026-08-07&quot;:1.8},{&quot;2026-08-08&quot;:1.71},{&quot;2026-08-09&quot;:1.71},{&quot;2026-08-10&quot;:1.72},{&quot;2026-08-11&quot;:1.71},{&quot;2026-08-12&quot;:1.71},{&quot;2026-08-13&quot;:1.81},{&quot;2026-08-14&quot;:1.73},{&quot;2026-08-15&quot;:1.78},{&quot;2026-08-16&quot;:1.61},{&quot;2026-08-17&quot;:1.61},{&quot;2026-08-18&quot;:1.69},{&quot;2026-08-19&quot;:1.69},{&quot;2026-08-20&quot;:1.29},{&quot;2026-08-21&quot;:1.16},{&quot;2026-08-22&quot;:1.27},{&quot;2026-08-23&quot;:1.37},{&quot;2026-08-24&quot;:1.44},{&quot;2026-08-25&quot;:1.51},{&quot;2026-08-26&quot;:1.5},{&quot;2026-08-27&quot;:1.59},{&quot;2026-08-28&quot;:1.61},{&quot;2026-08-29&quot;:1.61},{&quot;2026-08-30&quot;:1.59},{&quot;2026-08-31&quot;:1.64},{&quot;2026-09-01&quot;:1.67},{&quot;2026-09-02&quot;:1.71},{&quot;2026-09-03&quot;:1.65},{&quot;2026-09-04&quot;:1.66},{&quot;2026-09-05&quot;:1.63},{&quot;2026-09-06&quot;:1.66},{&quot;2026-09-07&quot;:1.63},{&quot;2026-09-08&quot;:1.58},{&quot;2026-09-09&quot;:1.66},{&quot;2026-09-10&quot;:1.55},{&quot;2026-09-11&quot;:1.51},{&quot;2026-09-12&quot;:1.47},{&quot;2026-09-13&quot;:1.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18111"
  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-dmr 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">
            Frantic Search
        </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">
            5 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">
            $1.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="Frantic Search" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7cceaa53-5cac-415c-ad52-6299d6934ba0.jpg?1783918494" />

        <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">
            Frantic Search
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Frantic Search" src="https://cards.scryfall.io/large/front/7/c/7cceaa53-5cac-415c-ad52-6299d6934ba0.jpg?1783918494" />
    </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">
            5
          </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.41
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:0.75},{&quot;2026-06-16&quot;:0.78},{&quot;2026-06-17&quot;:0.79},{&quot;2026-06-18&quot;:0.78},{&quot;2026-06-19&quot;:0.78},{&quot;2026-06-20&quot;:0.8},{&quot;2026-06-21&quot;:0.82},{&quot;2026-06-22&quot;:0.82},{&quot;2026-06-23&quot;:0.82},{&quot;2026-06-24&quot;:0.81},{&quot;2026-06-25&quot;:0.8},{&quot;2026-06-26&quot;:0.81},{&quot;2026-06-27&quot;:0.81},{&quot;2026-06-28&quot;:0.82},{&quot;2026-06-29&quot;:0.82},{&quot;2026-06-30&quot;:0.81},{&quot;2026-07-01&quot;:0.79},{&quot;2026-07-02&quot;:0.79},{&quot;2026-07-03&quot;:0.79},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.77},{&quot;2026-07-06&quot;:0.77},{&quot;2026-07-07&quot;:0.77},{&quot;2026-07-08&quot;:0.75},{&quot;2026-07-09&quot;:0.71},{&quot;2026-07-10&quot;:0.71},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.77},{&quot;2026-07-13&quot;:0.77},{&quot;2026-07-14&quot;:0.77},{&quot;2026-07-15&quot;:0.77},{&quot;2026-07-16&quot;:0.77},{&quot;2026-07-17&quot;:0.78},{&quot;2026-07-18&quot;:0.84},{&quot;2026-07-19&quot;:0.84},{&quot;2026-07-20&quot;:0.84},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-22&quot;:0.82},{&quot;2026-07-23&quot;:0.82},{&quot;2026-07-24&quot;:0.84},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.82},{&quot;2026-07-27&quot;:0.82},{&quot;2026-07-28&quot;:0.83},{&quot;2026-07-29&quot;:0.81},{&quot;2026-07-30&quot;:0.81},{&quot;2026-07-31&quot;:0.79},{&quot;2026-08-01&quot;:0.77},{&quot;2026-08-02&quot;:0.77},{&quot;2026-08-03&quot;:0.77},{&quot;2026-08-04&quot;:0.77},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.77},{&quot;2026-08-08&quot;:0.77},{&quot;2026-08-09&quot;:0.77},{&quot;2026-08-10&quot;:0.77},{&quot;2026-08-11&quot;:0.71},{&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.72},{&quot;2026-08-16&quot;:0.73},{&quot;2026-08-17&quot;:0.73},{&quot;2026-08-18&quot;:0.73},{&quot;2026-08-19&quot;:0.74},{&quot;2026-08-20&quot;:0.73},{&quot;2026-08-21&quot;:0.73},{&quot;2026-08-22&quot;:0.73},{&quot;2026-08-23&quot;:0.72},{&quot;2026-08-24&quot;:0.73},{&quot;2026-08-25&quot;:0.75},{&quot;2026-08-26&quot;:0.74},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:0.76},{&quot;2026-08-29&quot;:0.76},{&quot;2026-08-30&quot;:0.75},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.76},{&quot;2026-09-02&quot;:0.81},{&quot;2026-09-03&quot;:0.81},{&quot;2026-09-04&quot;:0.8},{&quot;2026-09-05&quot;:0.81},{&quot;2026-09-06&quot;:0.81},{&quot;2026-09-07&quot;:0.82},{&quot;2026-09-08&quot;:0.82},{&quot;2026-09-09&quot;:0.82},{&quot;2026-09-10&quot;:0.84},{&quot;2026-09-11&quot;:0.82},{&quot;2026-09-12&quot;:0.79},{&quot;2026-09-13&quot;:0.78}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.03},{&quot;2026-06-16&quot;:0.87},{&quot;2026-06-17&quot;:0.86},{&quot;2026-06-18&quot;:0.86},{&quot;2026-06-19&quot;:0.8},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.78},{&quot;2026-06-22&quot;:0.76},{&quot;2026-06-23&quot;:0.8},{&quot;2026-06-24&quot;:0.79},{&quot;2026-06-25&quot;:0.8},{&quot;2026-06-26&quot;:0.8},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.88},{&quot;2026-06-29&quot;:0.97},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.07},{&quot;2026-07-03&quot;:1.21},{&quot;2026-07-04&quot;:1.13},{&quot;2026-07-05&quot;:1.19},{&quot;2026-07-06&quot;:1.11},{&quot;2026-07-07&quot;:1.07},{&quot;2026-07-08&quot;:0.87},{&quot;2026-07-09&quot;:1.36},{&quot;2026-07-10&quot;:1.42},{&quot;2026-07-11&quot;:1.21},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:0.95},{&quot;2026-07-14&quot;:0.92},{&quot;2026-07-15&quot;:0.96},{&quot;2026-07-16&quot;:0.98},{&quot;2026-07-17&quot;:1.18},{&quot;2026-07-18&quot;:1.07},{&quot;2026-07-19&quot;:0.89},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-22&quot;:0.83},{&quot;2026-07-23&quot;:0.78},{&quot;2026-07-24&quot;:0.75},{&quot;2026-07-25&quot;:0.73},{&quot;2026-07-26&quot;:0.74},{&quot;2026-07-27&quot;:0.71},{&quot;2026-07-28&quot;:0.78},{&quot;2026-07-29&quot;:1.12},{&quot;2026-07-30&quot;:1.16},{&quot;2026-07-31&quot;:1.24},{&quot;2026-08-01&quot;:1.27},{&quot;2026-08-02&quot;:1.31},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.19},{&quot;2026-08-05&quot;:1.07},{&quot;2026-08-07&quot;:1.12},{&quot;2026-08-08&quot;:1.21},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.28},{&quot;2026-08-11&quot;:1.3},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.23},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.07},{&quot;2026-08-16&quot;:1.02},{&quot;2026-08-17&quot;:1.35},{&quot;2026-08-18&quot;:1.24},{&quot;2026-08-19&quot;:1.4},{&quot;2026-08-20&quot;:1.35},{&quot;2026-08-21&quot;:1.32},{&quot;2026-08-22&quot;:1.26},{&quot;2026-08-23&quot;:1.36},{&quot;2026-08-24&quot;:1.51},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.69},{&quot;2026-08-27&quot;:1.69},{&quot;2026-08-28&quot;:1.58},{&quot;2026-08-29&quot;:1.58},{&quot;2026-08-30&quot;:1.6},{&quot;2026-08-31&quot;:1.65},{&quot;2026-09-01&quot;:1.5},{&quot;2026-09-02&quot;:1.65},{&quot;2026-09-03&quot;:1.77},{&quot;2026-09-04&quot;:1.73},{&quot;2026-09-05&quot;:1.94},{&quot;2026-09-06&quot;:1.91},{&quot;2026-09-07&quot;:1.93},{&quot;2026-09-08&quot;:1.92},{&quot;2026-09-09&quot;:1.74},{&quot;2026-09-10&quot;:1.52},{&quot;2026-09-11&quot;:1.5},{&quot;2026-09-12&quot;:1.41},{&quot;2026-09-13&quot;:1.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="53206"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tinker" src="https://cards.scryfall.io/large/front/f/f/ff616131-289b-4eec-bef0-5f519d5a81a5.jpg?1783910566" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;2026-06-14&quot;:13.25},{&quot;2026-06-15&quot;:13.25},{&quot;2026-06-16&quot;:13.25},{&quot;2026-06-17&quot;:13.25},{&quot;2026-06-18&quot;:13.25},{&quot;2026-06-19&quot;:13.25},{&quot;2026-06-20&quot;:13.25},{&quot;2026-06-21&quot;:13.25},{&quot;2026-06-22&quot;:13.25},{&quot;2026-06-23&quot;:13.25},{&quot;2026-06-24&quot;:13.25},{&quot;2026-06-25&quot;:13.25},{&quot;2026-06-26&quot;:13.25},{&quot;2026-06-27&quot;:13.25},{&quot;2026-06-28&quot;:13.25},{&quot;2026-06-29&quot;:13.27},{&quot;2026-06-30&quot;:13.27},{&quot;2026-07-01&quot;:13.22},{&quot;2026-07-02&quot;:13.23},{&quot;2026-07-03&quot;:13.23},{&quot;2026-07-04&quot;:13.23},{&quot;2026-07-05&quot;:13.23},{&quot;2026-07-06&quot;:13.3},{&quot;2026-07-07&quot;:13.3},{&quot;2026-07-08&quot;:13.3},{&quot;2026-07-09&quot;:13.3},{&quot;2026-07-10&quot;:13.3},{&quot;2026-07-11&quot;:13.3},{&quot;2026-07-12&quot;:13.3},{&quot;2026-07-13&quot;:13.3},{&quot;2026-07-14&quot;:13.3},{&quot;2026-07-15&quot;:13.3},{&quot;2026-07-16&quot;:13.57},{&quot;2026-07-17&quot;:13.57},{&quot;2026-07-18&quot;:13.59},{&quot;2026-07-19&quot;:13.59},{&quot;2026-07-20&quot;:13.69},{&quot;2026-07-21&quot;:13.69},{&quot;2026-07-23&quot;:13.69},{&quot;2026-07-24&quot;:13.69},{&quot;2026-07-25&quot;:13.69},{&quot;2026-07-26&quot;:13.69},{&quot;2026-07-27&quot;:13.69},{&quot;2026-07-28&quot;:13.69},{&quot;2026-07-29&quot;:13.69},{&quot;2026-07-30&quot;:13.69},{&quot;2026-07-31&quot;:13.69},{&quot;2026-08-01&quot;:13.69},{&quot;2026-08-02&quot;:13.69},{&quot;2026-08-03&quot;:13.69},{&quot;2026-08-04&quot;:13.69},{&quot;2026-08-05&quot;:13.78},{&quot;2026-08-07&quot;:13.77},{&quot;2026-08-08&quot;:13.77},{&quot;2026-08-09&quot;:13.77},{&quot;2026-08-10&quot;:13.85},{&quot;2026-08-11&quot;:13.85},{&quot;2026-08-12&quot;:13.85},{&quot;2026-08-13&quot;:13.85},{&quot;2026-08-14&quot;:13.85},{&quot;2026-08-15&quot;:13.85},{&quot;2026-08-16&quot;:13.85},{&quot;2026-08-17&quot;:13.85},{&quot;2026-08-18&quot;:13.85},{&quot;2026-08-19&quot;:13.89},{&quot;2026-08-20&quot;:13.89},{&quot;2026-08-21&quot;:13.93},{&quot;2026-08-22&quot;:13.93},{&quot;2026-08-23&quot;:13.93},{&quot;2026-08-24&quot;:13.93},{&quot;2026-08-25&quot;:13.93},{&quot;2026-08-26&quot;:13.93},{&quot;2026-08-27&quot;:13.93},{&quot;2026-08-28&quot;:13.93},{&quot;2026-08-29&quot;:13.93},{&quot;2026-08-30&quot;:13.98},{&quot;2026-08-31&quot;:13.98},{&quot;2026-09-01&quot;:13.98},{&quot;2026-09-02&quot;:13.98},{&quot;2026-09-03&quot;:14.03},{&quot;2026-09-04&quot;:14.03},{&quot;2026-09-05&quot;:14.03},{&quot;2026-09-06&quot;:14.03},{&quot;2026-09-07&quot;:14.03},{&quot;2026-09-08&quot;:14.03},{&quot;2026-09-09&quot;:13.97},{&quot;2026-09-10&quot;:13.97},{&quot;2026-09-11&quot;:14.09},{&quot;2026-09-12&quot;:14.09},{&quot;2026-09-13&quot;:14.14}],&quot;normal&quot;:[{&quot;2026-06-14&quot;:1.42},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.4},{&quot;2026-06-17&quot;:1.36},{&quot;2026-06-18&quot;:1.42},{&quot;2026-06-19&quot;:1.41},{&quot;2026-06-20&quot;:1.36},{&quot;2026-06-21&quot;:1.38},{&quot;2026-06-22&quot;:1.37},{&quot;2026-06-23&quot;:1.35},{&quot;2026-06-24&quot;:1.35},{&quot;2026-06-25&quot;:1.35},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.38},{&quot;2026-06-28&quot;:1.31},{&quot;2026-06-29&quot;:1.31},{&quot;2026-06-30&quot;:1.26},{&quot;2026-07-01&quot;:1.3},{&quot;2026-07-02&quot;:1.3},{&quot;2026-07-03&quot;:1.3},{&quot;2026-07-04&quot;:1.34},{&quot;2026-07-05&quot;:1.35},{&quot;2026-07-06&quot;:1.35},{&quot;2026-07-07&quot;:1.35},{&quot;2026-07-08&quot;:1.41},{&quot;2026-07-09&quot;:1.39},{&quot;2026-07-10&quot;:1.39},{&quot;2026-07-11&quot;:1.4},{&quot;2026-07-12&quot;:1.39},{&quot;2026-07-13&quot;:1.39},{&quot;2026-07-14&quot;:1.39},{&quot;2026-07-15&quot;:1.39},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.39},{&quot;2026-07-19&quot;:1.39},{&quot;2026-07-20&quot;:1.39},{&quot;2026-07-21&quot;:1.39},{&quot;2026-07-23&quot;:1.35},{&quot;2026-07-24&quot;:1.35},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.36},{&quot;2026-07-27&quot;:1.35},{&quot;2026-07-28&quot;:1.36},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.38},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.36},{&quot;2026-08-02&quot;:1.38},{&quot;2026-08-03&quot;:1.35},{&quot;2026-08-04&quot;:1.32},{&quot;2026-08-05&quot;:1.32},{&quot;2026-08-07&quot;:1.31},{&quot;2026-08-08&quot;:1.31},{&quot;2026-08-09&quot;:1.3},{&quot;2026-08-10&quot;:1.27},{&quot;2026-08-11&quot;:1.27},{&quot;2026-08-12&quot;:1.29},{&quot;2026-08-13&quot;:1.29},{&quot;2026-08-14&quot;:1.26},{&quot;2026-08-15&quot;:1.26},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.3},{&quot;2026-08-18&quot;:1.3},{&quot;2026-08-19&quot;:1.3},{&quot;2026-08-20&quot;:1.3},{&quot;2026-08-21&quot;:1.3},{&quot;2026-08-22&quot;:1.3},{&quot;2026-08-23&quot;:1.34},{&quot;2026-08-24&quot;:1.34},{&quot;2026-08-25&quot;:1.35},{&quot;2026-08-26&quot;:1.34},{&quot;2026-08-27&quot;:1.35},{&quot;2026-08-28&quot;:1.36},{&quot;2026-08-29&quot;:1.36},{&quot;2026-08-30&quot;:1.45},{&quot;2026-08-31&quot;:1.42},{&quot;2026-09-01&quot;:1.42},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.4},{&quot;2026-09-04&quot;:1.4},{&quot;2026-09-05&quot;:1.41},{&quot;2026-09-06&quot;:1.41},{&quot;2026-09-07&quot;:1.41},{&quot;2026-09-08&quot;:1.41},{&quot;2026-09-09&quot;:1.42},{&quot;2026-09-10&quot;:1.42},{&quot;2026-09-11&quot;:1.4},{&quot;2026-09-12&quot;:1.42},{&quot;2026-09-13&quot;:1.38}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="21118"
  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-2x2 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">
            2 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Mulldrifter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/9/99074b05-f252-4626-a96a-6bc286e8d03a.jpg?1783921772" />

        <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/9/9/99074b05-f252-4626-a96a-6bc286e8d03a.jpg?1783921772" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:1.39},{&quot;2026-06-16&quot;:1.34},{&quot;2026-06-17&quot;:1.33},{&quot;2026-06-18&quot;:1.33},{&quot;2026-06-19&quot;:1.33},{&quot;2026-06-20&quot;:1.33},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.35},{&quot;2026-06-23&quot;:1.35},{&quot;2026-06-24&quot;:1.34},{&quot;2026-06-25&quot;:1.34},{&quot;2026-06-26&quot;:1.34},{&quot;2026-06-27&quot;:1.47},{&quot;2026-06-28&quot;:1.47},{&quot;2026-06-29&quot;:1.47},{&quot;2026-06-30&quot;:1.47},{&quot;2026-07-01&quot;:1.47},{&quot;2026-07-02&quot;:1.46},{&quot;2026-07-03&quot;:1.46},{&quot;2026-07-04&quot;:1.5},{&quot;2026-07-05&quot;:1.5},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.52},{&quot;2026-07-09&quot;:1.52},{&quot;2026-07-10&quot;:1.52},{&quot;2026-07-11&quot;:1.52},{&quot;2026-07-12&quot;:1.52},{&quot;2026-07-13&quot;:1.52},{&quot;2026-07-14&quot;:1.52},{&quot;2026-07-15&quot;:1.52},{&quot;2026-07-16&quot;:1.52},{&quot;2026-07-17&quot;:1.51},{&quot;2026-07-18&quot;:1.51},{&quot;2026-07-19&quot;:1.5},{&quot;2026-07-20&quot;:1.51},{&quot;2026-07-21&quot;:1.51},{&quot;2026-07-22&quot;:1.51},{&quot;2026-07-23&quot;:1.51},{&quot;2026-07-24&quot;:1.51},{&quot;2026-07-25&quot;:1.51},{&quot;2026-07-26&quot;:1.51},{&quot;2026-07-27&quot;:1.51},{&quot;2026-07-28&quot;:1.51},{&quot;2026-07-29&quot;:1.51},{&quot;2026-07-30&quot;:1.51},{&quot;2026-07-31&quot;:1.49},{&quot;2026-08-01&quot;:1.49},{&quot;2026-08-02&quot;:1.4},{&quot;2026-08-03&quot;:1.4},{&quot;2026-08-04&quot;:1.42},{&quot;2026-08-05&quot;:1.42},{&quot;2026-08-07&quot;:1.42},{&quot;2026-08-08&quot;:1.42},{&quot;2026-08-09&quot;:1.42},{&quot;2026-08-10&quot;:1.42},{&quot;2026-08-11&quot;:1.42},{&quot;2026-08-12&quot;:1.42},{&quot;2026-08-13&quot;:1.42},{&quot;2026-08-14&quot;:1.39},{&quot;2026-08-15&quot;:1.39},{&quot;2026-08-16&quot;:1.39},{&quot;2026-08-17&quot;:1.39},{&quot;2026-08-18&quot;:1.36},{&quot;2026-08-19&quot;:1.36},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.43},{&quot;2026-08-22&quot;:1.43},{&quot;2026-08-23&quot;:1.41},{&quot;2026-08-24&quot;:1.41},{&quot;2026-08-25&quot;:1.42},{&quot;2026-08-26&quot;:1.42},{&quot;2026-08-27&quot;:1.4},{&quot;2026-08-28&quot;:1.4},{&quot;2026-08-29&quot;:1.4},{&quot;2026-08-30&quot;:1.4},{&quot;2026-08-31&quot;:1.4},{&quot;2026-09-01&quot;:1.42},{&quot;2026-09-02&quot;:1.32},{&quot;2026-09-03&quot;:1.35},{&quot;2026-09-04&quot;:1.35},{&quot;2026-09-05&quot;:1.35},{&quot;2026-09-06&quot;:1.35},{&quot;2026-09-07&quot;:1.35},{&quot;2026-09-08&quot;:1.35},{&quot;2026-09-09&quot;:1.35},{&quot;2026-09-10&quot;:1.36},{&quot;2026-09-11&quot;:1.35},{&quot;2026-09-12&quot;:1.35},{&quot;2026-09-13&quot;:1.35}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.51},{&quot;2026-06-16&quot;:1.48},{&quot;2026-06-17&quot;:1.51},{&quot;2026-06-18&quot;:1.51},{&quot;2026-06-19&quot;:1.52},{&quot;2026-06-20&quot;:1.54},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.54},{&quot;2026-06-23&quot;:1.53},{&quot;2026-06-24&quot;:1.73},{&quot;2026-06-25&quot;:1.67},{&quot;2026-06-26&quot;:1.68},{&quot;2026-06-27&quot;:1.65},{&quot;2026-06-28&quot;:1.65},{&quot;2026-06-29&quot;:1.65},{&quot;2026-06-30&quot;:1.59},{&quot;2026-07-01&quot;:1.64},{&quot;2026-07-02&quot;:1.56},{&quot;2026-07-03&quot;:1.53},{&quot;2026-07-04&quot;:1.41},{&quot;2026-07-05&quot;:1.38},{&quot;2026-07-06&quot;:1.38},{&quot;2026-07-07&quot;:1.38},{&quot;2026-07-08&quot;:1.43},{&quot;2026-07-09&quot;:1.43},{&quot;2026-07-10&quot;:1.46},{&quot;2026-07-11&quot;:1.46},{&quot;2026-07-12&quot;:1.46},{&quot;2026-07-13&quot;:1.46},{&quot;2026-07-14&quot;:1.46},{&quot;2026-07-15&quot;:1.46},{&quot;2026-07-16&quot;:1.39},{&quot;2026-07-17&quot;:1.28},{&quot;2026-07-18&quot;:1.31},{&quot;2026-07-19&quot;:1.28},{&quot;2026-07-20&quot;:1.28},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-22&quot;:1.28},{&quot;2026-07-23&quot;:1.28},{&quot;2026-07-24&quot;:1.28},{&quot;2026-07-25&quot;:1.28},{&quot;2026-07-26&quot;:1.26},{&quot;2026-07-27&quot;:1.26},{&quot;2026-07-28&quot;:1.27},{&quot;2026-07-29&quot;:1.27},{&quot;2026-07-30&quot;:1.27},{&quot;2026-07-31&quot;:1.23},{&quot;2026-08-01&quot;:1.23},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.23},{&quot;2026-08-04&quot;:1.17},{&quot;2026-08-05&quot;:1.19},{&quot;2026-08-07&quot;:1.18},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.25},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.22},{&quot;2026-08-13&quot;:1.24},{&quot;2026-08-14&quot;:1.26},{&quot;2026-08-15&quot;:1.25},{&quot;2026-08-16&quot;:1.22},{&quot;2026-08-17&quot;:1.22},{&quot;2026-08-18&quot;:1.21},{&quot;2026-08-19&quot;:1.21},{&quot;2026-08-20&quot;:1.2},{&quot;2026-08-21&quot;:1.2},{&quot;2026-08-22&quot;:1.2},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.14},{&quot;2026-08-25&quot;:1.12},{&quot;2026-08-26&quot;:1.12},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.11},{&quot;2026-08-29&quot;:1.11},{&quot;2026-08-30&quot;:1.09},{&quot;2026-08-31&quot;:1.07},{&quot;2026-09-01&quot;:1.07},{&quot;2026-09-02&quot;:1.07},{&quot;2026-09-03&quot;:1.08},{&quot;2026-09-04&quot;:1.08},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.1},{&quot;2026-09-07&quot;:1.12},{&quot;2026-09-08&quot;:1.15},{&quot;2026-09-09&quot;:1.18},{&quot;2026-09-10&quot;:1.18},{&quot;2026-09-11&quot;:1.17},{&quot;2026-09-12&quot;:1.11},{&quot;2026-09-13&quot;:1.16}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18293"
  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-dmu 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">
            Combat Research
        </span>


      </div>

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Combat Research" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/c/6c44738c-706f-40b2-a09d-b21cd0889049.jpg?1783921355" />

        <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">
            Combat Research
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Combat Research" src="https://cards.scryfall.io/large/front/6/c/6c44738c-706f-40b2-a09d-b21cd0889049.jpg?1783921355" />
    </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">
            4
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.73},{&quot;2026-06-12&quot;:0.73},{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.72},{&quot;2026-06-15&quot;:0.72},{&quot;2026-06-16&quot;:0.72},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.72},{&quot;2026-06-19&quot;:0.72},{&quot;2026-06-20&quot;:0.72},{&quot;2026-06-21&quot;:0.72},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.73},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.73},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.72},{&quot;2026-06-30&quot;:0.72},{&quot;2026-07-01&quot;:0.68},{&quot;2026-07-02&quot;:0.68},{&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.69},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.7},{&quot;2026-07-12&quot;:0.7},{&quot;2026-07-13&quot;:0.72},{&quot;2026-07-14&quot;:0.73},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.73},{&quot;2026-07-18&quot;:0.73},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.73},{&quot;2026-07-21&quot;:0.73},{&quot;2026-07-23&quot;:0.79},{&quot;2026-07-25&quot;:0.79},{&quot;2026-07-26&quot;:0.79},{&quot;2026-07-27&quot;:0.8},{&quot;2026-07-29&quot;:0.82},{&quot;2026-07-30&quot;:0.82},{&quot;2026-07-31&quot;:0.82},{&quot;2026-08-01&quot;:0.82},{&quot;2026-08-02&quot;:0.82},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.83},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.84},{&quot;2026-08-08&quot;:0.84},{&quot;2026-08-09&quot;:0.85},{&quot;2026-08-10&quot;:0.85},{&quot;2026-08-11&quot;:0.85},{&quot;2026-08-12&quot;:0.85},{&quot;2026-08-13&quot;:0.84},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.87},{&quot;2026-08-16&quot;:0.87},{&quot;2026-08-17&quot;:0.88},{&quot;2026-08-18&quot;:0.87},{&quot;2026-08-19&quot;:0.88},{&quot;2026-08-20&quot;:0.88},{&quot;2026-08-21&quot;:0.9},{&quot;2026-08-22&quot;:0.9},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.9},{&quot;2026-08-25&quot;:0.9},{&quot;2026-08-26&quot;:0.93},{&quot;2026-08-27&quot;:0.93},{&quot;2026-08-28&quot;:0.93},{&quot;2026-08-29&quot;:0.93},{&quot;2026-08-30&quot;:0.98},{&quot;2026-08-31&quot;:1.0},{&quot;2026-09-01&quot;:1.0},{&quot;2026-09-02&quot;:0.99},{&quot;2026-09-03&quot;:0.99},{&quot;2026-09-04&quot;:0.96},{&quot;2026-09-05&quot;:0.95},{&quot;2026-09-06&quot;:0.95},{&quot;2026-09-07&quot;:0.95},{&quot;2026-09-08&quot;:0.95},{&quot;2026-09-09&quot;:0.95},{&quot;2026-09-10&quot;:0.95},{&quot;2026-09-11&quot;:0.95},{&quot;2026-09-12&quot;:0.95},{&quot;2026-09-13&quot;:0.96}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.65},{&quot;2026-06-12&quot;:0.65},{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.58},{&quot;2026-06-16&quot;:0.51},{&quot;2026-06-17&quot;:0.52},{&quot;2026-06-18&quot;:0.51},{&quot;2026-06-19&quot;:0.5},{&quot;2026-06-20&quot;:0.48},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.37},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.36},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.44},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.42},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.46},{&quot;2026-07-16&quot;:0.46},{&quot;2026-07-17&quot;:0.46},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.44},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-23&quot;:0.49},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.61},{&quot;2026-07-27&quot;:0.65},{&quot;2026-07-29&quot;:0.69},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.74},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.75},{&quot;2026-08-04&quot;:0.72},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.72},{&quot;2026-08-08&quot;:0.74},{&quot;2026-08-09&quot;:0.8},{&quot;2026-08-10&quot;:0.91},{&quot;2026-08-11&quot;:1.1},{&quot;2026-08-12&quot;:1.19},{&quot;2026-08-13&quot;:1.16},{&quot;2026-08-14&quot;:1.17},{&quot;2026-08-15&quot;:1.17},{&quot;2026-08-16&quot;:1.16},{&quot;2026-08-17&quot;:1.21},{&quot;2026-08-18&quot;:1.22},{&quot;2026-08-19&quot;:1.23},{&quot;2026-08-20&quot;:1.23},{&quot;2026-08-21&quot;:1.16},{&quot;2026-08-22&quot;:0.94},{&quot;2026-08-23&quot;:0.8},{&quot;2026-08-24&quot;:0.66},{&quot;2026-08-25&quot;:0.66},{&quot;2026-08-26&quot;:0.56},{&quot;2026-08-27&quot;:0.57},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.58},{&quot;2026-08-31&quot;:0.7},{&quot;2026-09-01&quot;:0.7},{&quot;2026-09-02&quot;:0.73},{&quot;2026-09-03&quot;:0.73},{&quot;2026-09-04&quot;:0.77},{&quot;2026-09-05&quot;:0.87},{&quot;2026-09-06&quot;:0.79},{&quot;2026-09-07&quot;:0.79},{&quot;2026-09-08&quot;:0.7},{&quot;2026-09-09&quot;:0.54},{&quot;2026-09-10&quot;:0.53},{&quot;2026-09-11&quot;:0.53},{&quot;2026-09-12&quot;:0.52},{&quot;2026-09-13&quot;:0.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="76097"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span class="text-lg font-medium text-nine-white">
            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.94
              </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.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.15},{&quot;2026-06-14&quot;:1.15},{&quot;2026-06-15&quot;:1.18},{&quot;2026-06-16&quot;:1.18},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.21},{&quot;2026-06-19&quot;:1.27},{&quot;2026-06-20&quot;:1.29},{&quot;2026-06-21&quot;:1.43},{&quot;2026-06-22&quot;:1.44},{&quot;2026-06-23&quot;:1.43},{&quot;2026-06-24&quot;:1.44},{&quot;2026-06-25&quot;:1.49},{&quot;2026-06-26&quot;:1.53},{&quot;2026-06-27&quot;:1.6},{&quot;2026-06-28&quot;:1.79},{&quot;2026-06-29&quot;:2.15},{&quot;2026-06-30&quot;:2.16},{&quot;2026-07-01&quot;:2.35},{&quot;2026-07-02&quot;:2.52},{&quot;2026-07-03&quot;:2.4},{&quot;2026-07-04&quot;:2.59},{&quot;2026-07-05&quot;:2.55},{&quot;2026-07-06&quot;:2.54},{&quot;2026-07-07&quot;:2.64},{&quot;2026-07-08&quot;:2.5},{&quot;2026-07-09&quot;:2.53},{&quot;2026-07-10&quot;:2.48},{&quot;2026-07-11&quot;:2.51},{&quot;2026-07-12&quot;:2.53},{&quot;2026-07-13&quot;:2.71},{&quot;2026-07-14&quot;:2.71},{&quot;2026-07-15&quot;:2.89},{&quot;2026-07-16&quot;:3.02},{&quot;2026-07-17&quot;:3.07},{&quot;2026-07-18&quot;:3.0},{&quot;2026-07-19&quot;:3.11},{&quot;2026-07-20&quot;:3.1},{&quot;2026-07-21&quot;:3.12},{&quot;2026-07-23&quot;:3.04},{&quot;2026-07-25&quot;:2.86},{&quot;2026-07-26&quot;:2.86},{&quot;2026-07-27&quot;:2.86},{&quot;2026-07-28&quot;:2.87},{&quot;2026-07-29&quot;:2.87},{&quot;2026-07-30&quot;:2.74},{&quot;2026-07-31&quot;:2.77},{&quot;2026-08-01&quot;:2.49},{&quot;2026-08-02&quot;:2.42},{&quot;2026-08-03&quot;:2.14},{&quot;2026-08-04&quot;:2.14},{&quot;2026-08-05&quot;:1.94},{&quot;2026-08-07&quot;:1.79},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.85},{&quot;2026-08-10&quot;:1.85},{&quot;2026-08-11&quot;:1.85},{&quot;2026-08-12&quot;:1.81},{&quot;2026-08-13&quot;:1.63},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.33},{&quot;2026-08-16&quot;:1.27},{&quot;2026-08-17&quot;:1.18},{&quot;2026-08-18&quot;:1.18},{&quot;2026-08-19&quot;:1.1},{&quot;2026-08-20&quot;:1.1},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.12},{&quot;2026-08-23&quot;:1.2},{&quot;2026-08-24&quot;:1.21},{&quot;2026-08-25&quot;:1.21},{&quot;2026-08-26&quot;:1.19},{&quot;2026-08-27&quot;:1.19},{&quot;2026-08-28&quot;:1.16},{&quot;2026-08-29&quot;:1.16},{&quot;2026-08-30&quot;:1.12},{&quot;2026-08-31&quot;:1.04},{&quot;2026-09-01&quot;:1.04},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:0.98},{&quot;2026-09-05&quot;:0.98},{&quot;2026-09-06&quot;:0.93},{&quot;2026-09-07&quot;:0.95},{&quot;2026-09-08&quot;:0.96},{&quot;2026-09-09&quot;:0.96},{&quot;2026-09-10&quot;:0.97},{&quot;2026-09-11&quot;:0.96},{&quot;2026-09-12&quot;:0.93},{&quot;2026-09-13&quot;:0.94}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thought Scour" src="https://cards.scryfall.io/large/front/4/3/4370142f-441b-4e70-bef9-f79e6a877ee9.jpg?1783921771" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.19},{&quot;2026-06-12&quot;:1.19},{&quot;2026-06-13&quot;:1.26},{&quot;2026-06-14&quot;:1.26},{&quot;2026-06-15&quot;:1.22},{&quot;2026-06-16&quot;:1.22},{&quot;2026-06-17&quot;:1.3},{&quot;2026-06-18&quot;:1.26},{&quot;2026-06-19&quot;:1.26},{&quot;2026-06-20&quot;:1.29},{&quot;2026-06-21&quot;:1.35},{&quot;2026-06-22&quot;:1.35},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.29},{&quot;2026-06-26&quot;:1.25},{&quot;2026-06-27&quot;:1.33},{&quot;2026-06-28&quot;:1.32},{&quot;2026-06-29&quot;:1.32},{&quot;2026-06-30&quot;:1.32},{&quot;2026-07-01&quot;:1.35},{&quot;2026-07-02&quot;:1.33},{&quot;2026-07-03&quot;:1.33},{&quot;2026-07-04&quot;:1.33},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.4},{&quot;2026-07-08&quot;:1.4},{&quot;2026-07-09&quot;:1.4},{&quot;2026-07-10&quot;:1.43},{&quot;2026-07-11&quot;:1.48},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.48},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.43},{&quot;2026-07-20&quot;:1.45},{&quot;2026-07-21&quot;:1.47},{&quot;2026-07-23&quot;:1.48},{&quot;2026-07-25&quot;:1.45},{&quot;2026-07-26&quot;:1.45},{&quot;2026-07-27&quot;:1.45},{&quot;2026-07-29&quot;:1.49},{&quot;2026-07-30&quot;:1.46},{&quot;2026-07-31&quot;:1.47},{&quot;2026-08-01&quot;:1.47},{&quot;2026-08-02&quot;:1.47},{&quot;2026-08-03&quot;:1.44},{&quot;2026-08-04&quot;:1.45},{&quot;2026-08-05&quot;:1.45},{&quot;2026-08-07&quot;:1.45},{&quot;2026-08-08&quot;:1.41},{&quot;2026-08-09&quot;:1.34},{&quot;2026-08-10&quot;:1.34},{&quot;2026-08-11&quot;:1.34},{&quot;2026-08-12&quot;:1.34},{&quot;2026-08-13&quot;:1.34},{&quot;2026-08-14&quot;:1.34},{&quot;2026-08-15&quot;:1.34},{&quot;2026-08-16&quot;:1.34},{&quot;2026-08-17&quot;:1.35},{&quot;2026-08-18&quot;:1.36},{&quot;2026-08-19&quot;:1.36},{&quot;2026-08-20&quot;:1.36},{&quot;2026-08-21&quot;:1.35},{&quot;2026-08-22&quot;:1.35},{&quot;2026-08-23&quot;:1.35},{&quot;2026-08-24&quot;:1.33},{&quot;2026-08-25&quot;:1.33},{&quot;2026-08-26&quot;:1.33},{&quot;2026-08-27&quot;:1.34},{&quot;2026-08-28&quot;:1.35},{&quot;2026-08-29&quot;:1.35},{&quot;2026-08-30&quot;:1.36},{&quot;2026-08-31&quot;:1.36},{&quot;2026-09-01&quot;:1.36},{&quot;2026-09-02&quot;:1.32},{&quot;2026-09-03&quot;:1.29},{&quot;2026-09-04&quot;:1.26},{&quot;2026-09-05&quot;:1.26},{&quot;2026-09-06&quot;:1.26},{&quot;2026-09-07&quot;:1.24},{&quot;2026-09-08&quot;:1.25},{&quot;2026-09-09&quot;:1.27},{&quot;2026-09-10&quot;:1.27},{&quot;2026-09-11&quot;:1.27},{&quot;2026-09-12&quot;:1.22},{&quot;2026-09-13&quot;:1.22}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.28},{&quot;2026-06-12&quot;:1.32},{&quot;2026-06-13&quot;:1.3},{&quot;2026-06-14&quot;:1.3},{&quot;2026-06-15&quot;:1.25},{&quot;2026-06-16&quot;:1.26},{&quot;2026-06-17&quot;:1.31},{&quot;2026-06-18&quot;:1.28},{&quot;2026-06-19&quot;:1.22},{&quot;2026-06-20&quot;:1.14},{&quot;2026-06-21&quot;:1.13},{&quot;2026-06-22&quot;:1.11},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.06},{&quot;2026-06-26&quot;:1.04},{&quot;2026-06-27&quot;:1.01},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.04},{&quot;2026-06-30&quot;:1.01},{&quot;2026-07-01&quot;:0.98},{&quot;2026-07-02&quot;:0.98},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:0.99},{&quot;2026-07-05&quot;:0.96},{&quot;2026-07-06&quot;:0.97},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:1.01},{&quot;2026-07-09&quot;:1.01},{&quot;2026-07-10&quot;:1.01},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:0.97},{&quot;2026-07-14&quot;:0.96},{&quot;2026-07-15&quot;:0.96},{&quot;2026-07-16&quot;:0.93},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.93},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.92},{&quot;2026-07-23&quot;:0.92},{&quot;2026-07-25&quot;:1.13},{&quot;2026-07-26&quot;:1.13},{&quot;2026-07-27&quot;:1.14},{&quot;2026-07-29&quot;:1.16},{&quot;2026-07-30&quot;:1.19},{&quot;2026-07-31&quot;:1.15},{&quot;2026-08-01&quot;:1.18},{&quot;2026-08-02&quot;:1.18},{&quot;2026-08-03&quot;:1.18},{&quot;2026-08-04&quot;:1.21},{&quot;2026-08-05&quot;:1.21},{&quot;2026-08-07&quot;:1.24},{&quot;2026-08-08&quot;:1.22},{&quot;2026-08-09&quot;:1.22},{&quot;2026-08-10&quot;:1.25},{&quot;2026-08-11&quot;:1.26},{&quot;2026-08-12&quot;:1.26},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.27},{&quot;2026-08-15&quot;:1.27},{&quot;2026-08-16&quot;:1.28},{&quot;2026-08-17&quot;:1.28},{&quot;2026-08-18&quot;:1.28},{&quot;2026-08-19&quot;:1.04},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.08},{&quot;2026-08-22&quot;:1.07},{&quot;2026-08-23&quot;:1.07},{&quot;2026-08-24&quot;:1.06},{&quot;2026-08-25&quot;:1.06},{&quot;2026-08-26&quot;:1.06},{&quot;2026-08-27&quot;:1.05},{&quot;2026-08-28&quot;:1.04},{&quot;2026-08-29&quot;:1.04},{&quot;2026-08-30&quot;:1.04},{&quot;2026-08-31&quot;:1.01},{&quot;2026-09-01&quot;:1.01},{&quot;2026-09-02&quot;:0.97},{&quot;2026-09-03&quot;:0.97},{&quot;2026-09-04&quot;:0.97},{&quot;2026-09-05&quot;:0.93},{&quot;2026-09-06&quot;:0.9},{&quot;2026-09-07&quot;:0.9},{&quot;2026-09-08&quot;:0.85},{&quot;2026-09-09&quot;:0.85},{&quot;2026-09-10&quot;:0.81},{&quot;2026-09-11&quot;:0.81},{&quot;2026-09-12&quot;:0.83},{&quot;2026-09-13&quot;:0.82}]}"
        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="20266"
  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-2x2 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Thought Scour" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/a/4afee6b3-55a4-44e5-b08c-85e0c813cd09.jpg?1783921909" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thought Scour" src="https://cards.scryfall.io/large/front/4/a/4afee6b3-55a4-44e5-b08c-85e0c813cd09.jpg?1783921909" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:1.51},{&quot;2026-06-16&quot;:1.51},{&quot;2026-06-17&quot;:1.54},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.54},{&quot;2026-06-20&quot;:1.54},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.54},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.5},{&quot;2026-06-25&quot;:1.5},{&quot;2026-06-26&quot;:1.76},{&quot;2026-06-27&quot;:1.94},{&quot;2026-06-28&quot;:1.94},{&quot;2026-06-29&quot;:1.88},{&quot;2026-06-30&quot;:1.88},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:1.88},{&quot;2026-07-03&quot;:1.88},{&quot;2026-07-04&quot;:1.88},{&quot;2026-07-05&quot;:1.88},{&quot;2026-07-06&quot;:1.87},{&quot;2026-07-07&quot;:1.87},{&quot;2026-07-08&quot;:1.87},{&quot;2026-07-09&quot;:1.87},{&quot;2026-07-10&quot;:1.86},{&quot;2026-07-11&quot;:1.86},{&quot;2026-07-12&quot;:1.86},{&quot;2026-07-13&quot;:1.86},{&quot;2026-07-14&quot;:1.86},{&quot;2026-07-15&quot;:1.86},{&quot;2026-07-16&quot;:1.86},{&quot;2026-07-17&quot;:1.72},{&quot;2026-07-18&quot;:1.72},{&quot;2026-07-19&quot;:1.72},{&quot;2026-07-20&quot;:1.6},{&quot;2026-07-21&quot;:1.49},{&quot;2026-07-22&quot;:1.49},{&quot;2026-07-23&quot;:1.49},{&quot;2026-07-24&quot;:1.49},{&quot;2026-07-25&quot;:1.49},{&quot;2026-07-26&quot;:1.49},{&quot;2026-07-27&quot;:1.49},{&quot;2026-07-28&quot;:1.5},{&quot;2026-07-29&quot;:1.5},{&quot;2026-07-30&quot;:1.5},{&quot;2026-07-31&quot;:1.5},{&quot;2026-08-01&quot;:1.5},{&quot;2026-08-02&quot;:1.49},{&quot;2026-08-03&quot;:1.49},{&quot;2026-08-04&quot;:1.49},{&quot;2026-08-05&quot;:1.49},{&quot;2026-08-07&quot;:1.51},{&quot;2026-08-08&quot;:1.51},{&quot;2026-08-09&quot;:1.49},{&quot;2026-08-10&quot;:1.49},{&quot;2026-08-11&quot;:1.49},{&quot;2026-08-12&quot;:1.36},{&quot;2026-08-13&quot;:1.36},{&quot;2026-08-14&quot;:1.34},{&quot;2026-08-15&quot;:1.34},{&quot;2026-08-16&quot;:1.34},{&quot;2026-08-17&quot;:1.34},{&quot;2026-08-18&quot;:1.34},{&quot;2026-08-19&quot;:1.34},{&quot;2026-08-20&quot;:1.34},{&quot;2026-08-21&quot;:1.36},{&quot;2026-08-22&quot;:1.39},{&quot;2026-08-23&quot;:1.38},{&quot;2026-08-24&quot;:1.32},{&quot;2026-08-25&quot;:1.32},{&quot;2026-08-26&quot;:1.22},{&quot;2026-08-27&quot;:1.04},{&quot;2026-08-28&quot;:1.04},{&quot;2026-08-29&quot;:1.04},{&quot;2026-08-30&quot;:1.04},{&quot;2026-08-31&quot;:1.04},{&quot;2026-09-01&quot;:1.04},{&quot;2026-09-02&quot;:1.01},{&quot;2026-09-03&quot;:1.02},{&quot;2026-09-04&quot;:1.02},{&quot;2026-09-05&quot;:1.02},{&quot;2026-09-06&quot;:1.02},{&quot;2026-09-07&quot;:1.02},{&quot;2026-09-08&quot;:1.02},{&quot;2026-09-09&quot;:1.02},{&quot;2026-09-10&quot;:1.02},{&quot;2026-09-11&quot;:1.02},{&quot;2026-09-12&quot;:1.02},{&quot;2026-09-13&quot;:1.02}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.58},{&quot;2026-06-16&quot;:1.56},{&quot;2026-06-17&quot;:1.56},{&quot;2026-06-18&quot;:1.65},{&quot;2026-06-19&quot;:1.43},{&quot;2026-06-20&quot;:1.43},{&quot;2026-06-21&quot;:1.38},{&quot;2026-06-22&quot;:1.38},{&quot;2026-06-23&quot;:1.39},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.41},{&quot;2026-06-26&quot;:1.4},{&quot;2026-06-27&quot;:1.34},{&quot;2026-06-28&quot;:1.32},{&quot;2026-06-29&quot;:1.49},{&quot;2026-06-30&quot;:1.56},{&quot;2026-07-01&quot;:1.52},{&quot;2026-07-02&quot;:1.47},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.52},{&quot;2026-07-05&quot;:1.54},{&quot;2026-07-06&quot;:1.54},{&quot;2026-07-07&quot;:1.54},{&quot;2026-07-08&quot;:1.54},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.45},{&quot;2026-07-11&quot;:1.43},{&quot;2026-07-12&quot;:1.39},{&quot;2026-07-13&quot;:1.39},{&quot;2026-07-14&quot;:1.39},{&quot;2026-07-15&quot;:1.35},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.41},{&quot;2026-07-18&quot;:1.41},{&quot;2026-07-19&quot;:1.45},{&quot;2026-07-20&quot;:1.45},{&quot;2026-07-21&quot;:1.45},{&quot;2026-07-22&quot;:1.42},{&quot;2026-07-23&quot;:1.42},{&quot;2026-07-24&quot;:1.45},{&quot;2026-07-25&quot;:1.37},{&quot;2026-07-26&quot;:1.32},{&quot;2026-07-27&quot;:1.32},{&quot;2026-07-28&quot;:1.32},{&quot;2026-07-29&quot;:1.31},{&quot;2026-07-30&quot;:1.26},{&quot;2026-07-31&quot;:1.26},{&quot;2026-08-01&quot;:1.26},{&quot;2026-08-02&quot;:1.21},{&quot;2026-08-03&quot;:1.21},{&quot;2026-08-04&quot;:1.21},{&quot;2026-08-05&quot;:1.09},{&quot;2026-08-07&quot;:1.03},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.03},{&quot;2026-08-11&quot;:1.03},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:1.03},{&quot;2026-08-14&quot;:1.03},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.03},{&quot;2026-08-17&quot;:1.05},{&quot;2026-08-18&quot;:1.03},{&quot;2026-08-19&quot;:1.03},{&quot;2026-08-20&quot;:1.03},{&quot;2026-08-21&quot;:1.02},{&quot;2026-08-22&quot;:1.01},{&quot;2026-08-23&quot;:1.0},{&quot;2026-08-24&quot;:1.02},{&quot;2026-08-25&quot;:1.01},{&quot;2026-08-26&quot;:0.97},{&quot;2026-08-27&quot;:0.97},{&quot;2026-08-28&quot;:0.93},{&quot;2026-08-29&quot;:0.93},{&quot;2026-08-30&quot;:0.91},{&quot;2026-08-31&quot;:0.91},{&quot;2026-09-01&quot;:0.89},{&quot;2026-09-02&quot;:0.86},{&quot;2026-09-03&quot;:0.84},{&quot;2026-09-04&quot;:0.84},{&quot;2026-09-05&quot;:0.8},{&quot;2026-09-06&quot;:0.8},{&quot;2026-09-07&quot;:0.8},{&quot;2026-09-08&quot;:0.79},{&quot;2026-09-09&quot;:0.79},{&quot;2026-09-10&quot;:0.77},{&quot;2026-09-11&quot;:0.77},{&quot;2026-09-12&quot;:0.77},{&quot;2026-09-13&quot;:0.75}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77577"
  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-eld 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">
            Mystical Dispute
        </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">
              ↓
              9%
            </span>

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

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

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

        <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">
            Mystical Dispute
        </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-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="Mystical Dispute" src="https://cards.scryfall.io/large/front/f/b/fbe04cb8-a8b9-4241-baae-b398a2509a3a.jpg?1783932655" />
    </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.58
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $5.08
              </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;2026-06-15&quot;:3.7},{&quot;2026-06-16&quot;:3.74},{&quot;2026-06-17&quot;:3.74},{&quot;2026-06-18&quot;:3.74},{&quot;2026-06-19&quot;:3.74},{&quot;2026-06-20&quot;:3.74},{&quot;2026-06-21&quot;:3.76},{&quot;2026-06-22&quot;:3.76},{&quot;2026-06-23&quot;:3.76},{&quot;2026-06-24&quot;:3.76},{&quot;2026-06-25&quot;:3.87},{&quot;2026-06-26&quot;:3.91},{&quot;2026-06-27&quot;:3.96},{&quot;2026-06-28&quot;:3.96},{&quot;2026-06-29&quot;:4.08},{&quot;2026-06-30&quot;:4.08},{&quot;2026-07-01&quot;:4.12},{&quot;2026-07-02&quot;:4.12},{&quot;2026-07-03&quot;:4.12},{&quot;2026-07-04&quot;:4.12},{&quot;2026-07-05&quot;:4.12},{&quot;2026-07-06&quot;:4.37},{&quot;2026-07-07&quot;:4.49},{&quot;2026-07-08&quot;:4.49},{&quot;2026-07-09&quot;:4.49},{&quot;2026-07-10&quot;:4.49},{&quot;2026-07-11&quot;:4.49},{&quot;2026-07-12&quot;:4.74},{&quot;2026-07-13&quot;:4.74},{&quot;2026-07-14&quot;:4.74},{&quot;2026-07-15&quot;:4.74},{&quot;2026-07-16&quot;:4.74},{&quot;2026-07-17&quot;:4.74},{&quot;2026-07-18&quot;:4.74},{&quot;2026-07-19&quot;:4.74},{&quot;2026-07-20&quot;:4.74},{&quot;2026-07-21&quot;:4.74},{&quot;2026-07-22&quot;:4.66},{&quot;2026-07-23&quot;:4.73},{&quot;2026-07-24&quot;:4.69},{&quot;2026-07-25&quot;:4.69},{&quot;2026-07-26&quot;:4.69},{&quot;2026-07-27&quot;:4.69},{&quot;2026-07-28&quot;:4.69},{&quot;2026-07-29&quot;:4.69},{&quot;2026-07-30&quot;:4.69},{&quot;2026-07-31&quot;:4.69},{&quot;2026-08-01&quot;:4.69},{&quot;2026-08-02&quot;:4.69},{&quot;2026-08-03&quot;:4.69},{&quot;2026-08-04&quot;:4.84},{&quot;2026-08-05&quot;:4.84},{&quot;2026-08-07&quot;:4.83},{&quot;2026-08-08&quot;:4.83},{&quot;2026-08-09&quot;:4.79},{&quot;2026-08-10&quot;:4.79},{&quot;2026-08-11&quot;:4.79},{&quot;2026-08-12&quot;:4.79},{&quot;2026-08-13&quot;:4.79},{&quot;2026-08-14&quot;:4.79},{&quot;2026-08-15&quot;:4.79},{&quot;2026-08-16&quot;:4.79},{&quot;2026-08-17&quot;:4.9},{&quot;2026-08-18&quot;:4.9},{&quot;2026-08-19&quot;:4.9},{&quot;2026-08-20&quot;:4.9},{&quot;2026-08-21&quot;:4.92},{&quot;2026-08-22&quot;:4.92},{&quot;2026-08-23&quot;:4.92},{&quot;2026-08-24&quot;:4.92},{&quot;2026-08-25&quot;:4.92},{&quot;2026-08-26&quot;:4.92},{&quot;2026-08-27&quot;:4.92},{&quot;2026-08-28&quot;:4.92},{&quot;2026-08-29&quot;:4.92},{&quot;2026-08-30&quot;:5.04},{&quot;2026-08-31&quot;:5.04},{&quot;2026-09-01&quot;:5.04},{&quot;2026-09-02&quot;:5.04},{&quot;2026-09-03&quot;:5.04},{&quot;2026-09-04&quot;:5.04},{&quot;2026-09-05&quot;:5.08},{&quot;2026-09-06&quot;:5.08},{&quot;2026-09-07&quot;:5.08},{&quot;2026-09-08&quot;:5.08},{&quot;2026-09-09&quot;:5.08},{&quot;2026-09-10&quot;:5.08},{&quot;2026-09-11&quot;:5.08},{&quot;2026-09-12&quot;:5.08},{&quot;2026-09-13&quot;:5.08}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:1.17},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.13},{&quot;2026-06-19&quot;:1.16},{&quot;2026-06-20&quot;:1.11},{&quot;2026-06-21&quot;:1.13},{&quot;2026-06-22&quot;:1.1},{&quot;2026-06-23&quot;:1.08},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.73},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.73},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.87},{&quot;2026-06-30&quot;:0.97},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.05},{&quot;2026-07-03&quot;:0.94},{&quot;2026-07-04&quot;:0.9},{&quot;2026-07-05&quot;:0.88},{&quot;2026-07-06&quot;:0.83},{&quot;2026-07-07&quot;:0.89},{&quot;2026-07-08&quot;:0.88},{&quot;2026-07-09&quot;:0.88},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.97},{&quot;2026-07-12&quot;:1.06},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.05},{&quot;2026-07-15&quot;:1.14},{&quot;2026-07-16&quot;:1.16},{&quot;2026-07-17&quot;:1.04},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.02},{&quot;2026-07-20&quot;:1.07},{&quot;2026-07-21&quot;:0.99},{&quot;2026-07-22&quot;:1.01},{&quot;2026-07-23&quot;:1.02},{&quot;2026-07-24&quot;:0.97},{&quot;2026-07-25&quot;:0.92},{&quot;2026-07-26&quot;:0.9},{&quot;2026-07-27&quot;:0.88},{&quot;2026-07-28&quot;:0.92},{&quot;2026-07-29&quot;:0.93},{&quot;2026-07-30&quot;:0.93},{&quot;2026-07-31&quot;:0.91},{&quot;2026-08-01&quot;:0.83},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.72},{&quot;2026-08-04&quot;:0.76},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.75},{&quot;2026-08-08&quot;:0.75},{&quot;2026-08-09&quot;:0.71},{&quot;2026-08-10&quot;:0.71},{&quot;2026-08-11&quot;:0.7},{&quot;2026-08-12&quot;:0.7},{&quot;2026-08-13&quot;:0.64},{&quot;2026-08-14&quot;:0.64},{&quot;2026-08-15&quot;:0.6},{&quot;2026-08-16&quot;:0.6},{&quot;2026-08-17&quot;:0.6},{&quot;2026-08-18&quot;:0.59},{&quot;2026-08-19&quot;:0.59},{&quot;2026-08-20&quot;:0.58},{&quot;2026-08-21&quot;:0.57},{&quot;2026-08-22&quot;:0.56},{&quot;2026-08-23&quot;:0.55},{&quot;2026-08-24&quot;:0.55},{&quot;2026-08-25&quot;:0.59},{&quot;2026-08-26&quot;:0.59},{&quot;2026-08-27&quot;:0.59},{&quot;2026-08-28&quot;:0.58},{&quot;2026-08-29&quot;:0.58},{&quot;2026-08-30&quot;:0.64},{&quot;2026-08-31&quot;:0.62},{&quot;2026-09-01&quot;:0.64},{&quot;2026-09-02&quot;:0.65},{&quot;2026-09-03&quot;:0.65},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.62},{&quot;2026-09-06&quot;:0.62},{&quot;2026-09-07&quot;:0.64},{&quot;2026-09-08&quot;:0.6},{&quot;2026-09-09&quot;:0.58},{&quot;2026-09-10&quot;:0.55},{&quot;2026-09-11&quot;:0.57},{&quot;2026-09-12&quot;:0.56},{&quot;2026-09-13&quot;:0.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="94865"
  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-fca 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">
            Laboratory Maniac
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Laboratory Maniac
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Laboratory Maniac" src="https://cards.scryfall.io/large/front/4/4/44ede007-b6db-4396-8b25-9e2621cfeec4.jpg?1783906386" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.05},{&quot;2026-06-14&quot;:1.08},{&quot;2026-06-15&quot;:1.28},{&quot;2026-06-16&quot;:1.28},{&quot;2026-06-17&quot;:1.51},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.54},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.75},{&quot;2026-06-22&quot;:1.75},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.73},{&quot;2026-06-25&quot;:1.73},{&quot;2026-06-26&quot;:1.73},{&quot;2026-06-27&quot;:1.76},{&quot;2026-06-28&quot;:1.8},{&quot;2026-06-29&quot;:1.8},{&quot;2026-06-30&quot;:1.8},{&quot;2026-07-01&quot;:1.74},{&quot;2026-07-02&quot;:1.77},{&quot;2026-07-03&quot;:1.77},{&quot;2026-07-04&quot;:1.77},{&quot;2026-07-05&quot;:1.77},{&quot;2026-07-06&quot;:1.78},{&quot;2026-07-07&quot;:1.83},{&quot;2026-07-08&quot;:1.83},{&quot;2026-07-09&quot;:1.83},{&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.84},{&quot;2026-07-14&quot;:1.84},{&quot;2026-07-15&quot;:1.8},{&quot;2026-07-16&quot;:1.76},{&quot;2026-07-17&quot;:1.6},{&quot;2026-07-18&quot;:1.42},{&quot;2026-07-19&quot;:1.34},{&quot;2026-07-20&quot;:1.28},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-23&quot;:1.28},{&quot;2026-07-25&quot;:1.26},{&quot;2026-07-26&quot;:1.04},{&quot;2026-07-27&quot;:1.06},{&quot;2026-07-28&quot;:1.11},{&quot;2026-07-29&quot;:1.04},{&quot;2026-07-30&quot;:1.04},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.02},{&quot;2026-08-03&quot;:0.97},{&quot;2026-08-04&quot;:0.93},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:1.02},{&quot;2026-08-08&quot;:0.98},{&quot;2026-08-09&quot;:0.99},{&quot;2026-08-10&quot;:0.95},{&quot;2026-08-11&quot;:0.95},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.97},{&quot;2026-08-14&quot;:0.97},{&quot;2026-08-15&quot;:0.93},{&quot;2026-08-16&quot;:0.94},{&quot;2026-08-17&quot;:0.93},{&quot;2026-08-18&quot;:0.93},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:0.95},{&quot;2026-08-22&quot;:0.94},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.94},{&quot;2026-08-25&quot;:0.93},{&quot;2026-08-26&quot;:0.93},{&quot;2026-08-27&quot;:0.86},{&quot;2026-08-28&quot;:0.88},{&quot;2026-08-29&quot;:0.88},{&quot;2026-08-30&quot;:0.85},{&quot;2026-08-31&quot;:0.86},{&quot;2026-09-01&quot;:0.86},{&quot;2026-09-02&quot;:0.84},{&quot;2026-09-03&quot;:0.84},{&quot;2026-09-04&quot;:0.84},{&quot;2026-09-05&quot;:0.84},{&quot;2026-09-06&quot;:0.84},{&quot;2026-09-07&quot;:0.92},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.93},{&quot;2026-09-11&quot;:0.93},{&quot;2026-09-12&quot;:0.93},{&quot;2026-09-13&quot;:0.92}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.41},{&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.38},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.37},{&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.38},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.42},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.4},{&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.4},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-28&quot;:0.41},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.4},{&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.43},{&quot;2026-08-09&quot;:0.42},{&quot;2026-08-10&quot;:0.42},{&quot;2026-08-11&quot;:0.42},{&quot;2026-08-12&quot;:0.42},{&quot;2026-08-13&quot;:0.43},{&quot;2026-08-14&quot;:0.41},{&quot;2026-08-15&quot;:0.41},{&quot;2026-08-16&quot;:0.4},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.36},{&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.36},{&quot;2026-08-24&quot;:0.41},{&quot;2026-08-25&quot;:0.39},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.4},{&quot;2026-09-01&quot;:0.4},{&quot;2026-09-02&quot;:0.41},{&quot;2026-09-03&quot;:0.4},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.44},{&quot;2026-09-06&quot;:0.42},{&quot;2026-09-07&quot;:0.46},{&quot;2026-09-08&quot;:0.47},{&quot;2026-09-09&quot;:0.52},{&quot;2026-09-10&quot;:0.49},{&quot;2026-09-11&quot;:0.47},{&quot;2026-09-12&quot;:0.46},{&quot;2026-09-13&quot;:0.43}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20251"
  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-2x2 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">
              ↑
              5%
            </span>

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

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

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

        <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/e/0/e0fed1e5-fcbd-4597-91b5-ba809571573b.jpg?1783921913" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="9462"
  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-c18 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">
              ↑
              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="Mulldrifter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/7/6757e07f-fb3e-42a2-9684-d4f53030255d.jpg?1783934308" />

        <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/6/7/6757e07f-fb3e-42a2-9684-d4f53030255d.jpg?1783934308" />
    </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">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-14&quot;:0.38},{&quot;2026-06-15&quot;:0.38},{&quot;2026-06-16&quot;:0.38},{&quot;2026-06-17&quot;:0.38},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.39},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.39},{&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.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.39},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-24&quot;:0.39},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-28&quot;:0.4},{&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.39},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.38},{&quot;2026-09-02&quot;:0.38},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.38},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.38},{&quot;2026-09-12&quot;:0.38},{&quot;2026-09-13&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="35655"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-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">
            Consider
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </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="Consider" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a211d505-4d40-4914-a9da-220770d6ddbc.jpg?1783925647" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Consider" src="https://cards.scryfall.io/large/front/a/2/a211d505-4d40-4914-a9da-220770d6ddbc.jpg?1783925647" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.85
              </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.26</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-06-11&quot;:0.82},{&quot;2026-06-12&quot;:0.82},{&quot;2026-06-13&quot;:0.82},{&quot;2026-06-14&quot;:0.81},{&quot;2026-06-15&quot;:0.84},{&quot;2026-06-16&quot;:1.12},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.12},{&quot;2026-06-21&quot;:1.12},{&quot;2026-06-22&quot;:1.12},{&quot;2026-06-24&quot;:1.12},{&quot;2026-06-25&quot;:1.12},{&quot;2026-06-26&quot;:1.29},{&quot;2026-06-27&quot;:1.29},{&quot;2026-06-28&quot;:1.29},{&quot;2026-06-29&quot;:1.29},{&quot;2026-06-30&quot;:1.3},{&quot;2026-07-01&quot;:1.3},{&quot;2026-07-02&quot;:1.31},{&quot;2026-07-03&quot;:1.31},{&quot;2026-07-04&quot;:1.3},{&quot;2026-07-05&quot;:1.3},{&quot;2026-07-06&quot;:1.3},{&quot;2026-07-07&quot;:1.29},{&quot;2026-07-08&quot;:1.29},{&quot;2026-07-09&quot;:1.35},{&quot;2026-07-10&quot;:1.35},{&quot;2026-07-11&quot;:1.34},{&quot;2026-07-12&quot;:1.34},{&quot;2026-07-13&quot;:1.34},{&quot;2026-07-14&quot;:1.37},{&quot;2026-07-15&quot;:1.37},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.37},{&quot;2026-07-18&quot;:1.4},{&quot;2026-07-19&quot;:1.4},{&quot;2026-07-20&quot;:1.39},{&quot;2026-07-21&quot;:1.41},{&quot;2026-07-23&quot;:1.42},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.33},{&quot;2026-07-27&quot;:1.33},{&quot;2026-07-29&quot;:1.19},{&quot;2026-07-30&quot;:1.19},{&quot;2026-07-31&quot;:1.22},{&quot;2026-08-01&quot;:1.22},{&quot;2026-08-02&quot;:1.22},{&quot;2026-08-03&quot;:1.22},{&quot;2026-08-04&quot;:1.22},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.2},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.2},{&quot;2026-08-10&quot;:1.14},{&quot;2026-08-11&quot;:1.14},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.14},{&quot;2026-08-14&quot;:1.14},{&quot;2026-08-15&quot;:1.14},{&quot;2026-08-16&quot;:1.14},{&quot;2026-08-17&quot;:1.14},{&quot;2026-08-18&quot;:1.08},{&quot;2026-08-19&quot;:0.81},{&quot;2026-08-20&quot;:0.81},{&quot;2026-08-21&quot;:0.81},{&quot;2026-08-22&quot;:0.81},{&quot;2026-08-23&quot;:0.85},{&quot;2026-08-24&quot;:0.85},{&quot;2026-08-25&quot;:0.85},{&quot;2026-08-26&quot;:0.84},{&quot;2026-08-27&quot;:0.84},{&quot;2026-08-28&quot;:0.85},{&quot;2026-08-29&quot;:0.85},{&quot;2026-08-30&quot;:0.85},{&quot;2026-08-31&quot;:0.84},{&quot;2026-09-01&quot;:0.84},{&quot;2026-09-02&quot;:0.86},{&quot;2026-09-03&quot;:0.85},{&quot;2026-09-04&quot;:0.85},{&quot;2026-09-05&quot;:0.85},{&quot;2026-09-06&quot;:0.83},{&quot;2026-09-07&quot;:0.83},{&quot;2026-09-08&quot;:0.83},{&quot;2026-09-09&quot;:0.84},{&quot;2026-09-10&quot;:0.84},{&quot;2026-09-11&quot;:0.84},{&quot;2026-09-12&quot;:0.84},{&quot;2026-09-13&quot;:0.85}],&quot;normal&quot;:[{&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.31},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.33},{&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-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.37},{&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.41},{&quot;2026-07-07&quot;:0.41},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.42},{&quot;2026-07-10&quot;:0.44},{&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.42},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.44},{&quot;2026-07-17&quot;:0.43},{&quot;2026-07-18&quot;:0.42},{&quot;2026-07-19&quot;:0.42},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-25&quot;:0.39},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.39},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.4},{&quot;2026-08-02&quot;:0.41},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.38},{&quot;2026-08-08&quot;:0.4},{&quot;2026-08-09&quot;:0.4},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.38},{&quot;2026-08-12&quot;:0.38},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.4},{&quot;2026-08-17&quot;:0.4},{&quot;2026-08-18&quot;:0.42},{&quot;2026-08-19&quot;:0.42},{&quot;2026-08-20&quot;:0.42},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.4},{&quot;2026-08-31&quot;:0.42},{&quot;2026-09-01&quot;:0.42},{&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.39},{&quot;2026-09-06&quot;:0.39},{&quot;2026-09-07&quot;:0.39},{&quot;2026-09-08&quot;:0.4},{&quot;2026-09-09&quot;:0.39},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.38},{&quot;2026-09-12&quot;:0.38},{&quot;2026-09-13&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="20404"
  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-2xm 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">
            Temur Battle Rage
        </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">
            4 owned
          </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Temur Battle Rage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/8/88258dee-b5c0-4472-86d6-cc534c32fe27.jpg?1783930157" />

        <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">
            Temur Battle Rage
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Temur Battle Rage" src="https://cards.scryfall.io/large/front/8/8/88258dee-b5c0-4472-86d6-cc534c32fe27.jpg?1783930157" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              10%
            </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="Spell Pierce" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1783921772" />

        <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">
            Spell Pierce
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Spell Pierce" src="https://cards.scryfall.io/large/front/d/3/d3c8f1c8-2b57-41a3-abeb-77ac7de62fa1.jpg?1783921772" />
    </div>

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

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

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

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

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

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

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.35
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  10%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.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">$0.08</span>
              <span class="text-xs text-grey-text">Credit: $0.10</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-15&quot;:0.6},{&quot;2026-06-16&quot;:0.6},{&quot;2026-06-17&quot;:0.59},{&quot;2026-06-18&quot;:0.59},{&quot;2026-06-19&quot;:0.6},{&quot;2026-06-20&quot;:0.61},{&quot;2026-06-21&quot;:0.61},{&quot;2026-06-22&quot;:0.61},{&quot;2026-06-23&quot;:0.61},{&quot;2026-06-24&quot;:0.61},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.57},{&quot;2026-06-28&quot;:0.57},{&quot;2026-06-29&quot;:0.57},{&quot;2026-06-30&quot;:0.56},{&quot;2026-07-01&quot;:0.55},{&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.54},{&quot;2026-07-06&quot;:0.54},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.53},{&quot;2026-07-09&quot;:0.53},{&quot;2026-07-10&quot;:0.53},{&quot;2026-07-11&quot;:0.53},{&quot;2026-07-12&quot;:0.53},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.53},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.52},{&quot;2026-07-19&quot;:0.52},{&quot;2026-07-20&quot;:0.52},{&quot;2026-07-21&quot;:0.53},{&quot;2026-07-22&quot;:0.52},{&quot;2026-07-23&quot;:0.52},{&quot;2026-07-24&quot;:0.52},{&quot;2026-07-25&quot;:0.52},{&quot;2026-07-26&quot;:0.54},{&quot;2026-07-27&quot;:0.53},{&quot;2026-07-28&quot;:0.53},{&quot;2026-07-29&quot;:0.53},{&quot;2026-07-30&quot;:0.52},{&quot;2026-07-31&quot;:0.54},{&quot;2026-08-01&quot;:0.54},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.57},{&quot;2026-08-05&quot;:0.61},{&quot;2026-08-07&quot;:0.61},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.64},{&quot;2026-08-10&quot;:0.64},{&quot;2026-08-11&quot;:0.64},{&quot;2026-08-12&quot;:0.64},{&quot;2026-08-13&quot;:0.64},{&quot;2026-08-14&quot;:0.64},{&quot;2026-08-15&quot;:0.64},{&quot;2026-08-16&quot;:0.64},{&quot;2026-08-17&quot;:0.64},{&quot;2026-08-18&quot;:0.64},{&quot;2026-08-19&quot;:0.64},{&quot;2026-08-20&quot;:0.64},{&quot;2026-08-21&quot;:0.64},{&quot;2026-08-22&quot;:0.64},{&quot;2026-08-23&quot;:0.64},{&quot;2026-08-24&quot;:0.64},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.64},{&quot;2026-08-27&quot;:0.65},{&quot;2026-08-28&quot;:0.63},{&quot;2026-08-29&quot;:0.63},{&quot;2026-08-30&quot;:0.65},{&quot;2026-08-31&quot;:0.65},{&quot;2026-09-01&quot;:0.65},{&quot;2026-09-02&quot;:0.65},{&quot;2026-09-03&quot;:0.65},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.65},{&quot;2026-09-06&quot;:0.65},{&quot;2026-09-07&quot;:0.65},{&quot;2026-09-08&quot;:0.65},{&quot;2026-09-09&quot;:0.65},{&quot;2026-09-10&quot;:0.65},{&quot;2026-09-11&quot;:0.67},{&quot;2026-09-12&quot;:0.67},{&quot;2026-09-13&quot;:0.65}],&quot;normal&quot;:[{&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.41},{&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.41},{&quot;2026-06-25&quot;:0.41},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.41},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.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.41},{&quot;2026-07-07&quot;:0.41},{&quot;2026-07-08&quot;:0.41},{&quot;2026-07-09&quot;:0.41},{&quot;2026-07-10&quot;:0.39},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.39},{&quot;2026-07-13&quot;:0.39},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.39},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.38},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.37},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.37},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.37},{&quot;2026-08-17&quot;:0.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.41},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.42},{&quot;2026-08-27&quot;:0.43},{&quot;2026-08-28&quot;:0.44},{&quot;2026-08-29&quot;:0.44},{&quot;2026-08-30&quot;:0.42},{&quot;2026-08-31&quot;:0.42},{&quot;2026-09-01&quot;:0.4},{&quot;2026-09-02&quot;:0.4},{&quot;2026-09-03&quot;:0.4},{&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.39},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.36},{&quot;2026-09-12&quot;:0.36},{&quot;2026-09-13&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="40345"
  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-khc 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">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $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="Mulldrifter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/345fd005-5052-4500-a260-3649500e21f4.jpg?1783928323" />

        <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/3/4/345fd005-5052-4500-a260-3649500e21f4.jpg?1783928323" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.35
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.08</span>
              <span class="text-xs text-grey-text">Credit: $0.10</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.68},{&quot;2026-06-13&quot;:0.68},{&quot;2026-06-14&quot;:0.68},{&quot;2026-06-15&quot;:0.68},{&quot;2026-06-16&quot;:0.68},{&quot;2026-06-17&quot;:0.68},{&quot;2026-06-18&quot;:0.68},{&quot;2026-06-19&quot;:0.68},{&quot;2026-06-20&quot;:0.68},{&quot;2026-06-21&quot;:0.68},{&quot;2026-06-22&quot;:0.68},{&quot;2026-06-23&quot;:0.68},{&quot;2026-06-24&quot;:0.67},{&quot;2026-06-25&quot;:0.67},{&quot;2026-06-26&quot;:0.67},{&quot;2026-06-27&quot;:0.67},{&quot;2026-06-28&quot;:0.67},{&quot;2026-06-29&quot;:0.67},{&quot;2026-06-30&quot;:0.67},{&quot;2026-07-01&quot;:0.67},{&quot;2026-07-02&quot;:0.67},{&quot;2026-07-03&quot;:0.66},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.66},{&quot;2026-07-06&quot;:0.66},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.66},{&quot;2026-07-09&quot;:0.67},{&quot;2026-07-10&quot;:0.67},{&quot;2026-07-11&quot;:0.67},{&quot;2026-07-12&quot;:0.67},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.36},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.38},{&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.37},{&quot;2026-08-03&quot;:0.37},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.36},{&quot;2026-08-22&quot;:0.36},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.37},{&quot;2026-08-29&quot;:0.37},{&quot;2026-08-30&quot;:0.37},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.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.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.36},{&quot;2026-09-12&quot;:0.36},{&quot;2026-09-13&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="20245"
  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-2x2 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">
            Mana Leak
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            2 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.34
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mana Leak" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/7/179236d9-6fe2-4db6-bdfb-f851e8d531a2.jpg?1783921915" />

        <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">
            Mana Leak
        </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="Mana Leak" src="https://cards.scryfall.io/large/front/1/7/179236d9-6fe2-4db6-bdfb-f851e8d531a2.jpg?1783921915" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.34
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $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.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:0.39},{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.39},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.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.39},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.38},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.37},{&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.38},{&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.37},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-29&quot;:0.37},{&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.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.36},{&quot;2026-08-08&quot;:0.36},{&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.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.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.35},{&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.38},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.37},{&quot;2026-08-29&quot;:0.37},{&quot;2026-08-30&quot;:0.37},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.39},{&quot;2026-09-07&quot;:0.39},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.39},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.38},{&quot;2026-09-12&quot;:0.38},{&quot;2026-09-13&quot;:0.38}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.36},{&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.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.3},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.28},{&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.28},{&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.27},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.32},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.33},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&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.29},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.3},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&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.34},{&quot;2026-09-12&quot;:0.36},{&quot;2026-09-13&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="20260"
  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-2x2 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">
            Spell Pierce
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.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="Spell Pierce" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/5/35b8a9db-d126-4038-abb1-74dcc5b36136.jpg?1783921912" />

        <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">
            Spell Pierce
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Spell Pierce" src="https://cards.scryfall.io/large/front/3/5/35b8a9db-d126-4038-abb1-74dcc5b36136.jpg?1783921912" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.34
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.33
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.44},{&quot;2026-06-27&quot;:0.45},{&quot;2026-06-28&quot;:0.45},{&quot;2026-06-29&quot;:0.45},{&quot;2026-06-30&quot;:0.45},{&quot;2026-07-01&quot;:0.46},{&quot;2026-07-02&quot;:0.46},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.45},{&quot;2026-07-05&quot;:0.45},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.45},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.45},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.44},{&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.44},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.44},{&quot;2026-07-22&quot;:0.44},{&quot;2026-07-23&quot;:0.44},{&quot;2026-07-24&quot;:0.44},{&quot;2026-07-25&quot;:0.44},{&quot;2026-07-26&quot;:0.44},{&quot;2026-07-27&quot;:0.44},{&quot;2026-07-28&quot;:0.44},{&quot;2026-07-29&quot;:0.44},{&quot;2026-07-30&quot;:0.44},{&quot;2026-07-31&quot;:0.44},{&quot;2026-08-01&quot;:0.44},{&quot;2026-08-02&quot;:0.44},{&quot;2026-08-03&quot;:0.44},{&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.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.47},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&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},{&quot;2026-09-12&quot;:0.33},{&quot;2026-09-13&quot;:0.33}],&quot;normal&quot;:[{&quot;2026-06-15&quot;:0.35},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.35},{&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.34},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.32},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&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.32},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.31},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.3},{&quot;2026-07-08&quot;:0.32},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.33},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.33},{&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.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.33},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.32},{&quot;2026-07-29&quot;:0.32},{&quot;2026-07-30&quot;:0.32},{&quot;2026-07-31&quot;:0.32},{&quot;2026-08-01&quot;:0.32},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.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.33},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&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.34},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&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.34},{&quot;2026-09-12&quot;:0.34},{&quot;2026-09-13&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="13978"
  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-clb 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">
            Fact or Fiction
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Fact or Fiction" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/3/43d5a3ec-eb03-47c1-9570-98832ebf8898.jpg?1783922472" />

        <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">
            Fact or Fiction
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fact or Fiction" src="https://cards.scryfall.io/large/front/4/3/43d5a3ec-eb03-47c1-9570-98832ebf8898.jpg?1783922472" />
    </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.29
              </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-12&quot;:0.3},{&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.3},{&quot;2026-06-17&quot;:0.3},{&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.3},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.29},{&quot;2026-06-24&quot;:0.29},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.29},{&quot;2026-06-27&quot;:0.29},{&quot;2026-06-28&quot;:0.29},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.29},{&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.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.29},{&quot;2026-07-10&quot;:0.29},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.29},{&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.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-29&quot;:0.29},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.28},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.28},{&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.29},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&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.29},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29},{&quot;2026-09-12&quot;:0.29},{&quot;2026-09-13&quot;:0.29}]}"
        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 51 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=344&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=344&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=344&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=344&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=344&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=344&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=344&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=344&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=344&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=344&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=344&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="74638"
          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">
              336
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Nazgûl


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Wraith Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $26.08

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $17.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74638"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74638" src="/boxset_card/74638?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73942"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              100
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Nazgûl


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Wraith Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $24.61

                    <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">
                $19.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.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73942"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73942" src="/boxset_card/73942?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74646"
          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">
              339
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Nazgûl


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Wraith Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $21.81

                    <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">
                $18.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74646"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74646" src="/boxset_card/74646?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77501"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              TSP-70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Ophidian Eye


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $12.27

                    <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">
                $8.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.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77501"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77501" src="/boxset_card/77501?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83714"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              ODY-214
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Price of Glory


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83714"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83714" src="/boxset_card/83714?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77894"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              EMA-78
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Animate Dead


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.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.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77894"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77894" src="/boxset_card/77894?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41742"
          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">
              211
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x mr-4"></i>
              Tamiyo&#39;s Safekeeping


            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41742"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41742" src="/boxset_card/41742?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87288"
          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">
              M11-103
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Liliana&#39;s Caress


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.34

                    <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">
                $4.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.51
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87288"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87288" src="/boxset_card/87288?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13128"
          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">
              444
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-common ss-fw ss-2x mr-4"></i>
              Decanter of Endless Water


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.11

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      36%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.06

                    <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">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.40
            </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="13128"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13128" src="/boxset_card/13128?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48710"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              7
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Ephemerate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.03

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.39
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="48710"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_48710" src="/boxset_card/48710?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73852"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              DDR-7
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Crop Rotation


            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.60

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73852"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73852" src="/boxset_card/73852?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95519"
          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">
              412
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-uncommon ss-fw ss-2x mr-4"></i>
              Cid, Timeless Artificer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.50

                    <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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95519"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95519" src="/boxset_card/95519?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86979"
          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">
              A25-50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 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">
                  $4.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86979"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86979" src="/boxset_card/86979?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78495"
          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">
              LRW-89
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Spellstutter Sprite


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Faerie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.03

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78495"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78495" src="/boxset_card/78495?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77681"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              STH-74
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Tortured Existence


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.92

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77681"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77681" src="/boxset_card/77681?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18154"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              66
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-common ss-fw ss-2x mr-4"></i>
              Snap


            </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">
                  $3.75

                    <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">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.51
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18154"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18154" src="/boxset_card/18154?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90242"
          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">
              15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-common ss-fw ss-2x mr-4"></i>
              Hare Apparent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rabbit Noble
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.73

                    <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">
                $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.51
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90242"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90242" src="/boxset_card/90242?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20787"
          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">
              277
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-common ss-fw ss-2x mr-4"></i>
              Myr Retriever


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Myr
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.66

                    <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">
                <div class="flex items-center gap-2">
                  $3.40

                    <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">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20787"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20787" src="/boxset_card/20787?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95513"
          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-fin ss-uncommon ss-fw ss-2x mr-4"></i>
              Cid, Timeless Artificer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.66

                    <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">
                $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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95513"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95513" src="/boxset_card/95513?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18090"
          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">
              45
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr 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">
                  $3.34

                    <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">
                $2.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18090"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18090" src="/boxset_card/18090?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="81109"
          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">
              DTK-140
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Impact Tremors


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.17

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="81109"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_81109" src="/boxset_card/81109?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79251"
          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">
              190
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-common ss-fw ss-2x mr-4"></i>
              Simian Spirit Guide


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Ape Spirit
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.16

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79251"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79251" src="/boxset_card/79251?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28801"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              164
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-common ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.11

                    <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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28801"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28801" src="/boxset_card/28801?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49520"
          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">
              267
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Counterspell

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.03

                    <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.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49520"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49520" src="/boxset_card/49520?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90843"
          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">
              71
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-uncommon ss-fw ss-2x mr-4"></i>
              Laboratory Maniac


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.86

                    <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.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.03
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90843"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90843" src="/boxset_card/90843?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20150"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              62
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Pongify


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.81

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.39
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20150"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20150" src="/boxset_card/20150?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80527"
          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">
              171
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-common ss-fw ss-2x mr-4"></i>
              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.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80527"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80527" src="/boxset_card/80527?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94787"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              4
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-uncommon 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.70

                    <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">
                $2.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94787"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94787" src="/boxset_card/94787?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9467"
          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">
              96
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              Ponder


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.34

                    <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">
                $2.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9467"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9467" src="/boxset_card/9467?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86971"
          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">
              A25-46
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Brainstorm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.32

                    <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.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86971"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86971" src="/boxset_card/86971?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53149"
          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">
              157
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Counterbalance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.01
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53149"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53149" src="/boxset_card/53149?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48933"
          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">
              82
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Changeling Outcast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Shapeshifter
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.48

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="48933"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_48933" src="/boxset_card/48933?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18111"
          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">
              51
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-common ss-fw ss-2x mr-4"></i>
              Frantic Search


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.41

                    <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.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.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18111"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18111" src="/boxset_card/18111?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53206"
          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">
              176
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tinker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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">
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53206"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53206" src="/boxset_card/53206?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21118"
          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">
              349
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 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">
                  $1.16

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21118"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21118" src="/boxset_card/21118?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18293"
          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">
              44
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x mr-4"></i>
              Combat Research


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      35%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.63
            </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="18293"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18293" src="/boxset_card/18293?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76097"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              DDL-44
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Orcish Lumberjack


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Orc
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.94

                    <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.38
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76097"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76097" src="/boxset_card/76097?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21123"
          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">
              351
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-common ss-fw ss-2x mr-4"></i>
              Thought Scour


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21123"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21123" src="/boxset_card/21123?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20266"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-common ss-fw ss-2x mr-4"></i>
              Thought Scour


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.75

                    <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.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20266"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20266" src="/boxset_card/20266?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77577"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              58
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eld ss-uncommon ss-fw ss-2x mr-4"></i>
              Mystical Dispute


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77577"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77577" src="/boxset_card/77577?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94865"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-uncommon ss-fw ss-2x mr-4"></i>
              Laboratory Maniac


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.43

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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">
                1.03
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94865"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94865" src="/boxset_card/94865?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20251"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 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.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20251"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20251" src="/boxset_card/20251?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9462"
          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">
              94
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 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">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9462"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9462" src="/boxset_card/9462?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35655"
          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">
              44
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-common ss-fw ss-2x mr-4"></i>
              Consider


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </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="35655"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_35655" src="/boxset_card/35655?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20404"
          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">
              146
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-common ss-fw ss-2x mr-4"></i>
              Temur Battle Rage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </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="20404"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20404" src="/boxset_card/20404?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21121"
          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">
              350
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-common ss-fw ss-2x mr-4"></i>
              Spell Pierce


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21121"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21121" src="/boxset_card/21121?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40345"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              42
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc 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.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40345"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40345" src="/boxset_card/40345?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20245"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              58
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-common ss-fw ss-2x mr-4"></i>
              Mana Leak


            </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.34

                    <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.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20245"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20245" src="/boxset_card/20245?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20260"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              63
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-common ss-fw ss-2x mr-4"></i>
              Spell Pierce


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.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.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.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20260"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20260" src="/boxset_card/20260?collection_id=344&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13978"
          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">
              720
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-uncommon ss-fw ss-2x mr-4"></i>
              Fact or Fiction


            </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                </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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13978"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13978" src="/boxset_card/13978?collection_id=344&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 51 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=344&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=344&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>