<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="16" 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="51344"
  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-mm2 ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $236.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="Mox Opal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/b/6b3a20ac-1860-4513-bb73-35d23b088b04.jpg?1783938381" />

        <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">
            Mox Opal
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mox Opal" src="https://cards.scryfall.io/large/front/6/b/6b3a20ac-1860-4513-bb73-35d23b088b04.jpg?1783938381" />
    </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">
                $236.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">
                $246.72
              </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">$195.00</span>
              <span class="text-xs text-grey-text">Credit: $253.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-13&quot;:216.44},{&quot;2026-06-14&quot;:216.44},{&quot;2026-06-15&quot;:220.13},{&quot;2026-06-16&quot;:220.13},{&quot;2026-06-17&quot;:220.13},{&quot;2026-06-18&quot;:220.13},{&quot;2026-06-19&quot;:220.13},{&quot;2026-06-20&quot;:220.13},{&quot;2026-06-21&quot;:220.13},{&quot;2026-06-22&quot;:220.13},{&quot;2026-06-23&quot;:220.13},{&quot;2026-06-24&quot;:220.13},{&quot;2026-06-25&quot;:220.13},{&quot;2026-06-26&quot;:221.71},{&quot;2026-06-27&quot;:221.71},{&quot;2026-06-28&quot;:221.71},{&quot;2026-06-29&quot;:221.71},{&quot;2026-06-30&quot;:221.71},{&quot;2026-07-01&quot;:221.71},{&quot;2026-07-02&quot;:221.71},{&quot;2026-07-03&quot;:221.71},{&quot;2026-07-04&quot;:223.46},{&quot;2026-07-05&quot;:225.12},{&quot;2026-07-06&quot;:225.12},{&quot;2026-07-07&quot;:225.12},{&quot;2026-07-08&quot;:225.12},{&quot;2026-07-09&quot;:225.12},{&quot;2026-07-10&quot;:225.12},{&quot;2026-07-11&quot;:225.12},{&quot;2026-07-12&quot;:225.12},{&quot;2026-07-13&quot;:229.5},{&quot;2026-07-14&quot;:229.5},{&quot;2026-07-15&quot;:229.5},{&quot;2026-07-16&quot;:229.5},{&quot;2026-07-17&quot;:229.5},{&quot;2026-07-18&quot;:229.5},{&quot;2026-07-19&quot;:229.5},{&quot;2026-07-20&quot;:229.5},{&quot;2026-07-21&quot;:229.5},{&quot;2026-07-22&quot;:229.5},{&quot;2026-07-23&quot;:229.5},{&quot;2026-07-24&quot;:229.5},{&quot;2026-07-25&quot;:229.5},{&quot;2026-07-26&quot;:229.5},{&quot;2026-07-27&quot;:229.5},{&quot;2026-07-28&quot;:229.5},{&quot;2026-07-29&quot;:229.5},{&quot;2026-07-30&quot;:229.5},{&quot;2026-07-31&quot;:229.5},{&quot;2026-08-01&quot;:229.5},{&quot;2026-08-02&quot;:233.48},{&quot;2026-08-03&quot;:233.48},{&quot;2026-08-04&quot;:233.48},{&quot;2026-08-05&quot;:233.48},{&quot;2026-08-07&quot;:233.48},{&quot;2026-08-08&quot;:233.48},{&quot;2026-08-09&quot;:233.57},{&quot;2026-08-10&quot;:233.57},{&quot;2026-08-11&quot;:233.57},{&quot;2026-08-12&quot;:233.57},{&quot;2026-08-13&quot;:233.57},{&quot;2026-08-14&quot;:233.57},{&quot;2026-08-15&quot;:235.97},{&quot;2026-08-16&quot;:235.97},{&quot;2026-08-17&quot;:235.97},{&quot;2026-08-18&quot;:239.37},{&quot;2026-08-19&quot;:239.37},{&quot;2026-08-20&quot;:239.37},{&quot;2026-08-21&quot;:243.25},{&quot;2026-08-22&quot;:243.25},{&quot;2026-08-23&quot;:243.25},{&quot;2026-08-24&quot;:243.25},{&quot;2026-08-25&quot;:243.25},{&quot;2026-08-26&quot;:243.25},{&quot;2026-08-27&quot;:243.25},{&quot;2026-08-28&quot;:243.25},{&quot;2026-08-29&quot;:243.25},{&quot;2026-08-30&quot;:243.25},{&quot;2026-08-31&quot;:243.25},{&quot;2026-09-01&quot;:243.25},{&quot;2026-09-02&quot;:243.25},{&quot;2026-09-03&quot;:243.25},{&quot;2026-09-04&quot;:243.25},{&quot;2026-09-05&quot;:243.25},{&quot;2026-09-06&quot;:243.25},{&quot;2026-09-07&quot;:243.25},{&quot;2026-09-08&quot;:243.25},{&quot;2026-09-09&quot;:243.25},{&quot;2026-09-10&quot;:243.25},{&quot;2026-09-11&quot;:246.72}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:218.89},{&quot;2026-06-14&quot;:218.89},{&quot;2026-06-15&quot;:218.89},{&quot;2026-06-16&quot;:218.89},{&quot;2026-06-17&quot;:218.89},{&quot;2026-06-18&quot;:218.89},{&quot;2026-06-19&quot;:218.89},{&quot;2026-06-20&quot;:218.89},{&quot;2026-06-21&quot;:218.89},{&quot;2026-06-22&quot;:218.89},{&quot;2026-06-23&quot;:218.89},{&quot;2026-06-24&quot;:221.34},{&quot;2026-06-25&quot;:221.34},{&quot;2026-06-26&quot;:221.34},{&quot;2026-06-27&quot;:221.34},{&quot;2026-06-28&quot;:223.74},{&quot;2026-06-29&quot;:226.06},{&quot;2026-06-30&quot;:227.54},{&quot;2026-07-01&quot;:227.54},{&quot;2026-07-02&quot;:227.54},{&quot;2026-07-03&quot;:227.54},{&quot;2026-07-04&quot;:229.82},{&quot;2026-07-05&quot;:234.22},{&quot;2026-07-06&quot;:234.22},{&quot;2026-07-07&quot;:236.49},{&quot;2026-07-08&quot;:236.49},{&quot;2026-07-09&quot;:234.22},{&quot;2026-07-10&quot;:234.22},{&quot;2026-07-11&quot;:234.22},{&quot;2026-07-12&quot;:234.22},{&quot;2026-07-13&quot;:234.22},{&quot;2026-07-14&quot;:234.22},{&quot;2026-07-15&quot;:234.22},{&quot;2026-07-16&quot;:234.22},{&quot;2026-07-17&quot;:234.22},{&quot;2026-07-18&quot;:234.22},{&quot;2026-07-19&quot;:234.22},{&quot;2026-07-20&quot;:234.22},{&quot;2026-07-21&quot;:234.22},{&quot;2026-07-22&quot;:234.22},{&quot;2026-07-23&quot;:234.22},{&quot;2026-07-24&quot;:234.22},{&quot;2026-07-25&quot;:234.22},{&quot;2026-07-26&quot;:234.22},{&quot;2026-07-27&quot;:234.22},{&quot;2026-07-28&quot;:234.22},{&quot;2026-07-29&quot;:234.22},{&quot;2026-07-30&quot;:234.22},{&quot;2026-07-31&quot;:234.22},{&quot;2026-08-01&quot;:234.22},{&quot;2026-08-02&quot;:234.22},{&quot;2026-08-03&quot;:234.22},{&quot;2026-08-04&quot;:236.39},{&quot;2026-08-05&quot;:236.39},{&quot;2026-08-07&quot;:236.39},{&quot;2026-08-08&quot;:236.39},{&quot;2026-08-09&quot;:236.39},{&quot;2026-08-10&quot;:236.39},{&quot;2026-08-11&quot;:236.39},{&quot;2026-08-12&quot;:236.39},{&quot;2026-08-13&quot;:236.39},{&quot;2026-08-14&quot;:236.39},{&quot;2026-08-15&quot;:236.39},{&quot;2026-08-16&quot;:236.39},{&quot;2026-08-17&quot;:236.39},{&quot;2026-08-18&quot;:236.39},{&quot;2026-08-19&quot;:236.39},{&quot;2026-08-20&quot;:236.39},{&quot;2026-08-21&quot;:236.39},{&quot;2026-08-22&quot;:236.39},{&quot;2026-08-23&quot;:236.39},{&quot;2026-08-24&quot;:236.39},{&quot;2026-08-25&quot;:236.39},{&quot;2026-08-26&quot;:236.39},{&quot;2026-08-27&quot;:236.39},{&quot;2026-08-28&quot;:236.39},{&quot;2026-08-29&quot;:236.39},{&quot;2026-08-30&quot;:236.07},{&quot;2026-08-31&quot;:236.07},{&quot;2026-09-01&quot;:236.07},{&quot;2026-09-02&quot;:236.07},{&quot;2026-09-03&quot;:236.07},{&quot;2026-09-04&quot;:236.07},{&quot;2026-09-05&quot;:236.08},{&quot;2026-09-06&quot;:236.08},{&quot;2026-09-07&quot;:236.08},{&quot;2026-09-08&quot;:236.08},{&quot;2026-09-09&quot;:236.08},{&quot;2026-09-10&quot;:236.08},{&quot;2026-09-11&quot;:236.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="94867"
  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-mythic ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

        <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">
            Rhystic Study
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">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-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="Rhystic Study" src="https://cards.scryfall.io/large/front/c/d/cd212de7-25f6-4b3b-a35b-df7d87fe205b.jpg?1783906385" />
    </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">
                $107.10
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:391.74},{&quot;2026-06-14&quot;:391.45},{&quot;2026-06-15&quot;:391.21},{&quot;2026-06-16&quot;:391.47},{&quot;2026-06-17&quot;:391.47},{&quot;2026-06-18&quot;:391.47},{&quot;2026-06-19&quot;:391.41},{&quot;2026-06-20&quot;:391.41},{&quot;2026-06-21&quot;:391.34},{&quot;2026-06-22&quot;:392.1},{&quot;2026-06-23&quot;:392.24},{&quot;2026-06-24&quot;:392.6},{&quot;2026-06-25&quot;:392.6},{&quot;2026-06-26&quot;:392.6},{&quot;2026-06-27&quot;:392.6},{&quot;2026-06-28&quot;:392.6},{&quot;2026-06-29&quot;:392.6},{&quot;2026-06-30&quot;:393.65},{&quot;2026-07-01&quot;:393.65},{&quot;2026-07-02&quot;:393.65},{&quot;2026-07-03&quot;:393.65},{&quot;2026-07-04&quot;:393.65},{&quot;2026-07-05&quot;:393.65},{&quot;2026-07-06&quot;:393.65},{&quot;2026-07-07&quot;:393.65},{&quot;2026-07-08&quot;:393.65},{&quot;2026-07-09&quot;:393.15},{&quot;2026-07-10&quot;:393.15},{&quot;2026-07-11&quot;:394.07},{&quot;2026-07-12&quot;:394.38},{&quot;2026-07-13&quot;:395.04},{&quot;2026-07-14&quot;:395.76},{&quot;2026-07-15&quot;:396.48},{&quot;2026-07-16&quot;:396.48},{&quot;2026-07-17&quot;:397.13},{&quot;2026-07-18&quot;:397.13},{&quot;2026-07-19&quot;:396.38},{&quot;2026-07-20&quot;:396.38},{&quot;2026-07-21&quot;:396.38},{&quot;2026-07-22&quot;:395.44},{&quot;2026-07-23&quot;:394.29},{&quot;2026-07-24&quot;:394.29},{&quot;2026-07-25&quot;:393.35},{&quot;2026-07-26&quot;:393.35},{&quot;2026-07-27&quot;:393.35},{&quot;2026-07-28&quot;:393.35},{&quot;2026-07-29&quot;:393.35},{&quot;2026-07-30&quot;:394.29},{&quot;2026-07-31&quot;:394.29},{&quot;2026-08-01&quot;:394.29},{&quot;2026-08-02&quot;:395.59},{&quot;2026-08-03&quot;:395.59},{&quot;2026-08-04&quot;:395.59},{&quot;2026-08-05&quot;:395.59},{&quot;2026-08-07&quot;:396.17},{&quot;2026-08-08&quot;:396.75},{&quot;2026-08-09&quot;:396.75},{&quot;2026-08-10&quot;:396.75},{&quot;2026-08-11&quot;:396.75},{&quot;2026-08-12&quot;:396.75},{&quot;2026-08-13&quot;:397.13},{&quot;2026-08-14&quot;:397.13},{&quot;2026-08-15&quot;:399.15},{&quot;2026-08-16&quot;:399.15},{&quot;2026-08-17&quot;:399.15},{&quot;2026-08-18&quot;:399.15},{&quot;2026-08-19&quot;:399.15},{&quot;2026-08-20&quot;:399.15},{&quot;2026-08-21&quot;:399.15},{&quot;2026-08-22&quot;:403.29},{&quot;2026-08-23&quot;:405.95},{&quot;2026-08-24&quot;:405.95},{&quot;2026-08-25&quot;:409.29},{&quot;2026-08-26&quot;:409.29},{&quot;2026-08-27&quot;:409.29},{&quot;2026-08-28&quot;:409.29},{&quot;2026-08-29&quot;:409.29},{&quot;2026-08-30&quot;:414.92},{&quot;2026-08-31&quot;:414.92},{&quot;2026-09-01&quot;:416.95},{&quot;2026-09-02&quot;:416.95},{&quot;2026-09-03&quot;:415.01},{&quot;2026-09-04&quot;:416.78},{&quot;2026-09-05&quot;:416.78},{&quot;2026-09-06&quot;:417.93},{&quot;2026-09-07&quot;:417.93},{&quot;2026-09-08&quot;:417.93},{&quot;2026-09-09&quot;:419.89},{&quot;2026-09-10&quot;:421.95},{&quot;2026-09-11&quot;:425.27}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:93.57},{&quot;2026-06-14&quot;:93.57},{&quot;2026-06-15&quot;:93.74},{&quot;2026-06-16&quot;:92.8},{&quot;2026-06-17&quot;:94.42},{&quot;2026-06-18&quot;:94.36},{&quot;2026-06-19&quot;:96.76},{&quot;2026-06-20&quot;:104.78},{&quot;2026-06-21&quot;:96.53},{&quot;2026-06-22&quot;:96.53},{&quot;2026-06-23&quot;:97.25},{&quot;2026-06-24&quot;:96.71},{&quot;2026-06-25&quot;:97.42},{&quot;2026-06-26&quot;:97.42},{&quot;2026-06-27&quot;:97.11},{&quot;2026-06-28&quot;:97.11},{&quot;2026-06-29&quot;:99.08},{&quot;2026-06-30&quot;:99.58},{&quot;2026-07-01&quot;:99.33},{&quot;2026-07-02&quot;:99.93},{&quot;2026-07-03&quot;:101.04},{&quot;2026-07-04&quot;:100.54},{&quot;2026-07-05&quot;:100.66},{&quot;2026-07-06&quot;:101.31},{&quot;2026-07-07&quot;:101.58},{&quot;2026-07-08&quot;:103.06},{&quot;2026-07-09&quot;:103.06},{&quot;2026-07-10&quot;:102.61},{&quot;2026-07-11&quot;:102.74},{&quot;2026-07-12&quot;:103.65},{&quot;2026-07-13&quot;:103.89},{&quot;2026-07-14&quot;:103.29},{&quot;2026-07-15&quot;:103.65},{&quot;2026-07-16&quot;:103.77},{&quot;2026-07-17&quot;:104.46},{&quot;2026-07-18&quot;:105.03},{&quot;2026-07-19&quot;:104.36},{&quot;2026-07-20&quot;:104.2},{&quot;2026-07-21&quot;:103.71},{&quot;2026-07-22&quot;:104.05},{&quot;2026-07-23&quot;:105.35},{&quot;2026-07-24&quot;:104.65},{&quot;2026-07-25&quot;:105.37},{&quot;2026-07-26&quot;:106.17},{&quot;2026-07-27&quot;:105.44},{&quot;2026-07-28&quot;:106.12},{&quot;2026-07-29&quot;:108.03},{&quot;2026-07-30&quot;:108.03},{&quot;2026-07-31&quot;:109.31},{&quot;2026-08-01&quot;:109.31},{&quot;2026-08-02&quot;:106.8},{&quot;2026-08-03&quot;:105.18},{&quot;2026-08-04&quot;:105.18},{&quot;2026-08-05&quot;:105.86},{&quot;2026-08-07&quot;:105.18},{&quot;2026-08-08&quot;:105.18},{&quot;2026-08-09&quot;:105.92},{&quot;2026-08-10&quot;:106.56},{&quot;2026-08-11&quot;:106.38},{&quot;2026-08-12&quot;:106.38},{&quot;2026-08-13&quot;:106.38},{&quot;2026-08-14&quot;:105.39},{&quot;2026-08-15&quot;:104.72},{&quot;2026-08-16&quot;:104.68},{&quot;2026-08-17&quot;:105.23},{&quot;2026-08-18&quot;:108.11},{&quot;2026-08-19&quot;:109.44},{&quot;2026-08-20&quot;:109.72},{&quot;2026-08-21&quot;:110.32},{&quot;2026-08-22&quot;:109.99},{&quot;2026-08-23&quot;:110.31},{&quot;2026-08-24&quot;:110.48},{&quot;2026-08-25&quot;:110.89},{&quot;2026-08-26&quot;:111.58},{&quot;2026-08-27&quot;:111.76},{&quot;2026-08-28&quot;:111.96},{&quot;2026-08-29&quot;:111.96},{&quot;2026-08-30&quot;:112.71},{&quot;2026-08-31&quot;:112.82},{&quot;2026-09-01&quot;:111.03},{&quot;2026-09-02&quot;:111.03},{&quot;2026-09-03&quot;:111.03},{&quot;2026-09-04&quot;:110.27},{&quot;2026-09-05&quot;:110.12},{&quot;2026-09-06&quot;:109.7},{&quot;2026-09-07&quot;:109.82},{&quot;2026-09-08&quot;:109.12},{&quot;2026-09-09&quot;:108.49},{&quot;2026-09-10&quot;:107.35},{&quot;2026-09-11&quot;:107.1}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Scalding Tarn" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/71e491c5-8c07-449b-b2f1-ffa052e6d311.jpg?1783926793" />

        <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">
            Scalding Tarn
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scalding Tarn" src="https://cards.scryfall.io/large/front/7/1/71e491c5-8c07-449b-b2f1-ffa052e6d311.jpg?1783926793" />
    </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">
                $39.14
              </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">
                $43.01
              </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">$26.00</span>
              <span class="text-xs text-grey-text">Credit: $33.80</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:40.26},{&quot;2026-06-14&quot;:40.9},{&quot;2026-06-15&quot;:40.9},{&quot;2026-06-16&quot;:40.16},{&quot;2026-06-17&quot;:40.16},{&quot;2026-06-18&quot;:40.16},{&quot;2026-06-19&quot;:40.16},{&quot;2026-06-20&quot;:40.16},{&quot;2026-06-21&quot;:40.16},{&quot;2026-06-22&quot;:40.52},{&quot;2026-06-23&quot;:40.52},{&quot;2026-06-24&quot;:40.52},{&quot;2026-06-25&quot;:41.25},{&quot;2026-06-26&quot;:41.25},{&quot;2026-06-27&quot;:41.25},{&quot;2026-06-28&quot;:41.25},{&quot;2026-06-29&quot;:41.25},{&quot;2026-06-30&quot;:41.25},{&quot;2026-07-01&quot;:41.44},{&quot;2026-07-02&quot;:41.44},{&quot;2026-07-03&quot;:41.44},{&quot;2026-07-04&quot;:41.44},{&quot;2026-07-05&quot;:41.44},{&quot;2026-07-06&quot;:41.44},{&quot;2026-07-07&quot;:41.51},{&quot;2026-07-08&quot;:41.65},{&quot;2026-07-09&quot;:41.43},{&quot;2026-07-10&quot;:41.43},{&quot;2026-07-11&quot;:41.43},{&quot;2026-07-12&quot;:41.43},{&quot;2026-07-13&quot;:41.43},{&quot;2026-07-14&quot;:41.43},{&quot;2026-07-15&quot;:41.58},{&quot;2026-07-16&quot;:41.66},{&quot;2026-07-17&quot;:41.66},{&quot;2026-07-18&quot;:41.66},{&quot;2026-07-19&quot;:41.57},{&quot;2026-07-20&quot;:41.57},{&quot;2026-07-21&quot;:41.57},{&quot;2026-07-22&quot;:41.57},{&quot;2026-07-23&quot;:41.57},{&quot;2026-07-24&quot;:41.3},{&quot;2026-07-25&quot;:41.3},{&quot;2026-07-26&quot;:41.3},{&quot;2026-07-27&quot;:41.3},{&quot;2026-07-28&quot;:41.59},{&quot;2026-07-29&quot;:41.59},{&quot;2026-07-30&quot;:41.59},{&quot;2026-07-31&quot;:41.59},{&quot;2026-08-01&quot;:41.64},{&quot;2026-08-02&quot;:41.64},{&quot;2026-08-03&quot;:41.64},{&quot;2026-08-04&quot;:41.79},{&quot;2026-08-05&quot;:41.79},{&quot;2026-08-07&quot;:41.79},{&quot;2026-08-08&quot;:41.79},{&quot;2026-08-09&quot;:41.79},{&quot;2026-08-10&quot;:41.79},{&quot;2026-08-11&quot;:42.02},{&quot;2026-08-12&quot;:42.02},{&quot;2026-08-13&quot;:42.02},{&quot;2026-08-14&quot;:42.02},{&quot;2026-08-15&quot;:42.02},{&quot;2026-08-16&quot;:41.97},{&quot;2026-08-17&quot;:41.97},{&quot;2026-08-18&quot;:41.97},{&quot;2026-08-19&quot;:41.99},{&quot;2026-08-20&quot;:41.99},{&quot;2026-08-21&quot;:41.99},{&quot;2026-08-22&quot;:41.99},{&quot;2026-08-23&quot;:41.99},{&quot;2026-08-24&quot;:41.99},{&quot;2026-08-25&quot;:42.38},{&quot;2026-08-26&quot;:42.38},{&quot;2026-08-27&quot;:42.38},{&quot;2026-08-28&quot;:42.38},{&quot;2026-08-29&quot;:42.38},{&quot;2026-08-30&quot;:42.54},{&quot;2026-08-31&quot;:42.62},{&quot;2026-09-01&quot;:42.62},{&quot;2026-09-02&quot;:42.62},{&quot;2026-09-03&quot;:42.62},{&quot;2026-09-04&quot;:43.15},{&quot;2026-09-05&quot;:43.15},{&quot;2026-09-06&quot;:43.01},{&quot;2026-09-07&quot;:43.01},{&quot;2026-09-08&quot;:43.01},{&quot;2026-09-09&quot;:43.01},{&quot;2026-09-10&quot;:43.01},{&quot;2026-09-11&quot;:43.01}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:36.48},{&quot;2026-06-14&quot;:36.05},{&quot;2026-06-15&quot;:36.07},{&quot;2026-06-16&quot;:36.75},{&quot;2026-06-17&quot;:37.34},{&quot;2026-06-18&quot;:37.64},{&quot;2026-06-19&quot;:36.88},{&quot;2026-06-20&quot;:37.02},{&quot;2026-06-21&quot;:37.94},{&quot;2026-06-22&quot;:38.57},{&quot;2026-06-23&quot;:38.54},{&quot;2026-06-24&quot;:38.45},{&quot;2026-06-25&quot;:38.64},{&quot;2026-06-26&quot;:38.04},{&quot;2026-06-27&quot;:38.03},{&quot;2026-06-28&quot;:38.32},{&quot;2026-06-29&quot;:38.29},{&quot;2026-06-30&quot;:37.92},{&quot;2026-07-01&quot;:38.17},{&quot;2026-07-02&quot;:38.92},{&quot;2026-07-03&quot;:39.01},{&quot;2026-07-04&quot;:39.28},{&quot;2026-07-05&quot;:39.76},{&quot;2026-07-06&quot;:40.5},{&quot;2026-07-07&quot;:40.4},{&quot;2026-07-08&quot;:39.34},{&quot;2026-07-09&quot;:38.92},{&quot;2026-07-10&quot;:38.56},{&quot;2026-07-11&quot;:38.64},{&quot;2026-07-12&quot;:38.87},{&quot;2026-07-13&quot;:39.0},{&quot;2026-07-14&quot;:38.85},{&quot;2026-07-15&quot;:38.63},{&quot;2026-07-16&quot;:38.88},{&quot;2026-07-17&quot;:38.13},{&quot;2026-07-18&quot;:38.29},{&quot;2026-07-19&quot;:38.51},{&quot;2026-07-20&quot;:38.31},{&quot;2026-07-21&quot;:38.49},{&quot;2026-07-22&quot;:38.49},{&quot;2026-07-23&quot;:38.53},{&quot;2026-07-24&quot;:38.34},{&quot;2026-07-25&quot;:38.58},{&quot;2026-07-26&quot;:38.15},{&quot;2026-07-27&quot;:38.45},{&quot;2026-07-28&quot;:38.39},{&quot;2026-07-29&quot;:38.63},{&quot;2026-07-30&quot;:39.22},{&quot;2026-07-31&quot;:40.14},{&quot;2026-08-01&quot;:39.98},{&quot;2026-08-02&quot;:40.0},{&quot;2026-08-03&quot;:40.81},{&quot;2026-08-04&quot;:41.06},{&quot;2026-08-05&quot;:39.6},{&quot;2026-08-07&quot;:39.31},{&quot;2026-08-08&quot;:38.97},{&quot;2026-08-09&quot;:38.92},{&quot;2026-08-10&quot;:38.71},{&quot;2026-08-11&quot;:38.71},{&quot;2026-08-12&quot;:38.52},{&quot;2026-08-13&quot;:38.55},{&quot;2026-08-14&quot;:37.23},{&quot;2026-08-15&quot;:35.8},{&quot;2026-08-16&quot;:36.37},{&quot;2026-08-17&quot;:36.69},{&quot;2026-08-18&quot;:37.5},{&quot;2026-08-19&quot;:37.49},{&quot;2026-08-20&quot;:38.5},{&quot;2026-08-21&quot;:39.33},{&quot;2026-08-22&quot;:39.37},{&quot;2026-08-23&quot;:39.01},{&quot;2026-08-24&quot;:38.14},{&quot;2026-08-25&quot;:37.29},{&quot;2026-08-26&quot;:37.64},{&quot;2026-08-27&quot;:37.64},{&quot;2026-08-28&quot;:38.0},{&quot;2026-08-29&quot;:38.0},{&quot;2026-08-30&quot;:38.61},{&quot;2026-08-31&quot;:39.16},{&quot;2026-09-01&quot;:39.55},{&quot;2026-09-02&quot;:39.41},{&quot;2026-09-03&quot;:37.66},{&quot;2026-09-04&quot;:37.27},{&quot;2026-09-05&quot;:37.91},{&quot;2026-09-06&quot;:38.29},{&quot;2026-09-07&quot;:39.35},{&quot;2026-09-08&quot;:39.81},{&quot;2026-09-09&quot;:39.31},{&quot;2026-09-10&quot;:39.32},{&quot;2026-09-11&quot;:39.14}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Marrow-Gnawer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/2/425dcfa0-1e27-4640-bdff-0bcd39401e86.jpg?1783931263" />

        <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">
            Marrow-Gnawer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Marrow-Gnawer" src="https://cards.scryfall.io/large/front/4/2/425dcfa0-1e27-4640-bdff-0bcd39401e86.jpg?1783931263" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:30.59},{&quot;2026-06-14&quot;:30.51},{&quot;2026-06-15&quot;:30.51},{&quot;2026-06-16&quot;:30.51},{&quot;2026-06-17&quot;:30.51},{&quot;2026-06-18&quot;:30.79},{&quot;2026-06-19&quot;:30.88},{&quot;2026-06-20&quot;:29.78},{&quot;2026-06-21&quot;:30.37},{&quot;2026-06-22&quot;:29.95},{&quot;2026-06-23&quot;:29.85},{&quot;2026-06-24&quot;:29.57},{&quot;2026-06-25&quot;:29.82},{&quot;2026-06-26&quot;:29.82},{&quot;2026-06-27&quot;:29.44},{&quot;2026-06-28&quot;:29.44},{&quot;2026-06-29&quot;:29.46},{&quot;2026-06-30&quot;:29.46},{&quot;2026-07-01&quot;:29.01},{&quot;2026-07-02&quot;:29.01},{&quot;2026-07-03&quot;:29.01},{&quot;2026-07-04&quot;:29.15},{&quot;2026-07-05&quot;:29.55},{&quot;2026-07-06&quot;:29.3},{&quot;2026-07-07&quot;:29.17},{&quot;2026-07-08&quot;:29.54},{&quot;2026-07-09&quot;:30.09},{&quot;2026-07-10&quot;:30.54},{&quot;2026-07-11&quot;:30.54},{&quot;2026-07-12&quot;:31.05},{&quot;2026-07-13&quot;:31.05},{&quot;2026-07-14&quot;:31.48},{&quot;2026-07-15&quot;:31.43},{&quot;2026-07-16&quot;:31.43},{&quot;2026-07-17&quot;:31.43},{&quot;2026-07-18&quot;:31.43},{&quot;2026-07-19&quot;:31.43},{&quot;2026-07-20&quot;:31.43},{&quot;2026-07-21&quot;:31.79},{&quot;2026-07-22&quot;:31.91},{&quot;2026-07-23&quot;:31.91},{&quot;2026-07-24&quot;:31.91},{&quot;2026-07-25&quot;:31.91},{&quot;2026-07-26&quot;:32.21},{&quot;2026-07-27&quot;:32.66},{&quot;2026-07-28&quot;:32.66},{&quot;2026-07-29&quot;:32.78},{&quot;2026-07-30&quot;:32.75},{&quot;2026-07-31&quot;:33.07},{&quot;2026-08-01&quot;:33.07},{&quot;2026-08-02&quot;:33.07},{&quot;2026-08-03&quot;:33.09},{&quot;2026-08-04&quot;:33.15},{&quot;2026-08-05&quot;:34.12},{&quot;2026-08-07&quot;:34.54},{&quot;2026-08-08&quot;:34.54},{&quot;2026-08-09&quot;:34.54},{&quot;2026-08-10&quot;:34.54},{&quot;2026-08-11&quot;:34.58},{&quot;2026-08-12&quot;:34.58},{&quot;2026-08-13&quot;:34.58},{&quot;2026-08-14&quot;:34.58},{&quot;2026-08-15&quot;:34.58},{&quot;2026-08-16&quot;:34.31},{&quot;2026-08-17&quot;:34.31},{&quot;2026-08-18&quot;:34.31},{&quot;2026-08-19&quot;:34.31},{&quot;2026-08-20&quot;:33.91},{&quot;2026-08-21&quot;:33.91},{&quot;2026-08-22&quot;:33.91},{&quot;2026-08-23&quot;:33.61},{&quot;2026-08-24&quot;:33.61},{&quot;2026-08-25&quot;:33.61},{&quot;2026-08-26&quot;:33.61},{&quot;2026-08-27&quot;:33.61},{&quot;2026-08-28&quot;:33.61},{&quot;2026-08-29&quot;:33.61},{&quot;2026-08-30&quot;:33.67},{&quot;2026-08-31&quot;:33.67},{&quot;2026-09-01&quot;:33.67},{&quot;2026-09-02&quot;:33.67},{&quot;2026-09-03&quot;:33.67},{&quot;2026-09-04&quot;:33.67},{&quot;2026-09-05&quot;:33.67},{&quot;2026-09-06&quot;:33.67},{&quot;2026-09-07&quot;:33.42},{&quot;2026-09-08&quot;:33.25},{&quot;2026-09-09&quot;:33.25},{&quot;2026-09-10&quot;:33.25},{&quot;2026-09-11&quot;:33.13}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $30.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="Three Tree City" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/6/56f88a48-cced-4a9d-8c19-e4f105f0d8a2.jpg?1783910782" />

        <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">
            Three Tree City
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Three Tree City" src="https://cards.scryfall.io/large/front/5/6/56f88a48-cced-4a9d-8c19-e4f105f0d8a2.jpg?1783910782" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $29.19
              </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">
                $30.31
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$27.00</span>
              <span class="text-xs text-grey-text">Credit: $35.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-08&quot;:25.29},{&quot;2026-06-10&quot;:25.53},{&quot;2026-06-11&quot;:25.54},{&quot;2026-06-12&quot;:25.48},{&quot;2026-06-13&quot;:25.27},{&quot;2026-06-14&quot;:24.99},{&quot;2026-06-15&quot;:25.25},{&quot;2026-06-16&quot;:25.08},{&quot;2026-06-17&quot;:25.51},{&quot;2026-06-18&quot;:25.51},{&quot;2026-06-19&quot;:25.55},{&quot;2026-06-20&quot;:25.5},{&quot;2026-06-21&quot;:25.24},{&quot;2026-06-22&quot;:25.24},{&quot;2026-06-24&quot;:25.35},{&quot;2026-06-25&quot;:25.35},{&quot;2026-06-26&quot;:25.54},{&quot;2026-06-27&quot;:25.37},{&quot;2026-06-28&quot;:25.37},{&quot;2026-06-29&quot;:25.26},{&quot;2026-06-30&quot;:25.45},{&quot;2026-07-01&quot;:25.11},{&quot;2026-07-02&quot;:25.45},{&quot;2026-07-03&quot;:26.46},{&quot;2026-07-04&quot;:26.72},{&quot;2026-07-05&quot;:26.72},{&quot;2026-07-06&quot;:26.93},{&quot;2026-07-07&quot;:27.1},{&quot;2026-07-08&quot;:27.8},{&quot;2026-07-09&quot;:27.8},{&quot;2026-07-10&quot;:28.16},{&quot;2026-07-11&quot;:28.29},{&quot;2026-07-12&quot;:27.98},{&quot;2026-07-13&quot;:27.98},{&quot;2026-07-14&quot;:28.09},{&quot;2026-07-15&quot;:27.79},{&quot;2026-07-16&quot;:27.79},{&quot;2026-07-17&quot;:27.78},{&quot;2026-07-18&quot;:27.78},{&quot;2026-07-19&quot;:28.15},{&quot;2026-07-20&quot;:27.71},{&quot;2026-07-21&quot;:27.84},{&quot;2026-07-23&quot;:26.79},{&quot;2026-07-25&quot;:26.9},{&quot;2026-07-26&quot;:26.98},{&quot;2026-07-27&quot;:27.19},{&quot;2026-07-29&quot;:27.17},{&quot;2026-07-30&quot;:27.23},{&quot;2026-07-31&quot;:27.9},{&quot;2026-08-01&quot;:27.81},{&quot;2026-08-02&quot;:27.47},{&quot;2026-08-03&quot;:27.64},{&quot;2026-08-04&quot;:27.73},{&quot;2026-08-05&quot;:27.44},{&quot;2026-08-07&quot;:27.57},{&quot;2026-08-08&quot;:27.57},{&quot;2026-08-09&quot;:27.61},{&quot;2026-08-10&quot;:27.61},{&quot;2026-08-11&quot;:28.33},{&quot;2026-08-12&quot;:28.33},{&quot;2026-08-13&quot;:28.29},{&quot;2026-08-14&quot;:28.52},{&quot;2026-08-15&quot;:28.88},{&quot;2026-08-16&quot;:28.92},{&quot;2026-08-17&quot;:28.14},{&quot;2026-08-18&quot;:28.14},{&quot;2026-08-19&quot;:28.64},{&quot;2026-08-20&quot;:28.64},{&quot;2026-08-21&quot;:28.93},{&quot;2026-08-22&quot;:28.63},{&quot;2026-08-23&quot;:29.39},{&quot;2026-08-24&quot;:29.94},{&quot;2026-08-25&quot;:29.94},{&quot;2026-08-26&quot;:30.03},{&quot;2026-08-27&quot;:29.74},{&quot;2026-08-28&quot;:29.74},{&quot;2026-08-29&quot;:29.74},{&quot;2026-08-30&quot;:29.8},{&quot;2026-08-31&quot;:29.69},{&quot;2026-09-01&quot;:29.69},{&quot;2026-09-02&quot;:29.5},{&quot;2026-09-03&quot;:29.5},{&quot;2026-09-04&quot;:29.52},{&quot;2026-09-05&quot;:29.52},{&quot;2026-09-06&quot;:29.52},{&quot;2026-09-07&quot;:29.86},{&quot;2026-09-08&quot;:30.59},{&quot;2026-09-09&quot;:30.94},{&quot;2026-09-10&quot;:30.92},{&quot;2026-09-11&quot;:30.31}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:23.25},{&quot;2026-06-10&quot;:23.23},{&quot;2026-06-11&quot;:23.21},{&quot;2026-06-12&quot;:23.33},{&quot;2026-06-13&quot;:24.34},{&quot;2026-06-14&quot;:24.72},{&quot;2026-06-15&quot;:24.17},{&quot;2026-06-16&quot;:24.12},{&quot;2026-06-17&quot;:24.35},{&quot;2026-06-18&quot;:24.36},{&quot;2026-06-19&quot;:23.92},{&quot;2026-06-20&quot;:23.81},{&quot;2026-06-21&quot;:23.39},{&quot;2026-06-22&quot;:24.27},{&quot;2026-06-24&quot;:24.32},{&quot;2026-06-25&quot;:24.16},{&quot;2026-06-26&quot;:23.65},{&quot;2026-06-27&quot;:23.54},{&quot;2026-06-28&quot;:24.86},{&quot;2026-06-29&quot;:25.25},{&quot;2026-06-30&quot;:25.92},{&quot;2026-07-01&quot;:25.23},{&quot;2026-07-02&quot;:25.09},{&quot;2026-07-03&quot;:24.78},{&quot;2026-07-04&quot;:23.63},{&quot;2026-07-05&quot;:24.06},{&quot;2026-07-06&quot;:25.28},{&quot;2026-07-07&quot;:24.63},{&quot;2026-07-08&quot;:24.37},{&quot;2026-07-09&quot;:26.33},{&quot;2026-07-10&quot;:27.48},{&quot;2026-07-11&quot;:25.94},{&quot;2026-07-12&quot;:25.43},{&quot;2026-07-13&quot;:25.12},{&quot;2026-07-14&quot;:25.39},{&quot;2026-07-15&quot;:26.82},{&quot;2026-07-16&quot;:28.32},{&quot;2026-07-17&quot;:27.18},{&quot;2026-07-18&quot;:26.16},{&quot;2026-07-19&quot;:26.49},{&quot;2026-07-20&quot;:27.65},{&quot;2026-07-21&quot;:27.77},{&quot;2026-07-23&quot;:26.65},{&quot;2026-07-25&quot;:26.75},{&quot;2026-07-26&quot;:26.37},{&quot;2026-07-27&quot;:26.07},{&quot;2026-07-29&quot;:27.28},{&quot;2026-07-30&quot;:26.27},{&quot;2026-07-31&quot;:26.67},{&quot;2026-08-01&quot;:27.12},{&quot;2026-08-02&quot;:28.04},{&quot;2026-08-03&quot;:27.93},{&quot;2026-08-04&quot;:28.02},{&quot;2026-08-05&quot;:27.69},{&quot;2026-08-07&quot;:26.7},{&quot;2026-08-08&quot;:26.64},{&quot;2026-08-09&quot;:26.3},{&quot;2026-08-10&quot;:27.3},{&quot;2026-08-11&quot;:27.64},{&quot;2026-08-12&quot;:28.79},{&quot;2026-08-13&quot;:28.65},{&quot;2026-08-14&quot;:28.82},{&quot;2026-08-15&quot;:28.68},{&quot;2026-08-16&quot;:29.55},{&quot;2026-08-17&quot;:30.22},{&quot;2026-08-18&quot;:29.52},{&quot;2026-08-19&quot;:28.96},{&quot;2026-08-20&quot;:28.96},{&quot;2026-08-21&quot;:28.07},{&quot;2026-08-22&quot;:27.7},{&quot;2026-08-23&quot;:28.26},{&quot;2026-08-24&quot;:27.95},{&quot;2026-08-25&quot;:27.95},{&quot;2026-08-26&quot;:29.54},{&quot;2026-08-27&quot;:29.82},{&quot;2026-08-28&quot;:29.53},{&quot;2026-08-29&quot;:29.53},{&quot;2026-08-30&quot;:28.09},{&quot;2026-08-31&quot;:29.08},{&quot;2026-09-01&quot;:29.08},{&quot;2026-09-02&quot;:28.08},{&quot;2026-09-03&quot;:28.27},{&quot;2026-09-04&quot;:28.87},{&quot;2026-09-05&quot;:28.74},{&quot;2026-09-06&quot;:29.23},{&quot;2026-09-07&quot;:29.99},{&quot;2026-09-08&quot;:30.34},{&quot;2026-09-09&quot;:30.55},{&quot;2026-09-10&quot;:29.95},{&quot;2026-09-11&quot;:29.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Black Market Connections" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d13cb0d3-3452-4c1f-81ec-024b4c45bbad.jpg?1783922505" />

        <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">
            Black Market Connections
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Black Market Connections" src="https://cards.scryfall.io/large/front/d/1/d13cb0d3-3452-4c1f-81ec-024b4c45bbad.jpg?1783922505" />
    </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">
                $18.13
              </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">$10.00</span>
              <span class="text-xs text-grey-text">Credit: $13.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:20.06},{&quot;2026-06-14&quot;:20.06},{&quot;2026-06-15&quot;:19.62},{&quot;2026-06-16&quot;:19.87},{&quot;2026-06-17&quot;:19.88},{&quot;2026-06-18&quot;:19.87},{&quot;2026-06-19&quot;:19.87},{&quot;2026-06-20&quot;:19.95},{&quot;2026-06-21&quot;:19.89},{&quot;2026-06-22&quot;:20.09},{&quot;2026-06-23&quot;:20.09},{&quot;2026-06-24&quot;:20.15},{&quot;2026-06-25&quot;:20.11},{&quot;2026-06-26&quot;:20.15},{&quot;2026-06-27&quot;:20.23},{&quot;2026-06-28&quot;:20.01},{&quot;2026-06-29&quot;:20.01},{&quot;2026-06-30&quot;:20.01},{&quot;2026-07-01&quot;:19.7},{&quot;2026-07-02&quot;:19.7},{&quot;2026-07-03&quot;:19.7},{&quot;2026-07-04&quot;:19.99},{&quot;2026-07-05&quot;:19.97},{&quot;2026-07-06&quot;:19.85},{&quot;2026-07-07&quot;:19.66},{&quot;2026-07-08&quot;:19.7},{&quot;2026-07-09&quot;:19.7},{&quot;2026-07-10&quot;:19.67},{&quot;2026-07-11&quot;:19.67},{&quot;2026-07-12&quot;:19.67},{&quot;2026-07-13&quot;:19.55},{&quot;2026-07-14&quot;:19.28},{&quot;2026-07-15&quot;:19.28},{&quot;2026-07-16&quot;:19.28},{&quot;2026-07-17&quot;:19.28},{&quot;2026-07-18&quot;:19.21},{&quot;2026-07-19&quot;:19.21},{&quot;2026-07-20&quot;:19.1},{&quot;2026-07-21&quot;:19.1},{&quot;2026-07-22&quot;:19.1},{&quot;2026-07-23&quot;:19.01},{&quot;2026-07-24&quot;:19.14},{&quot;2026-07-25&quot;:19.14},{&quot;2026-07-26&quot;:19.14},{&quot;2026-07-27&quot;:19.14},{&quot;2026-07-28&quot;:19.14},{&quot;2026-07-29&quot;:19.05},{&quot;2026-07-30&quot;:19.15},{&quot;2026-07-31&quot;:19.24},{&quot;2026-08-01&quot;:19.12},{&quot;2026-08-02&quot;:19.04},{&quot;2026-08-03&quot;:18.99},{&quot;2026-08-04&quot;:18.99},{&quot;2026-08-05&quot;:18.99},{&quot;2026-08-07&quot;:18.94},{&quot;2026-08-08&quot;:18.84},{&quot;2026-08-09&quot;:18.84},{&quot;2026-08-10&quot;:18.84},{&quot;2026-08-11&quot;:18.84},{&quot;2026-08-12&quot;:18.84},{&quot;2026-08-13&quot;:18.68},{&quot;2026-08-14&quot;:18.73},{&quot;2026-08-15&quot;:18.63},{&quot;2026-08-16&quot;:18.63},{&quot;2026-08-17&quot;:18.54},{&quot;2026-08-18&quot;:18.54},{&quot;2026-08-19&quot;:18.52},{&quot;2026-08-20&quot;:18.52},{&quot;2026-08-21&quot;:18.5},{&quot;2026-08-22&quot;:18.5},{&quot;2026-08-23&quot;:18.5},{&quot;2026-08-24&quot;:18.54},{&quot;2026-08-25&quot;:18.38},{&quot;2026-08-26&quot;:18.35},{&quot;2026-08-27&quot;:18.32},{&quot;2026-08-28&quot;:18.31},{&quot;2026-08-29&quot;:18.31},{&quot;2026-08-30&quot;:18.25},{&quot;2026-08-31&quot;:18.25},{&quot;2026-09-01&quot;:18.06},{&quot;2026-09-02&quot;:17.82},{&quot;2026-09-03&quot;:18.02},{&quot;2026-09-04&quot;:17.82},{&quot;2026-09-05&quot;:17.76},{&quot;2026-09-06&quot;:17.84},{&quot;2026-09-07&quot;:17.85},{&quot;2026-09-08&quot;:17.96},{&quot;2026-09-09&quot;:17.96},{&quot;2026-09-10&quot;:18.03},{&quot;2026-09-11&quot;:18.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Diabolic Intent
        </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">
            $15.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="Diabolic Intent" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a2ec8e5e-ada8-4cd7-b43d-157568356a80.jpg?1783906385" />

        <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">
            Diabolic Intent
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Diabolic Intent" src="https://cards.scryfall.io/large/front/a/2/a2ec8e5e-ada8-4cd7-b43d-157568356a80.jpg?1783906385" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $15.32
              </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">
                $46.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">$11.50</span>
              <span class="text-xs text-grey-text">Credit: $14.95</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:33.91},{&quot;2026-06-12&quot;:33.91},{&quot;2026-06-13&quot;:33.88},{&quot;2026-06-14&quot;:33.81},{&quot;2026-06-15&quot;:33.81},{&quot;2026-06-16&quot;:33.81},{&quot;2026-06-17&quot;:33.81},{&quot;2026-06-18&quot;:33.81},{&quot;2026-06-19&quot;:33.83},{&quot;2026-06-20&quot;:33.83},{&quot;2026-06-21&quot;:33.86},{&quot;2026-06-22&quot;:34.2},{&quot;2026-06-23&quot;:34.2},{&quot;2026-06-24&quot;:34.2},{&quot;2026-06-25&quot;:34.2},{&quot;2026-06-26&quot;:34.2},{&quot;2026-06-27&quot;:34.2},{&quot;2026-06-28&quot;:34.2},{&quot;2026-06-29&quot;:34.2},{&quot;2026-06-30&quot;:33.98},{&quot;2026-07-01&quot;:34.28},{&quot;2026-07-02&quot;:34.28},{&quot;2026-07-03&quot;:34.09},{&quot;2026-07-04&quot;:34.24},{&quot;2026-07-05&quot;:34.24},{&quot;2026-07-06&quot;:34.24},{&quot;2026-07-07&quot;:34.24},{&quot;2026-07-08&quot;:34.24},{&quot;2026-07-09&quot;:34.21},{&quot;2026-07-10&quot;:34.21},{&quot;2026-07-11&quot;:33.99},{&quot;2026-07-12&quot;:34.46},{&quot;2026-07-13&quot;:34.46},{&quot;2026-07-14&quot;:34.42},{&quot;2026-07-15&quot;:34.67},{&quot;2026-07-16&quot;:34.67},{&quot;2026-07-17&quot;:34.67},{&quot;2026-07-18&quot;:34.66},{&quot;2026-07-19&quot;:34.66},{&quot;2026-07-20&quot;:34.95},{&quot;2026-07-21&quot;:34.77},{&quot;2026-07-23&quot;:34.97},{&quot;2026-07-25&quot;:34.98},{&quot;2026-07-26&quot;:34.98},{&quot;2026-07-27&quot;:34.98},{&quot;2026-07-28&quot;:35.98},{&quot;2026-07-29&quot;:36.25},{&quot;2026-07-30&quot;:36.25},{&quot;2026-07-31&quot;:36.25},{&quot;2026-08-01&quot;:36.24},{&quot;2026-08-02&quot;:36.61},{&quot;2026-08-03&quot;:36.61},{&quot;2026-08-04&quot;:36.44},{&quot;2026-08-05&quot;:36.44},{&quot;2026-08-07&quot;:36.78},{&quot;2026-08-08&quot;:37.14},{&quot;2026-08-09&quot;:37.66},{&quot;2026-08-10&quot;:38.08},{&quot;2026-08-11&quot;:38.89},{&quot;2026-08-12&quot;:38.89},{&quot;2026-08-13&quot;:38.89},{&quot;2026-08-14&quot;:39.89},{&quot;2026-08-15&quot;:39.98},{&quot;2026-08-16&quot;:39.98},{&quot;2026-08-17&quot;:40.58},{&quot;2026-08-18&quot;:40.58},{&quot;2026-08-19&quot;:40.63},{&quot;2026-08-20&quot;:40.63},{&quot;2026-08-21&quot;:42.87},{&quot;2026-08-22&quot;:42.87},{&quot;2026-08-23&quot;:43.68},{&quot;2026-08-24&quot;:44.2},{&quot;2026-08-25&quot;:44.2},{&quot;2026-08-26&quot;:44.65},{&quot;2026-08-27&quot;:44.65},{&quot;2026-08-28&quot;:44.65},{&quot;2026-08-29&quot;:44.65},{&quot;2026-08-30&quot;:44.67},{&quot;2026-08-31&quot;:44.67},{&quot;2026-09-01&quot;:44.55},{&quot;2026-09-02&quot;:44.55},{&quot;2026-09-03&quot;:44.55},{&quot;2026-09-04&quot;:44.51},{&quot;2026-09-05&quot;:45.32},{&quot;2026-09-06&quot;:45.32},{&quot;2026-09-07&quot;:46.11},{&quot;2026-09-08&quot;:46.11},{&quot;2026-09-09&quot;:46.11},{&quot;2026-09-10&quot;:46.11},{&quot;2026-09-11&quot;:46.11}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:14.49},{&quot;2026-06-12&quot;:14.51},{&quot;2026-06-13&quot;:14.37},{&quot;2026-06-14&quot;:14.12},{&quot;2026-06-15&quot;:14.15},{&quot;2026-06-16&quot;:14.17},{&quot;2026-06-17&quot;:14.11},{&quot;2026-06-18&quot;:14.41},{&quot;2026-06-19&quot;:14.83},{&quot;2026-06-20&quot;:14.88},{&quot;2026-06-21&quot;:14.73},{&quot;2026-06-22&quot;:14.59},{&quot;2026-06-23&quot;:14.54},{&quot;2026-06-24&quot;:14.51},{&quot;2026-06-25&quot;:14.4},{&quot;2026-06-26&quot;:13.23},{&quot;2026-06-27&quot;:13.59},{&quot;2026-06-28&quot;:13.68},{&quot;2026-06-29&quot;:13.68},{&quot;2026-06-30&quot;:13.59},{&quot;2026-07-01&quot;:13.87},{&quot;2026-07-02&quot;:13.71},{&quot;2026-07-03&quot;:13.73},{&quot;2026-07-04&quot;:13.96},{&quot;2026-07-05&quot;:14.19},{&quot;2026-07-06&quot;:14.16},{&quot;2026-07-07&quot;:13.99},{&quot;2026-07-08&quot;:13.85},{&quot;2026-07-09&quot;:13.61},{&quot;2026-07-10&quot;:13.63},{&quot;2026-07-11&quot;:13.74},{&quot;2026-07-12&quot;:13.81},{&quot;2026-07-13&quot;:14.61},{&quot;2026-07-14&quot;:15.04},{&quot;2026-07-15&quot;:15.18},{&quot;2026-07-16&quot;:14.88},{&quot;2026-07-17&quot;:15.04},{&quot;2026-07-18&quot;:14.68},{&quot;2026-07-19&quot;:14.69},{&quot;2026-07-20&quot;:14.3},{&quot;2026-07-21&quot;:14.09},{&quot;2026-07-23&quot;:13.39},{&quot;2026-07-25&quot;:13.97},{&quot;2026-07-26&quot;:13.69},{&quot;2026-07-27&quot;:14.45},{&quot;2026-07-28&quot;:14.52},{&quot;2026-07-29&quot;:14.61},{&quot;2026-07-30&quot;:15.15},{&quot;2026-07-31&quot;:14.42},{&quot;2026-08-01&quot;:14.36},{&quot;2026-08-02&quot;:14.69},{&quot;2026-08-03&quot;:14.62},{&quot;2026-08-04&quot;:14.38},{&quot;2026-08-05&quot;:14.38},{&quot;2026-08-07&quot;:15.75},{&quot;2026-08-08&quot;:15.36},{&quot;2026-08-09&quot;:15.43},{&quot;2026-08-10&quot;:15.41},{&quot;2026-08-11&quot;:15.7},{&quot;2026-08-12&quot;:15.67},{&quot;2026-08-13&quot;:15.46},{&quot;2026-08-14&quot;:15.61},{&quot;2026-08-15&quot;:15.57},{&quot;2026-08-16&quot;:15.62},{&quot;2026-08-17&quot;:15.31},{&quot;2026-08-18&quot;:15.22},{&quot;2026-08-19&quot;:15.0},{&quot;2026-08-20&quot;:15.0},{&quot;2026-08-21&quot;:15.77},{&quot;2026-08-22&quot;:15.77},{&quot;2026-08-23&quot;:16.38},{&quot;2026-08-24&quot;:16.5},{&quot;2026-08-25&quot;:16.73},{&quot;2026-08-26&quot;:16.74},{&quot;2026-08-27&quot;:16.87},{&quot;2026-08-28&quot;:17.21},{&quot;2026-08-29&quot;:17.21},{&quot;2026-08-30&quot;:16.5},{&quot;2026-08-31&quot;:16.4},{&quot;2026-09-01&quot;:16.51},{&quot;2026-09-02&quot;:16.32},{&quot;2026-09-03&quot;:16.11},{&quot;2026-09-04&quot;:15.95},{&quot;2026-09-05&quot;:15.65},{&quot;2026-09-06&quot;:15.65},{&quot;2026-09-07&quot;:15.06},{&quot;2026-09-08&quot;:15.07},{&quot;2026-09-09&quot;:15.12},{&quot;2026-09-10&quot;:15.26},{&quot;2026-09-11&quot;:15.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="45735"
  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-mom ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Faerie Mastermind
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Faerie Rogue</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="Faerie Mastermind" src="https://cards.scryfall.io/large/front/5/2/52d3005f-a1c7-4ef5-911f-ccc0752f4181.jpg?1783917037" />
    </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">
                $11.97
              </span>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:26.58},{&quot;2026-06-14&quot;:26.58},{&quot;2026-06-15&quot;:26.58},{&quot;2026-06-16&quot;:26.58},{&quot;2026-06-17&quot;:26.58},{&quot;2026-06-18&quot;:26.58},{&quot;2026-06-19&quot;:26.58},{&quot;2026-06-20&quot;:26.58},{&quot;2026-06-21&quot;:25.36},{&quot;2026-06-22&quot;:25.36},{&quot;2026-06-23&quot;:24.73},{&quot;2026-06-24&quot;:24.73},{&quot;2026-06-25&quot;:23.91},{&quot;2026-06-26&quot;:23.91},{&quot;2026-06-27&quot;:23.91},{&quot;2026-06-28&quot;:23.91},{&quot;2026-06-29&quot;:23.91},{&quot;2026-06-30&quot;:23.91},{&quot;2026-07-01&quot;:22.87},{&quot;2026-07-02&quot;:22.73},{&quot;2026-07-03&quot;:22.73},{&quot;2026-07-04&quot;:22.39},{&quot;2026-07-05&quot;:22.39},{&quot;2026-07-06&quot;:22.56},{&quot;2026-07-07&quot;:21.99},{&quot;2026-07-08&quot;:21.28},{&quot;2026-07-09&quot;:20.55},{&quot;2026-07-10&quot;:20.55},{&quot;2026-07-11&quot;:20.55},{&quot;2026-07-12&quot;:20.55},{&quot;2026-07-13&quot;:20.17},{&quot;2026-07-14&quot;:20.17},{&quot;2026-07-15&quot;:20.17},{&quot;2026-07-16&quot;:20.17},{&quot;2026-07-17&quot;:20.17},{&quot;2026-07-18&quot;:19.79},{&quot;2026-07-19&quot;:19.79},{&quot;2026-07-20&quot;:19.79},{&quot;2026-07-21&quot;:19.79},{&quot;2026-07-22&quot;:19.79},{&quot;2026-07-23&quot;:19.42},{&quot;2026-07-24&quot;:19.06},{&quot;2026-07-25&quot;:19.06},{&quot;2026-07-26&quot;:19.06},{&quot;2026-07-27&quot;:19.06},{&quot;2026-07-28&quot;:19.06},{&quot;2026-07-29&quot;:19.06},{&quot;2026-07-30&quot;:18.08},{&quot;2026-07-31&quot;:17.64},{&quot;2026-08-01&quot;:17.64},{&quot;2026-08-02&quot;:17.64},{&quot;2026-08-03&quot;:17.64},{&quot;2026-08-04&quot;:17.29},{&quot;2026-08-05&quot;:16.96},{&quot;2026-08-07&quot;:16.59},{&quot;2026-08-08&quot;:16.59},{&quot;2026-08-09&quot;:16.59},{&quot;2026-08-10&quot;:16.28},{&quot;2026-08-11&quot;:15.9},{&quot;2026-08-12&quot;:15.9},{&quot;2026-08-13&quot;:15.65},{&quot;2026-08-14&quot;:15.65},{&quot;2026-08-15&quot;:15.36},{&quot;2026-08-16&quot;:15.36},{&quot;2026-08-17&quot;:15.08},{&quot;2026-08-18&quot;:14.99},{&quot;2026-08-19&quot;:14.99},{&quot;2026-08-20&quot;:14.95},{&quot;2026-08-21&quot;:14.95},{&quot;2026-08-22&quot;:14.93},{&quot;2026-08-23&quot;:14.93},{&quot;2026-08-24&quot;:14.93},{&quot;2026-08-25&quot;:14.61},{&quot;2026-08-26&quot;:14.61},{&quot;2026-08-27&quot;:14.52},{&quot;2026-08-28&quot;:14.52},{&quot;2026-08-29&quot;:14.52},{&quot;2026-08-30&quot;:14.63},{&quot;2026-08-31&quot;:14.63},{&quot;2026-09-01&quot;:14.55},{&quot;2026-09-02&quot;:14.61},{&quot;2026-09-03&quot;:14.61},{&quot;2026-09-04&quot;:14.72},{&quot;2026-09-05&quot;:14.84},{&quot;2026-09-06&quot;:14.83},{&quot;2026-09-07&quot;:14.83},{&quot;2026-09-08&quot;:14.83},{&quot;2026-09-09&quot;:14.83},{&quot;2026-09-10&quot;:14.79},{&quot;2026-09-11&quot;:14.79}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:12.01},{&quot;2026-06-14&quot;:12.28},{&quot;2026-06-15&quot;:12.81},{&quot;2026-06-16&quot;:12.98},{&quot;2026-06-17&quot;:12.85},{&quot;2026-06-18&quot;:13.14},{&quot;2026-06-19&quot;:12.87},{&quot;2026-06-20&quot;:12.75},{&quot;2026-06-21&quot;:12.74},{&quot;2026-06-22&quot;:12.87},{&quot;2026-06-23&quot;:13.03},{&quot;2026-06-24&quot;:12.96},{&quot;2026-06-25&quot;:12.96},{&quot;2026-06-26&quot;:12.81},{&quot;2026-06-27&quot;:12.78},{&quot;2026-06-28&quot;:12.78},{&quot;2026-06-29&quot;:12.62},{&quot;2026-06-30&quot;:12.92},{&quot;2026-07-01&quot;:12.97},{&quot;2026-07-02&quot;:12.41},{&quot;2026-07-03&quot;:11.94},{&quot;2026-07-04&quot;:12.27},{&quot;2026-07-05&quot;:12.16},{&quot;2026-07-06&quot;:12.29},{&quot;2026-07-07&quot;:12.15},{&quot;2026-07-08&quot;:12.58},{&quot;2026-07-09&quot;:12.57},{&quot;2026-07-10&quot;:12.35},{&quot;2026-07-11&quot;:12.17},{&quot;2026-07-12&quot;:12.47},{&quot;2026-07-13&quot;:12.77},{&quot;2026-07-14&quot;:12.98},{&quot;2026-07-15&quot;:12.58},{&quot;2026-07-16&quot;:12.56},{&quot;2026-07-17&quot;:12.19},{&quot;2026-07-18&quot;:12.17},{&quot;2026-07-19&quot;:12.16},{&quot;2026-07-20&quot;:12.2},{&quot;2026-07-21&quot;:12.18},{&quot;2026-07-22&quot;:12.11},{&quot;2026-07-23&quot;:11.87},{&quot;2026-07-24&quot;:12.01},{&quot;2026-07-25&quot;:11.87},{&quot;2026-07-26&quot;:11.86},{&quot;2026-07-27&quot;:11.9},{&quot;2026-07-28&quot;:11.69},{&quot;2026-07-29&quot;:11.75},{&quot;2026-07-30&quot;:11.83},{&quot;2026-07-31&quot;:12.2},{&quot;2026-08-01&quot;:12.15},{&quot;2026-08-02&quot;:12.23},{&quot;2026-08-03&quot;:12.29},{&quot;2026-08-04&quot;:12.8},{&quot;2026-08-05&quot;:12.79},{&quot;2026-08-07&quot;:12.66},{&quot;2026-08-08&quot;:12.58},{&quot;2026-08-09&quot;:12.52},{&quot;2026-08-10&quot;:12.39},{&quot;2026-08-11&quot;:12.16},{&quot;2026-08-12&quot;:12.2},{&quot;2026-08-13&quot;:12.0},{&quot;2026-08-14&quot;:11.91},{&quot;2026-08-15&quot;:12.04},{&quot;2026-08-16&quot;:12.03},{&quot;2026-08-17&quot;:12.08},{&quot;2026-08-18&quot;:12.0},{&quot;2026-08-19&quot;:11.95},{&quot;2026-08-20&quot;:12.16},{&quot;2026-08-21&quot;:12.27},{&quot;2026-08-22&quot;:12.42},{&quot;2026-08-23&quot;:12.41},{&quot;2026-08-24&quot;:12.63},{&quot;2026-08-25&quot;:12.66},{&quot;2026-08-26&quot;:12.76},{&quot;2026-08-27&quot;:12.77},{&quot;2026-08-28&quot;:12.82},{&quot;2026-08-29&quot;:12.82},{&quot;2026-08-30&quot;:12.79},{&quot;2026-08-31&quot;:12.64},{&quot;2026-09-01&quot;:12.64},{&quot;2026-09-02&quot;:12.51},{&quot;2026-09-03&quot;:12.53},{&quot;2026-09-04&quot;:12.21},{&quot;2026-09-05&quot;:12.17},{&quot;2026-09-06&quot;:12.2},{&quot;2026-09-07&quot;:12.23},{&quot;2026-09-08&quot;:12.21},{&quot;2026-09-09&quot;:12.17},{&quot;2026-09-10&quot;:11.97},{&quot;2026-09-11&quot;:11.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Watery Grave
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Watery Grave" src="https://cards.scryfall.io/large/front/5/b/5b8170dc-6a90-46fc-9989-7575f3d402b5.jpg?1752947617" />
    </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">
                $10.98
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:12.79},{&quot;2026-06-11&quot;:12.79},{&quot;2026-06-12&quot;:12.77},{&quot;2026-06-13&quot;:12.15},{&quot;2026-06-14&quot;:12.1},{&quot;2026-06-15&quot;:12.1},{&quot;2026-06-16&quot;:12.51},{&quot;2026-06-17&quot;:12.58},{&quot;2026-06-18&quot;:12.58},{&quot;2026-06-19&quot;:12.58},{&quot;2026-06-20&quot;:12.53},{&quot;2026-06-21&quot;:12.17},{&quot;2026-06-22&quot;:12.08},{&quot;2026-06-23&quot;:12.08},{&quot;2026-06-24&quot;:12.08},{&quot;2026-06-25&quot;:11.94},{&quot;2026-06-26&quot;:11.5},{&quot;2026-06-27&quot;:11.39},{&quot;2026-06-28&quot;:11.36},{&quot;2026-06-29&quot;:11.14},{&quot;2026-06-30&quot;:11.12},{&quot;2026-07-01&quot;:10.84},{&quot;2026-07-02&quot;:10.64},{&quot;2026-07-03&quot;:10.59},{&quot;2026-07-04&quot;:10.41},{&quot;2026-07-05&quot;:10.27},{&quot;2026-07-06&quot;:10.2},{&quot;2026-07-07&quot;:10.03},{&quot;2026-07-08&quot;:9.87},{&quot;2026-07-09&quot;:10.03},{&quot;2026-07-10&quot;:10.02},{&quot;2026-07-11&quot;:10.1},{&quot;2026-07-12&quot;:10.07},{&quot;2026-07-13&quot;:10.15},{&quot;2026-07-14&quot;:10.17},{&quot;2026-07-15&quot;:10.05},{&quot;2026-07-16&quot;:10.05},{&quot;2026-07-17&quot;:10.05},{&quot;2026-07-18&quot;:10.1},{&quot;2026-07-19&quot;:10.07},{&quot;2026-07-20&quot;:10.06},{&quot;2026-07-21&quot;:10.06},{&quot;2026-07-23&quot;:9.85},{&quot;2026-07-25&quot;:9.85},{&quot;2026-07-26&quot;:9.79},{&quot;2026-07-27&quot;:9.73},{&quot;2026-07-29&quot;:9.72},{&quot;2026-07-30&quot;:9.64},{&quot;2026-07-31&quot;:9.74},{&quot;2026-08-01&quot;:9.74},{&quot;2026-08-02&quot;:9.74},{&quot;2026-08-03&quot;:9.69},{&quot;2026-08-04&quot;:9.69},{&quot;2026-08-05&quot;:9.69},{&quot;2026-08-07&quot;:9.79},{&quot;2026-08-08&quot;:9.79},{&quot;2026-08-09&quot;:9.97},{&quot;2026-08-10&quot;:10.13},{&quot;2026-08-11&quot;:10.13},{&quot;2026-08-12&quot;:10.27},{&quot;2026-08-13&quot;:10.37},{&quot;2026-08-14&quot;:10.25},{&quot;2026-08-15&quot;:10.23},{&quot;2026-08-16&quot;:10.17},{&quot;2026-08-17&quot;:10.25},{&quot;2026-08-18&quot;:10.25},{&quot;2026-08-19&quot;:10.19},{&quot;2026-08-20&quot;:10.19},{&quot;2026-08-21&quot;:10.29},{&quot;2026-08-22&quot;:10.44},{&quot;2026-08-23&quot;:10.44},{&quot;2026-08-24&quot;:10.44},{&quot;2026-08-25&quot;:10.44},{&quot;2026-08-26&quot;:10.44},{&quot;2026-08-27&quot;:10.49},{&quot;2026-08-28&quot;:10.47},{&quot;2026-08-29&quot;:10.47},{&quot;2026-08-30&quot;:10.53},{&quot;2026-08-31&quot;:10.53},{&quot;2026-09-01&quot;:10.53},{&quot;2026-09-02&quot;:10.49},{&quot;2026-09-03&quot;:10.49},{&quot;2026-09-04&quot;:10.52},{&quot;2026-09-05&quot;:10.52},{&quot;2026-09-06&quot;:10.62},{&quot;2026-09-07&quot;:10.72},{&quot;2026-09-08&quot;:10.76},{&quot;2026-09-09&quot;:10.76},{&quot;2026-09-10&quot;:10.67},{&quot;2026-09-11&quot;:10.69}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:10.43},{&quot;2026-06-11&quot;:10.79},{&quot;2026-06-12&quot;:11.2},{&quot;2026-06-13&quot;:11.37},{&quot;2026-06-14&quot;:11.17},{&quot;2026-06-15&quot;:10.77},{&quot;2026-06-16&quot;:10.34},{&quot;2026-06-17&quot;:10.52},{&quot;2026-06-18&quot;:10.59},{&quot;2026-06-19&quot;:11.13},{&quot;2026-06-20&quot;:11.18},{&quot;2026-06-21&quot;:10.87},{&quot;2026-06-22&quot;:10.8},{&quot;2026-06-23&quot;:10.58},{&quot;2026-06-24&quot;:10.46},{&quot;2026-06-25&quot;:10.67},{&quot;2026-06-26&quot;:10.73},{&quot;2026-06-27&quot;:10.45},{&quot;2026-06-28&quot;:10.08},{&quot;2026-06-29&quot;:9.96},{&quot;2026-06-30&quot;:9.88},{&quot;2026-07-01&quot;:9.88},{&quot;2026-07-02&quot;:10.05},{&quot;2026-07-03&quot;:9.87},{&quot;2026-07-04&quot;:9.74},{&quot;2026-07-05&quot;:9.73},{&quot;2026-07-06&quot;:9.65},{&quot;2026-07-07&quot;:9.85},{&quot;2026-07-08&quot;:9.63},{&quot;2026-07-09&quot;:8.83},{&quot;2026-07-10&quot;:9.28},{&quot;2026-07-11&quot;:9.76},{&quot;2026-07-12&quot;:9.07},{&quot;2026-07-13&quot;:9.02},{&quot;2026-07-14&quot;:9.44},{&quot;2026-07-15&quot;:9.33},{&quot;2026-07-16&quot;:8.77},{&quot;2026-07-17&quot;:9.0},{&quot;2026-07-18&quot;:9.26},{&quot;2026-07-19&quot;:9.27},{&quot;2026-07-20&quot;:8.99},{&quot;2026-07-21&quot;:9.12},{&quot;2026-07-23&quot;:9.35},{&quot;2026-07-25&quot;:9.75},{&quot;2026-07-26&quot;:9.58},{&quot;2026-07-27&quot;:9.38},{&quot;2026-07-29&quot;:9.64},{&quot;2026-07-30&quot;:9.48},{&quot;2026-07-31&quot;:9.24},{&quot;2026-08-01&quot;:9.45},{&quot;2026-08-02&quot;:9.62},{&quot;2026-08-03&quot;:9.95},{&quot;2026-08-04&quot;:10.03},{&quot;2026-08-05&quot;:9.76},{&quot;2026-08-07&quot;:9.8},{&quot;2026-08-08&quot;:9.64},{&quot;2026-08-09&quot;:9.7},{&quot;2026-08-10&quot;:9.67},{&quot;2026-08-11&quot;:9.69},{&quot;2026-08-12&quot;:9.37},{&quot;2026-08-13&quot;:9.47},{&quot;2026-08-14&quot;:9.86},{&quot;2026-08-15&quot;:9.7},{&quot;2026-08-16&quot;:9.48},{&quot;2026-08-17&quot;:9.28},{&quot;2026-08-18&quot;:9.47},{&quot;2026-08-19&quot;:9.51},{&quot;2026-08-20&quot;:9.51},{&quot;2026-08-21&quot;:9.73},{&quot;2026-08-22&quot;:9.56},{&quot;2026-08-23&quot;:9.43},{&quot;2026-08-24&quot;:9.41},{&quot;2026-08-25&quot;:9.41},{&quot;2026-08-26&quot;:9.89},{&quot;2026-08-27&quot;:9.88},{&quot;2026-08-28&quot;:9.7},{&quot;2026-08-29&quot;:9.7},{&quot;2026-08-30&quot;:10.08},{&quot;2026-08-31&quot;:9.91},{&quot;2026-09-01&quot;:9.91},{&quot;2026-09-02&quot;:9.98},{&quot;2026-09-03&quot;:10.08},{&quot;2026-09-04&quot;:9.93},{&quot;2026-09-05&quot;:10.25},{&quot;2026-09-06&quot;:10.26},{&quot;2026-09-07&quot;:10.08},{&quot;2026-09-08&quot;:10.25},{&quot;2026-09-09&quot;:10.23},{&quot;2026-09-10&quot;:10.57},{&quot;2026-09-11&quot;:10.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shipwreck Marsh" src="https://cards.scryfall.io/large/front/1/5/156df6eb-1ac9-4954-bf93-b1668096b8bd.jpg?1783908058" />
    </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.14
              </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">
                $7.64
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.61},{&quot;2026-06-14&quot;:7.71},{&quot;2026-06-15&quot;:7.86},{&quot;2026-06-16&quot;:7.86},{&quot;2026-06-17&quot;:7.86},{&quot;2026-06-18&quot;:7.86},{&quot;2026-06-19&quot;:7.86},{&quot;2026-06-20&quot;:7.86},{&quot;2026-06-21&quot;:7.88},{&quot;2026-06-22&quot;:7.88},{&quot;2026-06-23&quot;:7.88},{&quot;2026-06-24&quot;:7.88},{&quot;2026-06-25&quot;:7.88},{&quot;2026-06-26&quot;:7.84},{&quot;2026-06-27&quot;:7.84},{&quot;2026-06-28&quot;:7.84},{&quot;2026-06-29&quot;:7.84},{&quot;2026-06-30&quot;:7.58},{&quot;2026-07-01&quot;:7.64},{&quot;2026-07-02&quot;:7.64},{&quot;2026-07-03&quot;:7.64},{&quot;2026-07-04&quot;:7.64},{&quot;2026-07-05&quot;:7.64},{&quot;2026-07-06&quot;:7.64},{&quot;2026-07-07&quot;:7.64},{&quot;2026-07-08&quot;:7.64},{&quot;2026-07-09&quot;:7.53},{&quot;2026-07-10&quot;:7.46},{&quot;2026-07-11&quot;:7.46},{&quot;2026-07-12&quot;:7.53},{&quot;2026-07-13&quot;:7.49},{&quot;2026-07-14&quot;:7.49},{&quot;2026-07-15&quot;:7.5},{&quot;2026-07-16&quot;:7.45},{&quot;2026-07-17&quot;:7.47},{&quot;2026-07-18&quot;:7.47},{&quot;2026-07-19&quot;:7.46},{&quot;2026-07-20&quot;:7.44},{&quot;2026-07-21&quot;:7.37},{&quot;2026-07-22&quot;:7.37},{&quot;2026-07-23&quot;:7.38},{&quot;2026-07-24&quot;:7.42},{&quot;2026-07-25&quot;:7.42},{&quot;2026-07-26&quot;:7.62},{&quot;2026-07-27&quot;:7.88},{&quot;2026-07-28&quot;:7.84},{&quot;2026-07-29&quot;:7.84},{&quot;2026-07-30&quot;:7.84},{&quot;2026-07-31&quot;:7.82},{&quot;2026-08-01&quot;:7.82},{&quot;2026-08-02&quot;:7.78},{&quot;2026-08-03&quot;:7.67},{&quot;2026-08-04&quot;:7.67},{&quot;2026-08-05&quot;:7.67},{&quot;2026-08-07&quot;:7.67},{&quot;2026-08-08&quot;:7.67},{&quot;2026-08-09&quot;:7.67},{&quot;2026-08-10&quot;:7.67},{&quot;2026-08-11&quot;:7.67},{&quot;2026-08-12&quot;:7.67},{&quot;2026-08-13&quot;:7.67},{&quot;2026-08-14&quot;:7.67},{&quot;2026-08-15&quot;:7.67},{&quot;2026-08-16&quot;:7.67},{&quot;2026-08-17&quot;:7.67},{&quot;2026-08-18&quot;:7.67},{&quot;2026-08-19&quot;:7.67},{&quot;2026-08-20&quot;:7.67},{&quot;2026-08-21&quot;:7.67},{&quot;2026-08-22&quot;:7.7},{&quot;2026-08-23&quot;:7.7},{&quot;2026-08-24&quot;:7.7},{&quot;2026-08-25&quot;:7.7},{&quot;2026-08-26&quot;:7.7},{&quot;2026-08-27&quot;:7.7},{&quot;2026-08-28&quot;:7.64},{&quot;2026-08-29&quot;:7.64},{&quot;2026-08-30&quot;:7.63},{&quot;2026-08-31&quot;:7.63},{&quot;2026-09-01&quot;:7.63},{&quot;2026-09-02&quot;:7.63},{&quot;2026-09-03&quot;:7.6},{&quot;2026-09-04&quot;:7.61},{&quot;2026-09-05&quot;:7.63},{&quot;2026-09-06&quot;:7.63},{&quot;2026-09-07&quot;:7.63},{&quot;2026-09-08&quot;:7.63},{&quot;2026-09-09&quot;:7.63},{&quot;2026-09-10&quot;:7.64},{&quot;2026-09-11&quot;:7.64}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.76},{&quot;2026-06-14&quot;:6.76},{&quot;2026-06-15&quot;:6.71},{&quot;2026-06-16&quot;:6.83},{&quot;2026-06-17&quot;:6.75},{&quot;2026-06-18&quot;:6.96},{&quot;2026-06-19&quot;:7.0},{&quot;2026-06-20&quot;:7.0},{&quot;2026-06-21&quot;:6.89},{&quot;2026-06-22&quot;:7.0},{&quot;2026-06-23&quot;:7.26},{&quot;2026-06-24&quot;:7.44},{&quot;2026-06-25&quot;:7.65},{&quot;2026-06-26&quot;:7.4},{&quot;2026-06-27&quot;:7.62},{&quot;2026-06-28&quot;:7.74},{&quot;2026-06-29&quot;:7.55},{&quot;2026-06-30&quot;:7.55},{&quot;2026-07-01&quot;:7.49},{&quot;2026-07-02&quot;:7.59},{&quot;2026-07-03&quot;:7.59},{&quot;2026-07-04&quot;:7.54},{&quot;2026-07-05&quot;:7.43},{&quot;2026-07-06&quot;:7.43},{&quot;2026-07-07&quot;:7.43},{&quot;2026-07-08&quot;:7.43},{&quot;2026-07-09&quot;:7.43},{&quot;2026-07-10&quot;:7.43},{&quot;2026-07-11&quot;:7.39},{&quot;2026-07-12&quot;:7.39},{&quot;2026-07-13&quot;:7.45},{&quot;2026-07-14&quot;:7.48},{&quot;2026-07-15&quot;:7.48},{&quot;2026-07-16&quot;:7.43},{&quot;2026-07-17&quot;:7.43},{&quot;2026-07-18&quot;:7.21},{&quot;2026-07-19&quot;:7.0},{&quot;2026-07-20&quot;:7.0},{&quot;2026-07-21&quot;:7.03},{&quot;2026-07-22&quot;:6.86},{&quot;2026-07-23&quot;:6.86},{&quot;2026-07-24&quot;:6.86},{&quot;2026-07-25&quot;:7.14},{&quot;2026-07-26&quot;:7.15},{&quot;2026-07-27&quot;:7.22},{&quot;2026-07-28&quot;:7.22},{&quot;2026-07-29&quot;:7.17},{&quot;2026-07-30&quot;:7.17},{&quot;2026-07-31&quot;:7.32},{&quot;2026-08-01&quot;:7.32},{&quot;2026-08-02&quot;:7.19},{&quot;2026-08-03&quot;:7.22},{&quot;2026-08-04&quot;:7.74},{&quot;2026-08-05&quot;:7.74},{&quot;2026-08-07&quot;:7.88},{&quot;2026-08-08&quot;:7.88},{&quot;2026-08-09&quot;:7.73},{&quot;2026-08-10&quot;:7.65},{&quot;2026-08-11&quot;:7.38},{&quot;2026-08-12&quot;:7.38},{&quot;2026-08-13&quot;:7.38},{&quot;2026-08-14&quot;:7.33},{&quot;2026-08-15&quot;:7.33},{&quot;2026-08-16&quot;:7.25},{&quot;2026-08-17&quot;:7.25},{&quot;2026-08-18&quot;:7.25},{&quot;2026-08-19&quot;:7.21},{&quot;2026-08-20&quot;:7.23},{&quot;2026-08-21&quot;:7.22},{&quot;2026-08-22&quot;:7.36},{&quot;2026-08-23&quot;:7.44},{&quot;2026-08-24&quot;:7.44},{&quot;2026-08-25&quot;:7.45},{&quot;2026-08-26&quot;:7.51},{&quot;2026-08-27&quot;:6.87},{&quot;2026-08-28&quot;:6.71},{&quot;2026-08-29&quot;:6.71},{&quot;2026-08-30&quot;:6.94},{&quot;2026-08-31&quot;:6.99},{&quot;2026-09-01&quot;:7.04},{&quot;2026-09-02&quot;:7.2},{&quot;2026-09-03&quot;:7.21},{&quot;2026-09-04&quot;:7.23},{&quot;2026-09-05&quot;:7.21},{&quot;2026-09-06&quot;:7.24},{&quot;2026-09-07&quot;:7.24},{&quot;2026-09-08&quot;:7.24},{&quot;2026-09-09&quot;:7.24},{&quot;2026-09-10&quot;:7.24},{&quot;2026-09-11&quot;:7.14}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Reliquary Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/8/2841a331-c915-44b9-8af3-c6991b1d05d3.jpg?1783934682" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reliquary Tower" src="https://cards.scryfall.io/large/front/2/8/2841a331-c915-44b9-8af3-c6991b1d05d3.jpg?1783934682" />
    </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.90
              </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.25</span>
              <span class="text-xs text-grey-text">Credit: $5.53</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.28},{&quot;2026-06-12&quot;:5.28},{&quot;2026-06-13&quot;:5.28},{&quot;2026-06-14&quot;:5.28},{&quot;2026-06-15&quot;:5.28},{&quot;2026-06-16&quot;:5.28},{&quot;2026-06-17&quot;:5.28},{&quot;2026-06-18&quot;:5.28},{&quot;2026-06-19&quot;:5.28},{&quot;2026-06-20&quot;:5.28},{&quot;2026-06-21&quot;:5.28},{&quot;2026-06-22&quot;:5.28},{&quot;2026-06-23&quot;:5.28},{&quot;2026-06-24&quot;:5.28},{&quot;2026-06-25&quot;:5.46},{&quot;2026-06-26&quot;:5.46},{&quot;2026-06-27&quot;:5.71},{&quot;2026-06-28&quot;:5.76},{&quot;2026-06-29&quot;:6.25},{&quot;2026-06-30&quot;:6.25},{&quot;2026-07-01&quot;:6.16},{&quot;2026-07-02&quot;:6.41},{&quot;2026-07-03&quot;:6.41},{&quot;2026-07-04&quot;:6.41},{&quot;2026-07-05&quot;:6.41},{&quot;2026-07-06&quot;:6.41},{&quot;2026-07-07&quot;:6.41},{&quot;2026-07-08&quot;:6.41},{&quot;2026-07-09&quot;:6.41},{&quot;2026-07-10&quot;:6.41},{&quot;2026-07-11&quot;:6.41},{&quot;2026-07-12&quot;:6.41},{&quot;2026-07-13&quot;:6.41},{&quot;2026-07-14&quot;:6.41},{&quot;2026-07-15&quot;:6.46},{&quot;2026-07-16&quot;:6.46},{&quot;2026-07-17&quot;:6.46},{&quot;2026-07-18&quot;:6.46},{&quot;2026-07-19&quot;:6.46},{&quot;2026-07-20&quot;:6.46},{&quot;2026-07-21&quot;:6.45},{&quot;2026-07-23&quot;:6.45},{&quot;2026-07-25&quot;:6.61},{&quot;2026-07-26&quot;:6.77},{&quot;2026-07-27&quot;:6.77},{&quot;2026-07-28&quot;:7.08},{&quot;2026-07-29&quot;:6.85},{&quot;2026-07-30&quot;:6.85},{&quot;2026-07-31&quot;:6.85},{&quot;2026-08-01&quot;:6.85},{&quot;2026-08-02&quot;:6.85},{&quot;2026-08-03&quot;:6.85},{&quot;2026-08-04&quot;:6.85},{&quot;2026-08-05&quot;:6.24},{&quot;2026-08-07&quot;:6.24},{&quot;2026-08-08&quot;:6.24},{&quot;2026-08-09&quot;:6.24},{&quot;2026-08-10&quot;:6.73},{&quot;2026-08-11&quot;:6.73},{&quot;2026-08-12&quot;:6.73},{&quot;2026-08-13&quot;:6.73},{&quot;2026-08-14&quot;:6.69},{&quot;2026-08-15&quot;:6.69},{&quot;2026-08-16&quot;:6.69},{&quot;2026-08-17&quot;:6.69},{&quot;2026-08-18&quot;:6.69},{&quot;2026-08-19&quot;:6.69},{&quot;2026-08-20&quot;:6.69},{&quot;2026-08-21&quot;:6.69},{&quot;2026-08-22&quot;:6.87},{&quot;2026-08-23&quot;:6.87},{&quot;2026-08-24&quot;:6.87},{&quot;2026-08-25&quot;:6.87},{&quot;2026-08-26&quot;:6.87},{&quot;2026-08-27&quot;:6.87},{&quot;2026-08-28&quot;:6.87},{&quot;2026-08-29&quot;:6.87},{&quot;2026-08-30&quot;:6.87},{&quot;2026-08-31&quot;:6.87},{&quot;2026-09-01&quot;:6.87},{&quot;2026-09-02&quot;:6.99},{&quot;2026-09-03&quot;:6.99},{&quot;2026-09-04&quot;:6.99},{&quot;2026-09-05&quot;:6.9},{&quot;2026-09-06&quot;:6.9},{&quot;2026-09-07&quot;:6.9},{&quot;2026-09-08&quot;:6.9},{&quot;2026-09-09&quot;:6.9},{&quot;2026-09-10&quot;:6.9},{&quot;2026-09-11&quot;:6.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="17235"
  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-dst 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">
            Skullclamp
        </span>


      </div>

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Skullclamp" src="https://cards.scryfall.io/large/front/5/5/55318397-de3c-47ea-a088-72a24df5c8fa.jpg?1783944419" />
    </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.74
              </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">
                $87.33
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:92.31},{&quot;2026-06-14&quot;:92.31},{&quot;2026-06-15&quot;:92.31},{&quot;2026-06-16&quot;:92.31},{&quot;2026-06-17&quot;:92.31},{&quot;2026-06-18&quot;:92.31},{&quot;2026-06-19&quot;:92.31},{&quot;2026-06-20&quot;:92.31},{&quot;2026-06-21&quot;:92.31},{&quot;2026-06-22&quot;:92.31},{&quot;2026-06-23&quot;:92.31},{&quot;2026-06-24&quot;:92.31},{&quot;2026-06-25&quot;:92.31},{&quot;2026-06-26&quot;:92.31},{&quot;2026-06-27&quot;:92.31},{&quot;2026-06-28&quot;:97.37},{&quot;2026-06-29&quot;:97.37},{&quot;2026-06-30&quot;:97.37},{&quot;2026-07-01&quot;:97.37},{&quot;2026-07-02&quot;:97.37},{&quot;2026-07-03&quot;:97.37},{&quot;2026-07-04&quot;:97.37},{&quot;2026-07-05&quot;:97.37},{&quot;2026-07-06&quot;:97.37},{&quot;2026-07-07&quot;:97.37},{&quot;2026-07-08&quot;:97.37},{&quot;2026-07-09&quot;:97.37},{&quot;2026-07-10&quot;:97.37},{&quot;2026-07-11&quot;:97.37},{&quot;2026-07-12&quot;:97.37},{&quot;2026-07-13&quot;:97.37},{&quot;2026-07-14&quot;:97.37},{&quot;2026-07-15&quot;:97.37},{&quot;2026-07-16&quot;:97.37},{&quot;2026-07-17&quot;:97.37},{&quot;2026-07-18&quot;:97.37},{&quot;2026-07-19&quot;:97.37},{&quot;2026-07-20&quot;:97.37},{&quot;2026-07-21&quot;:96.14},{&quot;2026-07-22&quot;:97.37},{&quot;2026-07-23&quot;:97.37},{&quot;2026-07-24&quot;:97.37},{&quot;2026-07-25&quot;:95.97},{&quot;2026-07-26&quot;:95.97},{&quot;2026-07-27&quot;:95.97},{&quot;2026-07-28&quot;:95.97},{&quot;2026-07-29&quot;:95.97},{&quot;2026-07-30&quot;:95.97},{&quot;2026-07-31&quot;:95.97},{&quot;2026-08-01&quot;:95.97},{&quot;2026-08-02&quot;:95.97},{&quot;2026-08-03&quot;:95.97},{&quot;2026-08-04&quot;:95.97},{&quot;2026-08-05&quot;:95.97},{&quot;2026-08-07&quot;:95.97},{&quot;2026-08-08&quot;:95.97},{&quot;2026-08-09&quot;:95.97},{&quot;2026-08-10&quot;:95.97},{&quot;2026-08-11&quot;:95.97},{&quot;2026-08-12&quot;:95.97},{&quot;2026-08-13&quot;:95.97},{&quot;2026-08-14&quot;:95.97},{&quot;2026-08-15&quot;:98.79},{&quot;2026-08-16&quot;:98.79},{&quot;2026-08-17&quot;:98.79},{&quot;2026-08-18&quot;:98.79},{&quot;2026-08-19&quot;:98.79},{&quot;2026-08-20&quot;:98.79},{&quot;2026-08-21&quot;:98.79},{&quot;2026-08-22&quot;:98.79},{&quot;2026-08-23&quot;:98.79},{&quot;2026-08-24&quot;:98.79},{&quot;2026-08-25&quot;:98.79},{&quot;2026-08-26&quot;:98.79},{&quot;2026-08-27&quot;:98.79},{&quot;2026-08-28&quot;:98.79},{&quot;2026-08-29&quot;:98.79},{&quot;2026-08-30&quot;:98.79},{&quot;2026-08-31&quot;:98.79},{&quot;2026-09-01&quot;:98.79},{&quot;2026-09-02&quot;:98.79},{&quot;2026-09-03&quot;:102.24},{&quot;2026-09-04&quot;:102.24},{&quot;2026-09-05&quot;:102.24},{&quot;2026-09-06&quot;:102.24},{&quot;2026-09-07&quot;:102.24},{&quot;2026-09-08&quot;:102.24},{&quot;2026-09-09&quot;:87.33},{&quot;2026-09-10&quot;:87.33},{&quot;2026-09-11&quot;:87.33}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.79},{&quot;2026-06-14&quot;:6.88},{&quot;2026-06-15&quot;:6.96},{&quot;2026-06-16&quot;:7.1},{&quot;2026-06-17&quot;:7.03},{&quot;2026-06-18&quot;:7.06},{&quot;2026-06-19&quot;:6.95},{&quot;2026-06-20&quot;:6.77},{&quot;2026-06-21&quot;:6.77},{&quot;2026-06-22&quot;:6.77},{&quot;2026-06-23&quot;:6.77},{&quot;2026-06-24&quot;:6.74},{&quot;2026-06-25&quot;:6.82},{&quot;2026-06-26&quot;:6.82},{&quot;2026-06-27&quot;:6.82},{&quot;2026-06-28&quot;:6.82},{&quot;2026-06-29&quot;:6.82},{&quot;2026-06-30&quot;:6.82},{&quot;2026-07-01&quot;:6.82},{&quot;2026-07-02&quot;:6.82},{&quot;2026-07-03&quot;:6.74},{&quot;2026-07-04&quot;:6.74},{&quot;2026-07-05&quot;:6.62},{&quot;2026-07-06&quot;:6.62},{&quot;2026-07-07&quot;:6.52},{&quot;2026-07-08&quot;:6.45},{&quot;2026-07-09&quot;:6.38},{&quot;2026-07-10&quot;:6.29},{&quot;2026-07-11&quot;:6.18},{&quot;2026-07-12&quot;:6.14},{&quot;2026-07-13&quot;:6.14},{&quot;2026-07-14&quot;:6.04},{&quot;2026-07-15&quot;:6.04},{&quot;2026-07-16&quot;:5.94},{&quot;2026-07-17&quot;:6.0},{&quot;2026-07-18&quot;:5.97},{&quot;2026-07-19&quot;:5.97},{&quot;2026-07-20&quot;:6.03},{&quot;2026-07-21&quot;:6.09},{&quot;2026-07-22&quot;:6.22},{&quot;2026-07-23&quot;:6.22},{&quot;2026-07-24&quot;:6.48},{&quot;2026-07-25&quot;:6.48},{&quot;2026-07-26&quot;:6.48},{&quot;2026-07-27&quot;:6.48},{&quot;2026-07-28&quot;:6.48},{&quot;2026-07-29&quot;:6.48},{&quot;2026-07-30&quot;:6.48},{&quot;2026-07-31&quot;:6.44},{&quot;2026-08-01&quot;:6.44},{&quot;2026-08-02&quot;:6.42},{&quot;2026-08-03&quot;:6.49},{&quot;2026-08-04&quot;:6.49},{&quot;2026-08-05&quot;:6.86},{&quot;2026-08-07&quot;:6.9},{&quot;2026-08-08&quot;:6.9},{&quot;2026-08-09&quot;:6.93},{&quot;2026-08-10&quot;:6.93},{&quot;2026-08-11&quot;:6.95},{&quot;2026-08-12&quot;:6.97},{&quot;2026-08-13&quot;:6.97},{&quot;2026-08-14&quot;:6.97},{&quot;2026-08-15&quot;:6.97},{&quot;2026-08-16&quot;:6.97},{&quot;2026-08-17&quot;:6.95},{&quot;2026-08-18&quot;:6.95},{&quot;2026-08-19&quot;:6.95},{&quot;2026-08-20&quot;:6.95},{&quot;2026-08-21&quot;:6.95},{&quot;2026-08-22&quot;:6.93},{&quot;2026-08-23&quot;:6.93},{&quot;2026-08-24&quot;:6.93},{&quot;2026-08-25&quot;:6.93},{&quot;2026-08-26&quot;:7.14},{&quot;2026-08-27&quot;:7.26},{&quot;2026-08-28&quot;:7.13},{&quot;2026-08-29&quot;:7.13},{&quot;2026-08-30&quot;:7.13},{&quot;2026-08-31&quot;:7.13},{&quot;2026-09-01&quot;:7.17},{&quot;2026-09-02&quot;:7.17},{&quot;2026-09-03&quot;:7.22},{&quot;2026-09-04&quot;:7.2},{&quot;2026-09-05&quot;:7.2},{&quot;2026-09-06&quot;:7.26},{&quot;2026-09-07&quot;:7.02},{&quot;2026-09-08&quot;:7.02},{&quot;2026-09-09&quot;:7.02},{&quot;2026-09-10&quot;:7.03},{&quot;2026-09-11&quot;:6.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

        <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">
            Leyline of Anticipation
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Leyline of Anticipation" src="https://cards.scryfall.io/large/front/f/5/f57bdaa1-ce8a-4103-8598-fee751e65a53.jpg?1783922469" />
    </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.47
              </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">$3.10</span>
              <span class="text-xs text-grey-text">Credit: $4.03</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.43},{&quot;2026-06-14&quot;:8.43},{&quot;2026-06-15&quot;:8.43},{&quot;2026-06-16&quot;:8.34},{&quot;2026-06-17&quot;:8.54},{&quot;2026-06-18&quot;:8.54},{&quot;2026-06-19&quot;:8.54},{&quot;2026-06-20&quot;:8.54},{&quot;2026-06-21&quot;:8.65},{&quot;2026-06-22&quot;:8.57},{&quot;2026-06-23&quot;:8.57},{&quot;2026-06-24&quot;:8.59},{&quot;2026-06-25&quot;:8.59},{&quot;2026-06-26&quot;:8.59},{&quot;2026-06-27&quot;:8.59},{&quot;2026-06-28&quot;:8.59},{&quot;2026-06-29&quot;:8.59},{&quot;2026-06-30&quot;:8.55},{&quot;2026-07-01&quot;:8.55},{&quot;2026-07-02&quot;:8.07},{&quot;2026-07-03&quot;:8.07},{&quot;2026-07-04&quot;:8.07},{&quot;2026-07-05&quot;:7.99},{&quot;2026-07-06&quot;:7.96},{&quot;2026-07-07&quot;:8.05},{&quot;2026-07-08&quot;:8.05},{&quot;2026-07-09&quot;:8.05},{&quot;2026-07-10&quot;:7.91},{&quot;2026-07-11&quot;:7.89},{&quot;2026-07-12&quot;:7.89},{&quot;2026-07-13&quot;:7.44},{&quot;2026-07-14&quot;:7.48},{&quot;2026-07-15&quot;:7.34},{&quot;2026-07-16&quot;:7.34},{&quot;2026-07-17&quot;:7.5},{&quot;2026-07-18&quot;:7.56},{&quot;2026-07-19&quot;:7.55},{&quot;2026-07-20&quot;:7.55},{&quot;2026-07-21&quot;:7.55},{&quot;2026-07-22&quot;:7.55},{&quot;2026-07-23&quot;:7.55},{&quot;2026-07-24&quot;:7.55},{&quot;2026-07-25&quot;:7.55},{&quot;2026-07-26&quot;:7.25},{&quot;2026-07-27&quot;:7.15},{&quot;2026-07-28&quot;:7.15},{&quot;2026-07-29&quot;:7.19},{&quot;2026-07-30&quot;:7.19},{&quot;2026-07-31&quot;:7.0},{&quot;2026-08-01&quot;:6.8},{&quot;2026-08-02&quot;:6.9},{&quot;2026-08-03&quot;:6.82},{&quot;2026-08-04&quot;:6.81},{&quot;2026-08-05&quot;:6.7},{&quot;2026-08-07&quot;:6.73},{&quot;2026-08-08&quot;:6.82},{&quot;2026-08-09&quot;:6.82},{&quot;2026-08-10&quot;:6.82},{&quot;2026-08-11&quot;:6.82},{&quot;2026-08-12&quot;:6.93},{&quot;2026-08-13&quot;:6.93},{&quot;2026-08-14&quot;:6.93},{&quot;2026-08-15&quot;:6.93},{&quot;2026-08-16&quot;:6.89},{&quot;2026-08-17&quot;:6.8},{&quot;2026-08-18&quot;:6.81},{&quot;2026-08-19&quot;:6.81},{&quot;2026-08-20&quot;:6.81},{&quot;2026-08-21&quot;:6.8},{&quot;2026-08-22&quot;:6.8},{&quot;2026-08-23&quot;:6.76},{&quot;2026-08-24&quot;:6.75},{&quot;2026-08-25&quot;:6.81},{&quot;2026-08-26&quot;:6.79},{&quot;2026-08-27&quot;:6.69},{&quot;2026-08-28&quot;:6.71},{&quot;2026-08-29&quot;:6.71},{&quot;2026-08-30&quot;:6.58},{&quot;2026-08-31&quot;:6.47},{&quot;2026-09-01&quot;:6.48},{&quot;2026-09-02&quot;:6.54},{&quot;2026-09-03&quot;:6.64},{&quot;2026-09-04&quot;:6.64},{&quot;2026-09-05&quot;:6.64},{&quot;2026-09-06&quot;:6.64},{&quot;2026-09-07&quot;:6.66},{&quot;2026-09-08&quot;:6.56},{&quot;2026-09-09&quot;:6.52},{&quot;2026-09-10&quot;:6.52},{&quot;2026-09-11&quot;:6.47}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/5/7/57ef531e-2a8f-4d40-b509-92e3a86b2257.jpg?1783923806" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $6.24
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$3.60</span>
              <span class="text-xs text-grey-text">Credit: $4.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-13&quot;:6.99},{&quot;2026-06-14&quot;:6.99},{&quot;2026-06-15&quot;:6.92},{&quot;2026-06-16&quot;:6.84},{&quot;2026-06-17&quot;:6.9},{&quot;2026-06-18&quot;:6.9},{&quot;2026-06-19&quot;:6.94},{&quot;2026-06-20&quot;:6.94},{&quot;2026-06-21&quot;:6.98},{&quot;2026-06-22&quot;:7.24},{&quot;2026-06-23&quot;:7.32},{&quot;2026-06-24&quot;:7.32},{&quot;2026-06-25&quot;:7.3},{&quot;2026-06-26&quot;:7.26},{&quot;2026-06-27&quot;:7.32},{&quot;2026-06-28&quot;:7.39},{&quot;2026-06-29&quot;:7.39},{&quot;2026-06-30&quot;:7.46},{&quot;2026-07-01&quot;:7.51},{&quot;2026-07-02&quot;:7.63},{&quot;2026-07-03&quot;:7.63},{&quot;2026-07-04&quot;:7.41},{&quot;2026-07-05&quot;:7.15},{&quot;2026-07-06&quot;:7.15},{&quot;2026-07-07&quot;:7.12},{&quot;2026-07-08&quot;:6.96},{&quot;2026-07-09&quot;:6.78},{&quot;2026-07-10&quot;:6.4},{&quot;2026-07-11&quot;:6.4},{&quot;2026-07-12&quot;:6.38},{&quot;2026-07-13&quot;:6.26},{&quot;2026-07-14&quot;:6.26},{&quot;2026-07-15&quot;:6.26},{&quot;2026-07-16&quot;:6.33},{&quot;2026-07-17&quot;:6.3},{&quot;2026-07-18&quot;:6.33},{&quot;2026-07-19&quot;:6.34},{&quot;2026-07-20&quot;:6.51},{&quot;2026-07-21&quot;:6.49},{&quot;2026-07-22&quot;:6.45},{&quot;2026-07-23&quot;:6.47},{&quot;2026-07-24&quot;:6.46},{&quot;2026-07-25&quot;:6.52},{&quot;2026-07-26&quot;:6.43},{&quot;2026-07-27&quot;:6.51},{&quot;2026-07-28&quot;:6.51},{&quot;2026-07-29&quot;:6.51},{&quot;2026-07-30&quot;:6.49},{&quot;2026-07-31&quot;:6.18},{&quot;2026-08-01&quot;:6.18},{&quot;2026-08-02&quot;:6.22},{&quot;2026-08-03&quot;:6.22},{&quot;2026-08-04&quot;:6.17},{&quot;2026-08-05&quot;:6.0},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:6.03},{&quot;2026-08-09&quot;:6.09},{&quot;2026-08-10&quot;:6.14},{&quot;2026-08-11&quot;:6.12},{&quot;2026-08-12&quot;:6.33},{&quot;2026-08-13&quot;:6.47},{&quot;2026-08-14&quot;:6.48},{&quot;2026-08-15&quot;:6.8},{&quot;2026-08-16&quot;:6.98},{&quot;2026-08-17&quot;:7.0},{&quot;2026-08-18&quot;:7.21},{&quot;2026-08-19&quot;:7.26},{&quot;2026-08-20&quot;:7.27},{&quot;2026-08-21&quot;:7.27},{&quot;2026-08-22&quot;:7.34},{&quot;2026-08-23&quot;:7.15},{&quot;2026-08-24&quot;:7.15},{&quot;2026-08-25&quot;:6.9},{&quot;2026-08-26&quot;:6.89},{&quot;2026-08-27&quot;:6.87},{&quot;2026-08-28&quot;:6.83},{&quot;2026-08-29&quot;:6.83},{&quot;2026-08-30&quot;:6.66},{&quot;2026-08-31&quot;:6.6},{&quot;2026-09-01&quot;:6.36},{&quot;2026-09-02&quot;:6.45},{&quot;2026-09-03&quot;:6.56},{&quot;2026-09-04&quot;:6.44},{&quot;2026-09-05&quot;:6.53},{&quot;2026-09-06&quot;:6.44},{&quot;2026-09-07&quot;:6.47},{&quot;2026-09-08&quot;:6.29},{&quot;2026-09-09&quot;:6.29},{&quot;2026-09-10&quot;:6.25},{&quot;2026-09-11&quot;:6.24}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.45},{&quot;2026-06-14&quot;:5.4},{&quot;2026-06-15&quot;:5.36},{&quot;2026-06-16&quot;:5.43},{&quot;2026-06-17&quot;:5.43},{&quot;2026-06-18&quot;:5.43},{&quot;2026-06-19&quot;:7.0},{&quot;2026-06-20&quot;:6.99},{&quot;2026-06-21&quot;:7.06},{&quot;2026-06-22&quot;:7.15},{&quot;2026-06-23&quot;:7.15},{&quot;2026-06-24&quot;:7.13},{&quot;2026-06-25&quot;:7.01},{&quot;2026-06-26&quot;:6.7},{&quot;2026-06-27&quot;:6.67},{&quot;2026-06-28&quot;:6.67},{&quot;2026-06-29&quot;:5.91},{&quot;2026-06-30&quot;:5.91},{&quot;2026-07-01&quot;:5.88},{&quot;2026-07-02&quot;:5.91},{&quot;2026-07-03&quot;:5.86},{&quot;2026-07-04&quot;:5.55},{&quot;2026-07-05&quot;:5.57},{&quot;2026-07-06&quot;:5.62},{&quot;2026-07-07&quot;:6.14},{&quot;2026-07-08&quot;:6.22},{&quot;2026-07-09&quot;:6.25},{&quot;2026-07-10&quot;:5.96},{&quot;2026-07-11&quot;:6.11},{&quot;2026-07-12&quot;:6.11},{&quot;2026-07-13&quot;:6.22},{&quot;2026-07-14&quot;:6.27},{&quot;2026-07-15&quot;:6.29},{&quot;2026-07-16&quot;:6.18},{&quot;2026-07-17&quot;:5.47},{&quot;2026-07-18&quot;:5.37},{&quot;2026-07-19&quot;:5.35},{&quot;2026-07-20&quot;:5.35},{&quot;2026-07-21&quot;:5.31},{&quot;2026-07-22&quot;:5.31},{&quot;2026-07-23&quot;:5.38},{&quot;2026-07-24&quot;:5.38},{&quot;2026-07-25&quot;:5.19},{&quot;2026-07-26&quot;:5.15},{&quot;2026-07-27&quot;:5.3},{&quot;2026-07-28&quot;:5.26},{&quot;2026-07-29&quot;:5.03},{&quot;2026-07-30&quot;:5.1},{&quot;2026-07-31&quot;:4.95},{&quot;2026-08-01&quot;:4.95},{&quot;2026-08-02&quot;:5.02},{&quot;2026-08-03&quot;:4.91},{&quot;2026-08-04&quot;:4.91},{&quot;2026-08-05&quot;:4.76},{&quot;2026-08-07&quot;:4.81},{&quot;2026-08-08&quot;:4.92},{&quot;2026-08-09&quot;:4.81},{&quot;2026-08-10&quot;:4.69},{&quot;2026-08-11&quot;:4.58},{&quot;2026-08-12&quot;:4.64},{&quot;2026-08-13&quot;:4.64},{&quot;2026-08-14&quot;:4.64},{&quot;2026-08-15&quot;:4.54},{&quot;2026-08-16&quot;:4.58},{&quot;2026-08-17&quot;:4.56},{&quot;2026-08-18&quot;:4.71},{&quot;2026-08-19&quot;:4.77},{&quot;2026-08-20&quot;:4.78},{&quot;2026-08-21&quot;:4.87},{&quot;2026-08-22&quot;:4.9},{&quot;2026-08-23&quot;:5.05},{&quot;2026-08-24&quot;:5.08},{&quot;2026-08-25&quot;:4.96},{&quot;2026-08-26&quot;:4.91},{&quot;2026-08-27&quot;:4.81},{&quot;2026-08-28&quot;:4.85},{&quot;2026-08-29&quot;:4.85},{&quot;2026-08-30&quot;:4.8},{&quot;2026-08-31&quot;:5.1},{&quot;2026-09-01&quot;:5.13},{&quot;2026-09-02&quot;:5.29},{&quot;2026-09-03&quot;:5.29},{&quot;2026-09-04&quot;:5.36},{&quot;2026-09-05&quot;:5.34},{&quot;2026-09-06&quot;:5.4},{&quot;2026-09-07&quot;:5.24},{&quot;2026-09-08&quot;:4.89},{&quot;2026-09-09&quot;:4.87},{&quot;2026-09-10&quot;:4.82},{&quot;2026-09-11&quot;:4.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swarmyard" src="https://cards.scryfall.io/large/front/b/8/b89329f2-d386-40a7-9098-6d80beeb8843.jpg?1783927748" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.70</span>
              <span class="text-xs text-grey-text">Credit: $4.81</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;:10.01},{&quot;2026-06-12&quot;:10.01},{&quot;2026-06-13&quot;:10.01},{&quot;2026-06-14&quot;:10.01},{&quot;2026-06-15&quot;:10.01},{&quot;2026-06-16&quot;:10.01},{&quot;2026-06-17&quot;:10.01},{&quot;2026-06-18&quot;:10.01},{&quot;2026-06-19&quot;:10.01},{&quot;2026-06-20&quot;:10.01},{&quot;2026-06-21&quot;:10.01},{&quot;2026-06-22&quot;:10.01},{&quot;2026-06-23&quot;:10.01},{&quot;2026-06-24&quot;:9.96},{&quot;2026-06-25&quot;:9.96},{&quot;2026-06-26&quot;:9.96},{&quot;2026-06-27&quot;:9.96},{&quot;2026-06-28&quot;:9.96},{&quot;2026-06-29&quot;:9.96},{&quot;2026-06-30&quot;:9.96},{&quot;2026-07-01&quot;:9.96},{&quot;2026-07-02&quot;:9.96},{&quot;2026-07-03&quot;:10.08},{&quot;2026-07-04&quot;:10.08},{&quot;2026-07-05&quot;:10.08},{&quot;2026-07-06&quot;:10.31},{&quot;2026-07-07&quot;:10.31},{&quot;2026-07-08&quot;:10.52},{&quot;2026-07-09&quot;:10.72},{&quot;2026-07-10&quot;:10.72},{&quot;2026-07-11&quot;:10.72},{&quot;2026-07-12&quot;:10.72},{&quot;2026-07-13&quot;:10.72},{&quot;2026-07-14&quot;:10.73},{&quot;2026-07-15&quot;:10.73},{&quot;2026-07-16&quot;:10.73},{&quot;2026-07-17&quot;:10.73},{&quot;2026-07-18&quot;:10.73},{&quot;2026-07-19&quot;:10.73},{&quot;2026-07-20&quot;:10.73},{&quot;2026-07-21&quot;:10.81},{&quot;2026-07-23&quot;:10.73},{&quot;2026-07-25&quot;:10.97},{&quot;2026-07-26&quot;:10.97},{&quot;2026-07-27&quot;:10.97},{&quot;2026-07-28&quot;:10.97},{&quot;2026-07-29&quot;:10.97},{&quot;2026-07-30&quot;:10.97},{&quot;2026-07-31&quot;:11.0},{&quot;2026-08-01&quot;:11.0},{&quot;2026-08-02&quot;:10.97},{&quot;2026-08-03&quot;:10.97},{&quot;2026-08-04&quot;:10.97},{&quot;2026-08-05&quot;:10.97},{&quot;2026-08-07&quot;:10.97},{&quot;2026-08-08&quot;:10.97},{&quot;2026-08-09&quot;:10.97},{&quot;2026-08-10&quot;:10.97},{&quot;2026-08-11&quot;:10.97},{&quot;2026-08-12&quot;:10.97},{&quot;2026-08-13&quot;:10.97},{&quot;2026-08-14&quot;:10.97},{&quot;2026-08-15&quot;:10.97},{&quot;2026-08-16&quot;:10.97},{&quot;2026-08-17&quot;:10.81},{&quot;2026-08-18&quot;:10.81},{&quot;2026-08-19&quot;:10.81},{&quot;2026-08-20&quot;:10.81},{&quot;2026-08-21&quot;:10.81},{&quot;2026-08-22&quot;:10.81},{&quot;2026-08-23&quot;:10.71},{&quot;2026-08-24&quot;:10.71},{&quot;2026-08-25&quot;:10.71},{&quot;2026-08-26&quot;:10.71},{&quot;2026-08-27&quot;:10.71},{&quot;2026-08-28&quot;:10.71},{&quot;2026-08-29&quot;:10.71},{&quot;2026-08-30&quot;:10.66},{&quot;2026-08-31&quot;:10.66},{&quot;2026-09-01&quot;:10.66},{&quot;2026-09-02&quot;:10.66},{&quot;2026-09-03&quot;:10.66},{&quot;2026-09-04&quot;:10.66},{&quot;2026-09-05&quot;:10.66},{&quot;2026-09-06&quot;:10.66},{&quot;2026-09-07&quot;:10.66},{&quot;2026-09-08&quot;:10.7},{&quot;2026-09-09&quot;:11.01},{&quot;2026-09-10&quot;:11.01},{&quot;2026-09-11&quot;:11.01}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:4.34},{&quot;2026-06-12&quot;:4.34},{&quot;2026-06-13&quot;:4.24},{&quot;2026-06-14&quot;:3.96},{&quot;2026-06-15&quot;:3.86},{&quot;2026-06-16&quot;:3.94},{&quot;2026-06-17&quot;:3.94},{&quot;2026-06-18&quot;:3.77},{&quot;2026-06-19&quot;:3.83},{&quot;2026-06-20&quot;:3.82},{&quot;2026-06-21&quot;:3.77},{&quot;2026-06-22&quot;:3.74},{&quot;2026-06-23&quot;:3.94},{&quot;2026-06-24&quot;:4.09},{&quot;2026-06-25&quot;:4.15},{&quot;2026-06-26&quot;:4.22},{&quot;2026-06-27&quot;:4.47},{&quot;2026-06-28&quot;:4.83},{&quot;2026-06-29&quot;:4.83},{&quot;2026-06-30&quot;:4.83},{&quot;2026-07-01&quot;:4.95},{&quot;2026-07-02&quot;:5.04},{&quot;2026-07-03&quot;:4.54},{&quot;2026-07-04&quot;:4.61},{&quot;2026-07-05&quot;:4.51},{&quot;2026-07-06&quot;:4.87},{&quot;2026-07-07&quot;:4.69},{&quot;2026-07-08&quot;:4.68},{&quot;2026-07-09&quot;:4.81},{&quot;2026-07-10&quot;:4.93},{&quot;2026-07-11&quot;:4.94},{&quot;2026-07-12&quot;:4.92},{&quot;2026-07-13&quot;:5.16},{&quot;2026-07-14&quot;:4.95},{&quot;2026-07-15&quot;:4.93},{&quot;2026-07-16&quot;:4.81},{&quot;2026-07-17&quot;:4.67},{&quot;2026-07-18&quot;:4.68},{&quot;2026-07-19&quot;:4.71},{&quot;2026-07-20&quot;:4.74},{&quot;2026-07-21&quot;:4.65},{&quot;2026-07-23&quot;:4.48},{&quot;2026-07-25&quot;:4.43},{&quot;2026-07-26&quot;:4.49},{&quot;2026-07-27&quot;:4.73},{&quot;2026-07-28&quot;:5.08},{&quot;2026-07-29&quot;:5.48},{&quot;2026-07-30&quot;:5.48},{&quot;2026-07-31&quot;:5.47},{&quot;2026-08-01&quot;:5.46},{&quot;2026-08-02&quot;:5.44},{&quot;2026-08-03&quot;:5.52},{&quot;2026-08-04&quot;:5.52},{&quot;2026-08-05&quot;:5.53},{&quot;2026-08-07&quot;:5.18},{&quot;2026-08-08&quot;:5.04},{&quot;2026-08-09&quot;:5.42},{&quot;2026-08-10&quot;:5.44},{&quot;2026-08-11&quot;:5.65},{&quot;2026-08-12&quot;:5.83},{&quot;2026-08-13&quot;:6.02},{&quot;2026-08-14&quot;:6.08},{&quot;2026-08-15&quot;:6.03},{&quot;2026-08-16&quot;:6.17},{&quot;2026-08-17&quot;:6.17},{&quot;2026-08-18&quot;:6.3},{&quot;2026-08-19&quot;:6.3},{&quot;2026-08-20&quot;:6.3},{&quot;2026-08-21&quot;:6.36},{&quot;2026-08-22&quot;:6.36},{&quot;2026-08-23&quot;:6.36},{&quot;2026-08-24&quot;:6.36},{&quot;2026-08-25&quot;:6.35},{&quot;2026-08-26&quot;:6.27},{&quot;2026-08-27&quot;:6.55},{&quot;2026-08-28&quot;:6.43},{&quot;2026-08-29&quot;:6.43},{&quot;2026-08-30&quot;:6.4},{&quot;2026-08-31&quot;:6.4},{&quot;2026-09-01&quot;:6.41},{&quot;2026-09-02&quot;:6.41},{&quot;2026-09-03&quot;:6.5},{&quot;2026-09-04&quot;:6.46},{&quot;2026-09-05&quot;:6.46},{&quot;2026-09-06&quot;:6.46},{&quot;2026-09-07&quot;:6.38},{&quot;2026-09-08&quot;:6.34},{&quot;2026-09-09&quot;:6.31},{&quot;2026-09-10&quot;:6.11},{&quot;2026-09-11&quot;:6.08}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Sulfurous Springs
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sulfurous Springs" src="https://cards.scryfall.io/large/front/0/b/0ba5d3e7-afd9-40c5-8ee9-238ba47f0841.jpg?1783921200" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.39
              </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">
                $5.56
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$4.50</span>
              <span class="text-xs text-grey-text">Credit: $5.85</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.56},{&quot;2026-06-14&quot;:5.56},{&quot;2026-06-15&quot;:5.57},{&quot;2026-06-16&quot;:5.57},{&quot;2026-06-17&quot;:5.57},{&quot;2026-06-18&quot;:5.57},{&quot;2026-06-19&quot;:5.57},{&quot;2026-06-20&quot;:5.57},{&quot;2026-06-21&quot;:5.57},{&quot;2026-06-22&quot;:5.57},{&quot;2026-06-23&quot;:5.55},{&quot;2026-06-24&quot;:5.68},{&quot;2026-06-25&quot;:5.76},{&quot;2026-06-26&quot;:5.77},{&quot;2026-06-27&quot;:5.77},{&quot;2026-06-28&quot;:5.77},{&quot;2026-06-29&quot;:5.77},{&quot;2026-06-30&quot;:5.76},{&quot;2026-07-01&quot;:5.76},{&quot;2026-07-02&quot;:5.78},{&quot;2026-07-03&quot;:5.84},{&quot;2026-07-04&quot;:5.84},{&quot;2026-07-05&quot;:5.79},{&quot;2026-07-06&quot;:5.79},{&quot;2026-07-07&quot;:5.79},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:5.91},{&quot;2026-07-10&quot;:5.91},{&quot;2026-07-11&quot;:5.87},{&quot;2026-07-12&quot;:5.86},{&quot;2026-07-13&quot;:5.95},{&quot;2026-07-14&quot;:5.95},{&quot;2026-07-15&quot;:5.95},{&quot;2026-07-16&quot;:5.94},{&quot;2026-07-17&quot;:5.94},{&quot;2026-07-18&quot;:5.94},{&quot;2026-07-19&quot;:5.93},{&quot;2026-07-20&quot;:5.93},{&quot;2026-07-21&quot;:5.97},{&quot;2026-07-22&quot;:5.96},{&quot;2026-07-23&quot;:6.01},{&quot;2026-07-24&quot;:6.01},{&quot;2026-07-25&quot;:6.01},{&quot;2026-07-26&quot;:5.96},{&quot;2026-07-27&quot;:5.98},{&quot;2026-07-28&quot;:5.98},{&quot;2026-07-29&quot;:5.98},{&quot;2026-07-30&quot;:5.98},{&quot;2026-07-31&quot;:5.95},{&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.94},{&quot;2026-08-05&quot;:5.98},{&quot;2026-08-07&quot;:5.9},{&quot;2026-08-08&quot;:5.79},{&quot;2026-08-09&quot;:5.83},{&quot;2026-08-10&quot;:5.83},{&quot;2026-08-11&quot;:5.77},{&quot;2026-08-12&quot;:5.77},{&quot;2026-08-13&quot;:5.77},{&quot;2026-08-14&quot;:5.77},{&quot;2026-08-15&quot;:5.77},{&quot;2026-08-16&quot;:5.63},{&quot;2026-08-17&quot;:5.59},{&quot;2026-08-18&quot;:5.6},{&quot;2026-08-19&quot;:5.6},{&quot;2026-08-20&quot;:5.6},{&quot;2026-08-21&quot;:5.6},{&quot;2026-08-22&quot;:5.58},{&quot;2026-08-23&quot;:5.51},{&quot;2026-08-24&quot;:5.57},{&quot;2026-08-25&quot;:5.57},{&quot;2026-08-26&quot;:5.66},{&quot;2026-08-27&quot;:5.66},{&quot;2026-08-28&quot;:5.66},{&quot;2026-08-29&quot;:5.66},{&quot;2026-08-30&quot;:5.68},{&quot;2026-08-31&quot;:5.64},{&quot;2026-09-01&quot;:5.64},{&quot;2026-09-02&quot;:5.64},{&quot;2026-09-03&quot;:5.63},{&quot;2026-09-04&quot;:5.63},{&quot;2026-09-05&quot;:5.6},{&quot;2026-09-06&quot;:5.6},{&quot;2026-09-07&quot;:5.6},{&quot;2026-09-08&quot;:5.53},{&quot;2026-09-09&quot;:5.53},{&quot;2026-09-10&quot;:5.53},{&quot;2026-09-11&quot;:5.56}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.11},{&quot;2026-06-14&quot;:3.11},{&quot;2026-06-15&quot;:3.11},{&quot;2026-06-16&quot;:3.11},{&quot;2026-06-17&quot;:3.11},{&quot;2026-06-18&quot;:3.06},{&quot;2026-06-19&quot;:3.21},{&quot;2026-06-20&quot;:3.14},{&quot;2026-06-21&quot;:3.1},{&quot;2026-06-22&quot;:3.21},{&quot;2026-06-23&quot;:3.24},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.27},{&quot;2026-06-26&quot;:3.41},{&quot;2026-06-27&quot;:3.41},{&quot;2026-06-28&quot;:3.48},{&quot;2026-06-29&quot;:3.48},{&quot;2026-06-30&quot;:3.55},{&quot;2026-07-01&quot;:3.61},{&quot;2026-07-02&quot;:3.58},{&quot;2026-07-03&quot;:3.62},{&quot;2026-07-04&quot;:3.54},{&quot;2026-07-05&quot;:3.48},{&quot;2026-07-06&quot;:3.52},{&quot;2026-07-07&quot;:3.5},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.28},{&quot;2026-07-10&quot;:3.32},{&quot;2026-07-11&quot;:3.32},{&quot;2026-07-12&quot;:3.3},{&quot;2026-07-13&quot;:3.28},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.26},{&quot;2026-07-16&quot;:3.26},{&quot;2026-07-17&quot;:3.17},{&quot;2026-07-18&quot;:3.28},{&quot;2026-07-19&quot;:3.44},{&quot;2026-07-20&quot;:3.55},{&quot;2026-07-21&quot;:3.72},{&quot;2026-07-22&quot;:3.72},{&quot;2026-07-23&quot;:3.72},{&quot;2026-07-24&quot;:3.73},{&quot;2026-07-25&quot;:3.72},{&quot;2026-07-26&quot;:3.72},{&quot;2026-07-27&quot;:3.75},{&quot;2026-07-28&quot;:3.76},{&quot;2026-07-29&quot;:3.68},{&quot;2026-07-30&quot;:3.68},{&quot;2026-07-31&quot;:3.74},{&quot;2026-08-01&quot;:3.74},{&quot;2026-08-02&quot;:3.79},{&quot;2026-08-03&quot;:3.82},{&quot;2026-08-04&quot;:3.78},{&quot;2026-08-05&quot;:3.68},{&quot;2026-08-07&quot;:3.82},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.77},{&quot;2026-08-10&quot;:3.77},{&quot;2026-08-11&quot;:3.79},{&quot;2026-08-12&quot;:3.79},{&quot;2026-08-13&quot;:3.73},{&quot;2026-08-14&quot;:3.73},{&quot;2026-08-15&quot;:3.72},{&quot;2026-08-16&quot;:3.6},{&quot;2026-08-17&quot;:3.64},{&quot;2026-08-18&quot;:3.58},{&quot;2026-08-19&quot;:3.22},{&quot;2026-08-20&quot;:3.11},{&quot;2026-08-21&quot;:3.29},{&quot;2026-08-22&quot;:3.15},{&quot;2026-08-23&quot;:3.17},{&quot;2026-08-24&quot;:3.29},{&quot;2026-08-25&quot;:3.47},{&quot;2026-08-26&quot;:3.47},{&quot;2026-08-27&quot;:3.47},{&quot;2026-08-28&quot;:3.51},{&quot;2026-08-29&quot;:3.51},{&quot;2026-08-30&quot;:3.32},{&quot;2026-08-31&quot;:3.3},{&quot;2026-09-01&quot;:3.27},{&quot;2026-09-02&quot;:3.23},{&quot;2026-09-03&quot;:3.19},{&quot;2026-09-04&quot;:3.08},{&quot;2026-09-05&quot;:3.1},{&quot;2026-09-06&quot;:3.13},{&quot;2026-09-07&quot;:3.23},{&quot;2026-09-08&quot;:3.24},{&quot;2026-09-09&quot;:3.28},{&quot;2026-09-10&quot;:3.36},{&quot;2026-09-11&quot;:3.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="52819"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14422"
  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">
            Lightning Greaves
        </span>


      </div>

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

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

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

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

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

        <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">
            Lightning Greaves
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Greaves" src="https://cards.scryfall.io/large/front/8/d/8d9f47af-5929-44f4-bc6b-3ac7e521177d.jpg?1783922389" />
    </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.80
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.68},{&quot;2026-06-14&quot;:4.65},{&quot;2026-06-15&quot;:4.65},{&quot;2026-06-16&quot;:4.7},{&quot;2026-06-17&quot;:4.87},{&quot;2026-06-18&quot;:4.81},{&quot;2026-06-19&quot;:4.81},{&quot;2026-06-20&quot;:4.76},{&quot;2026-06-21&quot;:4.73},{&quot;2026-06-22&quot;:4.65},{&quot;2026-06-23&quot;:4.65},{&quot;2026-06-24&quot;:4.68},{&quot;2026-06-25&quot;:4.68},{&quot;2026-06-26&quot;:4.68},{&quot;2026-06-27&quot;:4.68},{&quot;2026-06-28&quot;:4.58},{&quot;2026-06-29&quot;:4.58},{&quot;2026-06-30&quot;:4.58},{&quot;2026-07-01&quot;:4.56},{&quot;2026-07-02&quot;:4.56},{&quot;2026-07-03&quot;:4.56},{&quot;2026-07-04&quot;:4.56},{&quot;2026-07-05&quot;:4.64},{&quot;2026-07-06&quot;:4.66},{&quot;2026-07-07&quot;:4.6},{&quot;2026-07-08&quot;:4.65},{&quot;2026-07-09&quot;:4.68},{&quot;2026-07-10&quot;:4.68},{&quot;2026-07-11&quot;:4.68},{&quot;2026-07-12&quot;:4.68},{&quot;2026-07-13&quot;:4.68},{&quot;2026-07-14&quot;:4.68},{&quot;2026-07-15&quot;:4.67},{&quot;2026-07-16&quot;:4.68},{&quot;2026-07-17&quot;:4.68},{&quot;2026-07-18&quot;:4.7},{&quot;2026-07-19&quot;:4.7},{&quot;2026-07-20&quot;:4.54},{&quot;2026-07-21&quot;:4.49},{&quot;2026-07-22&quot;:4.49},{&quot;2026-07-23&quot;:4.53},{&quot;2026-07-24&quot;:4.57},{&quot;2026-07-25&quot;:4.59},{&quot;2026-07-26&quot;:4.59},{&quot;2026-07-27&quot;:4.59},{&quot;2026-07-28&quot;:4.59},{&quot;2026-07-29&quot;:4.65},{&quot;2026-07-30&quot;:4.65},{&quot;2026-07-31&quot;:4.57},{&quot;2026-08-01&quot;:4.56},{&quot;2026-08-02&quot;:4.6},{&quot;2026-08-03&quot;:4.62},{&quot;2026-08-04&quot;:4.62},{&quot;2026-08-05&quot;:4.62},{&quot;2026-08-07&quot;:4.61},{&quot;2026-08-08&quot;:4.61},{&quot;2026-08-09&quot;:4.65},{&quot;2026-08-10&quot;:4.65},{&quot;2026-08-11&quot;:4.64},{&quot;2026-08-12&quot;:4.7},{&quot;2026-08-13&quot;:4.67},{&quot;2026-08-14&quot;:4.68},{&quot;2026-08-15&quot;:4.71},{&quot;2026-08-16&quot;:4.71},{&quot;2026-08-17&quot;:4.78},{&quot;2026-08-18&quot;:4.76},{&quot;2026-08-19&quot;:4.76},{&quot;2026-08-20&quot;:4.76},{&quot;2026-08-21&quot;:4.75},{&quot;2026-08-22&quot;:4.75},{&quot;2026-08-23&quot;:4.75},{&quot;2026-08-24&quot;:4.81},{&quot;2026-08-25&quot;:4.81},{&quot;2026-08-26&quot;:4.82},{&quot;2026-08-27&quot;:4.82},{&quot;2026-08-28&quot;:4.82},{&quot;2026-08-29&quot;:4.82},{&quot;2026-08-30&quot;:4.78},{&quot;2026-08-31&quot;:4.78},{&quot;2026-09-01&quot;:4.78},{&quot;2026-09-02&quot;:4.78},{&quot;2026-09-03&quot;:4.76},{&quot;2026-09-04&quot;:4.76},{&quot;2026-09-05&quot;:4.76},{&quot;2026-09-06&quot;:4.76},{&quot;2026-09-07&quot;:4.76},{&quot;2026-09-08&quot;:4.77},{&quot;2026-09-09&quot;:4.78},{&quot;2026-09-10&quot;:4.8},{&quot;2026-09-11&quot;:4.8}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="87502"
  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-wot 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">
            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">
            1 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $3.83
          </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/e/2/e23cf8e0-0983-4495-ad3e-8b0c3e706115.jpg?1783914921" />

        <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">
            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-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/e/2/e23cf8e0-0983-4495-ad3e-8b0c3e706115.jpg?1783914921" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.05
              </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">
                $3.83
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  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 Foil</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-13&quot;:5.31},{&quot;2026-06-14&quot;:5.09},{&quot;2026-06-15&quot;:5.18},{&quot;2026-06-16&quot;:4.95},{&quot;2026-06-17&quot;:4.85},{&quot;2026-06-18&quot;:5.0},{&quot;2026-06-19&quot;:4.76},{&quot;2026-06-20&quot;:4.84},{&quot;2026-06-21&quot;:4.68},{&quot;2026-06-22&quot;:4.87},{&quot;2026-06-23&quot;:4.81},{&quot;2026-06-24&quot;:4.77},{&quot;2026-06-25&quot;:4.98},{&quot;2026-06-26&quot;:4.99},{&quot;2026-06-27&quot;:5.02},{&quot;2026-06-28&quot;:5.12},{&quot;2026-06-29&quot;:4.98},{&quot;2026-06-30&quot;:5.07},{&quot;2026-07-01&quot;:5.1},{&quot;2026-07-02&quot;:4.96},{&quot;2026-07-03&quot;:4.84},{&quot;2026-07-04&quot;:4.84},{&quot;2026-07-05&quot;:4.75},{&quot;2026-07-06&quot;:4.79},{&quot;2026-07-07&quot;:4.79},{&quot;2026-07-08&quot;:4.65},{&quot;2026-07-09&quot;:4.55},{&quot;2026-07-10&quot;:4.5},{&quot;2026-07-11&quot;:4.58},{&quot;2026-07-12&quot;:4.69},{&quot;2026-07-13&quot;:4.76},{&quot;2026-07-14&quot;:4.79},{&quot;2026-07-15&quot;:4.78},{&quot;2026-07-16&quot;:4.86},{&quot;2026-07-17&quot;:4.91},{&quot;2026-07-18&quot;:4.91},{&quot;2026-07-19&quot;:4.91},{&quot;2026-07-20&quot;:5.01},{&quot;2026-07-21&quot;:5.0},{&quot;2026-07-22&quot;:4.87},{&quot;2026-07-23&quot;:4.76},{&quot;2026-07-24&quot;:4.59},{&quot;2026-07-25&quot;:4.28},{&quot;2026-07-26&quot;:4.34},{&quot;2026-07-27&quot;:4.22},{&quot;2026-07-28&quot;:4.22},{&quot;2026-07-29&quot;:4.22},{&quot;2026-07-30&quot;:3.91},{&quot;2026-07-31&quot;:3.18},{&quot;2026-08-01&quot;:3.21},{&quot;2026-08-02&quot;:3.31},{&quot;2026-08-03&quot;:3.49},{&quot;2026-08-04&quot;:3.47},{&quot;2026-08-05&quot;:3.53},{&quot;2026-08-07&quot;:3.67},{&quot;2026-08-08&quot;:3.71},{&quot;2026-08-09&quot;:3.59},{&quot;2026-08-10&quot;:3.56},{&quot;2026-08-11&quot;:3.39},{&quot;2026-08-12&quot;:3.39},{&quot;2026-08-13&quot;:3.33},{&quot;2026-08-14&quot;:3.25},{&quot;2026-08-15&quot;:3.27},{&quot;2026-08-16&quot;:3.23},{&quot;2026-08-17&quot;:3.33},{&quot;2026-08-18&quot;:3.29},{&quot;2026-08-19&quot;:3.33},{&quot;2026-08-20&quot;:3.5},{&quot;2026-08-21&quot;:3.59},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.6},{&quot;2026-08-24&quot;:3.58},{&quot;2026-08-25&quot;:3.6},{&quot;2026-08-26&quot;:3.72},{&quot;2026-08-27&quot;:3.68},{&quot;2026-08-28&quot;:3.67},{&quot;2026-08-29&quot;:3.67},{&quot;2026-08-30&quot;:3.51},{&quot;2026-08-31&quot;:3.57},{&quot;2026-09-01&quot;:3.57},{&quot;2026-09-02&quot;:3.49},{&quot;2026-09-03&quot;:3.31},{&quot;2026-09-04&quot;:3.45},{&quot;2026-09-05&quot;:3.37},{&quot;2026-09-06&quot;:3.42},{&quot;2026-09-07&quot;:3.43},{&quot;2026-09-08&quot;:3.45},{&quot;2026-09-09&quot;:3.52},{&quot;2026-09-10&quot;:3.82},{&quot;2026-09-11&quot;:3.83}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.2},{&quot;2026-06-14&quot;:3.57},{&quot;2026-06-15&quot;:3.28},{&quot;2026-06-16&quot;:3.55},{&quot;2026-06-17&quot;:3.52},{&quot;2026-06-18&quot;:3.68},{&quot;2026-06-19&quot;:3.5},{&quot;2026-06-20&quot;:3.23},{&quot;2026-06-21&quot;:3.64},{&quot;2026-06-22&quot;:4.13},{&quot;2026-06-23&quot;:4.29},{&quot;2026-06-24&quot;:3.76},{&quot;2026-06-25&quot;:3.47},{&quot;2026-06-26&quot;:3.92},{&quot;2026-06-27&quot;:3.57},{&quot;2026-06-28&quot;:3.04},{&quot;2026-06-29&quot;:3.46},{&quot;2026-06-30&quot;:3.61},{&quot;2026-07-01&quot;:3.71},{&quot;2026-07-02&quot;:3.51},{&quot;2026-07-03&quot;:3.4},{&quot;2026-07-04&quot;:3.87},{&quot;2026-07-05&quot;:3.26},{&quot;2026-07-06&quot;:3.26},{&quot;2026-07-07&quot;:3.49},{&quot;2026-07-08&quot;:3.72},{&quot;2026-07-09&quot;:3.64},{&quot;2026-07-10&quot;:3.86},{&quot;2026-07-11&quot;:3.58},{&quot;2026-07-12&quot;:3.43},{&quot;2026-07-13&quot;:3.72},{&quot;2026-07-14&quot;:3.83},{&quot;2026-07-15&quot;:3.45},{&quot;2026-07-16&quot;:3.5},{&quot;2026-07-17&quot;:3.69},{&quot;2026-07-18&quot;:3.56},{&quot;2026-07-19&quot;:3.77},{&quot;2026-07-20&quot;:3.79},{&quot;2026-07-21&quot;:4.16},{&quot;2026-07-22&quot;:4.28},{&quot;2026-07-23&quot;:3.8},{&quot;2026-07-24&quot;:3.52},{&quot;2026-07-25&quot;:3.12},{&quot;2026-07-26&quot;:2.89},{&quot;2026-07-27&quot;:2.75},{&quot;2026-07-28&quot;:2.7},{&quot;2026-07-29&quot;:2.78},{&quot;2026-07-30&quot;:2.75},{&quot;2026-07-31&quot;:3.17},{&quot;2026-08-01&quot;:2.93},{&quot;2026-08-02&quot;:2.47},{&quot;2026-08-03&quot;:2.72},{&quot;2026-08-04&quot;:2.98},{&quot;2026-08-05&quot;:3.06},{&quot;2026-08-07&quot;:3.22},{&quot;2026-08-08&quot;:2.79},{&quot;2026-08-09&quot;:2.6},{&quot;2026-08-10&quot;:2.76},{&quot;2026-08-11&quot;:2.7},{&quot;2026-08-12&quot;:2.57},{&quot;2026-08-13&quot;:2.55},{&quot;2026-08-14&quot;:2.78},{&quot;2026-08-15&quot;:2.78},{&quot;2026-08-16&quot;:2.87},{&quot;2026-08-17&quot;:3.09},{&quot;2026-08-18&quot;:3.21},{&quot;2026-08-19&quot;:3.31},{&quot;2026-08-20&quot;:3.51},{&quot;2026-08-21&quot;:3.66},{&quot;2026-08-22&quot;:3.53},{&quot;2026-08-23&quot;:3.27},{&quot;2026-08-24&quot;:3.33},{&quot;2026-08-25&quot;:3.55},{&quot;2026-08-26&quot;:3.92},{&quot;2026-08-27&quot;:3.35},{&quot;2026-08-28&quot;:3.15},{&quot;2026-08-29&quot;:3.15},{&quot;2026-08-30&quot;:2.67},{&quot;2026-08-31&quot;:2.73},{&quot;2026-09-01&quot;:3.42},{&quot;2026-09-02&quot;:3.22},{&quot;2026-09-03&quot;:3.3},{&quot;2026-09-04&quot;:3.09},{&quot;2026-09-05&quot;:2.88},{&quot;2026-09-06&quot;:2.88},{&quot;2026-09-07&quot;:3.12},{&quot;2026-09-08&quot;:3.22},{&quot;2026-09-09&quot;:3.31},{&quot;2026-09-10&quot;:3.29},{&quot;2026-09-11&quot;:3.05}]}"
        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="28835"
  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-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">
            An Offer You Can&#39;t Refuse
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.45
          </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="An Offer You Can&#39;t Refuse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/8/a829747f-cf9b-4d81-ba66-9f0630ed4565.jpg?1783909078" />

        <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">
            An Offer You Can&#39;t Refuse
        </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="An Offer You Can&#39;t Refuse" src="https://cards.scryfall.io/large/front/a/8/a829747f-cf9b-4d81-ba66-9f0630ed4565.jpg?1783909078" />
    </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.45
              </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">
                $4.02
              </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">$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-12&quot;:2.57},{&quot;2026-06-13&quot;:2.53},{&quot;2026-06-14&quot;:2.5},{&quot;2026-06-15&quot;:2.56},{&quot;2026-06-16&quot;:2.68},{&quot;2026-06-17&quot;:2.85},{&quot;2026-06-18&quot;:2.89},{&quot;2026-06-19&quot;:2.87},{&quot;2026-06-20&quot;:2.95},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:3.11},{&quot;2026-06-23&quot;:3.18},{&quot;2026-06-24&quot;:3.26},{&quot;2026-06-25&quot;:3.17},{&quot;2026-06-26&quot;:3.21},{&quot;2026-06-27&quot;:3.21},{&quot;2026-06-28&quot;:3.1},{&quot;2026-06-29&quot;:2.99},{&quot;2026-06-30&quot;:3.28},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.39},{&quot;2026-07-03&quot;:3.43},{&quot;2026-07-04&quot;:3.84},{&quot;2026-07-05&quot;:3.78},{&quot;2026-07-06&quot;:3.82},{&quot;2026-07-07&quot;:3.83},{&quot;2026-07-08&quot;:3.83},{&quot;2026-07-09&quot;:3.83},{&quot;2026-07-10&quot;:3.85},{&quot;2026-07-11&quot;:3.62},{&quot;2026-07-12&quot;:3.45},{&quot;2026-07-13&quot;:3.39},{&quot;2026-07-14&quot;:3.4},{&quot;2026-07-15&quot;:3.28},{&quot;2026-07-16&quot;:3.18},{&quot;2026-07-17&quot;:3.25},{&quot;2026-07-18&quot;:3.22},{&quot;2026-07-19&quot;:3.2},{&quot;2026-07-20&quot;:3.27},{&quot;2026-07-21&quot;:3.28},{&quot;2026-07-23&quot;:3.51},{&quot;2026-07-24&quot;:3.66},{&quot;2026-07-25&quot;:3.73},{&quot;2026-07-26&quot;:3.62},{&quot;2026-07-27&quot;:3.56},{&quot;2026-07-28&quot;:3.75},{&quot;2026-07-29&quot;:3.8},{&quot;2026-07-30&quot;:3.81},{&quot;2026-07-31&quot;:3.8},{&quot;2026-08-01&quot;:3.71},{&quot;2026-08-02&quot;:3.78},{&quot;2026-08-03&quot;:3.75},{&quot;2026-08-04&quot;:3.86},{&quot;2026-08-05&quot;:3.88},{&quot;2026-08-07&quot;:3.72},{&quot;2026-08-08&quot;:3.64},{&quot;2026-08-09&quot;:3.54},{&quot;2026-08-10&quot;:3.69},{&quot;2026-08-11&quot;:3.89},{&quot;2026-08-12&quot;:3.82},{&quot;2026-08-13&quot;:3.75},{&quot;2026-08-14&quot;:4.22},{&quot;2026-08-15&quot;:4.14},{&quot;2026-08-16&quot;:4.17},{&quot;2026-08-17&quot;:4.17},{&quot;2026-08-18&quot;:4.05},{&quot;2026-08-19&quot;:4.21},{&quot;2026-08-20&quot;:4.21},{&quot;2026-08-21&quot;:4.01},{&quot;2026-08-22&quot;:4.04},{&quot;2026-08-23&quot;:3.91},{&quot;2026-08-24&quot;:3.74},{&quot;2026-08-25&quot;:3.79},{&quot;2026-08-26&quot;:3.78},{&quot;2026-08-27&quot;:3.8},{&quot;2026-08-28&quot;:3.83},{&quot;2026-08-29&quot;:3.83},{&quot;2026-08-30&quot;:3.88},{&quot;2026-08-31&quot;:3.76},{&quot;2026-09-01&quot;:3.92},{&quot;2026-09-02&quot;:3.87},{&quot;2026-09-03&quot;:3.71},{&quot;2026-09-04&quot;:3.72},{&quot;2026-09-05&quot;:3.64},{&quot;2026-09-06&quot;:3.48},{&quot;2026-09-07&quot;:3.7},{&quot;2026-09-08&quot;:3.7},{&quot;2026-09-09&quot;:3.94},{&quot;2026-09-10&quot;:3.94},{&quot;2026-09-11&quot;:4.02}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.15},{&quot;2026-06-13&quot;:2.15},{&quot;2026-06-14&quot;:2.05},{&quot;2026-06-15&quot;:2.34},{&quot;2026-06-16&quot;:1.96},{&quot;2026-06-17&quot;:2.12},{&quot;2026-06-18&quot;:2.31},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:1.98},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.92},{&quot;2026-06-24&quot;:1.81},{&quot;2026-06-25&quot;:1.94},{&quot;2026-06-26&quot;:1.93},{&quot;2026-06-27&quot;:2.1},{&quot;2026-06-28&quot;:2.26},{&quot;2026-06-29&quot;:2.0},{&quot;2026-06-30&quot;:1.96},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:2.03},{&quot;2026-07-03&quot;:2.36},{&quot;2026-07-04&quot;:2.14},{&quot;2026-07-05&quot;:2.0},{&quot;2026-07-06&quot;:2.0},{&quot;2026-07-07&quot;:2.11},{&quot;2026-07-08&quot;:2.11},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.38},{&quot;2026-07-11&quot;:2.61},{&quot;2026-07-12&quot;:2.55},{&quot;2026-07-13&quot;:2.29},{&quot;2026-07-14&quot;:2.28},{&quot;2026-07-15&quot;:2.03},{&quot;2026-07-16&quot;:2.24},{&quot;2026-07-17&quot;:2.34},{&quot;2026-07-18&quot;:2.48},{&quot;2026-07-19&quot;:2.49},{&quot;2026-07-20&quot;:2.84},{&quot;2026-07-21&quot;:2.29},{&quot;2026-07-23&quot;:2.38},{&quot;2026-07-24&quot;:2.53},{&quot;2026-07-25&quot;:2.67},{&quot;2026-07-26&quot;:2.54},{&quot;2026-07-27&quot;:2.72},{&quot;2026-07-28&quot;:3.01},{&quot;2026-07-29&quot;:3.56},{&quot;2026-07-30&quot;:3.66},{&quot;2026-07-31&quot;:3.16},{&quot;2026-08-01&quot;:3.13},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:3.07},{&quot;2026-08-04&quot;:3.17},{&quot;2026-08-05&quot;:3.41},{&quot;2026-08-07&quot;:2.58},{&quot;2026-08-08&quot;:2.83},{&quot;2026-08-09&quot;:2.4},{&quot;2026-08-10&quot;:2.67},{&quot;2026-08-11&quot;:2.8},{&quot;2026-08-12&quot;:2.5},{&quot;2026-08-13&quot;:2.62},{&quot;2026-08-14&quot;:2.86},{&quot;2026-08-15&quot;:2.43},{&quot;2026-08-16&quot;:2.55},{&quot;2026-08-17&quot;:3.45},{&quot;2026-08-18&quot;:3.93},{&quot;2026-08-19&quot;:3.59},{&quot;2026-08-20&quot;:3.59},{&quot;2026-08-21&quot;:3.84},{&quot;2026-08-22&quot;:3.54},{&quot;2026-08-23&quot;:3.61},{&quot;2026-08-24&quot;:3.69},{&quot;2026-08-25&quot;:3.85},{&quot;2026-08-26&quot;:3.39},{&quot;2026-08-27&quot;:3.5},{&quot;2026-08-28&quot;:3.17},{&quot;2026-08-29&quot;:3.17},{&quot;2026-08-30&quot;:3.76},{&quot;2026-08-31&quot;:3.38},{&quot;2026-09-01&quot;:3.75},{&quot;2026-09-02&quot;:3.49},{&quot;2026-09-03&quot;:3.37},{&quot;2026-09-04&quot;:2.83},{&quot;2026-09-05&quot;:3.36},{&quot;2026-09-06&quot;:3.45},{&quot;2026-09-07&quot;:3.64},{&quot;2026-09-08&quot;:3.1},{&quot;2026-09-09&quot;:4.04},{&quot;2026-09-10&quot;:3.68},{&quot;2026-09-11&quot;:3.45}]}"
        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="49380"
  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-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">
            Talisman of Creativity
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Talisman of Creativity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/d/4d9dbadd-c1b6-44fe-92ac-6f69d7178342.jpg?1783933072" />

        <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">
            Talisman of Creativity
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Creativity" src="https://cards.scryfall.io/large/front/4/d/4d9dbadd-c1b6-44fe-92ac-6f69d7178342.jpg?1783933072" />
    </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.85
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:8.84},{&quot;2026-06-10&quot;:8.84},{&quot;2026-06-11&quot;:9.54},{&quot;2026-06-12&quot;:9.54},{&quot;2026-06-13&quot;:9.54},{&quot;2026-06-14&quot;:9.54},{&quot;2026-06-15&quot;:9.54},{&quot;2026-06-16&quot;:10.35},{&quot;2026-06-17&quot;:10.35},{&quot;2026-06-18&quot;:10.35},{&quot;2026-06-19&quot;:10.35},{&quot;2026-06-20&quot;:10.35},{&quot;2026-06-21&quot;:10.54},{&quot;2026-06-22&quot;:10.54},{&quot;2026-06-24&quot;:10.52},{&quot;2026-06-25&quot;:10.52},{&quot;2026-06-26&quot;:10.52},{&quot;2026-06-27&quot;:10.52},{&quot;2026-06-28&quot;:10.52},{&quot;2026-06-29&quot;:10.52},{&quot;2026-06-30&quot;:10.52},{&quot;2026-07-01&quot;:10.52},{&quot;2026-07-02&quot;:10.52},{&quot;2026-07-03&quot;:10.52},{&quot;2026-07-04&quot;:10.52},{&quot;2026-07-05&quot;:10.52},{&quot;2026-07-06&quot;:10.52},{&quot;2026-07-07&quot;:10.52},{&quot;2026-07-08&quot;:10.52},{&quot;2026-07-09&quot;:10.52},{&quot;2026-07-10&quot;:10.52},{&quot;2026-07-11&quot;:10.52},{&quot;2026-07-12&quot;:10.52},{&quot;2026-07-13&quot;:10.52},{&quot;2026-07-14&quot;:10.52},{&quot;2026-07-15&quot;:10.52},{&quot;2026-07-16&quot;:10.52},{&quot;2026-07-17&quot;:10.52},{&quot;2026-07-18&quot;:10.52},{&quot;2026-07-19&quot;:10.52},{&quot;2026-07-20&quot;:10.52},{&quot;2026-07-21&quot;:10.52},{&quot;2026-07-23&quot;:10.52},{&quot;2026-07-25&quot;:10.52},{&quot;2026-07-26&quot;:10.52},{&quot;2026-07-27&quot;:10.4},{&quot;2026-07-29&quot;:10.4},{&quot;2026-07-30&quot;:10.4},{&quot;2026-07-31&quot;:10.4},{&quot;2026-08-01&quot;:10.4},{&quot;2026-08-02&quot;:10.4},{&quot;2026-08-03&quot;:10.4},{&quot;2026-08-04&quot;:10.4},{&quot;2026-08-05&quot;:10.4},{&quot;2026-08-07&quot;:10.54},{&quot;2026-08-08&quot;:10.54},{&quot;2026-08-09&quot;:10.54},{&quot;2026-08-10&quot;:10.54},{&quot;2026-08-11&quot;:10.54},{&quot;2026-08-12&quot;:10.54},{&quot;2026-08-13&quot;:10.54},{&quot;2026-08-14&quot;:10.54},{&quot;2026-08-15&quot;:10.54},{&quot;2026-08-16&quot;:10.54},{&quot;2026-08-17&quot;:10.54},{&quot;2026-08-18&quot;:10.54},{&quot;2026-08-19&quot;:10.54},{&quot;2026-08-20&quot;:10.54},{&quot;2026-08-21&quot;:10.54},{&quot;2026-08-22&quot;:10.54},{&quot;2026-08-23&quot;:10.54},{&quot;2026-08-24&quot;:10.54},{&quot;2026-08-25&quot;:10.54},{&quot;2026-08-26&quot;:10.54},{&quot;2026-08-27&quot;:10.54},{&quot;2026-08-28&quot;:10.57},{&quot;2026-08-29&quot;:10.57},{&quot;2026-08-30&quot;:10.57},{&quot;2026-08-31&quot;:10.57},{&quot;2026-09-01&quot;:10.57},{&quot;2026-09-02&quot;:10.57},{&quot;2026-09-03&quot;:10.57},{&quot;2026-09-04&quot;:10.57},{&quot;2026-09-05&quot;:10.57},{&quot;2026-09-06&quot;:10.71},{&quot;2026-09-07&quot;:10.71},{&quot;2026-09-08&quot;:10.71},{&quot;2026-09-09&quot;:10.71},{&quot;2026-09-10&quot;:10.71},{&quot;2026-09-11&quot;:10.71}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.1},{&quot;2026-06-10&quot;:3.14},{&quot;2026-06-11&quot;:3.13},{&quot;2026-06-12&quot;:3.26},{&quot;2026-06-13&quot;:3.25},{&quot;2026-06-14&quot;:3.25},{&quot;2026-06-15&quot;:3.26},{&quot;2026-06-16&quot;:3.22},{&quot;2026-06-17&quot;:3.34},{&quot;2026-06-18&quot;:3.34},{&quot;2026-06-19&quot;:3.41},{&quot;2026-06-20&quot;:3.37},{&quot;2026-06-21&quot;:3.28},{&quot;2026-06-22&quot;:3.28},{&quot;2026-06-24&quot;:3.14},{&quot;2026-06-25&quot;:3.19},{&quot;2026-06-26&quot;:3.23},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.24},{&quot;2026-06-29&quot;:3.35},{&quot;2026-06-30&quot;:3.35},{&quot;2026-07-01&quot;:3.3},{&quot;2026-07-02&quot;:3.43},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.27},{&quot;2026-07-05&quot;:3.3},{&quot;2026-07-06&quot;:3.3},{&quot;2026-07-07&quot;:3.38},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.34},{&quot;2026-07-10&quot;:3.37},{&quot;2026-07-11&quot;:3.27},{&quot;2026-07-12&quot;:3.32},{&quot;2026-07-13&quot;:3.37},{&quot;2026-07-14&quot;:3.5},{&quot;2026-07-15&quot;:3.7},{&quot;2026-07-16&quot;:3.64},{&quot;2026-07-17&quot;:3.48},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.32},{&quot;2026-07-20&quot;:3.23},{&quot;2026-07-21&quot;:3.17},{&quot;2026-07-23&quot;:3.21},{&quot;2026-07-25&quot;:3.14},{&quot;2026-07-26&quot;:3.14},{&quot;2026-07-27&quot;:3.1},{&quot;2026-07-29&quot;:3.38},{&quot;2026-07-30&quot;:3.31},{&quot;2026-07-31&quot;:3.31},{&quot;2026-08-01&quot;:3.26},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:3.2},{&quot;2026-08-07&quot;:3.3},{&quot;2026-08-08&quot;:3.22},{&quot;2026-08-09&quot;:3.11},{&quot;2026-08-10&quot;:3.11},{&quot;2026-08-11&quot;:3.09},{&quot;2026-08-12&quot;:3.1},{&quot;2026-08-13&quot;:2.82},{&quot;2026-08-14&quot;:2.81},{&quot;2026-08-15&quot;:2.76},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.99},{&quot;2026-08-18&quot;:3.23},{&quot;2026-08-19&quot;:3.29},{&quot;2026-08-20&quot;:3.29},{&quot;2026-08-21&quot;:3.07},{&quot;2026-08-22&quot;:2.95},{&quot;2026-08-23&quot;:2.92},{&quot;2026-08-24&quot;:3.0},{&quot;2026-08-25&quot;:3.0},{&quot;2026-08-26&quot;:3.08},{&quot;2026-08-27&quot;:3.01},{&quot;2026-08-28&quot;:3.03},{&quot;2026-08-29&quot;:3.03},{&quot;2026-08-30&quot;:2.94},{&quot;2026-08-31&quot;:2.87},{&quot;2026-09-01&quot;:2.87},{&quot;2026-09-02&quot;:2.79},{&quot;2026-09-03&quot;:2.79},{&quot;2026-09-04&quot;:2.7},{&quot;2026-09-05&quot;:2.44},{&quot;2026-09-06&quot;:2.5},{&quot;2026-09-07&quot;:2.66},{&quot;2026-09-08&quot;:2.66},{&quot;2026-09-09&quot;:2.75},{&quot;2026-09-10&quot;:2.87},{&quot;2026-09-11&quot;:2.85}]}"
        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="86083"
  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">
            Thought Vessel
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thought Vessel" src="https://cards.scryfall.io/large/front/9/b/9be6afde-aaf7-4d50-9e27-c2bb9c225222.jpg?1783929603" />
    </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.83
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-10&quot;:3.66},{&quot;2026-06-11&quot;:3.66},{&quot;2026-06-12&quot;:3.66},{&quot;2026-06-13&quot;:3.66},{&quot;2026-06-14&quot;:3.66},{&quot;2026-06-15&quot;:3.66},{&quot;2026-06-16&quot;:3.59},{&quot;2026-06-17&quot;:3.59},{&quot;2026-06-18&quot;:3.57},{&quot;2026-06-19&quot;:3.57},{&quot;2026-06-20&quot;:3.57},{&quot;2026-06-21&quot;:3.57},{&quot;2026-06-22&quot;:3.57},{&quot;2026-06-23&quot;:3.6},{&quot;2026-06-24&quot;:3.6},{&quot;2026-06-25&quot;:3.6},{&quot;2026-06-26&quot;:3.6},{&quot;2026-06-27&quot;:3.67},{&quot;2026-06-28&quot;:3.65},{&quot;2026-06-29&quot;:3.63},{&quot;2026-06-30&quot;:3.63},{&quot;2026-07-01&quot;:3.38},{&quot;2026-07-02&quot;:3.08},{&quot;2026-07-03&quot;:3.13},{&quot;2026-07-04&quot;:3.13},{&quot;2026-07-05&quot;:3.13},{&quot;2026-07-06&quot;:3.13},{&quot;2026-07-07&quot;:3.18},{&quot;2026-07-08&quot;:3.18},{&quot;2026-07-09&quot;:3.18},{&quot;2026-07-10&quot;:3.02},{&quot;2026-07-11&quot;:3.02},{&quot;2026-07-12&quot;:2.67},{&quot;2026-07-13&quot;:2.71},{&quot;2026-07-14&quot;:2.73},{&quot;2026-07-15&quot;:2.71},{&quot;2026-07-16&quot;:2.63},{&quot;2026-07-17&quot;:2.7},{&quot;2026-07-18&quot;:2.7},{&quot;2026-07-19&quot;:2.72},{&quot;2026-07-20&quot;:2.72},{&quot;2026-07-21&quot;:2.72},{&quot;2026-07-23&quot;:2.88},{&quot;2026-07-25&quot;:2.87},{&quot;2026-07-26&quot;:2.87},{&quot;2026-07-27&quot;:2.86},{&quot;2026-07-29&quot;:2.8},{&quot;2026-07-30&quot;:2.8},{&quot;2026-07-31&quot;:2.8},{&quot;2026-08-01&quot;:2.8},{&quot;2026-08-02&quot;:2.8},{&quot;2026-08-03&quot;:2.8},{&quot;2026-08-04&quot;:2.8},{&quot;2026-08-05&quot;:2.79},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:2.8},{&quot;2026-08-09&quot;:2.8},{&quot;2026-08-10&quot;:2.73},{&quot;2026-08-11&quot;:2.73},{&quot;2026-08-12&quot;:2.73},{&quot;2026-08-13&quot;:2.7},{&quot;2026-08-14&quot;:2.71},{&quot;2026-08-15&quot;:2.71},{&quot;2026-08-16&quot;:2.72},{&quot;2026-08-17&quot;:2.77},{&quot;2026-08-18&quot;:2.74},{&quot;2026-08-19&quot;:2.71},{&quot;2026-08-20&quot;:2.71},{&quot;2026-08-21&quot;:2.71},{&quot;2026-08-22&quot;:2.71},{&quot;2026-08-23&quot;:2.71},{&quot;2026-08-24&quot;:2.71},{&quot;2026-08-25&quot;:2.71},{&quot;2026-08-26&quot;:2.69},{&quot;2026-08-27&quot;:2.72},{&quot;2026-08-28&quot;:2.75},{&quot;2026-08-29&quot;:2.75},{&quot;2026-08-30&quot;:2.76},{&quot;2026-08-31&quot;:2.76},{&quot;2026-09-01&quot;:2.76},{&quot;2026-09-02&quot;:2.8},{&quot;2026-09-03&quot;:2.83},{&quot;2026-09-04&quot;:2.83},{&quot;2026-09-05&quot;:2.83},{&quot;2026-09-06&quot;:2.83},{&quot;2026-09-07&quot;:2.83},{&quot;2026-09-08&quot;:2.83},{&quot;2026-09-09&quot;:2.83},{&quot;2026-09-10&quot;:2.83},{&quot;2026-09-11&quot;:2.83}]}"
        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">
            1 owned
          </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="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">
            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.80
              </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.14
              </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.05</span>
              <span class="text-xs text-grey-text">Credit: $2.67</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.51},{&quot;2026-06-14&quot;:5.41},{&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;normal&quot;:[{&quot;2026-06-13&quot;:1.81},{&quot;2026-06-14&quot;:1.73},{&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}]}"
        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="35668"
  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-vow ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Stormcarved Coast
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stormcarved Coast" src="https://cards.scryfall.io/large/front/2/9/299f1dee-b3d7-472b-aa0b-2f9b46a96da5.jpg?1783924780" />
    </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.71
              </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">
                $3.74
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$2.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-10&quot;:5.5},{&quot;2026-06-11&quot;:5.5},{&quot;2026-06-12&quot;:5.5},{&quot;2026-06-13&quot;:5.4},{&quot;2026-06-14&quot;:5.4},{&quot;2026-06-15&quot;:5.34},{&quot;2026-06-16&quot;:5.34},{&quot;2026-06-17&quot;:5.34},{&quot;2026-06-18&quot;:5.34},{&quot;2026-06-19&quot;:5.34},{&quot;2026-06-20&quot;:5.38},{&quot;2026-06-21&quot;:5.38},{&quot;2026-06-22&quot;:5.38},{&quot;2026-06-23&quot;:5.38},{&quot;2026-06-24&quot;:5.31},{&quot;2026-06-25&quot;:5.31},{&quot;2026-06-26&quot;:5.3},{&quot;2026-06-27&quot;:5.3},{&quot;2026-06-28&quot;:5.3},{&quot;2026-06-29&quot;:5.3},{&quot;2026-06-30&quot;:5.3},{&quot;2026-07-01&quot;:5.3},{&quot;2026-07-02&quot;:5.3},{&quot;2026-07-03&quot;:5.3},{&quot;2026-07-04&quot;:5.3},{&quot;2026-07-05&quot;:5.3},{&quot;2026-07-06&quot;:5.3},{&quot;2026-07-07&quot;:5.3},{&quot;2026-07-08&quot;:5.3},{&quot;2026-07-09&quot;:5.3},{&quot;2026-07-10&quot;:5.3},{&quot;2026-07-11&quot;:5.3},{&quot;2026-07-12&quot;:5.3},{&quot;2026-07-13&quot;:5.3},{&quot;2026-07-14&quot;:5.3},{&quot;2026-07-15&quot;:5.3},{&quot;2026-07-16&quot;:5.3},{&quot;2026-07-17&quot;:5.3},{&quot;2026-07-18&quot;:5.3},{&quot;2026-07-19&quot;:5.18},{&quot;2026-07-20&quot;:5.08},{&quot;2026-07-21&quot;:5.08},{&quot;2026-07-23&quot;:5.1},{&quot;2026-07-25&quot;:5.1},{&quot;2026-07-26&quot;:5.05},{&quot;2026-07-27&quot;:5.05},{&quot;2026-07-29&quot;:5.05},{&quot;2026-07-30&quot;:5.05},{&quot;2026-07-31&quot;:5.05},{&quot;2026-08-01&quot;:5.05},{&quot;2026-08-02&quot;:5.05},{&quot;2026-08-03&quot;:5.05},{&quot;2026-08-04&quot;:5.05},{&quot;2026-08-05&quot;:5.05},{&quot;2026-08-07&quot;:5.05},{&quot;2026-08-08&quot;:5.05},{&quot;2026-08-09&quot;:5.05},{&quot;2026-08-10&quot;:4.93},{&quot;2026-08-11&quot;:5.05},{&quot;2026-08-12&quot;:4.93},{&quot;2026-08-13&quot;:4.42},{&quot;2026-08-14&quot;:4.42},{&quot;2026-08-15&quot;:4.35},{&quot;2026-08-16&quot;:4.28},{&quot;2026-08-17&quot;:4.21},{&quot;2026-08-18&quot;:4.21},{&quot;2026-08-19&quot;:4.13},{&quot;2026-08-20&quot;:4.13},{&quot;2026-08-21&quot;:4.05},{&quot;2026-08-22&quot;:4.05},{&quot;2026-08-23&quot;:4.05},{&quot;2026-08-24&quot;:4.05},{&quot;2026-08-25&quot;:4.05},{&quot;2026-08-26&quot;:3.94},{&quot;2026-08-27&quot;:3.93},{&quot;2026-08-28&quot;:3.93},{&quot;2026-08-29&quot;:3.93},{&quot;2026-08-30&quot;:3.93},{&quot;2026-08-31&quot;:3.93},{&quot;2026-09-01&quot;:3.93},{&quot;2026-09-02&quot;:3.76},{&quot;2026-09-03&quot;:3.76},{&quot;2026-09-04&quot;:3.76},{&quot;2026-09-05&quot;:3.76},{&quot;2026-09-06&quot;:3.7},{&quot;2026-09-07&quot;:3.7},{&quot;2026-09-08&quot;:3.7},{&quot;2026-09-09&quot;:3.7},{&quot;2026-09-10&quot;:3.74},{&quot;2026-09-11&quot;:3.74}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.78},{&quot;2026-06-11&quot;:3.74},{&quot;2026-06-12&quot;:3.69},{&quot;2026-06-13&quot;:3.69},{&quot;2026-06-14&quot;:3.61},{&quot;2026-06-15&quot;:3.58},{&quot;2026-06-16&quot;:3.54},{&quot;2026-06-17&quot;:3.42},{&quot;2026-06-18&quot;:3.42},{&quot;2026-06-19&quot;:3.44},{&quot;2026-06-20&quot;:3.43},{&quot;2026-06-21&quot;:3.34},{&quot;2026-06-22&quot;:3.34},{&quot;2026-06-23&quot;:3.4},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.26},{&quot;2026-06-26&quot;:3.26},{&quot;2026-06-27&quot;:3.31},{&quot;2026-06-28&quot;:3.19},{&quot;2026-06-29&quot;:3.17},{&quot;2026-06-30&quot;:3.17},{&quot;2026-07-01&quot;:3.11},{&quot;2026-07-02&quot;:3.11},{&quot;2026-07-03&quot;:3.03},{&quot;2026-07-04&quot;:3.02},{&quot;2026-07-05&quot;:3.02},{&quot;2026-07-06&quot;:2.92},{&quot;2026-07-07&quot;:2.96},{&quot;2026-07-08&quot;:2.96},{&quot;2026-07-09&quot;:2.85},{&quot;2026-07-10&quot;:2.83},{&quot;2026-07-11&quot;:2.83},{&quot;2026-07-12&quot;:2.86},{&quot;2026-07-13&quot;:2.74},{&quot;2026-07-14&quot;:2.8},{&quot;2026-07-15&quot;:2.76},{&quot;2026-07-16&quot;:2.69},{&quot;2026-07-17&quot;:2.67},{&quot;2026-07-18&quot;:2.56},{&quot;2026-07-19&quot;:2.57},{&quot;2026-07-20&quot;:2.63},{&quot;2026-07-21&quot;:2.61},{&quot;2026-07-23&quot;:2.59},{&quot;2026-07-25&quot;:2.59},{&quot;2026-07-26&quot;:2.59},{&quot;2026-07-27&quot;:2.6},{&quot;2026-07-29&quot;:2.48},{&quot;2026-07-30&quot;:2.48},{&quot;2026-07-31&quot;:2.42},{&quot;2026-08-01&quot;:2.46},{&quot;2026-08-02&quot;:2.47},{&quot;2026-08-03&quot;:2.52},{&quot;2026-08-04&quot;:2.5},{&quot;2026-08-05&quot;:2.5},{&quot;2026-08-07&quot;:2.5},{&quot;2026-08-08&quot;:2.51},{&quot;2026-08-09&quot;:2.51},{&quot;2026-08-10&quot;:2.5},{&quot;2026-08-11&quot;:2.5},{&quot;2026-08-12&quot;:2.5},{&quot;2026-08-13&quot;:2.49},{&quot;2026-08-14&quot;:2.49},{&quot;2026-08-15&quot;:2.46},{&quot;2026-08-16&quot;:2.44},{&quot;2026-08-17&quot;:2.53},{&quot;2026-08-18&quot;:2.57},{&quot;2026-08-19&quot;:2.52},{&quot;2026-08-20&quot;:2.52},{&quot;2026-08-21&quot;:2.54},{&quot;2026-08-22&quot;:2.53},{&quot;2026-08-23&quot;:2.48},{&quot;2026-08-24&quot;:2.48},{&quot;2026-08-25&quot;:2.48},{&quot;2026-08-26&quot;:2.53},{&quot;2026-08-27&quot;:2.53},{&quot;2026-08-28&quot;:2.46},{&quot;2026-08-29&quot;:2.46},{&quot;2026-08-30&quot;:2.46},{&quot;2026-08-31&quot;:2.41},{&quot;2026-09-01&quot;:2.41},{&quot;2026-09-02&quot;:2.44},{&quot;2026-09-03&quot;:2.45},{&quot;2026-09-04&quot;:2.44},{&quot;2026-09-05&quot;:2.58},{&quot;2026-09-06&quot;:2.59},{&quot;2026-09-07&quot;:2.67},{&quot;2026-09-08&quot;:2.67},{&quot;2026-09-09&quot;:2.62},{&quot;2026-09-10&quot;:2.67},{&quot;2026-09-11&quot;:2.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="4982"
  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-blb 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">
            Into the Flood Maw
        </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">
              ↑
              14%
            </span>

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Into the Flood Maw
        </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="Into the Flood Maw" src="https://cards.scryfall.io/large/front/5/0/50b9575a-53d9-4df7-b86c-cda021107d3f.jpg?1783910850" />
    </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.69
              </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">
                $3.30
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.24},{&quot;2026-06-14&quot;:3.19},{&quot;2026-06-15&quot;:3.18},{&quot;2026-06-16&quot;:3.19},{&quot;2026-06-17&quot;:3.09},{&quot;2026-06-18&quot;:3.16},{&quot;2026-06-19&quot;:3.41},{&quot;2026-06-20&quot;:3.41},{&quot;2026-06-21&quot;:3.38},{&quot;2026-06-22&quot;:3.28},{&quot;2026-06-23&quot;:3.28},{&quot;2026-06-24&quot;:3.27},{&quot;2026-06-25&quot;:3.34},{&quot;2026-06-26&quot;:3.3},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.36},{&quot;2026-06-29&quot;:3.3},{&quot;2026-06-30&quot;:3.22},{&quot;2026-07-01&quot;:3.06},{&quot;2026-07-02&quot;:3.01},{&quot;2026-07-03&quot;:2.97},{&quot;2026-07-04&quot;:3.09},{&quot;2026-07-05&quot;:3.21},{&quot;2026-07-06&quot;:3.15},{&quot;2026-07-07&quot;:3.21},{&quot;2026-07-08&quot;:3.21},{&quot;2026-07-09&quot;:3.17},{&quot;2026-07-10&quot;:3.13},{&quot;2026-07-11&quot;:3.13},{&quot;2026-07-12&quot;:3.18},{&quot;2026-07-13&quot;:3.28},{&quot;2026-07-14&quot;:3.3},{&quot;2026-07-15&quot;:3.34},{&quot;2026-07-16&quot;:3.27},{&quot;2026-07-17&quot;:3.26},{&quot;2026-07-18&quot;:3.32},{&quot;2026-07-19&quot;:3.38},{&quot;2026-07-20&quot;:3.35},{&quot;2026-07-21&quot;:3.34},{&quot;2026-07-22&quot;:3.39},{&quot;2026-07-23&quot;:3.15},{&quot;2026-07-24&quot;:3.15},{&quot;2026-07-25&quot;:3.14},{&quot;2026-07-26&quot;:3.2},{&quot;2026-07-27&quot;:3.17},{&quot;2026-07-28&quot;:3.38},{&quot;2026-07-29&quot;:3.27},{&quot;2026-07-30&quot;:3.25},{&quot;2026-07-31&quot;:3.21},{&quot;2026-08-01&quot;:3.19},{&quot;2026-08-02&quot;:3.19},{&quot;2026-08-03&quot;:3.28},{&quot;2026-08-04&quot;:3.31},{&quot;2026-08-05&quot;:3.32},{&quot;2026-08-07&quot;:3.2},{&quot;2026-08-08&quot;:3.14},{&quot;2026-08-09&quot;:3.13},{&quot;2026-08-10&quot;:3.27},{&quot;2026-08-11&quot;:3.22},{&quot;2026-08-12&quot;:3.18},{&quot;2026-08-13&quot;:3.09},{&quot;2026-08-14&quot;:3.13},{&quot;2026-08-15&quot;:3.32},{&quot;2026-08-16&quot;:3.29},{&quot;2026-08-17&quot;:3.29},{&quot;2026-08-18&quot;:3.32},{&quot;2026-08-19&quot;:3.32},{&quot;2026-08-20&quot;:3.3},{&quot;2026-08-21&quot;:3.4},{&quot;2026-08-22&quot;:3.46},{&quot;2026-08-23&quot;:3.2},{&quot;2026-08-24&quot;:3.04},{&quot;2026-08-25&quot;:3.0},{&quot;2026-08-26&quot;:3.0},{&quot;2026-08-27&quot;:3.01},{&quot;2026-08-28&quot;:3.08},{&quot;2026-08-29&quot;:3.08},{&quot;2026-08-30&quot;:3.16},{&quot;2026-08-31&quot;:3.31},{&quot;2026-09-01&quot;:3.37},{&quot;2026-09-02&quot;:3.39},{&quot;2026-09-03&quot;:3.39},{&quot;2026-09-04&quot;:3.35},{&quot;2026-09-05&quot;:3.35},{&quot;2026-09-06&quot;:3.37},{&quot;2026-09-07&quot;:3.38},{&quot;2026-09-08&quot;:3.36},{&quot;2026-09-09&quot;:3.35},{&quot;2026-09-10&quot;:3.31},{&quot;2026-09-11&quot;:3.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.54},{&quot;2026-06-14&quot;:2.39},{&quot;2026-06-15&quot;:2.53},{&quot;2026-06-16&quot;:2.6},{&quot;2026-06-17&quot;:2.73},{&quot;2026-06-18&quot;:2.89},{&quot;2026-06-19&quot;:2.55},{&quot;2026-06-20&quot;:2.26},{&quot;2026-06-21&quot;:1.98},{&quot;2026-06-22&quot;:2.57},{&quot;2026-06-23&quot;:2.64},{&quot;2026-06-24&quot;:2.53},{&quot;2026-06-25&quot;:2.29},{&quot;2026-06-26&quot;:2.34},{&quot;2026-06-27&quot;:2.26},{&quot;2026-06-28&quot;:2.15},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.39},{&quot;2026-07-01&quot;:2.65},{&quot;2026-07-02&quot;:2.38},{&quot;2026-07-03&quot;:2.32},{&quot;2026-07-04&quot;:2.3},{&quot;2026-07-05&quot;:2.25},{&quot;2026-07-06&quot;:2.4},{&quot;2026-07-07&quot;:2.55},{&quot;2026-07-08&quot;:2.38},{&quot;2026-07-09&quot;:2.47},{&quot;2026-07-10&quot;:2.35},{&quot;2026-07-11&quot;:2.37},{&quot;2026-07-12&quot;:2.42},{&quot;2026-07-13&quot;:2.4},{&quot;2026-07-14&quot;:2.3},{&quot;2026-07-15&quot;:2.48},{&quot;2026-07-16&quot;:2.66},{&quot;2026-07-17&quot;:2.51},{&quot;2026-07-18&quot;:2.41},{&quot;2026-07-19&quot;:2.44},{&quot;2026-07-20&quot;:2.34},{&quot;2026-07-21&quot;:2.42},{&quot;2026-07-22&quot;:2.33},{&quot;2026-07-23&quot;:2.1},{&quot;2026-07-24&quot;:2.38},{&quot;2026-07-25&quot;:2.8},{&quot;2026-07-26&quot;:3.01},{&quot;2026-07-27&quot;:2.93},{&quot;2026-07-28&quot;:2.78},{&quot;2026-07-29&quot;:2.67},{&quot;2026-07-30&quot;:2.69},{&quot;2026-07-31&quot;:2.62},{&quot;2026-08-01&quot;:2.67},{&quot;2026-08-02&quot;:2.61},{&quot;2026-08-03&quot;:2.81},{&quot;2026-08-04&quot;:2.65},{&quot;2026-08-05&quot;:2.6},{&quot;2026-08-07&quot;:2.27},{&quot;2026-08-08&quot;:2.33},{&quot;2026-08-09&quot;:2.32},{&quot;2026-08-10&quot;:2.36},{&quot;2026-08-11&quot;:2.44},{&quot;2026-08-12&quot;:2.32},{&quot;2026-08-13&quot;:2.41},{&quot;2026-08-14&quot;:2.55},{&quot;2026-08-15&quot;:2.53},{&quot;2026-08-16&quot;:2.32},{&quot;2026-08-17&quot;:2.33},{&quot;2026-08-18&quot;:2.61},{&quot;2026-08-19&quot;:2.67},{&quot;2026-08-20&quot;:2.65},{&quot;2026-08-21&quot;:2.57},{&quot;2026-08-22&quot;:2.51},{&quot;2026-08-23&quot;:2.34},{&quot;2026-08-24&quot;:2.35},{&quot;2026-08-25&quot;:2.28},{&quot;2026-08-26&quot;:2.18},{&quot;2026-08-27&quot;:2.21},{&quot;2026-08-28&quot;:2.12},{&quot;2026-08-29&quot;:2.12},{&quot;2026-08-30&quot;:2.48},{&quot;2026-08-31&quot;:2.27},{&quot;2026-09-01&quot;:2.18},{&quot;2026-09-02&quot;:2.43},{&quot;2026-09-03&quot;:2.45},{&quot;2026-09-04&quot;:2.55},{&quot;2026-09-05&quot;:2.36},{&quot;2026-09-06&quot;:2.42},{&quot;2026-09-07&quot;:2.49},{&quot;2026-09-08&quot;:2.55},{&quot;2026-09-09&quot;:2.73},{&quot;2026-09-10&quot;:2.68},{&quot;2026-09-11&quot;:2.69}]}"
        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="73038"
  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-bro ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Underground River
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Underground River" src="https://cards.scryfall.io/large/front/e/b/eb52820c-8660-4c4a-bb64-5b2fc580b6a3.jpg?1783920004" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.25
              </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">
                $2.31
              </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 Foil</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-13&quot;:2.57},{&quot;2026-06-14&quot;:2.57},{&quot;2026-06-15&quot;:2.57},{&quot;2026-06-16&quot;:2.54},{&quot;2026-06-17&quot;:2.54},{&quot;2026-06-18&quot;:2.54},{&quot;2026-06-19&quot;:2.54},{&quot;2026-06-20&quot;:2.54},{&quot;2026-06-21&quot;:2.54},{&quot;2026-06-22&quot;:2.54},{&quot;2026-06-23&quot;:2.58},{&quot;2026-06-24&quot;:2.5},{&quot;2026-06-25&quot;:2.54},{&quot;2026-06-26&quot;:2.52},{&quot;2026-06-27&quot;:2.54},{&quot;2026-06-28&quot;:2.54},{&quot;2026-06-29&quot;:2.54},{&quot;2026-06-30&quot;:2.5},{&quot;2026-07-01&quot;:2.44},{&quot;2026-07-02&quot;:2.44},{&quot;2026-07-03&quot;:2.44},{&quot;2026-07-04&quot;:2.44},{&quot;2026-07-05&quot;:2.37},{&quot;2026-07-06&quot;:2.37},{&quot;2026-07-07&quot;:2.37},{&quot;2026-07-08&quot;:2.37},{&quot;2026-07-09&quot;:2.3},{&quot;2026-07-10&quot;:2.34},{&quot;2026-07-11&quot;:2.35},{&quot;2026-07-12&quot;:2.35},{&quot;2026-07-13&quot;:2.35},{&quot;2026-07-14&quot;:2.35},{&quot;2026-07-15&quot;:2.35},{&quot;2026-07-16&quot;:2.35},{&quot;2026-07-17&quot;:2.35},{&quot;2026-07-18&quot;:2.35},{&quot;2026-07-19&quot;:2.35},{&quot;2026-07-20&quot;:2.35},{&quot;2026-07-21&quot;:2.36},{&quot;2026-07-22&quot;:2.36},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-24&quot;:2.4},{&quot;2026-07-25&quot;:2.4},{&quot;2026-07-26&quot;:2.4},{&quot;2026-07-27&quot;:2.4},{&quot;2026-07-28&quot;:2.33},{&quot;2026-07-29&quot;:2.33},{&quot;2026-07-30&quot;:2.33},{&quot;2026-07-31&quot;:2.34},{&quot;2026-08-01&quot;:2.34},{&quot;2026-08-02&quot;:2.34},{&quot;2026-08-03&quot;:2.34},{&quot;2026-08-04&quot;:2.34},{&quot;2026-08-05&quot;:2.34},{&quot;2026-08-07&quot;:2.34},{&quot;2026-08-08&quot;:2.34},{&quot;2026-08-09&quot;:2.34},{&quot;2026-08-10&quot;:2.34},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.4},{&quot;2026-08-13&quot;:2.42},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.35},{&quot;2026-08-16&quot;:2.28},{&quot;2026-08-17&quot;:2.25},{&quot;2026-08-18&quot;:2.29},{&quot;2026-08-19&quot;:2.29},{&quot;2026-08-20&quot;:2.29},{&quot;2026-08-21&quot;:2.29},{&quot;2026-08-22&quot;:2.29},{&quot;2026-08-23&quot;:2.29},{&quot;2026-08-24&quot;:2.29},{&quot;2026-08-25&quot;:2.29},{&quot;2026-08-26&quot;:2.25},{&quot;2026-08-27&quot;:2.26},{&quot;2026-08-28&quot;:2.26},{&quot;2026-08-29&quot;:2.26},{&quot;2026-08-30&quot;:2.25},{&quot;2026-08-31&quot;:2.26},{&quot;2026-09-01&quot;:2.26},{&quot;2026-09-02&quot;:2.26},{&quot;2026-09-03&quot;:2.26},{&quot;2026-09-04&quot;:2.26},{&quot;2026-09-05&quot;:2.26},{&quot;2026-09-06&quot;:2.31},{&quot;2026-09-07&quot;:2.31},{&quot;2026-09-08&quot;:2.31},{&quot;2026-09-09&quot;:2.31},{&quot;2026-09-10&quot;:2.31},{&quot;2026-09-11&quot;:2.31}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.64},{&quot;2026-06-14&quot;:1.64},{&quot;2026-06-15&quot;:1.64},{&quot;2026-06-16&quot;:1.61},{&quot;2026-06-17&quot;:1.64},{&quot;2026-06-18&quot;:1.57},{&quot;2026-06-19&quot;:1.56},{&quot;2026-06-20&quot;:1.65},{&quot;2026-06-21&quot;:1.65},{&quot;2026-06-22&quot;:1.65},{&quot;2026-06-23&quot;:1.62},{&quot;2026-06-24&quot;:1.62},{&quot;2026-06-25&quot;:1.63},{&quot;2026-06-26&quot;:1.65},{&quot;2026-06-27&quot;:1.67},{&quot;2026-06-28&quot;:1.67},{&quot;2026-06-29&quot;:1.67},{&quot;2026-06-30&quot;:1.67},{&quot;2026-07-01&quot;:1.65},{&quot;2026-07-02&quot;:1.65},{&quot;2026-07-03&quot;:1.66},{&quot;2026-07-04&quot;:1.64},{&quot;2026-07-05&quot;:1.61},{&quot;2026-07-06&quot;:1.61},{&quot;2026-07-07&quot;:1.6},{&quot;2026-07-08&quot;:1.61},{&quot;2026-07-09&quot;:1.61},{&quot;2026-07-10&quot;:1.6},{&quot;2026-07-11&quot;:1.63},{&quot;2026-07-12&quot;:1.64},{&quot;2026-07-13&quot;:1.62},{&quot;2026-07-14&quot;:1.62},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.62},{&quot;2026-07-17&quot;:1.62},{&quot;2026-07-18&quot;:1.62},{&quot;2026-07-19&quot;:1.65},{&quot;2026-07-20&quot;:1.6},{&quot;2026-07-21&quot;:1.57},{&quot;2026-07-22&quot;:1.6},{&quot;2026-07-23&quot;:1.6},{&quot;2026-07-24&quot;:1.65},{&quot;2026-07-25&quot;:1.68},{&quot;2026-07-26&quot;:1.73},{&quot;2026-07-27&quot;:1.73},{&quot;2026-07-28&quot;:1.73},{&quot;2026-07-29&quot;:1.73},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.81},{&quot;2026-08-02&quot;:1.87},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.92},{&quot;2026-08-05&quot;:1.92},{&quot;2026-08-07&quot;:1.97},{&quot;2026-08-08&quot;:1.97},{&quot;2026-08-09&quot;:2.01},{&quot;2026-08-10&quot;:2.0},{&quot;2026-08-11&quot;:2.01},{&quot;2026-08-12&quot;:2.01},{&quot;2026-08-13&quot;:1.97},{&quot;2026-08-14&quot;:1.97},{&quot;2026-08-15&quot;:1.94},{&quot;2026-08-16&quot;:1.84},{&quot;2026-08-17&quot;:1.95},{&quot;2026-08-18&quot;:1.99},{&quot;2026-08-19&quot;:2.03},{&quot;2026-08-20&quot;:2.05},{&quot;2026-08-21&quot;:2.05},{&quot;2026-08-22&quot;:2.03},{&quot;2026-08-23&quot;:2.12},{&quot;2026-08-24&quot;:2.02},{&quot;2026-08-25&quot;:2.04},{&quot;2026-08-26&quot;:2.12},{&quot;2026-08-27&quot;:2.09},{&quot;2026-08-28&quot;:2.09},{&quot;2026-08-29&quot;:2.09},{&quot;2026-08-30&quot;:2.09},{&quot;2026-08-31&quot;:2.1},{&quot;2026-09-01&quot;:2.09},{&quot;2026-09-02&quot;:2.06},{&quot;2026-09-03&quot;:1.99},{&quot;2026-09-04&quot;:2.13},{&quot;2026-09-05&quot;:2.16},{&quot;2026-09-06&quot;:2.2},{&quot;2026-09-07&quot;:2.28},{&quot;2026-09-08&quot;:2.18},{&quot;2026-09-09&quot;:2.26},{&quot;2026-09-10&quot;:2.26},{&quot;2026-09-11&quot;:2.25}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Maskwood Nexus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/2/1246c42d-57c0-4cba-959a-15ad89d8a50b.jpg?1783922389" />

        <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">
            Maskwood Nexus
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Maskwood Nexus" src="https://cards.scryfall.io/large/front/1/2/1246c42d-57c0-4cba-959a-15ad89d8a50b.jpg?1783922389" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.22},{&quot;2026-06-14&quot;:2.22},{&quot;2026-06-15&quot;:2.32},{&quot;2026-06-16&quot;:2.42},{&quot;2026-06-17&quot;:2.39},{&quot;2026-06-18&quot;:2.39},{&quot;2026-06-19&quot;:2.45},{&quot;2026-06-20&quot;:2.45},{&quot;2026-06-21&quot;:2.45},{&quot;2026-06-22&quot;:2.45},{&quot;2026-06-23&quot;:2.45},{&quot;2026-06-24&quot;:2.45},{&quot;2026-06-25&quot;:2.45},{&quot;2026-06-26&quot;:2.45},{&quot;2026-06-27&quot;:2.45},{&quot;2026-06-28&quot;:2.45},{&quot;2026-06-29&quot;:2.45},{&quot;2026-06-30&quot;:2.43},{&quot;2026-07-01&quot;:2.43},{&quot;2026-07-02&quot;:2.44},{&quot;2026-07-03&quot;:2.44},{&quot;2026-07-04&quot;:2.4},{&quot;2026-07-05&quot;:2.35},{&quot;2026-07-06&quot;:2.29},{&quot;2026-07-07&quot;:2.29},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.29},{&quot;2026-07-10&quot;:2.29},{&quot;2026-07-11&quot;:2.27},{&quot;2026-07-12&quot;:2.23},{&quot;2026-07-13&quot;:2.23},{&quot;2026-07-14&quot;:2.23},{&quot;2026-07-15&quot;:2.17},{&quot;2026-07-16&quot;:2.17},{&quot;2026-07-17&quot;:2.24},{&quot;2026-07-18&quot;:2.24},{&quot;2026-07-19&quot;:2.25},{&quot;2026-07-20&quot;:2.25},{&quot;2026-07-21&quot;:2.26},{&quot;2026-07-22&quot;:2.26},{&quot;2026-07-23&quot;:2.26},{&quot;2026-07-24&quot;:2.3},{&quot;2026-07-25&quot;:2.3},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.28},{&quot;2026-07-28&quot;:2.28},{&quot;2026-07-29&quot;:2.34},{&quot;2026-07-30&quot;:2.34},{&quot;2026-07-31&quot;:2.36},{&quot;2026-08-01&quot;:2.37},{&quot;2026-08-02&quot;:2.37},{&quot;2026-08-03&quot;:2.43},{&quot;2026-08-04&quot;:2.44},{&quot;2026-08-05&quot;:2.42},{&quot;2026-08-07&quot;:2.4},{&quot;2026-08-08&quot;:2.4},{&quot;2026-08-09&quot;:2.4},{&quot;2026-08-10&quot;:2.44},{&quot;2026-08-11&quot;:2.4},{&quot;2026-08-12&quot;:2.4},{&quot;2026-08-13&quot;:2.38},{&quot;2026-08-14&quot;:2.36},{&quot;2026-08-15&quot;:2.38},{&quot;2026-08-16&quot;:2.35},{&quot;2026-08-17&quot;:2.31},{&quot;2026-08-18&quot;:2.32},{&quot;2026-08-19&quot;:2.32},{&quot;2026-08-20&quot;:2.28},{&quot;2026-08-21&quot;:2.27},{&quot;2026-08-22&quot;:2.28},{&quot;2026-08-23&quot;:2.35},{&quot;2026-08-24&quot;:2.35},{&quot;2026-08-25&quot;:2.37},{&quot;2026-08-26&quot;:2.43},{&quot;2026-08-27&quot;:2.43},{&quot;2026-08-28&quot;:2.4},{&quot;2026-08-29&quot;:2.4},{&quot;2026-08-30&quot;:2.42},{&quot;2026-08-31&quot;:2.44},{&quot;2026-09-01&quot;:2.43},{&quot;2026-09-02&quot;:2.47},{&quot;2026-09-03&quot;:2.47},{&quot;2026-09-04&quot;:2.43},{&quot;2026-09-05&quot;:2.44},{&quot;2026-09-06&quot;:2.44},{&quot;2026-09-07&quot;:2.4},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.26},{&quot;2026-09-10&quot;:2.22},{&quot;2026-09-11&quot;:2.18}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47718"
  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-mic 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">
            Talisman of Dominance
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Talisman of Dominance
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Dominance" src="https://cards.scryfall.io/large/front/5/6/56f62d84-f62f-4363-a99e-fe5387c3d77e.jpg?1783925317" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Taurean Mauler
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Taurean Mauler" src="https://cards.scryfall.io/large/front/a/4/a4ee4648-dd6e-4ba9-b643-a7e4c430d51f.jpg?1783923956" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.19</span>
              <span class="text-xs text-grey-text">Credit: $0.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-10&quot;:0.99},{&quot;2026-06-11&quot;:0.99},{&quot;2026-06-12&quot;:0.99},{&quot;2026-06-13&quot;:1.0},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.03},{&quot;2026-06-16&quot;:1.08},{&quot;2026-06-17&quot;:1.08},{&quot;2026-06-18&quot;:1.1},{&quot;2026-06-19&quot;:1.14},{&quot;2026-06-20&quot;:1.21},{&quot;2026-06-21&quot;:1.22},{&quot;2026-06-22&quot;:1.26},{&quot;2026-06-23&quot;:1.32},{&quot;2026-06-24&quot;:1.35},{&quot;2026-06-25&quot;:1.33},{&quot;2026-06-26&quot;:1.34},{&quot;2026-06-27&quot;:1.34},{&quot;2026-06-28&quot;:1.36},{&quot;2026-06-29&quot;:1.36},{&quot;2026-06-30&quot;:1.36},{&quot;2026-07-01&quot;:1.36},{&quot;2026-07-02&quot;:1.36},{&quot;2026-07-03&quot;:1.36},{&quot;2026-07-04&quot;:1.36},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.53},{&quot;2026-07-07&quot;:1.6},{&quot;2026-07-08&quot;:1.65},{&quot;2026-07-09&quot;:1.69},{&quot;2026-07-10&quot;:1.74},{&quot;2026-07-11&quot;:1.71},{&quot;2026-07-12&quot;:1.88},{&quot;2026-07-13&quot;:1.89},{&quot;2026-07-14&quot;:1.89},{&quot;2026-07-15&quot;:1.88},{&quot;2026-07-16&quot;:1.93},{&quot;2026-07-17&quot;:1.89},{&quot;2026-07-18&quot;:1.87},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.87},{&quot;2026-07-21&quot;:1.82},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-25&quot;:1.77},{&quot;2026-07-26&quot;:1.77},{&quot;2026-07-27&quot;:1.81},{&quot;2026-07-29&quot;:1.81},{&quot;2026-07-30&quot;:1.83},{&quot;2026-07-31&quot;:1.84},{&quot;2026-08-01&quot;:1.84},{&quot;2026-08-02&quot;:1.9},{&quot;2026-08-03&quot;:1.94},{&quot;2026-08-04&quot;:2.0},{&quot;2026-08-05&quot;:2.02},{&quot;2026-08-07&quot;:2.02},{&quot;2026-08-08&quot;:2.02},{&quot;2026-08-09&quot;:2.02},{&quot;2026-08-10&quot;:1.99},{&quot;2026-08-11&quot;:2.01},{&quot;2026-08-12&quot;:2.04},{&quot;2026-08-13&quot;:2.02},{&quot;2026-08-14&quot;:1.93},{&quot;2026-08-15&quot;:1.93},{&quot;2026-08-16&quot;:1.93},{&quot;2026-08-17&quot;:1.87},{&quot;2026-08-18&quot;:1.82},{&quot;2026-08-19&quot;:1.81},{&quot;2026-08-20&quot;:1.81},{&quot;2026-08-21&quot;:1.82},{&quot;2026-08-22&quot;:1.82},{&quot;2026-08-23&quot;:1.87},{&quot;2026-08-24&quot;:1.79},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.74},{&quot;2026-08-27&quot;:1.74},{&quot;2026-08-28&quot;:1.79},{&quot;2026-08-29&quot;:1.79},{&quot;2026-08-30&quot;:2.07},{&quot;2026-08-31&quot;:2.11},{&quot;2026-09-01&quot;:2.11},{&quot;2026-09-02&quot;:2.25},{&quot;2026-09-03&quot;:2.25},{&quot;2026-09-04&quot;:2.19},{&quot;2026-09-05&quot;:2.24},{&quot;2026-09-06&quot;:2.24},{&quot;2026-09-07&quot;:2.24},{&quot;2026-09-08&quot;:2.12},{&quot;2026-09-09&quot;:2.18},{&quot;2026-09-10&quot;:2.1},{&quot;2026-09-11&quot;:2.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/2/c/2c52c96d-e20f-4025-b759-674b36cf0db3.jpg?1783926169" />
    </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.80
              </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">$1.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.04},{&quot;2026-06-14&quot;:2.03},{&quot;2026-06-15&quot;:2.1},{&quot;2026-06-16&quot;:2.12},{&quot;2026-06-17&quot;:2.15},{&quot;2026-06-18&quot;:2.19},{&quot;2026-06-19&quot;:2.21},{&quot;2026-06-20&quot;:2.21},{&quot;2026-06-21&quot;:2.21},{&quot;2026-06-22&quot;:2.22},{&quot;2026-06-23&quot;:2.2},{&quot;2026-06-24&quot;:2.2},{&quot;2026-06-25&quot;:2.17},{&quot;2026-06-26&quot;:2.17},{&quot;2026-06-27&quot;:2.17},{&quot;2026-06-28&quot;:2.17},{&quot;2026-06-29&quot;:2.15},{&quot;2026-06-30&quot;:2.16},{&quot;2026-07-01&quot;:2.16},{&quot;2026-07-02&quot;:2.16},{&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.92},{&quot;2026-07-07&quot;:1.92},{&quot;2026-07-08&quot;:1.85},{&quot;2026-07-09&quot;:1.81},{&quot;2026-07-10&quot;:1.78},{&quot;2026-07-11&quot;:1.78},{&quot;2026-07-12&quot;:1.75},{&quot;2026-07-13&quot;:1.75},{&quot;2026-07-14&quot;:1.72},{&quot;2026-07-15&quot;:1.73},{&quot;2026-07-16&quot;:1.71},{&quot;2026-07-17&quot;:1.65},{&quot;2026-07-18&quot;:1.63},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.56},{&quot;2026-07-21&quot;:1.6},{&quot;2026-07-22&quot;:1.59},{&quot;2026-07-23&quot;:1.57},{&quot;2026-07-24&quot;:1.52},{&quot;2026-07-25&quot;:1.46},{&quot;2026-07-26&quot;:1.47},{&quot;2026-07-27&quot;:1.58},{&quot;2026-07-28&quot;:1.58},{&quot;2026-07-29&quot;:1.58},{&quot;2026-07-30&quot;:1.58},{&quot;2026-07-31&quot;:1.64},{&quot;2026-08-01&quot;:1.64},{&quot;2026-08-02&quot;:1.66},{&quot;2026-08-03&quot;:1.68},{&quot;2026-08-04&quot;:1.68},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.71},{&quot;2026-08-08&quot;:1.68},{&quot;2026-08-09&quot;:1.68},{&quot;2026-08-10&quot;:1.87},{&quot;2026-08-11&quot;:1.87},{&quot;2026-08-12&quot;:2.1},{&quot;2026-08-13&quot;:2.14},{&quot;2026-08-14&quot;:2.07},{&quot;2026-08-15&quot;:1.99},{&quot;2026-08-16&quot;:2.01},{&quot;2026-08-17&quot;:2.01},{&quot;2026-08-18&quot;:2.03},{&quot;2026-08-19&quot;:1.98},{&quot;2026-08-20&quot;:2.1},{&quot;2026-08-21&quot;:2.08},{&quot;2026-08-22&quot;:2.05},{&quot;2026-08-23&quot;:2.02},{&quot;2026-08-24&quot;:1.97},{&quot;2026-08-25&quot;:1.89},{&quot;2026-08-26&quot;:1.93},{&quot;2026-08-27&quot;:1.89},{&quot;2026-08-28&quot;:1.89},{&quot;2026-08-29&quot;:1.89},{&quot;2026-08-30&quot;:1.85},{&quot;2026-08-31&quot;:1.82},{&quot;2026-09-01&quot;:1.78},{&quot;2026-09-02&quot;:1.72},{&quot;2026-09-03&quot;:1.71},{&quot;2026-09-04&quot;:1.73},{&quot;2026-09-05&quot;:1.72},{&quot;2026-09-06&quot;:1.76},{&quot;2026-09-07&quot;:1.8},{&quot;2026-09-08&quot;:1.7},{&quot;2026-09-09&quot;:1.82},{&quot;2026-09-10&quot;:1.8},{&quot;2026-09-11&quot;:1.8}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="89444"
  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-znc 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">
            1 owned
          </div>

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

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

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

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

        <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/d/0dc046ef-eeb9-4ef7-8cc5-172b7346355e.jpg?1783929480" />
    </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.78
              </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.90</span>
              <span class="text-xs text-grey-text">Credit: $1.17</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              4%
            </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="Rakdos Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/b/0bc3c10a-c3be-4e46-9871-282dad8bc7a4.jpg?1783926171" />

        <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">
            Rakdos Signet
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rakdos Signet" src="https://cards.scryfall.io/large/front/0/b/0bc3c10a-c3be-4e46-9871-282dad8bc7a4.jpg?1783926171" />
    </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">
                  ↓
                  4%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.98},{&quot;2026-06-11&quot;:1.04},{&quot;2026-06-12&quot;:1.05},{&quot;2026-06-13&quot;:1.05},{&quot;2026-06-14&quot;:1.05},{&quot;2026-06-15&quot;:1.06},{&quot;2026-06-16&quot;:1.06},{&quot;2026-06-17&quot;:1.1},{&quot;2026-06-18&quot;:1.09},{&quot;2026-06-19&quot;:1.09},{&quot;2026-06-20&quot;:1.09},{&quot;2026-06-21&quot;:1.09},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-23&quot;:1.09},{&quot;2026-06-24&quot;:1.08},{&quot;2026-06-25&quot;:1.07},{&quot;2026-06-26&quot;:1.08},{&quot;2026-06-27&quot;:1.11},{&quot;2026-06-28&quot;:1.12},{&quot;2026-06-29&quot;:1.11},{&quot;2026-06-30&quot;:1.11},{&quot;2026-07-01&quot;:1.11},{&quot;2026-07-02&quot;:1.1},{&quot;2026-07-03&quot;:1.1},{&quot;2026-07-04&quot;:1.11},{&quot;2026-07-05&quot;:1.11},{&quot;2026-07-06&quot;:1.11},{&quot;2026-07-07&quot;:1.1},{&quot;2026-07-08&quot;:1.1},{&quot;2026-07-09&quot;:1.11},{&quot;2026-07-10&quot;:1.11},{&quot;2026-07-11&quot;:1.11},{&quot;2026-07-12&quot;:1.11},{&quot;2026-07-13&quot;:1.08},{&quot;2026-07-14&quot;:1.09},{&quot;2026-07-15&quot;:1.09},{&quot;2026-07-16&quot;:1.09},{&quot;2026-07-17&quot;:1.09},{&quot;2026-07-18&quot;:1.09},{&quot;2026-07-19&quot;:1.08},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-23&quot;:1.11},{&quot;2026-07-25&quot;:1.16},{&quot;2026-07-26&quot;:1.18},{&quot;2026-07-27&quot;:1.18},{&quot;2026-07-29&quot;:1.18},{&quot;2026-07-30&quot;:1.18},{&quot;2026-07-31&quot;:1.18},{&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.18},{&quot;2026-08-05&quot;:1.18},{&quot;2026-08-07&quot;:1.16},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.2},{&quot;2026-08-10&quot;:1.2},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.24},{&quot;2026-08-14&quot;:1.24},{&quot;2026-08-15&quot;:1.24},{&quot;2026-08-16&quot;:1.24},{&quot;2026-08-17&quot;:1.25},{&quot;2026-08-18&quot;:1.33},{&quot;2026-08-19&quot;:1.33},{&quot;2026-08-20&quot;:1.33},{&quot;2026-08-21&quot;:1.33},{&quot;2026-08-22&quot;:1.33},{&quot;2026-08-23&quot;:1.34},{&quot;2026-08-24&quot;:1.34},{&quot;2026-08-25&quot;:1.34},{&quot;2026-08-26&quot;:1.38},{&quot;2026-08-27&quot;:1.38},{&quot;2026-08-28&quot;:1.38},{&quot;2026-08-29&quot;:1.38},{&quot;2026-08-30&quot;:1.39},{&quot;2026-08-31&quot;:1.4},{&quot;2026-09-01&quot;:1.4},{&quot;2026-09-02&quot;:1.39},{&quot;2026-09-03&quot;:1.39},{&quot;2026-09-04&quot;:1.39},{&quot;2026-09-05&quot;:1.44},{&quot;2026-09-06&quot;:1.45},{&quot;2026-09-07&quot;:1.45},{&quot;2026-09-08&quot;:1.45},{&quot;2026-09-09&quot;:1.45},{&quot;2026-09-10&quot;:1.4},{&quot;2026-09-11&quot;:1.38}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

        <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">
            Dimir Signet
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dimir Signet" src="https://cards.scryfall.io/large/front/3/2/32c0ff83-04a7-4d5a-b901-6b8a698c5a4d.jpg?1783922392" />
    </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.13
              </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;normal&quot;:[{&quot;2026-06-08&quot;:1.28},{&quot;2026-06-10&quot;:1.15},{&quot;2026-06-11&quot;:1.15},{&quot;2026-06-12&quot;:1.14},{&quot;2026-06-13&quot;:1.14},{&quot;2026-06-14&quot;:1.14},{&quot;2026-06-15&quot;:1.2},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.31},{&quot;2026-06-21&quot;:1.31},{&quot;2026-06-22&quot;:1.34},{&quot;2026-06-24&quot;:1.34},{&quot;2026-06-25&quot;:1.38},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.36},{&quot;2026-06-28&quot;:1.36},{&quot;2026-06-29&quot;:1.38},{&quot;2026-06-30&quot;:1.38},{&quot;2026-07-01&quot;:1.41},{&quot;2026-07-02&quot;:1.41},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.43},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.43},{&quot;2026-07-09&quot;:1.43},{&quot;2026-07-10&quot;:1.39},{&quot;2026-07-11&quot;:1.37},{&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.39},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.39},{&quot;2026-07-19&quot;:1.4},{&quot;2026-07-20&quot;:1.4},{&quot;2026-07-21&quot;:1.4},{&quot;2026-07-23&quot;:1.4},{&quot;2026-07-25&quot;:1.4},{&quot;2026-07-26&quot;:1.4},{&quot;2026-07-27&quot;:1.43},{&quot;2026-07-29&quot;:1.43},{&quot;2026-07-30&quot;:1.43},{&quot;2026-07-31&quot;:1.42},{&quot;2026-08-01&quot;:1.36},{&quot;2026-08-02&quot;:1.37},{&quot;2026-08-03&quot;:1.37},{&quot;2026-08-04&quot;:1.37},{&quot;2026-08-05&quot;:1.31},{&quot;2026-08-07&quot;:1.31},{&quot;2026-08-08&quot;:1.31},{&quot;2026-08-09&quot;:1.31},{&quot;2026-08-10&quot;:1.31},{&quot;2026-08-11&quot;:1.31},{&quot;2026-08-12&quot;:1.29},{&quot;2026-08-13&quot;:1.29},{&quot;2026-08-14&quot;:1.29},{&quot;2026-08-15&quot;:1.32},{&quot;2026-08-16&quot;:1.29},{&quot;2026-08-17&quot;:1.29},{&quot;2026-08-18&quot;:1.24},{&quot;2026-08-19&quot;:1.27},{&quot;2026-08-20&quot;:1.27},{&quot;2026-08-21&quot;:1.29},{&quot;2026-08-22&quot;:1.26},{&quot;2026-08-23&quot;:1.16},{&quot;2026-08-24&quot;:1.16},{&quot;2026-08-25&quot;:1.16},{&quot;2026-08-26&quot;:1.16},{&quot;2026-08-27&quot;:1.16},{&quot;2026-08-28&quot;:1.14},{&quot;2026-08-29&quot;:1.14},{&quot;2026-08-30&quot;:1.14},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.13},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.13},{&quot;2026-09-04&quot;:1.12},{&quot;2026-09-05&quot;:1.12},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.17},{&quot;2026-09-08&quot;:1.18},{&quot;2026-09-09&quot;:1.16},{&quot;2026-09-10&quot;:1.13},{&quot;2026-09-11&quot;:1.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/e/ee40458c-7f3a-4fa6-976f-be1f7a336fdc.jpg?1783928764" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Signet" src="https://cards.scryfall.io/large/front/e/e/ee40458c-7f3a-4fa6-976f-be1f7a336fdc.jpg?1783928764" />
    </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.66
              </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">
                $2.42
              </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.33</span>
              <span class="text-xs text-grey-text">Credit: $0.43</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:2.59},{&quot;2026-06-13&quot;:2.59},{&quot;2026-06-14&quot;:2.37},{&quot;2026-06-15&quot;:2.37},{&quot;2026-06-16&quot;:2.37},{&quot;2026-06-17&quot;:2.37},{&quot;2026-06-18&quot;:2.37},{&quot;2026-06-19&quot;:2.37},{&quot;2026-06-20&quot;:2.37},{&quot;2026-06-21&quot;:2.37},{&quot;2026-06-22&quot;:2.37},{&quot;2026-06-23&quot;:2.37},{&quot;2026-06-24&quot;:2.37},{&quot;2026-06-25&quot;:2.52},{&quot;2026-06-26&quot;:2.52},{&quot;2026-06-27&quot;:2.52},{&quot;2026-06-28&quot;:2.52},{&quot;2026-06-29&quot;:2.52},{&quot;2026-06-30&quot;:2.52},{&quot;2026-07-01&quot;:2.57},{&quot;2026-07-02&quot;:2.57},{&quot;2026-07-03&quot;:2.57},{&quot;2026-07-04&quot;:2.57},{&quot;2026-07-05&quot;:2.57},{&quot;2026-07-06&quot;:2.57},{&quot;2026-07-07&quot;:2.57},{&quot;2026-07-08&quot;:2.57},{&quot;2026-07-09&quot;:2.57},{&quot;2026-07-10&quot;:2.57},{&quot;2026-07-11&quot;:2.57},{&quot;2026-07-12&quot;:2.63},{&quot;2026-07-13&quot;:2.63},{&quot;2026-07-14&quot;:2.63},{&quot;2026-07-15&quot;:2.69},{&quot;2026-07-16&quot;:2.69},{&quot;2026-07-17&quot;:2.69},{&quot;2026-07-18&quot;:2.69},{&quot;2026-07-19&quot;:2.69},{&quot;2026-07-20&quot;:2.66},{&quot;2026-07-21&quot;:2.66},{&quot;2026-07-23&quot;:2.66},{&quot;2026-07-24&quot;:2.66},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.6},{&quot;2026-07-27&quot;:2.6},{&quot;2026-07-28&quot;:2.6},{&quot;2026-07-29&quot;:2.6},{&quot;2026-07-30&quot;:2.6},{&quot;2026-07-31&quot;:2.6},{&quot;2026-08-01&quot;:2.27},{&quot;2026-08-02&quot;:2.27},{&quot;2026-08-03&quot;:2.27},{&quot;2026-08-04&quot;:2.27},{&quot;2026-08-05&quot;:2.27},{&quot;2026-08-07&quot;:2.27},{&quot;2026-08-08&quot;:2.35},{&quot;2026-08-09&quot;:2.35},{&quot;2026-08-10&quot;:2.35},{&quot;2026-08-11&quot;:2.35},{&quot;2026-08-12&quot;:2.35},{&quot;2026-08-13&quot;:2.35},{&quot;2026-08-14&quot;:2.35},{&quot;2026-08-15&quot;:2.35},{&quot;2026-08-16&quot;:2.35},{&quot;2026-08-17&quot;:2.35},{&quot;2026-08-18&quot;:2.35},{&quot;2026-08-19&quot;:2.35},{&quot;2026-08-20&quot;:2.35},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.35},{&quot;2026-08-23&quot;:2.35},{&quot;2026-08-24&quot;:2.35},{&quot;2026-08-25&quot;:2.35},{&quot;2026-08-26&quot;:2.35},{&quot;2026-08-27&quot;:2.35},{&quot;2026-08-28&quot;:2.35},{&quot;2026-08-29&quot;:2.35},{&quot;2026-08-30&quot;:2.35},{&quot;2026-08-31&quot;:2.35},{&quot;2026-09-01&quot;:2.34},{&quot;2026-09-02&quot;:2.34},{&quot;2026-09-03&quot;:2.34},{&quot;2026-09-04&quot;:2.34},{&quot;2026-09-05&quot;:2.34},{&quot;2026-09-06&quot;:2.34},{&quot;2026-09-07&quot;:2.34},{&quot;2026-09-08&quot;:2.34},{&quot;2026-09-09&quot;:2.34},{&quot;2026-09-10&quot;:2.42},{&quot;2026-09-11&quot;:2.42}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.58},{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.59},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.61},{&quot;2026-06-19&quot;:0.61},{&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.59},{&quot;2026-06-24&quot;:0.59},{&quot;2026-06-25&quot;:0.59},{&quot;2026-06-26&quot;:0.59},{&quot;2026-06-27&quot;:0.59},{&quot;2026-06-28&quot;:0.59},{&quot;2026-06-29&quot;:0.59},{&quot;2026-06-30&quot;:0.6},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.54},{&quot;2026-07-05&quot;:0.52},{&quot;2026-07-06&quot;:0.47},{&quot;2026-07-07&quot;:0.47},{&quot;2026-07-08&quot;:0.48},{&quot;2026-07-09&quot;:0.49},{&quot;2026-07-10&quot;:0.49},{&quot;2026-07-11&quot;:0.52},{&quot;2026-07-12&quot;:0.52},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.56},{&quot;2026-07-15&quot;:0.56},{&quot;2026-07-16&quot;:0.55},{&quot;2026-07-17&quot;:0.57},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.57},{&quot;2026-07-21&quot;:0.57},{&quot;2026-07-23&quot;:0.57},{&quot;2026-07-24&quot;:0.57},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.53},{&quot;2026-07-27&quot;:0.52},{&quot;2026-07-28&quot;:0.5},{&quot;2026-07-29&quot;:0.48},{&quot;2026-07-30&quot;:0.49},{&quot;2026-07-31&quot;:0.5},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.56},{&quot;2026-08-03&quot;:0.58},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.6},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.6},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.59},{&quot;2026-08-13&quot;:0.59},{&quot;2026-08-14&quot;:0.6},{&quot;2026-08-15&quot;:0.55},{&quot;2026-08-16&quot;:0.55},{&quot;2026-08-17&quot;:0.58},{&quot;2026-08-18&quot;:0.59},{&quot;2026-08-19&quot;:0.63},{&quot;2026-08-20&quot;:0.63},{&quot;2026-08-21&quot;:0.73},{&quot;2026-08-22&quot;:0.74},{&quot;2026-08-23&quot;:0.75},{&quot;2026-08-24&quot;:0.74},{&quot;2026-08-25&quot;:0.76},{&quot;2026-08-26&quot;:0.76},{&quot;2026-08-27&quot;:0.76},{&quot;2026-08-28&quot;:0.73},{&quot;2026-08-29&quot;:0.73},{&quot;2026-08-30&quot;:0.69},{&quot;2026-08-31&quot;:0.69},{&quot;2026-09-01&quot;:0.72},{&quot;2026-09-02&quot;:0.72},{&quot;2026-09-03&quot;:0.72},{&quot;2026-09-04&quot;:0.74},{&quot;2026-09-05&quot;:0.69},{&quot;2026-09-06&quot;:0.69},{&quot;2026-09-07&quot;:0.69},{&quot;2026-09-08&quot;:0.68},{&quot;2026-09-09&quot;:0.69},{&quot;2026-09-10&quot;:0.66},{&quot;2026-09-11&quot;:0.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="14420"
  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">
            Izzet Signet
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Izzet Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/d/9ddc741b-18d8-41b1-b61b-e2249cad8526.jpg?1783922389" />

        <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">
            Izzet Signet
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Izzet Signet" src="https://cards.scryfall.io/large/front/9/d/9ddc741b-18d8-41b1-b61b-e2249cad8526.jpg?1783922389" />
    </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.51
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;normal&quot;:[{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.59},{&quot;2026-06-16&quot;:0.59},{&quot;2026-06-17&quot;:0.59},{&quot;2026-06-18&quot;:0.59},{&quot;2026-06-19&quot;:0.59},{&quot;2026-06-20&quot;:0.59},{&quot;2026-06-21&quot;:0.59},{&quot;2026-06-22&quot;:0.6},{&quot;2026-06-23&quot;:0.59},{&quot;2026-06-24&quot;:0.59},{&quot;2026-06-25&quot;:0.59},{&quot;2026-06-26&quot;:0.59},{&quot;2026-06-27&quot;:0.59},{&quot;2026-06-28&quot;:0.59},{&quot;2026-06-29&quot;:0.59},{&quot;2026-06-30&quot;:0.61},{&quot;2026-07-01&quot;:0.61},{&quot;2026-07-02&quot;:0.61},{&quot;2026-07-03&quot;:0.61},{&quot;2026-07-04&quot;:0.61},{&quot;2026-07-05&quot;:0.61},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.61},{&quot;2026-07-08&quot;:0.61},{&quot;2026-07-09&quot;:0.61},{&quot;2026-07-10&quot;:0.63},{&quot;2026-07-11&quot;:0.63},{&quot;2026-07-12&quot;:0.61},{&quot;2026-07-13&quot;:0.61},{&quot;2026-07-14&quot;:0.61},{&quot;2026-07-15&quot;:0.59},{&quot;2026-07-16&quot;:0.62},{&quot;2026-07-17&quot;:0.62},{&quot;2026-07-18&quot;:0.62},{&quot;2026-07-19&quot;:0.62},{&quot;2026-07-20&quot;:0.6},{&quot;2026-07-21&quot;:0.6},{&quot;2026-07-22&quot;:0.6},{&quot;2026-07-23&quot;:0.6},{&quot;2026-07-24&quot;:0.6},{&quot;2026-07-25&quot;:0.6},{&quot;2026-07-26&quot;:0.6},{&quot;2026-07-27&quot;:0.6},{&quot;2026-07-28&quot;:0.6},{&quot;2026-07-29&quot;:0.6},{&quot;2026-07-30&quot;:0.6},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.58},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.56},{&quot;2026-08-04&quot;:0.56},{&quot;2026-08-05&quot;:0.56},{&quot;2026-08-07&quot;:0.56},{&quot;2026-08-08&quot;:0.56},{&quot;2026-08-09&quot;:0.53},{&quot;2026-08-10&quot;:0.51},{&quot;2026-08-11&quot;:0.5},{&quot;2026-08-12&quot;:0.5},{&quot;2026-08-13&quot;:0.5},{&quot;2026-08-14&quot;:0.49},{&quot;2026-08-15&quot;:0.49},{&quot;2026-08-16&quot;:0.49},{&quot;2026-08-17&quot;:0.47},{&quot;2026-08-18&quot;:0.47},{&quot;2026-08-19&quot;:0.47},{&quot;2026-08-20&quot;:0.47},{&quot;2026-08-21&quot;:0.47},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.47},{&quot;2026-08-25&quot;:0.47},{&quot;2026-08-26&quot;:0.49},{&quot;2026-08-27&quot;:0.49},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.49},{&quot;2026-09-01&quot;:0.49},{&quot;2026-09-02&quot;:0.49},{&quot;2026-09-03&quot;:0.49},{&quot;2026-09-04&quot;:0.49},{&quot;2026-09-05&quot;:0.49},{&quot;2026-09-06&quot;:0.49},{&quot;2026-09-07&quot;:0.51},{&quot;2026-09-08&quot;:0.51},{&quot;2026-09-09&quot;:0.5},{&quot;2026-09-10&quot;:0.5},{&quot;2026-09-11&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="52999"
  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">
            Ghost Quarter
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Ghost Quarter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/3/b3699c15-d834-4dde-ae3b-b3eb8241b442.jpg?1783910587" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ghost Quarter" src="https://cards.scryfall.io/large/front/b/3/b3699c15-d834-4dde-ae3b-b3eb8241b442.jpg?1783910587" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.51
              </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.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;normal&quot;:[{&quot;2026-06-11&quot;:0.61},{&quot;2026-06-12&quot;:0.6},{&quot;2026-06-13&quot;:0.6},{&quot;2026-06-14&quot;:0.6},{&quot;2026-06-15&quot;:0.6},{&quot;2026-06-16&quot;:0.58},{&quot;2026-06-17&quot;:0.58},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-23&quot;:0.56},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.56},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.56},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.56},{&quot;2026-07-05&quot;:0.54},{&quot;2026-07-06&quot;:0.54},{&quot;2026-07-07&quot;:0.54},{&quot;2026-07-08&quot;:0.54},{&quot;2026-07-09&quot;:0.54},{&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.52},{&quot;2026-07-17&quot;:0.52},{&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.52},{&quot;2026-07-23&quot;:0.52},{&quot;2026-07-25&quot;:0.52},{&quot;2026-07-26&quot;:0.52},{&quot;2026-07-27&quot;:0.52},{&quot;2026-07-28&quot;:0.52},{&quot;2026-07-29&quot;:0.5},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.52},{&quot;2026-08-02&quot;:0.51},{&quot;2026-08-03&quot;:0.5},{&quot;2026-08-04&quot;:0.5},{&quot;2026-08-05&quot;:0.5},{&quot;2026-08-07&quot;:0.5},{&quot;2026-08-08&quot;:0.5},{&quot;2026-08-09&quot;:0.5},{&quot;2026-08-10&quot;:0.5},{&quot;2026-08-11&quot;:0.5},{&quot;2026-08-12&quot;:0.5},{&quot;2026-08-13&quot;:0.5},{&quot;2026-08-14&quot;:0.5},{&quot;2026-08-15&quot;:0.48},{&quot;2026-08-16&quot;:0.52},{&quot;2026-08-17&quot;:0.52},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.52},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.5},{&quot;2026-08-24&quot;:0.51},{&quot;2026-08-25&quot;:0.51},{&quot;2026-08-26&quot;:0.51},{&quot;2026-08-27&quot;:0.5},{&quot;2026-08-28&quot;:0.5},{&quot;2026-08-29&quot;:0.5},{&quot;2026-08-30&quot;:0.51},{&quot;2026-08-31&quot;:0.51},{&quot;2026-09-01&quot;:0.51},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.51},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.49},{&quot;2026-09-07&quot;:0.5},{&quot;2026-09-08&quot;:0.5},{&quot;2026-09-09&quot;:0.51},{&quot;2026-09-10&quot;:0.51},{&quot;2026-09-11&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="76546"
  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">
            Amoeboid Changeling
        </span>


      </div>

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Amoeboid Changeling" src="https://cards.scryfall.io/large/front/6/7/67ef8de0-2208-448e-aebb-42cf4ed52ce2.jpg?1783929716" />
    </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.49
              </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.19</span>
              <span class="text-xs text-grey-text">Credit: $0.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-10&quot;:0.44},{&quot;2026-06-11&quot;:0.44},{&quot;2026-06-12&quot;:0.44},{&quot;2026-06-13&quot;:0.44},{&quot;2026-06-14&quot;:0.44},{&quot;2026-06-15&quot;:0.44},{&quot;2026-06-16&quot;:0.44},{&quot;2026-06-17&quot;:0.44},{&quot;2026-06-18&quot;:0.44},{&quot;2026-06-19&quot;:0.47},{&quot;2026-06-20&quot;:0.47},{&quot;2026-06-21&quot;:0.47},{&quot;2026-06-22&quot;:0.47},{&quot;2026-06-23&quot;:0.47},{&quot;2026-06-24&quot;:0.47},{&quot;2026-06-25&quot;:0.47},{&quot;2026-06-26&quot;:0.47},{&quot;2026-06-27&quot;:0.47},{&quot;2026-06-28&quot;:0.47},{&quot;2026-06-29&quot;:0.44},{&quot;2026-06-30&quot;:0.44},{&quot;2026-07-01&quot;:0.44},{&quot;2026-07-02&quot;:0.44},{&quot;2026-07-03&quot;:0.44},{&quot;2026-07-04&quot;:0.44},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&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.44},{&quot;2026-07-15&quot;:0.43},{&quot;2026-07-16&quot;:0.43},{&quot;2026-07-17&quot;:0.43},{&quot;2026-07-18&quot;:0.43},{&quot;2026-07-19&quot;:0.43},{&quot;2026-07-20&quot;:0.43},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-23&quot;:0.43},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.41},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-29&quot;:0.41},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.41},{&quot;2026-08-01&quot;:0.41},{&quot;2026-08-02&quot;:0.41},{&quot;2026-08-03&quot;:0.41},{&quot;2026-08-04&quot;:0.41},{&quot;2026-08-05&quot;:0.41},{&quot;2026-08-07&quot;:0.42},{&quot;2026-08-08&quot;:0.42},{&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.42},{&quot;2026-08-14&quot;:0.42},{&quot;2026-08-15&quot;:0.42},{&quot;2026-08-16&quot;:0.42},{&quot;2026-08-17&quot;:0.43},{&quot;2026-08-18&quot;:0.45},{&quot;2026-08-19&quot;:0.45},{&quot;2026-08-20&quot;:0.45},{&quot;2026-08-21&quot;:0.46},{&quot;2026-08-22&quot;:0.46},{&quot;2026-08-23&quot;:0.46},{&quot;2026-08-24&quot;:0.45},{&quot;2026-08-25&quot;:0.45},{&quot;2026-08-26&quot;:0.46},{&quot;2026-08-27&quot;:0.46},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.46},{&quot;2026-08-31&quot;:0.46},{&quot;2026-09-01&quot;:0.46},{&quot;2026-09-02&quot;:0.46},{&quot;2026-09-03&quot;:0.46},{&quot;2026-09-04&quot;:0.49},{&quot;2026-09-05&quot;:0.49},{&quot;2026-09-06&quot;:0.49},{&quot;2026-09-07&quot;:0.49},{&quot;2026-09-08&quot;:0.49},{&quot;2026-09-09&quot;:0.49},{&quot;2026-09-10&quot;:0.49},{&quot;2026-09-11&quot;:0.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.45
          </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="Shivan Reef" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/3/a338107b-0960-4496-a9a5-f7b672e7c043.jpg?1783921257" />

        <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">
            Shivan Reef
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shivan Reef" src="https://cards.scryfall.io/large/front/a/3/a338107b-0960-4496-a9a5-f7b672e7c043.jpg?1783921257" />
    </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.45
              </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">
                $1.32
              </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.06</span>
              <span class="text-xs text-grey-text">Credit: $0.08</span>
            </div>
        </div>

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Sulfur Falls" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/d/6d3e12e4-6122-41d8-8ffb-a883d02d3278.jpg?1783918400" />

        <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">
            Sulfur Falls
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sulfur Falls" src="https://cards.scryfall.io/large/front/6/d/6d3e12e4-6122-41d8-8ffb-a883d02d3278.jpg?1783918400" />
    </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>

            </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.89
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.36},{&quot;2026-06-14&quot;:1.37},{&quot;2026-06-15&quot;:1.37},{&quot;2026-06-16&quot;:1.37},{&quot;2026-06-17&quot;:1.43},{&quot;2026-06-18&quot;:1.43},{&quot;2026-06-19&quot;:1.43},{&quot;2026-06-20&quot;:1.49},{&quot;2026-06-21&quot;:1.49},{&quot;2026-06-22&quot;:1.56},{&quot;2026-06-23&quot;:1.56},{&quot;2026-06-24&quot;:1.56},{&quot;2026-06-25&quot;:1.56},{&quot;2026-06-26&quot;:1.63},{&quot;2026-06-27&quot;:1.63},{&quot;2026-06-28&quot;:1.63},{&quot;2026-06-29&quot;:1.63},{&quot;2026-06-30&quot;:1.63},{&quot;2026-07-01&quot;:1.63},{&quot;2026-07-02&quot;:1.58},{&quot;2026-07-03&quot;:1.58},{&quot;2026-07-04&quot;:1.58},{&quot;2026-07-05&quot;:1.58},{&quot;2026-07-06&quot;:1.58},{&quot;2026-07-07&quot;:1.58},{&quot;2026-07-08&quot;:1.58},{&quot;2026-07-09&quot;:1.58},{&quot;2026-07-10&quot;:1.58},{&quot;2026-07-11&quot;:1.58},{&quot;2026-07-12&quot;:1.58},{&quot;2026-07-13&quot;:1.58},{&quot;2026-07-14&quot;:1.58},{&quot;2026-07-15&quot;:1.58},{&quot;2026-07-16&quot;:1.58},{&quot;2026-07-17&quot;:1.58},{&quot;2026-07-18&quot;:1.58},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.58},{&quot;2026-07-21&quot;:1.58},{&quot;2026-07-22&quot;:1.58},{&quot;2026-07-23&quot;:1.62},{&quot;2026-07-24&quot;:1.62},{&quot;2026-07-25&quot;:1.62},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.62},{&quot;2026-07-28&quot;:1.62},{&quot;2026-07-29&quot;:1.62},{&quot;2026-07-30&quot;:1.62},{&quot;2026-07-31&quot;:1.62},{&quot;2026-08-01&quot;:1.62},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.62},{&quot;2026-08-04&quot;:1.62},{&quot;2026-08-05&quot;:1.62},{&quot;2026-08-07&quot;:1.62},{&quot;2026-08-08&quot;:1.67},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.67},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.67},{&quot;2026-08-13&quot;:1.67},{&quot;2026-08-14&quot;:1.67},{&quot;2026-08-15&quot;:1.67},{&quot;2026-08-16&quot;:1.67},{&quot;2026-08-17&quot;:1.67},{&quot;2026-08-18&quot;:1.67},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.71},{&quot;2026-08-21&quot;:1.76},{&quot;2026-08-22&quot;:1.76},{&quot;2026-08-23&quot;:1.76},{&quot;2026-08-24&quot;:1.79},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.82},{&quot;2026-08-27&quot;:1.86},{&quot;2026-08-28&quot;:1.86},{&quot;2026-08-29&quot;:1.86},{&quot;2026-08-30&quot;:1.86},{&quot;2026-08-31&quot;:1.86},{&quot;2026-09-01&quot;:1.86},{&quot;2026-09-02&quot;:1.89},{&quot;2026-09-03&quot;:1.89},{&quot;2026-09-04&quot;:1.89},{&quot;2026-09-05&quot;:1.89},{&quot;2026-09-06&quot;:1.89},{&quot;2026-09-07&quot;:1.89},{&quot;2026-09-08&quot;:1.89},{&quot;2026-09-09&quot;:1.89},{&quot;2026-09-10&quot;:1.89},{&quot;2026-09-11&quot;:1.89}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.42},{&quot;2026-06-14&quot;:0.42},{&quot;2026-06-15&quot;:0.42},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.42},{&quot;2026-06-19&quot;:0.42},{&quot;2026-06-20&quot;:0.42},{&quot;2026-06-21&quot;:0.42},{&quot;2026-06-22&quot;:0.42},{&quot;2026-06-23&quot;:0.42},{&quot;2026-06-24&quot;:0.42},{&quot;2026-06-25&quot;:0.42},{&quot;2026-06-26&quot;:0.42},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.42},{&quot;2026-06-29&quot;:0.42},{&quot;2026-06-30&quot;:0.42},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.42},{&quot;2026-07-04&quot;:0.42},{&quot;2026-07-05&quot;:0.42},{&quot;2026-07-06&quot;:0.42},{&quot;2026-07-07&quot;:0.42},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.42},{&quot;2026-07-10&quot;:0.42},{&quot;2026-07-11&quot;:0.42},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.42},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-22&quot;:0.4},{&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.39},{&quot;2026-07-27&quot;:0.39},{&quot;2026-07-28&quot;:0.39},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.39},{&quot;2026-08-01&quot;:0.39},{&quot;2026-08-02&quot;:0.39},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.39},{&quot;2026-08-05&quot;:0.39},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.39},{&quot;2026-08-18&quot;:0.39},{&quot;2026-08-19&quot;:0.39},{&quot;2026-08-20&quot;:0.39},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.39},{&quot;2026-08-23&quot;:0.39},{&quot;2026-08-24&quot;:0.39},{&quot;2026-08-25&quot;:0.39},{&quot;2026-08-26&quot;:0.39},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.39},{&quot;2026-08-31&quot;:0.39},{&quot;2026-09-01&quot;:0.39},{&quot;2026-09-02&quot;:0.39},{&quot;2026-09-03&quot;:0.4},{&quot;2026-09-04&quot;:0.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.39},{&quot;2026-09-09&quot;:0.39},{&quot;2026-09-10&quot;:0.39},{&quot;2026-09-11&quot;:0.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76019"
  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">
            Mothdust Changeling
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Mothdust Changeling
        </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-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="Mothdust Changeling" src="https://cards.scryfall.io/large/front/3/b/3b394bfc-b237-4002-8540-90e6e9c405cb.jpg?1783910373" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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-11&quot;:0.42},{&quot;2026-06-12&quot;:0.4},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.4},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.39},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.37},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.39},{&quot;2026-07-13&quot;:0.39},{&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.41},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-25&quot;:0.4},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.39},{&quot;2026-07-28&quot;:0.4},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.43},{&quot;2026-08-01&quot;:0.43},{&quot;2026-08-02&quot;:0.44},{&quot;2026-08-03&quot;:0.44},{&quot;2026-08-04&quot;:0.42},{&quot;2026-08-05&quot;:0.41},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.4},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.4},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.35},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.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.34},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="5035"
  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-blb 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">
            Shoreline Looter
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Shoreline Looter
        </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 — Rat Rogue</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="Shoreline Looter" src="https://cards.scryfall.io/large/front/d/5/d5bf8cf0-419a-4dc9-9342-aad55c1af05a.jpg?1783910842" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

          <div 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.37
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-10&quot;:0.36},{&quot;2026-06-11&quot;:0.36},{&quot;2026-06-12&quot;:0.36},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.37},{&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.38},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.38},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.36},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.37},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.35},{&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.38},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-23&quot;:0.38},{&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.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.36},{&quot;2026-08-03&quot;:0.36},{&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.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.35},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.29},{&quot;2026-06-11&quot;:0.28},{&quot;2026-06-12&quot;:0.29},{&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.33},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.29},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.29},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.31},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.29},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.29},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.3},{&quot;2026-07-21&quot;:0.3},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.31},{&quot;2026-07-27&quot;:0.31},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.38},{&quot;2026-08-08&quot;:0.38},{&quot;2026-08-09&quot;:0.38},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.38},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.27},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.35},{&quot;2026-09-11&quot;:0.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Shadowblood Ridge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/4/74c0016a-6761-4764-bf4a-ecde26061a90.jpg?1783926146" />

        <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">
            Shadowblood Ridge
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shadowblood Ridge" src="https://cards.scryfall.io/large/front/7/4/74c0016a-6761-4764-bf4a-ecde26061a90.jpg?1783926146" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5140"
  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-blb 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">
            Persistent Marshstalker
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Persistent Marshstalker
        </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 — Rat Berserker</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="Persistent Marshstalker" src="https://cards.scryfall.io/large/front/8/b/8b900c71-713b-4b7e-b4be-ad9f4aa0c139.jpg?1783910832" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </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">
                $0.35
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</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-12&quot;:0.36},{&quot;2026-06-13&quot;:0.36},{&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.36},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.38},{&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.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.39},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.36},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.35},{&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.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.35},{&quot;2026-08-10&quot;:0.35},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.35},{&quot;2026-09-11&quot;:0.35}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.28},{&quot;2026-06-14&quot;:0.28},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.28},{&quot;2026-06-19&quot;:0.28},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.25},{&quot;2026-06-23&quot;:0.26},{&quot;2026-06-24&quot;:0.26},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.29},{&quot;2026-07-02&quot;:0.29},{&quot;2026-07-03&quot;:0.27},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.25},{&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.23},{&quot;2026-07-10&quot;:0.26},{&quot;2026-07-11&quot;:0.26},{&quot;2026-07-12&quot;:0.27},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.28},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.31},{&quot;2026-07-23&quot;:0.29},{&quot;2026-07-24&quot;:0.28},{&quot;2026-07-25&quot;:0.29},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.29},{&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.3},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.3},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.3},{&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.25},{&quot;2026-08-22&quot;:0.25},{&quot;2026-08-23&quot;:0.27},{&quot;2026-08-24&quot;:0.27},{&quot;2026-08-25&quot;:0.27},{&quot;2026-08-26&quot;:0.27},{&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.28},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              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="Command Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/4/74c5bc49-318c-44fc-b276-f6d036fdf054.jpg?1783928295" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/7/4/74c5bc49-318c-44fc-b276-f6d036fdf054.jpg?1783928295" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="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="Smoldering Marsh" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/02d90054-65da-4562-bfe7-48c381757b30.jpg?1783926146" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Smoldering Marsh" src="https://cards.scryfall.io/large/front/0/2/02d90054-65da-4562-bfe7-48c381757b30.jpg?1783926146" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="42141"
  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-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">
            Nezumi Prowler
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Nezumi Prowler
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Rat Ninja</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Nezumi Prowler" src="https://cards.scryfall.io/large/front/9/a/9a64789a-748a-4630-949c-e1b045edd225.jpg?1783923789" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5584"
  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-blb 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">
            Mudflat Village
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Mudflat Village
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mudflat Village" src="https://cards.scryfall.io/large/front/5/3/53ec4ad3-9cf0-4f1b-a9db-d63feee594ab.jpg?1783910783" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="72532"
  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-bro 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">
            Gnawing Vermin
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Gnawing Vermin" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/f/2fa2fa48-ddb7-45f0-b183-4186df98f7cc.jpg?1783920087" />

        <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">
            Gnawing Vermin
        </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 — Rat</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="Gnawing Vermin" src="https://cards.scryfall.io/large/front/2/f/2fa2fa48-ddb7-45f0-b183-4186df98f7cc.jpg?1783920087" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Wick, the Whorled Mind" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/9/29089810-d7fb-4abe-b729-bfabed6aed2b.jpg?1783910825" />

        <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">
            Wick, the Whorled Mind
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wick, the Whorled Mind" src="https://cards.scryfall.io/large/front/2/9/29089810-d7fb-4abe-b729-bfabed6aed2b.jpg?1783910825" />
    </div>

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

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.28
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

          <div 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.37
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.32},{&quot;2026-06-12&quot;:0.32},{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.34},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.35},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.35},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.35},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.36},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.35},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.35},{&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.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.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.37},{&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.37},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.23},{&quot;2026-06-12&quot;:0.23},{&quot;2026-06-13&quot;:0.23},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.24},{&quot;2026-06-16&quot;:0.24},{&quot;2026-06-17&quot;:0.25},{&quot;2026-06-18&quot;:0.27},{&quot;2026-06-19&quot;:0.26},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.28},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.26},{&quot;2026-06-24&quot;:0.27},{&quot;2026-06-25&quot;:0.27},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.26},{&quot;2026-07-02&quot;:0.26},{&quot;2026-07-03&quot;:0.26},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.27},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.27},{&quot;2026-07-10&quot;:0.27},{&quot;2026-07-11&quot;:0.27},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.26},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.26},{&quot;2026-07-16&quot;:0.27},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.27},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-28&quot;:0.29},{&quot;2026-07-29&quot;:0.3},{&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.26},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.26},{&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.29},{&quot;2026-08-14&quot;:0.27},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.27},{&quot;2026-08-17&quot;:0.27},{&quot;2026-08-18&quot;:0.25},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.27},{&quot;2026-08-25&quot;:0.27},{&quot;2026-08-26&quot;:0.28},{&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.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.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.28},{&quot;2026-09-11&quot;:0.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85702"
  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">
            Fists of Flame
        </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.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="Fists of Flame" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/e/aeb9fde6-4445-4e24-891d-cfc2e7b5c6f2.jpg?1783909989" />

        <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">
            Fists of Flame
        </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="Fists of Flame" src="https://cards.scryfall.io/large/front/a/e/aeb9fde6-4445-4e24-891d-cfc2e7b5c6f2.jpg?1783909989" />
    </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.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">$0.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.17},{&quot;2026-06-11&quot;:0.17},{&quot;2026-06-12&quot;:0.17},{&quot;2026-06-13&quot;:0.17},{&quot;2026-06-14&quot;:0.17},{&quot;2026-06-15&quot;:0.17},{&quot;2026-06-16&quot;:0.17},{&quot;2026-06-17&quot;:0.17},{&quot;2026-06-18&quot;:0.17},{&quot;2026-06-19&quot;:0.17},{&quot;2026-06-20&quot;:0.17},{&quot;2026-06-21&quot;:0.17},{&quot;2026-06-22&quot;:0.17},{&quot;2026-06-23&quot;:0.17},{&quot;2026-06-24&quot;:0.17},{&quot;2026-06-25&quot;:0.17},{&quot;2026-06-26&quot;:0.17},{&quot;2026-06-27&quot;:0.17},{&quot;2026-06-28&quot;:0.17},{&quot;2026-06-29&quot;:0.17},{&quot;2026-06-30&quot;:0.18},{&quot;2026-07-01&quot;:0.18},{&quot;2026-07-02&quot;:0.18},{&quot;2026-07-03&quot;:0.19},{&quot;2026-07-04&quot;:0.18},{&quot;2026-07-05&quot;:0.19},{&quot;2026-07-06&quot;:0.19},{&quot;2026-07-07&quot;:0.19},{&quot;2026-07-08&quot;:0.19},{&quot;2026-07-09&quot;:0.19},{&quot;2026-07-10&quot;:0.19},{&quot;2026-07-11&quot;:0.19},{&quot;2026-07-12&quot;:0.19},{&quot;2026-07-13&quot;:0.18},{&quot;2026-07-14&quot;:0.18},{&quot;2026-07-15&quot;:0.18},{&quot;2026-07-16&quot;:0.19},{&quot;2026-07-17&quot;:0.19},{&quot;2026-07-18&quot;:0.19},{&quot;2026-07-19&quot;:0.19},{&quot;2026-07-20&quot;:0.19},{&quot;2026-07-21&quot;:0.18},{&quot;2026-07-23&quot;:0.18},{&quot;2026-07-25&quot;:0.19},{&quot;2026-07-26&quot;:0.19},{&quot;2026-07-27&quot;:0.19},{&quot;2026-07-29&quot;:0.19},{&quot;2026-07-30&quot;:0.19},{&quot;2026-07-31&quot;:0.19},{&quot;2026-08-01&quot;:0.19},{&quot;2026-08-02&quot;:0.19},{&quot;2026-08-03&quot;:0.19},{&quot;2026-08-04&quot;:0.19},{&quot;2026-08-05&quot;:0.19},{&quot;2026-08-07&quot;:0.19},{&quot;2026-08-08&quot;:0.19},{&quot;2026-08-09&quot;:0.18},{&quot;2026-08-10&quot;:0.18},{&quot;2026-08-11&quot;:0.18},{&quot;2026-08-12&quot;:0.18},{&quot;2026-08-13&quot;:0.17},{&quot;2026-08-14&quot;:0.17},{&quot;2026-08-15&quot;:0.17},{&quot;2026-08-16&quot;:0.17},{&quot;2026-08-17&quot;:0.17},{&quot;2026-08-18&quot;:0.17},{&quot;2026-08-19&quot;:0.17},{&quot;2026-08-20&quot;:0.17},{&quot;2026-08-21&quot;:0.17},{&quot;2026-08-22&quot;:0.17},{&quot;2026-08-23&quot;:0.17},{&quot;2026-08-24&quot;:0.17},{&quot;2026-08-25&quot;:0.17},{&quot;2026-08-26&quot;:0.17},{&quot;2026-08-27&quot;:0.17},{&quot;2026-08-28&quot;:0.17},{&quot;2026-08-29&quot;:0.17},{&quot;2026-08-30&quot;:0.17},{&quot;2026-08-31&quot;:0.17},{&quot;2026-09-01&quot;:0.17},{&quot;2026-09-02&quot;:0.17},{&quot;2026-09-03&quot;:0.17},{&quot;2026-09-04&quot;:0.17},{&quot;2026-09-05&quot;:0.17},{&quot;2026-09-06&quot;:0.17},{&quot;2026-09-07&quot;:0.17},{&quot;2026-09-08&quot;:0.17},{&quot;2026-09-09&quot;:0.17},{&quot;2026-09-10&quot;:0.17},{&quot;2026-09-11&quot;:0.17}]}"
        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 50 items</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=16&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=16&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=16&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=16&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=16&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=16&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=16&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=16&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=16&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="51344"
          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">
              223
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mm2 ss-mythic ss-fw ss-2x mr-4"></i>
              Mox Opal


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $236.08

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $195.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="51344"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_51344" src="/boxset_card/51344?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94867"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              31
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-mythic ss-fw ss-2x mr-4"></i>
              Rhystic Study


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $107.10

                    <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">
                $80.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.73
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94867"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94867" src="/boxset_card/94867?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49486"
          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">
              254
            </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-rare ss-fw ss-2x mr-4"></i>
              Scalding Tarn


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $39.14

                    <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">
                $26.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.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49486"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49486" src="/boxset_card/49486?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80254"
          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">
              CHK-124
            </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-rare ss-fw ss-2x mr-4"></i>
              Marrow-Gnawer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Rat Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $33.13

                    <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">
                $14.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80254"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80254" src="/boxset_card/80254?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5592"
          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">
              260
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-rare ss-fw ss-2x mr-4"></i>
              Three Tree City


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $30.31

                    <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">
                $27.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5592"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5592" src="/boxset_card/5592?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13820"
          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">
              669
            </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-rare ss-fw ss-2x mr-4"></i>
              Black Market Connections


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.13

                    <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">
                $10.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.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13820"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13820" src="/boxset_card/13820?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94877"
          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">
              34
            </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-rare ss-fw ss-2x mr-4"></i>
              Diabolic Intent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.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">
                $11.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.74
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94877"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94877" src="/boxset_card/94877?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="45735"
          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-mom ss-rare ss-fw ss-2x mr-4"></i>
              Faerie Mastermind


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Faerie Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $11.97

                    <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">
                $10.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.74
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="45735"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_45735" src="/boxset_card/45735?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95834"
          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">
              261
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Watery Grave


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95834"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95834" src="/boxset_card/95834?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91088"
          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">
              284
            </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-rare ss-fw ss-2x mr-4"></i>
              Shipwreck Marsh


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.14

                    <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">
                $6.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91088"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91088" src="/boxset_card/91088?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11834"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              262
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cm2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Reliquary Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.90

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11834"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11834" src="/boxset_card/11834?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="17235"
          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">
              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-dst ss-uncommon ss-fw ss-2x mr-4"></i>
              Skullclamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.74

                    <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">
                $6.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.83
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="17235"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_17235" src="/boxset_card/17235?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13994"
          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">
              726
            </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-rare ss-fw ss-2x mr-4"></i>
              Leyline of Anticipation


            </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-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">
                  $6.47

                    <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">
                $3.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13994"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13994" src="/boxset_card/13994?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42002"
          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">
              298
            </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>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.24

                    <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.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42002"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42002" src="/boxset_card/42002?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79527"
          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">
              284
            </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-rare ss-fw ss-2x mr-4"></i>
              Swarmyard


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.08

                    <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">
                $3.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79527"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79527" src="/boxset_card/79527?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19299"
          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">
              381
            </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-rare ss-fw ss-2x mr-4"></i>
              Sulfurous Springs


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.56

                    <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="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19299"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19299" src="/boxset_card/19299?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="52819"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              47
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-common ss-fw ss-2x mr-4"></i>
              Rat Colony


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.13

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="52819"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_52819" src="/boxset_card/52819?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14422"
          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">
              864
            </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>
              Lightning Greaves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.80

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14422"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14422" src="/boxset_card/14422?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87502"
          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-wot ss-uncommon 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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.83

                    <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">
                $2.00
            </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="87502"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87502" src="/boxset_card/87502?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28835"
          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">
              160
            </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-uncommon ss-fw ss-2x mr-4"></i>
              An Offer You Can&#39;t Refuse


            </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">
                  $3.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28835"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28835" src="/boxset_card/28835?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49380"
          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">
              231
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Creativity


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49380"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49380" src="/boxset_card/49380?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86083"
          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">
              C15-55
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Thought Vessel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.83

                </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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86083"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86083" src="/boxset_card/86083?collection_id=16&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.80

                    <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=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35668"
          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">
              265
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-vow ss-rare ss-fw ss-2x mr-4"></i>
              Stormcarved Coast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.71

                    <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.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.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="35668"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_35668" src="/boxset_card/35668?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="4982"
          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">
              52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-uncommon ss-fw ss-2x mr-4"></i>
              Into the Flood Maw


            </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.69

                    <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.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.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="4982"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_4982" src="/boxset_card/4982?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73038"
          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-bro ss-rare ss-fw ss-2x mr-4"></i>
              Underground River


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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="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="73038"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73038" src="/boxset_card/73038?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14424"
          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">
              865
            </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-rare ss-fw ss-2x mr-4"></i>
              Maskwood Nexus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.18

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14424"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14424" src="/boxset_card/14424?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47718"
          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-mic ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Dominance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.17

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47718"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47718" src="/boxset_card/47718?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53636"
          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">
              111
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-nec ss-rare ss-fw ss-2x mr-4"></i>
              Taurean Mauler


            </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-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">
                  $2.03

                    <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.19
            </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="53636"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53636" src="/boxset_card/53636?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28947"
          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">
              215
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.80

                    <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">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28947"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28947" src="/boxset_card/28947?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89444"
          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">
              40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znc 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.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89444"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89444" src="/boxset_card/89444?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28944"
          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">
              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-afc ss-uncommon ss-fw ss-2x mr-4"></i>
              Rakdos Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.38

                    <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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28944"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28944" src="/boxset_card/28944?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14403"
          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">
              857
            </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>
              Dimir Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14403"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14403" src="/boxset_card/14403?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12267"
          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">
              297
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12267"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12267" src="/boxset_card/12267?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14420"
          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">
              863
            </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>
              Izzet Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.51

                    <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.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="14420"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14420" src="/boxset_card/14420?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="52999"
          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">
              109
            </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>
              Ghost Quarter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.51

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="52999"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_52999" src="/boxset_card/52999?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76546"
          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-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-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Amoeboid Changeling


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Shapeshifter
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.49

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.19
            </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.05
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76546"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76546" src="/boxset_card/76546?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18919"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              255
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x mr-4"></i>
              Shivan Reef


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18919"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18919" src="/boxset_card/18919?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18755"
          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">
              258
            </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-rare ss-fw ss-2x mr-4"></i>
              Sulfur Falls


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18755"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18755" src="/boxset_card/18755?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76019"
          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">
              MOR-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-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Mothdust Changeling


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76019"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76019" src="/boxset_card/76019?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5035"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-uncommon ss-fw ss-2x mr-4"></i>
              Shoreline Looter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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.36

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5035"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5035" src="/boxset_card/5035?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29073"
          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">
              259
            </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-rare ss-fw ss-2x mr-4"></i>
              Shadowblood Ridge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.36

                </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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29073"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29073" src="/boxset_card/29073?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5140"
          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">
              104
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-uncommon ss-fw ss-2x mr-4"></i>
              Persistent Marshstalker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat Berserker
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5140"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5140" src="/boxset_card/5140?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40546"
          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">
              108
            </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-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40546"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40546" src="/boxset_card/40546?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29081"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              262
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Smoldering Marsh


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Swamp Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.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.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29081"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29081" src="/boxset_card/29081?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42141"
          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">
              344
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Nezumi Prowler


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Rat Ninja
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42141"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42141" src="/boxset_card/42141?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5584"
          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">
              257
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-uncommon ss-fw ss-2x mr-4"></i>
              Mudflat Village


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <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.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5584"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5584" src="/boxset_card/5584?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="72532"
          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">
              101
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-bro ss-uncommon ss-fw ss-2x mr-4"></i>
              Gnawing Vermin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Rat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <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.15
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.47
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="72532"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_72532" src="/boxset_card/72532?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5187"
          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">
              120
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-rare ss-fw ss-2x mr-4"></i>
              Wick, the Whorled Mind


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Rat Warlock
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.47
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5187"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5187" src="/boxset_card/5187?collection_id=16&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85702"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CMR-414
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Fists of Flame


            </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.17

                </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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85702"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85702" src="/boxset_card/85702?collection_id=16&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 50 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>