<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="207" 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="35198"
  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-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">
            Toxrill, the Corrosive
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $17.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="Toxrill, the Corrosive" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/84e64f38-b1f3-47cd-8cfb-a4861369aca3.jpg?1783924850" />

        <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">
            Toxrill, the Corrosive
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Toxrill, the Corrosive" src="https://cards.scryfall.io/large/front/8/4/84e64f38-b1f3-47cd-8cfb-a4861369aca3.jpg?1783924850" />
    </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">
                $17.28
              </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">
                $21.06
              </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">$10.50</span>
              <span class="text-xs text-grey-text">Credit: $13.65</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:19.31},{&quot;2026-06-14&quot;:19.31},{&quot;2026-06-15&quot;:19.34},{&quot;2026-06-16&quot;:19.34},{&quot;2026-06-17&quot;:19.34},{&quot;2026-06-18&quot;:19.34},{&quot;2026-06-19&quot;:19.65},{&quot;2026-06-20&quot;:19.65},{&quot;2026-06-21&quot;:19.65},{&quot;2026-06-22&quot;:19.88},{&quot;2026-06-23&quot;:19.88},{&quot;2026-06-24&quot;:19.88},{&quot;2026-06-25&quot;:19.88},{&quot;2026-06-26&quot;:19.88},{&quot;2026-06-27&quot;:19.88},{&quot;2026-06-28&quot;:19.88},{&quot;2026-06-29&quot;:19.88},{&quot;2026-06-30&quot;:19.88},{&quot;2026-07-01&quot;:19.88},{&quot;2026-07-02&quot;:20.1},{&quot;2026-07-03&quot;:20.1},{&quot;2026-07-04&quot;:20.1},{&quot;2026-07-05&quot;:20.1},{&quot;2026-07-06&quot;:20.1},{&quot;2026-07-07&quot;:20.1},{&quot;2026-07-08&quot;:20.1},{&quot;2026-07-09&quot;:20.21},{&quot;2026-07-10&quot;:20.22},{&quot;2026-07-11&quot;:20.22},{&quot;2026-07-12&quot;:20.22},{&quot;2026-07-13&quot;:20.47},{&quot;2026-07-14&quot;:20.47},{&quot;2026-07-15&quot;:20.47},{&quot;2026-07-16&quot;:20.47},{&quot;2026-07-17&quot;:20.47},{&quot;2026-07-18&quot;:20.31},{&quot;2026-07-19&quot;:20.31},{&quot;2026-07-20&quot;:20.31},{&quot;2026-07-21&quot;:20.31},{&quot;2026-07-22&quot;:20.31},{&quot;2026-07-23&quot;:20.31},{&quot;2026-07-24&quot;:20.31},{&quot;2026-07-25&quot;:20.31},{&quot;2026-07-26&quot;:20.31},{&quot;2026-07-27&quot;:20.31},{&quot;2026-07-28&quot;:20.31},{&quot;2026-07-29&quot;:20.31},{&quot;2026-07-30&quot;:20.31},{&quot;2026-07-31&quot;:20.31},{&quot;2026-08-01&quot;:20.31},{&quot;2026-08-02&quot;:20.31},{&quot;2026-08-03&quot;:20.31},{&quot;2026-08-04&quot;:20.31},{&quot;2026-08-05&quot;:20.31},{&quot;2026-08-07&quot;:20.39},{&quot;2026-08-08&quot;:20.39},{&quot;2026-08-09&quot;:20.49},{&quot;2026-08-10&quot;:20.49},{&quot;2026-08-11&quot;:20.49},{&quot;2026-08-12&quot;:20.49},{&quot;2026-08-13&quot;:20.49},{&quot;2026-08-14&quot;:20.58},{&quot;2026-08-15&quot;:20.58},{&quot;2026-08-16&quot;:20.58},{&quot;2026-08-17&quot;:20.58},{&quot;2026-08-18&quot;:20.58},{&quot;2026-08-19&quot;:20.58},{&quot;2026-08-20&quot;:20.86},{&quot;2026-08-21&quot;:20.86},{&quot;2026-08-22&quot;:20.86},{&quot;2026-08-23&quot;:20.86},{&quot;2026-08-24&quot;:20.86},{&quot;2026-08-25&quot;:20.9},{&quot;2026-08-26&quot;:20.9},{&quot;2026-08-27&quot;:20.9},{&quot;2026-08-28&quot;:20.9},{&quot;2026-08-29&quot;:20.9},{&quot;2026-08-30&quot;:20.9},{&quot;2026-08-31&quot;:20.9},{&quot;2026-09-01&quot;:20.9},{&quot;2026-09-02&quot;:20.9},{&quot;2026-09-03&quot;:20.9},{&quot;2026-09-04&quot;:20.9},{&quot;2026-09-05&quot;:20.9},{&quot;2026-09-06&quot;:20.98},{&quot;2026-09-07&quot;:21.06},{&quot;2026-09-08&quot;:21.06},{&quot;2026-09-09&quot;:21.06},{&quot;2026-09-10&quot;:21.06},{&quot;2026-09-11&quot;:21.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:17.87},{&quot;2026-06-14&quot;:17.93},{&quot;2026-06-15&quot;:17.75},{&quot;2026-06-16&quot;:17.58},{&quot;2026-06-17&quot;:17.54},{&quot;2026-06-18&quot;:17.15},{&quot;2026-06-19&quot;:17.19},{&quot;2026-06-20&quot;:17.27},{&quot;2026-06-21&quot;:17.35},{&quot;2026-06-22&quot;:17.15},{&quot;2026-06-23&quot;:17.11},{&quot;2026-06-24&quot;:17.73},{&quot;2026-06-25&quot;:17.73},{&quot;2026-06-26&quot;:17.68},{&quot;2026-06-27&quot;:17.76},{&quot;2026-06-28&quot;:17.98},{&quot;2026-06-29&quot;:18.22},{&quot;2026-06-30&quot;:18.1},{&quot;2026-07-01&quot;:18.24},{&quot;2026-07-02&quot;:18.34},{&quot;2026-07-03&quot;:18.22},{&quot;2026-07-04&quot;:18.2},{&quot;2026-07-05&quot;:18.2},{&quot;2026-07-06&quot;:18.16},{&quot;2026-07-07&quot;:17.99},{&quot;2026-07-08&quot;:17.9},{&quot;2026-07-09&quot;:17.68},{&quot;2026-07-10&quot;:17.68},{&quot;2026-07-11&quot;:17.57},{&quot;2026-07-12&quot;:17.57},{&quot;2026-07-13&quot;:17.57},{&quot;2026-07-14&quot;:17.57},{&quot;2026-07-15&quot;:17.51},{&quot;2026-07-16&quot;:17.49},{&quot;2026-07-17&quot;:17.49},{&quot;2026-07-18&quot;:17.49},{&quot;2026-07-19&quot;:17.47},{&quot;2026-07-20&quot;:17.47},{&quot;2026-07-21&quot;:17.47},{&quot;2026-07-22&quot;:17.46},{&quot;2026-07-23&quot;:17.44},{&quot;2026-07-24&quot;:17.34},{&quot;2026-07-25&quot;:17.21},{&quot;2026-07-26&quot;:17.21},{&quot;2026-07-27&quot;:17.21},{&quot;2026-07-28&quot;:17.25},{&quot;2026-07-29&quot;:17.25},{&quot;2026-07-30&quot;:16.78},{&quot;2026-07-31&quot;:16.78},{&quot;2026-08-01&quot;:16.78},{&quot;2026-08-02&quot;:16.58},{&quot;2026-08-03&quot;:16.67},{&quot;2026-08-04&quot;:16.53},{&quot;2026-08-05&quot;:16.36},{&quot;2026-08-07&quot;:15.59},{&quot;2026-08-08&quot;:15.36},{&quot;2026-08-09&quot;:15.29},{&quot;2026-08-10&quot;:15.18},{&quot;2026-08-11&quot;:15.1},{&quot;2026-08-12&quot;:15.04},{&quot;2026-08-13&quot;:15.07},{&quot;2026-08-14&quot;:15.37},{&quot;2026-08-15&quot;:15.37},{&quot;2026-08-16&quot;:15.13},{&quot;2026-08-17&quot;:15.18},{&quot;2026-08-18&quot;:15.18},{&quot;2026-08-19&quot;:15.17},{&quot;2026-08-20&quot;:16.11},{&quot;2026-08-21&quot;:15.99},{&quot;2026-08-22&quot;:15.99},{&quot;2026-08-23&quot;:16.39},{&quot;2026-08-24&quot;:16.16},{&quot;2026-08-25&quot;:16.23},{&quot;2026-08-26&quot;:16.15},{&quot;2026-08-27&quot;:16.18},{&quot;2026-08-28&quot;:16.27},{&quot;2026-08-29&quot;:16.27},{&quot;2026-08-30&quot;:16.95},{&quot;2026-08-31&quot;:16.72},{&quot;2026-09-01&quot;:16.94},{&quot;2026-09-02&quot;:16.08},{&quot;2026-09-03&quot;:16.38},{&quot;2026-09-04&quot;:16.66},{&quot;2026-09-05&quot;:16.72},{&quot;2026-09-06&quot;:16.63},{&quot;2026-09-07&quot;:16.75},{&quot;2026-09-08&quot;:16.86},{&quot;2026-09-09&quot;:17.16},{&quot;2026-09-10&quot;:17.2},{&quot;2026-09-11&quot;:17.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="16272"
  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-voc 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">
            Umbris, Fear Manifest
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Umbris, Fear Manifest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/a/7aead6a8-bada-42cf-b7cc-0b730f564582.jpg?1783924994" />

        <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">
            Umbris, Fear Manifest
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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="Umbris, Fear Manifest" src="https://cards.scryfall.io/large/front/7/a/7aead6a8-bada-42cf-b7cc-0b730f564582.jpg?1783924994" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:12.57},{&quot;2026-06-10&quot;:12.44},{&quot;2026-06-11&quot;:12.44},{&quot;2026-06-12&quot;:12.44},{&quot;2026-06-13&quot;:12.44},{&quot;2026-06-14&quot;:12.41},{&quot;2026-06-15&quot;:12.49},{&quot;2026-06-16&quot;:12.33},{&quot;2026-06-17&quot;:12.32},{&quot;2026-06-18&quot;:12.32},{&quot;2026-06-19&quot;:12.33},{&quot;2026-06-20&quot;:12.33},{&quot;2026-06-21&quot;:12.31},{&quot;2026-06-22&quot;:12.31},{&quot;2026-06-24&quot;:11.53},{&quot;2026-06-25&quot;:11.6},{&quot;2026-06-26&quot;:11.6},{&quot;2026-06-27&quot;:11.7},{&quot;2026-06-28&quot;:11.7},{&quot;2026-06-29&quot;:11.7},{&quot;2026-06-30&quot;:11.7},{&quot;2026-07-01&quot;:11.7},{&quot;2026-07-02&quot;:11.47},{&quot;2026-07-03&quot;:11.79},{&quot;2026-07-04&quot;:11.86},{&quot;2026-07-05&quot;:11.91},{&quot;2026-07-06&quot;:11.92},{&quot;2026-07-07&quot;:11.93},{&quot;2026-07-08&quot;:11.94},{&quot;2026-07-09&quot;:11.94},{&quot;2026-07-10&quot;:11.99},{&quot;2026-07-11&quot;:12.04},{&quot;2026-07-12&quot;:12.04},{&quot;2026-07-13&quot;:12.05},{&quot;2026-07-14&quot;:12.05},{&quot;2026-07-15&quot;:12.02},{&quot;2026-07-16&quot;:12.02},{&quot;2026-07-17&quot;:12.02},{&quot;2026-07-18&quot;:12.02},{&quot;2026-07-19&quot;:11.93},{&quot;2026-07-20&quot;:11.93},{&quot;2026-07-21&quot;:11.93},{&quot;2026-07-23&quot;:11.88},{&quot;2026-07-25&quot;:11.86},{&quot;2026-07-26&quot;:11.86},{&quot;2026-07-27&quot;:11.92},{&quot;2026-07-29&quot;:11.9},{&quot;2026-07-30&quot;:11.97},{&quot;2026-07-31&quot;:12.08},{&quot;2026-08-01&quot;:12.08},{&quot;2026-08-02&quot;:12.08},{&quot;2026-08-03&quot;:12.04},{&quot;2026-08-04&quot;:12.14},{&quot;2026-08-05&quot;:12.14},{&quot;2026-08-07&quot;:12.08},{&quot;2026-08-08&quot;:12.06},{&quot;2026-08-09&quot;:12.06},{&quot;2026-08-10&quot;:12.06},{&quot;2026-08-11&quot;:12.06},{&quot;2026-08-12&quot;:12.06},{&quot;2026-08-13&quot;:12.07},{&quot;2026-08-14&quot;:12.07},{&quot;2026-08-15&quot;:12.07},{&quot;2026-08-16&quot;:12.07},{&quot;2026-08-17&quot;:11.98},{&quot;2026-08-18&quot;:11.98},{&quot;2026-08-19&quot;:12.32},{&quot;2026-08-20&quot;:12.32},{&quot;2026-08-21&quot;:12.34},{&quot;2026-08-22&quot;:12.32},{&quot;2026-08-23&quot;:12.32},{&quot;2026-08-24&quot;:12.46},{&quot;2026-08-25&quot;:12.46},{&quot;2026-08-26&quot;:12.43},{&quot;2026-08-27&quot;:12.32},{&quot;2026-08-28&quot;:12.27},{&quot;2026-08-29&quot;:12.27},{&quot;2026-08-30&quot;:12.53},{&quot;2026-08-31&quot;:12.53},{&quot;2026-09-01&quot;:12.53},{&quot;2026-09-02&quot;:12.39},{&quot;2026-09-03&quot;:12.37},{&quot;2026-09-04&quot;:12.37},{&quot;2026-09-05&quot;:12.37},{&quot;2026-09-06&quot;:12.58},{&quot;2026-09-07&quot;:12.58},{&quot;2026-09-08&quot;:12.42},{&quot;2026-09-09&quot;:12.42},{&quot;2026-09-10&quot;:12.46},{&quot;2026-09-11&quot;:12.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="28377"
  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">
            Winged Boots
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $7.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="Winged Boots" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d1aa5f8a-e965-45db-8957-f5c3fe3f2ebb.jpg?1783926251" />

        <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">
            Winged Boots
        </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 — 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><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="Winged Boots" src="https://cards.scryfall.io/large/front/d/1/d1aa5f8a-e965-45db-8957-f5c3fe3f2ebb.jpg?1783926251" />
    </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.85
              </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">$3.80</span>
              <span class="text-xs text-grey-text">Credit: $4.94</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:10.32},{&quot;2026-06-11&quot;:10.16},{&quot;2026-06-12&quot;:9.92},{&quot;2026-06-13&quot;:9.98},{&quot;2026-06-14&quot;:9.39},{&quot;2026-06-15&quot;:9.39},{&quot;2026-06-16&quot;:9.43},{&quot;2026-06-17&quot;:9.43},{&quot;2026-06-18&quot;:9.3},{&quot;2026-06-19&quot;:9.42},{&quot;2026-06-20&quot;:9.36},{&quot;2026-06-21&quot;:9.46},{&quot;2026-06-22&quot;:9.71},{&quot;2026-06-23&quot;:9.65},{&quot;2026-06-24&quot;:9.71},{&quot;2026-06-25&quot;:9.67},{&quot;2026-06-26&quot;:9.61},{&quot;2026-06-27&quot;:9.53},{&quot;2026-06-28&quot;:9.53},{&quot;2026-06-29&quot;:9.62},{&quot;2026-06-30&quot;:9.72},{&quot;2026-07-01&quot;:9.5},{&quot;2026-07-02&quot;:9.49},{&quot;2026-07-03&quot;:9.41},{&quot;2026-07-04&quot;:9.5},{&quot;2026-07-05&quot;:9.5},{&quot;2026-07-06&quot;:9.5},{&quot;2026-07-07&quot;:9.62},{&quot;2026-07-08&quot;:9.54},{&quot;2026-07-09&quot;:9.65},{&quot;2026-07-10&quot;:9.66},{&quot;2026-07-11&quot;:9.66},{&quot;2026-07-12&quot;:9.73},{&quot;2026-07-13&quot;:9.75},{&quot;2026-07-14&quot;:9.78},{&quot;2026-07-15&quot;:9.76},{&quot;2026-07-16&quot;:9.7},{&quot;2026-07-17&quot;:9.7},{&quot;2026-07-18&quot;:9.63},{&quot;2026-07-19&quot;:9.63},{&quot;2026-07-20&quot;:9.76},{&quot;2026-07-21&quot;:9.68},{&quot;2026-07-23&quot;:9.82},{&quot;2026-07-25&quot;:9.82},{&quot;2026-07-26&quot;:9.82},{&quot;2026-07-27&quot;:9.81},{&quot;2026-07-29&quot;:9.85},{&quot;2026-07-30&quot;:9.88},{&quot;2026-07-31&quot;:9.8},{&quot;2026-08-01&quot;:9.8},{&quot;2026-08-02&quot;:9.8},{&quot;2026-08-03&quot;:9.8},{&quot;2026-08-04&quot;:9.73},{&quot;2026-08-05&quot;:9.73},{&quot;2026-08-07&quot;:9.73},{&quot;2026-08-08&quot;:9.73},{&quot;2026-08-09&quot;:9.67},{&quot;2026-08-10&quot;:9.57},{&quot;2026-08-11&quot;:9.57},{&quot;2026-08-12&quot;:9.53},{&quot;2026-08-13&quot;:9.54},{&quot;2026-08-14&quot;:9.52},{&quot;2026-08-15&quot;:9.36},{&quot;2026-08-16&quot;:9.36},{&quot;2026-08-17&quot;:9.26},{&quot;2026-08-18&quot;:9.25},{&quot;2026-08-19&quot;:9.28},{&quot;2026-08-20&quot;:9.28},{&quot;2026-08-21&quot;:9.22},{&quot;2026-08-22&quot;:9.26},{&quot;2026-08-23&quot;:9.26},{&quot;2026-08-24&quot;:9.26},{&quot;2026-08-25&quot;:9.26},{&quot;2026-08-26&quot;:9.15},{&quot;2026-08-27&quot;:9.22},{&quot;2026-08-28&quot;:9.01},{&quot;2026-08-29&quot;:9.01},{&quot;2026-08-30&quot;:8.8},{&quot;2026-08-31&quot;:8.8},{&quot;2026-09-01&quot;:8.8},{&quot;2026-09-02&quot;:8.9},{&quot;2026-09-03&quot;:8.9},{&quot;2026-09-04&quot;:8.82},{&quot;2026-09-05&quot;:8.82},{&quot;2026-09-06&quot;:8.82},{&quot;2026-09-07&quot;:8.67},{&quot;2026-09-08&quot;:8.45},{&quot;2026-09-09&quot;:8.29},{&quot;2026-09-10&quot;:8.14},{&quot;2026-09-11&quot;:7.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="25766"
  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-ema 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">
            Relic of Progenitus
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Relic of Progenitus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/3/436cd66c-0622-43cd-8748-af4d21a2db3f.jpg?1783937543" />

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Relic of Progenitus" src="https://cards.scryfall.io/large/front/4/3/436cd66c-0622-43cd-8748-af4d21a2db3f.jpg?1783937543" />
    </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.27
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $8.35
              </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">$7.00</span>
              <span class="text-xs text-grey-text">Credit: $9.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-10&quot;:9.07},{&quot;2026-06-11&quot;:9.07},{&quot;2026-06-12&quot;:9.07},{&quot;2026-06-13&quot;:9.07},{&quot;2026-06-14&quot;:9.07},{&quot;2026-06-15&quot;:9.07},{&quot;2026-06-16&quot;:9.07},{&quot;2026-06-17&quot;:9.07},{&quot;2026-06-18&quot;:9.07},{&quot;2026-06-19&quot;:9.07},{&quot;2026-06-20&quot;:9.07},{&quot;2026-06-21&quot;:9.07},{&quot;2026-06-22&quot;:9.07},{&quot;2026-06-23&quot;:9.07},{&quot;2026-06-24&quot;:9.07},{&quot;2026-06-25&quot;:9.07},{&quot;2026-06-26&quot;:9.07},{&quot;2026-06-27&quot;:9.07},{&quot;2026-06-28&quot;:9.07},{&quot;2026-06-29&quot;:9.07},{&quot;2026-06-30&quot;:9.07},{&quot;2026-07-01&quot;:9.07},{&quot;2026-07-02&quot;:9.07},{&quot;2026-07-03&quot;:9.07},{&quot;2026-07-04&quot;:9.07},{&quot;2026-07-05&quot;:9.07},{&quot;2026-07-06&quot;:9.07},{&quot;2026-07-07&quot;:9.07},{&quot;2026-07-08&quot;:9.07},{&quot;2026-07-09&quot;:9.07},{&quot;2026-07-10&quot;:9.07},{&quot;2026-07-11&quot;:9.07},{&quot;2026-07-12&quot;:9.07},{&quot;2026-07-13&quot;:9.07},{&quot;2026-07-14&quot;:9.07},{&quot;2026-07-15&quot;:9.15},{&quot;2026-07-16&quot;:9.15},{&quot;2026-07-17&quot;:9.15},{&quot;2026-07-18&quot;:9.15},{&quot;2026-07-19&quot;:9.15},{&quot;2026-07-20&quot;:9.15},{&quot;2026-07-21&quot;:9.15},{&quot;2026-07-23&quot;:9.15},{&quot;2026-07-25&quot;:9.15},{&quot;2026-07-26&quot;:9.15},{&quot;2026-07-27&quot;:9.15},{&quot;2026-07-29&quot;:9.14},{&quot;2026-07-30&quot;:9.14},{&quot;2026-07-31&quot;:9.14},{&quot;2026-08-01&quot;:9.14},{&quot;2026-08-02&quot;:9.14},{&quot;2026-08-03&quot;:8.83},{&quot;2026-08-04&quot;:8.83},{&quot;2026-08-05&quot;:9.01},{&quot;2026-08-07&quot;:9.01},{&quot;2026-08-08&quot;:9.01},{&quot;2026-08-09&quot;:9.01},{&quot;2026-08-10&quot;:8.84},{&quot;2026-08-11&quot;:8.84},{&quot;2026-08-12&quot;:8.84},{&quot;2026-08-13&quot;:8.83},{&quot;2026-08-14&quot;:8.83},{&quot;2026-08-15&quot;:8.83},{&quot;2026-08-16&quot;:8.83},{&quot;2026-08-17&quot;:8.83},{&quot;2026-08-18&quot;:8.83},{&quot;2026-08-19&quot;:8.83},{&quot;2026-08-20&quot;:8.83},{&quot;2026-08-21&quot;:8.8},{&quot;2026-08-22&quot;:8.8},{&quot;2026-08-23&quot;:8.8},{&quot;2026-08-24&quot;:8.8},{&quot;2026-08-25&quot;:8.8},{&quot;2026-08-26&quot;:8.8},{&quot;2026-08-27&quot;:8.8},{&quot;2026-08-28&quot;:8.71},{&quot;2026-08-29&quot;:8.71},{&quot;2026-08-30&quot;:8.71},{&quot;2026-08-31&quot;:8.71},{&quot;2026-09-01&quot;:8.71},{&quot;2026-09-02&quot;:8.46},{&quot;2026-09-03&quot;:8.46},{&quot;2026-09-04&quot;:8.42},{&quot;2026-09-05&quot;:8.42},{&quot;2026-09-06&quot;:8.42},{&quot;2026-09-07&quot;:8.37},{&quot;2026-09-08&quot;:8.42},{&quot;2026-09-09&quot;:8.3},{&quot;2026-09-10&quot;:8.3},{&quot;2026-09-11&quot;:8.35}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.84},{&quot;2026-06-11&quot;:5.84},{&quot;2026-06-12&quot;:5.77},{&quot;2026-06-13&quot;:5.77},{&quot;2026-06-14&quot;:6.09},{&quot;2026-06-15&quot;:6.06},{&quot;2026-06-16&quot;:6.01},{&quot;2026-06-17&quot;:6.01},{&quot;2026-06-18&quot;:6.35},{&quot;2026-06-19&quot;:6.35},{&quot;2026-06-20&quot;:6.35},{&quot;2026-06-21&quot;:6.35},{&quot;2026-06-22&quot;:6.43},{&quot;2026-06-23&quot;:6.43},{&quot;2026-06-24&quot;:6.43},{&quot;2026-06-25&quot;:6.47},{&quot;2026-06-26&quot;:6.47},{&quot;2026-06-27&quot;:6.49},{&quot;2026-06-28&quot;:6.56},{&quot;2026-06-29&quot;:6.56},{&quot;2026-06-30&quot;:6.56},{&quot;2026-07-01&quot;:6.56},{&quot;2026-07-02&quot;:6.49},{&quot;2026-07-03&quot;:6.49},{&quot;2026-07-04&quot;:6.64},{&quot;2026-07-05&quot;:6.79},{&quot;2026-07-06&quot;:6.68},{&quot;2026-07-07&quot;:6.77},{&quot;2026-07-08&quot;:6.79},{&quot;2026-07-09&quot;:6.83},{&quot;2026-07-10&quot;:6.86},{&quot;2026-07-11&quot;:6.86},{&quot;2026-07-12&quot;:6.86},{&quot;2026-07-13&quot;:6.86},{&quot;2026-07-14&quot;:6.86},{&quot;2026-07-15&quot;:6.9},{&quot;2026-07-16&quot;:6.9},{&quot;2026-07-17&quot;:6.9},{&quot;2026-07-18&quot;:7.2},{&quot;2026-07-19&quot;:7.2},{&quot;2026-07-20&quot;:7.13},{&quot;2026-07-21&quot;:7.13},{&quot;2026-07-23&quot;:7.13},{&quot;2026-07-25&quot;:7.01},{&quot;2026-07-26&quot;:6.98},{&quot;2026-07-27&quot;:6.98},{&quot;2026-07-29&quot;:6.83},{&quot;2026-07-30&quot;:6.91},{&quot;2026-07-31&quot;:6.74},{&quot;2026-08-01&quot;:6.72},{&quot;2026-08-02&quot;:6.6},{&quot;2026-08-03&quot;:6.6},{&quot;2026-08-04&quot;:6.6},{&quot;2026-08-05&quot;:6.6},{&quot;2026-08-07&quot;:6.61},{&quot;2026-08-08&quot;:6.61},{&quot;2026-08-09&quot;:6.73},{&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.67},{&quot;2026-08-14&quot;:6.48},{&quot;2026-08-15&quot;:6.5},{&quot;2026-08-16&quot;:6.57},{&quot;2026-08-17&quot;:6.37},{&quot;2026-08-18&quot;:6.37},{&quot;2026-08-19&quot;:6.48},{&quot;2026-08-20&quot;:6.48},{&quot;2026-08-21&quot;:6.51},{&quot;2026-08-22&quot;:6.52},{&quot;2026-08-23&quot;:6.52},{&quot;2026-08-24&quot;:6.74},{&quot;2026-08-25&quot;:6.74},{&quot;2026-08-26&quot;:6.69},{&quot;2026-08-27&quot;:6.7},{&quot;2026-08-28&quot;:6.7},{&quot;2026-08-29&quot;:6.7},{&quot;2026-08-30&quot;:6.7},{&quot;2026-08-31&quot;:6.7},{&quot;2026-09-01&quot;:6.7},{&quot;2026-09-02&quot;:6.95},{&quot;2026-09-03&quot;:6.95},{&quot;2026-09-04&quot;:7.16},{&quot;2026-09-05&quot;:7.19},{&quot;2026-09-06&quot;:7.19},{&quot;2026-09-07&quot;:7.39},{&quot;2026-09-08&quot;:7.39},{&quot;2026-09-09&quot;:7.5},{&quot;2026-09-10&quot;:7.34},{&quot;2026-09-11&quot;:7.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="89410"
  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-znr 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">
            Maddening Cacophony
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Maddening Cacophony" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/0/10a79733-702c-4611-b073-71db7f1158b2.jpg?1783929393" />

        <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">
            Maddening Cacophony
        </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-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="Maddening Cacophony" src="https://cards.scryfall.io/large/front/1/0/10a79733-702c-4611-b073-71db7f1158b2.jpg?1783929393" />
    </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.27
              </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">
                $6.63
              </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.30</span>
              <span class="text-xs text-grey-text">Credit: $2.99</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.72},{&quot;2026-06-14&quot;:7.66},{&quot;2026-06-15&quot;:7.66},{&quot;2026-06-16&quot;:7.57},{&quot;2026-06-17&quot;:7.62},{&quot;2026-06-18&quot;:7.65},{&quot;2026-06-19&quot;:7.6},{&quot;2026-06-20&quot;:7.6},{&quot;2026-06-21&quot;:7.51},{&quot;2026-06-22&quot;:7.51},{&quot;2026-06-23&quot;:7.49},{&quot;2026-06-24&quot;:7.49},{&quot;2026-06-25&quot;:7.45},{&quot;2026-06-26&quot;:7.38},{&quot;2026-06-27&quot;:7.35},{&quot;2026-06-28&quot;:7.32},{&quot;2026-06-29&quot;:7.32},{&quot;2026-06-30&quot;:7.32},{&quot;2026-07-01&quot;:7.24},{&quot;2026-07-02&quot;:7.24},{&quot;2026-07-03&quot;:7.24},{&quot;2026-07-04&quot;:7.24},{&quot;2026-07-05&quot;:7.24},{&quot;2026-07-06&quot;:7.24},{&quot;2026-07-07&quot;:7.24},{&quot;2026-07-08&quot;:7.24},{&quot;2026-07-09&quot;:7.21},{&quot;2026-07-10&quot;:7.17},{&quot;2026-07-11&quot;:7.17},{&quot;2026-07-12&quot;:7.17},{&quot;2026-07-13&quot;:7.17},{&quot;2026-07-14&quot;:7.17},{&quot;2026-07-15&quot;:7.17},{&quot;2026-07-16&quot;:7.15},{&quot;2026-07-17&quot;:7.1},{&quot;2026-07-18&quot;:7.07},{&quot;2026-07-19&quot;:6.87},{&quot;2026-07-20&quot;:6.8},{&quot;2026-07-21&quot;:6.8},{&quot;2026-07-22&quot;:6.8},{&quot;2026-07-23&quot;:6.8},{&quot;2026-07-24&quot;:6.8},{&quot;2026-07-25&quot;:6.8},{&quot;2026-07-26&quot;:6.8},{&quot;2026-07-27&quot;:6.8},{&quot;2026-07-28&quot;:6.8},{&quot;2026-07-29&quot;:6.8},{&quot;2026-07-30&quot;:6.8},{&quot;2026-07-31&quot;:6.8},{&quot;2026-08-01&quot;:6.77},{&quot;2026-08-02&quot;:6.8},{&quot;2026-08-03&quot;:6.8},{&quot;2026-08-04&quot;:6.8},{&quot;2026-08-05&quot;:6.82},{&quot;2026-08-07&quot;:6.78},{&quot;2026-08-08&quot;:6.69},{&quot;2026-08-09&quot;:6.62},{&quot;2026-08-10&quot;:6.55},{&quot;2026-08-11&quot;:6.57},{&quot;2026-08-12&quot;:6.6},{&quot;2026-08-13&quot;:6.6},{&quot;2026-08-14&quot;:6.6},{&quot;2026-08-15&quot;:6.6},{&quot;2026-08-16&quot;:6.6},{&quot;2026-08-17&quot;:6.53},{&quot;2026-08-18&quot;:6.51},{&quot;2026-08-19&quot;:6.51},{&quot;2026-08-20&quot;:6.51},{&quot;2026-08-21&quot;:6.51},{&quot;2026-08-22&quot;:6.51},{&quot;2026-08-23&quot;:6.51},{&quot;2026-08-24&quot;:6.58},{&quot;2026-08-25&quot;:6.61},{&quot;2026-08-26&quot;:6.57},{&quot;2026-08-27&quot;:6.57},{&quot;2026-08-28&quot;:6.62},{&quot;2026-08-29&quot;:6.62},{&quot;2026-08-30&quot;:6.62},{&quot;2026-08-31&quot;:6.62},{&quot;2026-09-01&quot;:6.62},{&quot;2026-09-02&quot;:6.51},{&quot;2026-09-03&quot;:6.51},{&quot;2026-09-04&quot;:6.51},{&quot;2026-09-05&quot;:6.5},{&quot;2026-09-06&quot;:6.49},{&quot;2026-09-07&quot;:6.61},{&quot;2026-09-08&quot;:6.64},{&quot;2026-09-09&quot;:6.64},{&quot;2026-09-10&quot;:6.64},{&quot;2026-09-11&quot;:6.63}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.09},{&quot;2026-06-14&quot;:8.5},{&quot;2026-06-15&quot;:8.55},{&quot;2026-06-16&quot;:8.24},{&quot;2026-06-17&quot;:8.25},{&quot;2026-06-18&quot;:8.13},{&quot;2026-06-19&quot;:8.08},{&quot;2026-06-20&quot;:8.08},{&quot;2026-06-21&quot;:8.08},{&quot;2026-06-22&quot;:8.08},{&quot;2026-06-23&quot;:8.08},{&quot;2026-06-24&quot;:7.19},{&quot;2026-06-25&quot;:7.03},{&quot;2026-06-26&quot;:6.84},{&quot;2026-06-27&quot;:6.91},{&quot;2026-06-28&quot;:6.91},{&quot;2026-06-29&quot;:6.83},{&quot;2026-06-30&quot;:6.75},{&quot;2026-07-01&quot;:6.66},{&quot;2026-07-02&quot;:6.69},{&quot;2026-07-03&quot;:6.71},{&quot;2026-07-04&quot;:6.69},{&quot;2026-07-05&quot;:6.48},{&quot;2026-07-06&quot;:6.48},{&quot;2026-07-07&quot;:6.53},{&quot;2026-07-08&quot;:6.4},{&quot;2026-07-09&quot;:6.33},{&quot;2026-07-10&quot;:6.25},{&quot;2026-07-11&quot;:6.31},{&quot;2026-07-12&quot;:6.21},{&quot;2026-07-13&quot;:6.12},{&quot;2026-07-14&quot;:6.05},{&quot;2026-07-15&quot;:6.06},{&quot;2026-07-16&quot;:5.95},{&quot;2026-07-17&quot;:6.03},{&quot;2026-07-18&quot;:5.98},{&quot;2026-07-19&quot;:5.95},{&quot;2026-07-20&quot;:5.93},{&quot;2026-07-21&quot;:6.08},{&quot;2026-07-22&quot;:6.06},{&quot;2026-07-23&quot;:6.13},{&quot;2026-07-24&quot;:6.27},{&quot;2026-07-25&quot;:6.2},{&quot;2026-07-26&quot;:6.07},{&quot;2026-07-27&quot;:6.05},{&quot;2026-07-28&quot;:6.14},{&quot;2026-07-29&quot;:6.04},{&quot;2026-07-30&quot;:6.04},{&quot;2026-07-31&quot;:6.1},{&quot;2026-08-01&quot;:6.16},{&quot;2026-08-02&quot;:6.1},{&quot;2026-08-03&quot;:6.12},{&quot;2026-08-04&quot;:6.02},{&quot;2026-08-05&quot;:6.02},{&quot;2026-08-07&quot;:5.96},{&quot;2026-08-08&quot;:5.95},{&quot;2026-08-09&quot;:6.0},{&quot;2026-08-10&quot;:6.05},{&quot;2026-08-11&quot;:6.03},{&quot;2026-08-12&quot;:6.03},{&quot;2026-08-13&quot;:6.1},{&quot;2026-08-14&quot;:6.16},{&quot;2026-08-15&quot;:6.28},{&quot;2026-08-16&quot;:6.16},{&quot;2026-08-17&quot;:5.97},{&quot;2026-08-18&quot;:5.86},{&quot;2026-08-19&quot;:5.85},{&quot;2026-08-20&quot;:5.91},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:6.08},{&quot;2026-08-23&quot;:6.11},{&quot;2026-08-24&quot;:6.05},{&quot;2026-08-25&quot;:6.03},{&quot;2026-08-26&quot;:6.09},{&quot;2026-08-27&quot;:6.01},{&quot;2026-08-28&quot;:6.04},{&quot;2026-08-29&quot;:6.04},{&quot;2026-08-30&quot;:6.38},{&quot;2026-08-31&quot;:6.53},{&quot;2026-09-01&quot;:6.78},{&quot;2026-09-02&quot;:6.81},{&quot;2026-09-03&quot;:6.83},{&quot;2026-09-04&quot;:6.81},{&quot;2026-09-05&quot;:6.91},{&quot;2026-09-06&quot;:6.85},{&quot;2026-09-07&quot;:7.07},{&quot;2026-09-08&quot;:7.34},{&quot;2026-09-09&quot;:7.41},{&quot;2026-09-10&quot;:7.32},{&quot;2026-09-11&quot;:7.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34957"
  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">
            Hullbreaker Horror
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Hullbreaker Horror
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hullbreaker Horror" src="https://cards.scryfall.io/large/front/4/b/4b546bcf-2e86-42af-bf32-81c7fd36ef8c.jpg?1783924891" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </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.79
              </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">$5.30</span>
              <span class="text-xs text-grey-text">Credit: $6.89</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;:8.67},{&quot;2026-06-14&quot;:8.67},{&quot;2026-06-15&quot;:8.67},{&quot;2026-06-16&quot;:8.67},{&quot;2026-06-17&quot;:8.56},{&quot;2026-06-18&quot;:8.56},{&quot;2026-06-19&quot;:8.91},{&quot;2026-06-20&quot;:8.91},{&quot;2026-06-21&quot;:8.91},{&quot;2026-06-22&quot;:8.91},{&quot;2026-06-23&quot;:8.91},{&quot;2026-06-24&quot;:9.05},{&quot;2026-06-25&quot;:9.19},{&quot;2026-06-26&quot;:9.18},{&quot;2026-06-27&quot;:9.18},{&quot;2026-06-28&quot;:9.18},{&quot;2026-06-29&quot;:9.18},{&quot;2026-06-30&quot;:9.18},{&quot;2026-07-01&quot;:9.18},{&quot;2026-07-02&quot;:9.18},{&quot;2026-07-03&quot;:9.18},{&quot;2026-07-04&quot;:9.38},{&quot;2026-07-05&quot;:9.38},{&quot;2026-07-06&quot;:9.38},{&quot;2026-07-07&quot;:9.38},{&quot;2026-07-08&quot;:9.38},{&quot;2026-07-09&quot;:9.26},{&quot;2026-07-10&quot;:9.26},{&quot;2026-07-11&quot;:9.26},{&quot;2026-07-12&quot;:9.26},{&quot;2026-07-13&quot;:9.26},{&quot;2026-07-14&quot;:9.26},{&quot;2026-07-15&quot;:9.26},{&quot;2026-07-16&quot;:9.26},{&quot;2026-07-17&quot;:9.24},{&quot;2026-07-18&quot;:9.24},{&quot;2026-07-19&quot;:9.24},{&quot;2026-07-20&quot;:9.24},{&quot;2026-07-21&quot;:9.33},{&quot;2026-07-22&quot;:9.33},{&quot;2026-07-23&quot;:7.53},{&quot;2026-07-24&quot;:7.61},{&quot;2026-07-25&quot;:7.32},{&quot;2026-07-26&quot;:7.32},{&quot;2026-07-27&quot;:7.52},{&quot;2026-07-28&quot;:7.52},{&quot;2026-07-29&quot;:7.52},{&quot;2026-07-30&quot;:7.45},{&quot;2026-07-31&quot;:7.45},{&quot;2026-08-01&quot;:7.2},{&quot;2026-08-02&quot;:7.38},{&quot;2026-08-03&quot;:7.38},{&quot;2026-08-04&quot;:7.36},{&quot;2026-08-05&quot;:7.36},{&quot;2026-08-07&quot;:7.22},{&quot;2026-08-08&quot;:7.16},{&quot;2026-08-09&quot;:7.3},{&quot;2026-08-10&quot;:7.27},{&quot;2026-08-11&quot;:7.07},{&quot;2026-08-12&quot;:7.07},{&quot;2026-08-13&quot;:7.07},{&quot;2026-08-14&quot;:7.07},{&quot;2026-08-15&quot;:6.88},{&quot;2026-08-16&quot;:6.88},{&quot;2026-08-17&quot;:6.88},{&quot;2026-08-18&quot;:6.88},{&quot;2026-08-19&quot;:6.85},{&quot;2026-08-20&quot;:6.85},{&quot;2026-08-21&quot;:6.85},{&quot;2026-08-22&quot;:6.85},{&quot;2026-08-23&quot;:6.79},{&quot;2026-08-24&quot;:6.79},{&quot;2026-08-25&quot;:6.79},{&quot;2026-08-26&quot;:6.7},{&quot;2026-08-27&quot;:6.7},{&quot;2026-08-28&quot;:6.7},{&quot;2026-08-29&quot;:6.7},{&quot;2026-08-30&quot;:6.7},{&quot;2026-08-31&quot;:6.7},{&quot;2026-09-01&quot;:6.7},{&quot;2026-09-02&quot;:6.7},{&quot;2026-09-03&quot;:6.66},{&quot;2026-09-04&quot;:6.56},{&quot;2026-09-05&quot;:6.56},{&quot;2026-09-06&quot;:6.56},{&quot;2026-09-07&quot;:6.56},{&quot;2026-09-08&quot;:6.56},{&quot;2026-09-09&quot;:6.67},{&quot;2026-09-10&quot;:6.79},{&quot;2026-09-11&quot;:6.79}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.46},{&quot;2026-06-14&quot;:6.75},{&quot;2026-06-15&quot;:6.76},{&quot;2026-06-16&quot;:6.24},{&quot;2026-06-17&quot;:5.93},{&quot;2026-06-18&quot;:5.8},{&quot;2026-06-19&quot;:5.93},{&quot;2026-06-20&quot;:6.37},{&quot;2026-06-21&quot;:6.12},{&quot;2026-06-22&quot;:6.5},{&quot;2026-06-23&quot;:6.15},{&quot;2026-06-24&quot;:5.28},{&quot;2026-06-25&quot;:5.36},{&quot;2026-06-26&quot;:5.09},{&quot;2026-06-27&quot;:5.76},{&quot;2026-06-28&quot;:5.87},{&quot;2026-06-29&quot;:6.14},{&quot;2026-06-30&quot;:5.93},{&quot;2026-07-01&quot;:6.28},{&quot;2026-07-02&quot;:6.46},{&quot;2026-07-03&quot;:6.29},{&quot;2026-07-04&quot;:6.31},{&quot;2026-07-05&quot;:6.18},{&quot;2026-07-06&quot;:5.88},{&quot;2026-07-07&quot;:5.74},{&quot;2026-07-08&quot;:5.88},{&quot;2026-07-09&quot;:5.74},{&quot;2026-07-10&quot;:5.82},{&quot;2026-07-11&quot;:5.67},{&quot;2026-07-12&quot;:5.88},{&quot;2026-07-13&quot;:6.1},{&quot;2026-07-14&quot;:5.85},{&quot;2026-07-15&quot;:5.97},{&quot;2026-07-16&quot;:5.94},{&quot;2026-07-17&quot;:6.02},{&quot;2026-07-18&quot;:6.19},{&quot;2026-07-19&quot;:6.19},{&quot;2026-07-20&quot;:6.53},{&quot;2026-07-21&quot;:6.62},{&quot;2026-07-22&quot;:6.12},{&quot;2026-07-23&quot;:5.94},{&quot;2026-07-24&quot;:5.66},{&quot;2026-07-25&quot;:5.57},{&quot;2026-07-26&quot;:5.44},{&quot;2026-07-27&quot;:5.73},{&quot;2026-07-28&quot;:5.67},{&quot;2026-07-29&quot;:5.59},{&quot;2026-07-30&quot;:5.61},{&quot;2026-07-31&quot;:5.3},{&quot;2026-08-01&quot;:5.33},{&quot;2026-08-02&quot;:5.66},{&quot;2026-08-03&quot;:5.87},{&quot;2026-08-04&quot;:6.03},{&quot;2026-08-05&quot;:6.22},{&quot;2026-08-07&quot;:6.39},{&quot;2026-08-08&quot;:6.88},{&quot;2026-08-09&quot;:6.88},{&quot;2026-08-10&quot;:6.78},{&quot;2026-08-11&quot;:6.73},{&quot;2026-08-12&quot;:6.41},{&quot;2026-08-13&quot;:5.61},{&quot;2026-08-14&quot;:4.73},{&quot;2026-08-15&quot;:4.7},{&quot;2026-08-16&quot;:5.3},{&quot;2026-08-17&quot;:5.87},{&quot;2026-08-18&quot;:6.75},{&quot;2026-08-19&quot;:6.87},{&quot;2026-08-20&quot;:6.99},{&quot;2026-08-21&quot;:7.06},{&quot;2026-08-22&quot;:6.71},{&quot;2026-08-23&quot;:6.47},{&quot;2026-08-24&quot;:6.41},{&quot;2026-08-25&quot;:6.07},{&quot;2026-08-26&quot;:6.24},{&quot;2026-08-27&quot;:6.45},{&quot;2026-08-28&quot;:6.58},{&quot;2026-08-29&quot;:6.58},{&quot;2026-08-30&quot;:6.37},{&quot;2026-08-31&quot;:5.5},{&quot;2026-09-01&quot;:5.71},{&quot;2026-09-02&quot;:6.07},{&quot;2026-09-03&quot;:6.21},{&quot;2026-09-04&quot;:6.08},{&quot;2026-09-05&quot;:5.98},{&quot;2026-09-06&quot;:5.86},{&quot;2026-09-07&quot;:5.86},{&quot;2026-09-08&quot;:6.11},{&quot;2026-09-09&quot;:6.22},{&quot;2026-09-10&quot;:6.03},{&quot;2026-09-11&quot;:5.96}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49038"
  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">
            Profane Tutor
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Profane Tutor
        </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>
    </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="Profane Tutor" src="https://cards.scryfall.io/large/front/2/a/2afc6f7d-ab59-4d64-bd11-6bd0fd4bfcd2.jpg?1783926857" />
    </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.62
              </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">
                $5.17
              </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;:4.94},{&quot;2026-06-11&quot;:5.0},{&quot;2026-06-12&quot;:4.9},{&quot;2026-06-13&quot;:4.9},{&quot;2026-06-14&quot;:4.9},{&quot;2026-06-15&quot;:5.06},{&quot;2026-06-16&quot;:5.06},{&quot;2026-06-17&quot;:5.06},{&quot;2026-06-18&quot;:5.04},{&quot;2026-06-19&quot;:5.06},{&quot;2026-06-20&quot;:5.06},{&quot;2026-06-21&quot;:5.06},{&quot;2026-06-22&quot;:5.06},{&quot;2026-06-23&quot;:5.06},{&quot;2026-06-24&quot;:5.06},{&quot;2026-06-25&quot;:5.06},{&quot;2026-06-26&quot;:5.06},{&quot;2026-06-27&quot;:5.06},{&quot;2026-06-28&quot;:5.06},{&quot;2026-06-29&quot;:5.06},{&quot;2026-06-30&quot;:5.06},{&quot;2026-07-01&quot;:5.06},{&quot;2026-07-02&quot;:5.06},{&quot;2026-07-03&quot;:5.06},{&quot;2026-07-04&quot;:5.06},{&quot;2026-07-05&quot;:5.06},{&quot;2026-07-06&quot;:5.06},{&quot;2026-07-07&quot;:5.06},{&quot;2026-07-08&quot;:5.06},{&quot;2026-07-09&quot;:5.06},{&quot;2026-07-10&quot;:5.06},{&quot;2026-07-11&quot;:5.06},{&quot;2026-07-12&quot;:5.06},{&quot;2026-07-13&quot;:5.06},{&quot;2026-07-14&quot;:5.06},{&quot;2026-07-15&quot;:5.02},{&quot;2026-07-16&quot;:5.02},{&quot;2026-07-17&quot;:5.02},{&quot;2026-07-18&quot;:5.12},{&quot;2026-07-19&quot;:5.12},{&quot;2026-07-20&quot;:5.12},{&quot;2026-07-21&quot;:5.12},{&quot;2026-07-23&quot;:5.12},{&quot;2026-07-25&quot;:5.12},{&quot;2026-07-26&quot;:5.12},{&quot;2026-07-27&quot;:5.12},{&quot;2026-07-29&quot;:5.12},{&quot;2026-07-30&quot;:5.16},{&quot;2026-07-31&quot;:5.16},{&quot;2026-08-01&quot;:5.16},{&quot;2026-08-02&quot;:5.15},{&quot;2026-08-03&quot;:5.15},{&quot;2026-08-04&quot;:5.15},{&quot;2026-08-05&quot;:5.15},{&quot;2026-08-07&quot;:5.15},{&quot;2026-08-08&quot;:5.15},{&quot;2026-08-09&quot;:5.15},{&quot;2026-08-10&quot;:5.22},{&quot;2026-08-11&quot;:5.22},{&quot;2026-08-12&quot;:5.22},{&quot;2026-08-13&quot;:5.28},{&quot;2026-08-14&quot;:5.28},{&quot;2026-08-15&quot;:5.28},{&quot;2026-08-16&quot;:5.28},{&quot;2026-08-17&quot;:5.28},{&quot;2026-08-18&quot;:5.28},{&quot;2026-08-19&quot;:5.28},{&quot;2026-08-20&quot;:5.28},{&quot;2026-08-21&quot;:5.28},{&quot;2026-08-22&quot;:5.28},{&quot;2026-08-23&quot;:5.28},{&quot;2026-08-24&quot;:5.28},{&quot;2026-08-25&quot;:5.28},{&quot;2026-08-26&quot;:5.28},{&quot;2026-08-27&quot;:5.28},{&quot;2026-08-28&quot;:5.28},{&quot;2026-08-29&quot;:5.28},{&quot;2026-08-30&quot;:5.29},{&quot;2026-08-31&quot;:5.29},{&quot;2026-09-01&quot;:5.29},{&quot;2026-09-02&quot;:5.29},{&quot;2026-09-03&quot;:5.29},{&quot;2026-09-04&quot;:5.24},{&quot;2026-09-05&quot;:5.24},{&quot;2026-09-06&quot;:5.24},{&quot;2026-09-07&quot;:5.2},{&quot;2026-09-08&quot;:5.2},{&quot;2026-09-09&quot;:5.17},{&quot;2026-09-10&quot;:5.17},{&quot;2026-09-11&quot;:5.17}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.15},{&quot;2026-06-11&quot;:5.04},{&quot;2026-06-12&quot;:4.86},{&quot;2026-06-13&quot;:4.7},{&quot;2026-06-14&quot;:4.45},{&quot;2026-06-15&quot;:4.62},{&quot;2026-06-16&quot;:4.5},{&quot;2026-06-17&quot;:4.5},{&quot;2026-06-18&quot;:4.46},{&quot;2026-06-19&quot;:4.53},{&quot;2026-06-20&quot;:4.35},{&quot;2026-06-21&quot;:4.14},{&quot;2026-06-22&quot;:4.23},{&quot;2026-06-23&quot;:4.21},{&quot;2026-06-24&quot;:4.07},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:3.92},{&quot;2026-06-27&quot;:3.9},{&quot;2026-06-28&quot;:3.76},{&quot;2026-06-29&quot;:3.79},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.9},{&quot;2026-07-02&quot;:4.0},{&quot;2026-07-03&quot;:3.98},{&quot;2026-07-04&quot;:3.97},{&quot;2026-07-05&quot;:3.94},{&quot;2026-07-06&quot;:3.89},{&quot;2026-07-07&quot;:3.8},{&quot;2026-07-08&quot;:3.85},{&quot;2026-07-09&quot;:3.92},{&quot;2026-07-10&quot;:4.05},{&quot;2026-07-11&quot;:3.96},{&quot;2026-07-12&quot;:4.3},{&quot;2026-07-13&quot;:4.17},{&quot;2026-07-14&quot;:4.2},{&quot;2026-07-15&quot;:3.97},{&quot;2026-07-16&quot;:3.88},{&quot;2026-07-17&quot;:3.97},{&quot;2026-07-18&quot;:4.08},{&quot;2026-07-19&quot;:4.23},{&quot;2026-07-20&quot;:4.31},{&quot;2026-07-21&quot;:4.3},{&quot;2026-07-23&quot;:4.14},{&quot;2026-07-25&quot;:3.85},{&quot;2026-07-26&quot;:3.91},{&quot;2026-07-27&quot;:3.93},{&quot;2026-07-29&quot;:3.99},{&quot;2026-07-30&quot;:4.14},{&quot;2026-07-31&quot;:4.19},{&quot;2026-08-01&quot;:4.26},{&quot;2026-08-02&quot;:4.3},{&quot;2026-08-03&quot;:4.19},{&quot;2026-08-04&quot;:4.19},{&quot;2026-08-05&quot;:4.14},{&quot;2026-08-07&quot;:3.96},{&quot;2026-08-08&quot;:3.87},{&quot;2026-08-09&quot;:3.82},{&quot;2026-08-10&quot;:4.06},{&quot;2026-08-11&quot;:4.41},{&quot;2026-08-12&quot;:4.61},{&quot;2026-08-13&quot;:4.79},{&quot;2026-08-14&quot;:4.74},{&quot;2026-08-15&quot;:4.8},{&quot;2026-08-16&quot;:4.69},{&quot;2026-08-17&quot;:4.31},{&quot;2026-08-18&quot;:4.24},{&quot;2026-08-19&quot;:4.24},{&quot;2026-08-20&quot;:4.24},{&quot;2026-08-21&quot;:4.33},{&quot;2026-08-22&quot;:4.4},{&quot;2026-08-23&quot;:4.4},{&quot;2026-08-24&quot;:4.37},{&quot;2026-08-25&quot;:4.37},{&quot;2026-08-26&quot;:4.07},{&quot;2026-08-27&quot;:4.04},{&quot;2026-08-28&quot;:4.07},{&quot;2026-08-29&quot;:4.07},{&quot;2026-08-30&quot;:4.11},{&quot;2026-08-31&quot;:4.13},{&quot;2026-09-01&quot;:4.13},{&quot;2026-09-02&quot;:4.69},{&quot;2026-09-03&quot;:4.56},{&quot;2026-09-04&quot;:4.46},{&quot;2026-09-05&quot;:4.48},{&quot;2026-09-06&quot;:4.35},{&quot;2026-09-07&quot;:4.46},{&quot;2026-09-08&quot;:4.35},{&quot;2026-09-09&quot;:4.28},{&quot;2026-09-10&quot;:4.4},{&quot;2026-09-11&quot;:4.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="44284"
  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-m10 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">
            Whispersilk Cloak
        </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">
              ↑
              10%
            </span>

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

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

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

        <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">
            Whispersilk Cloak
        </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-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Whispersilk Cloak" src="https://cards.scryfall.io/large/front/c/b/cbb9465c-cea2-491f-a6d6-9022cb3e969d.jpg?1783942354" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $11.61
              </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-13&quot;:11.51},{&quot;2026-06-14&quot;:11.51},{&quot;2026-06-15&quot;:11.51},{&quot;2026-06-16&quot;:11.51},{&quot;2026-06-17&quot;:11.51},{&quot;2026-06-18&quot;:11.51},{&quot;2026-06-19&quot;:11.51},{&quot;2026-06-20&quot;:11.51},{&quot;2026-06-21&quot;:11.51},{&quot;2026-06-22&quot;:11.51},{&quot;2026-06-23&quot;:11.51},{&quot;2026-06-24&quot;:11.51},{&quot;2026-06-25&quot;:11.51},{&quot;2026-06-26&quot;:11.51},{&quot;2026-06-27&quot;:11.51},{&quot;2026-06-28&quot;:11.51},{&quot;2026-06-29&quot;:11.51},{&quot;2026-06-30&quot;:11.51},{&quot;2026-07-01&quot;:11.51},{&quot;2026-07-02&quot;:11.51},{&quot;2026-07-03&quot;:11.51},{&quot;2026-07-04&quot;:11.51},{&quot;2026-07-05&quot;:11.51},{&quot;2026-07-06&quot;:11.51},{&quot;2026-07-07&quot;:11.51},{&quot;2026-07-08&quot;:11.51},{&quot;2026-07-09&quot;:11.51},{&quot;2026-07-10&quot;:11.51},{&quot;2026-07-11&quot;:11.51},{&quot;2026-07-12&quot;:11.51},{&quot;2026-07-13&quot;:11.51},{&quot;2026-07-14&quot;:11.51},{&quot;2026-07-15&quot;:11.51},{&quot;2026-07-16&quot;:11.51},{&quot;2026-07-17&quot;:11.51},{&quot;2026-07-18&quot;:11.51},{&quot;2026-07-19&quot;:11.51},{&quot;2026-07-20&quot;:11.51},{&quot;2026-07-21&quot;:11.51},{&quot;2026-07-22&quot;:11.51},{&quot;2026-07-23&quot;:11.51},{&quot;2026-07-24&quot;:11.51},{&quot;2026-07-25&quot;:11.51},{&quot;2026-07-26&quot;:11.51},{&quot;2026-07-27&quot;:11.51},{&quot;2026-07-28&quot;:11.51},{&quot;2026-07-29&quot;:11.51},{&quot;2026-07-30&quot;:11.51},{&quot;2026-07-31&quot;:11.51},{&quot;2026-08-01&quot;:11.51},{&quot;2026-08-02&quot;:11.51},{&quot;2026-08-03&quot;:11.51},{&quot;2026-08-04&quot;:11.51},{&quot;2026-08-05&quot;:11.51},{&quot;2026-08-07&quot;:11.51},{&quot;2026-08-08&quot;:11.51},{&quot;2026-08-09&quot;:11.51},{&quot;2026-08-10&quot;:11.51},{&quot;2026-08-11&quot;:11.51},{&quot;2026-08-12&quot;:11.51},{&quot;2026-08-13&quot;:11.51},{&quot;2026-08-14&quot;:11.51},{&quot;2026-08-15&quot;:11.51},{&quot;2026-08-16&quot;:11.51},{&quot;2026-08-17&quot;:11.51},{&quot;2026-08-18&quot;:11.51},{&quot;2026-08-19&quot;:11.51},{&quot;2026-08-20&quot;:11.51},{&quot;2026-08-21&quot;:11.51},{&quot;2026-08-22&quot;:11.51},{&quot;2026-08-23&quot;:11.51},{&quot;2026-08-24&quot;:11.51},{&quot;2026-08-25&quot;:11.51},{&quot;2026-08-26&quot;:11.51},{&quot;2026-08-27&quot;:11.51},{&quot;2026-08-28&quot;:11.51},{&quot;2026-08-29&quot;:11.51},{&quot;2026-08-30&quot;:11.61},{&quot;2026-08-31&quot;:11.61},{&quot;2026-09-01&quot;:11.61},{&quot;2026-09-02&quot;:11.61},{&quot;2026-09-03&quot;:11.61},{&quot;2026-09-04&quot;:11.61},{&quot;2026-09-05&quot;:11.61},{&quot;2026-09-06&quot;:11.61},{&quot;2026-09-07&quot;:11.61},{&quot;2026-09-08&quot;:11.61},{&quot;2026-09-09&quot;:11.61},{&quot;2026-09-10&quot;:11.61},{&quot;2026-09-11&quot;:11.61}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.18},{&quot;2026-06-14&quot;:4.18},{&quot;2026-06-15&quot;:4.2},{&quot;2026-06-16&quot;:4.2},{&quot;2026-06-17&quot;:4.2},{&quot;2026-06-18&quot;:4.2},{&quot;2026-06-19&quot;:4.2},{&quot;2026-06-20&quot;:4.27},{&quot;2026-06-21&quot;:4.27},{&quot;2026-06-22&quot;:4.27},{&quot;2026-06-23&quot;:4.27},{&quot;2026-06-24&quot;:4.27},{&quot;2026-06-25&quot;:4.27},{&quot;2026-06-26&quot;:4.27},{&quot;2026-06-27&quot;:4.27},{&quot;2026-06-28&quot;:4.29},{&quot;2026-06-29&quot;:4.29},{&quot;2026-06-30&quot;:4.29},{&quot;2026-07-01&quot;:4.29},{&quot;2026-07-02&quot;:4.29},{&quot;2026-07-03&quot;:4.29},{&quot;2026-07-04&quot;:4.29},{&quot;2026-07-05&quot;:4.29},{&quot;2026-07-06&quot;:4.29},{&quot;2026-07-07&quot;:4.29},{&quot;2026-07-08&quot;:4.29},{&quot;2026-07-09&quot;:4.29},{&quot;2026-07-10&quot;:4.29},{&quot;2026-07-11&quot;:4.22},{&quot;2026-07-12&quot;:4.22},{&quot;2026-07-13&quot;:4.22},{&quot;2026-07-14&quot;:4.22},{&quot;2026-07-15&quot;:4.22},{&quot;2026-07-16&quot;:4.22},{&quot;2026-07-17&quot;:4.14},{&quot;2026-07-18&quot;:4.03},{&quot;2026-07-19&quot;:3.93},{&quot;2026-07-20&quot;:3.93},{&quot;2026-07-21&quot;:3.97},{&quot;2026-07-22&quot;:3.97},{&quot;2026-07-23&quot;:4.13},{&quot;2026-07-24&quot;:4.05},{&quot;2026-07-25&quot;:4.05},{&quot;2026-07-26&quot;:4.18},{&quot;2026-07-27&quot;:4.18},{&quot;2026-07-28&quot;:4.16},{&quot;2026-07-29&quot;:4.11},{&quot;2026-07-30&quot;:4.11},{&quot;2026-07-31&quot;:4.11},{&quot;2026-08-01&quot;:4.11},{&quot;2026-08-02&quot;:4.25},{&quot;2026-08-03&quot;:4.14},{&quot;2026-08-04&quot;:4.03},{&quot;2026-08-05&quot;:4.03},{&quot;2026-08-07&quot;:3.99},{&quot;2026-08-08&quot;:3.99},{&quot;2026-08-09&quot;:4.22},{&quot;2026-08-10&quot;:4.22},{&quot;2026-08-11&quot;:4.22},{&quot;2026-08-12&quot;:4.22},{&quot;2026-08-13&quot;:4.27},{&quot;2026-08-14&quot;:4.4},{&quot;2026-08-15&quot;:4.4},{&quot;2026-08-16&quot;:4.4},{&quot;2026-08-17&quot;:4.31},{&quot;2026-08-18&quot;:4.23},{&quot;2026-08-19&quot;:4.23},{&quot;2026-08-20&quot;:4.24},{&quot;2026-08-21&quot;:4.24},{&quot;2026-08-22&quot;:4.42},{&quot;2026-08-23&quot;:4.42},{&quot;2026-08-24&quot;:4.42},{&quot;2026-08-25&quot;:4.42},{&quot;2026-08-26&quot;:4.42},{&quot;2026-08-27&quot;:4.42},{&quot;2026-08-28&quot;:4.52},{&quot;2026-08-29&quot;:4.52},{&quot;2026-08-30&quot;:4.09},{&quot;2026-08-31&quot;:4.09},{&quot;2026-09-01&quot;:4.09},{&quot;2026-09-02&quot;:4.09},{&quot;2026-09-03&quot;:4.09},{&quot;2026-09-04&quot;:4.09},{&quot;2026-09-05&quot;:4.06},{&quot;2026-09-06&quot;:4.06},{&quot;2026-09-07&quot;:4.18},{&quot;2026-09-08&quot;:4.41},{&quot;2026-09-09&quot;:4.41},{&quot;2026-09-10&quot;:4.46},{&quot;2026-09-11&quot;:4.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83821"
  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-usg 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">
            Planar Void
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.40
          </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="Planar Void" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/0/b035c718-ac11-4c97-a9bb-0cd88dc71904.jpg?1783946340" />

        <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">
            Planar Void
        </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-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="Planar Void" src="https://cards.scryfall.io/large/front/b/0/b035c718-ac11-4c97-a9bb-0cd88dc71904.jpg?1783946340" />
    </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.40
              </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.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;:5.32},{&quot;2026-06-14&quot;:5.06},{&quot;2026-06-15&quot;:5.06},{&quot;2026-06-16&quot;:5.06},{&quot;2026-06-17&quot;:5.06},{&quot;2026-06-18&quot;:4.83},{&quot;2026-06-19&quot;:4.83},{&quot;2026-06-20&quot;:4.83},{&quot;2026-06-21&quot;:4.83},{&quot;2026-06-22&quot;:4.72},{&quot;2026-06-23&quot;:4.72},{&quot;2026-06-24&quot;:4.72},{&quot;2026-06-25&quot;:4.72},{&quot;2026-06-26&quot;:4.72},{&quot;2026-06-27&quot;:4.72},{&quot;2026-06-28&quot;:4.72},{&quot;2026-06-29&quot;:4.72},{&quot;2026-06-30&quot;:4.59},{&quot;2026-07-01&quot;:4.59},{&quot;2026-07-02&quot;:4.59},{&quot;2026-07-03&quot;:4.59},{&quot;2026-07-04&quot;:4.44},{&quot;2026-07-05&quot;:4.44},{&quot;2026-07-06&quot;:4.44},{&quot;2026-07-07&quot;:4.44},{&quot;2026-07-08&quot;:4.44},{&quot;2026-07-09&quot;:4.44},{&quot;2026-07-10&quot;:4.44},{&quot;2026-07-11&quot;:4.44},{&quot;2026-07-12&quot;:4.44},{&quot;2026-07-13&quot;:4.44},{&quot;2026-07-14&quot;:4.44},{&quot;2026-07-15&quot;:4.44},{&quot;2026-07-16&quot;:4.44},{&quot;2026-07-17&quot;:4.44},{&quot;2026-07-18&quot;:4.15},{&quot;2026-07-19&quot;:4.15},{&quot;2026-07-20&quot;:4.15},{&quot;2026-07-21&quot;:3.96},{&quot;2026-07-22&quot;:3.96},{&quot;2026-07-23&quot;:3.96},{&quot;2026-07-24&quot;:3.96},{&quot;2026-07-25&quot;:3.95},{&quot;2026-07-26&quot;:3.95},{&quot;2026-07-27&quot;:3.95},{&quot;2026-07-28&quot;:3.95},{&quot;2026-07-29&quot;:3.95},{&quot;2026-07-30&quot;:3.95},{&quot;2026-07-31&quot;:3.94},{&quot;2026-08-01&quot;:4.0},{&quot;2026-08-02&quot;:4.0},{&quot;2026-08-03&quot;:4.0},{&quot;2026-08-04&quot;:3.98},{&quot;2026-08-05&quot;:3.98},{&quot;2026-08-07&quot;:3.98},{&quot;2026-08-08&quot;:3.98},{&quot;2026-08-09&quot;:3.98},{&quot;2026-08-10&quot;:3.96},{&quot;2026-08-11&quot;:3.96},{&quot;2026-08-12&quot;:3.96},{&quot;2026-08-13&quot;:3.96},{&quot;2026-08-14&quot;:3.89},{&quot;2026-08-15&quot;:3.93},{&quot;2026-08-16&quot;:3.93},{&quot;2026-08-17&quot;:3.93},{&quot;2026-08-18&quot;:3.94},{&quot;2026-08-19&quot;:4.01},{&quot;2026-08-20&quot;:3.99},{&quot;2026-08-21&quot;:3.99},{&quot;2026-08-22&quot;:3.99},{&quot;2026-08-23&quot;:3.9},{&quot;2026-08-24&quot;:3.92},{&quot;2026-08-25&quot;:3.92},{&quot;2026-08-26&quot;:3.92},{&quot;2026-08-27&quot;:4.06},{&quot;2026-08-28&quot;:3.93},{&quot;2026-08-29&quot;:3.93},{&quot;2026-08-30&quot;:4.07},{&quot;2026-08-31&quot;:4.11},{&quot;2026-09-01&quot;:4.11},{&quot;2026-09-02&quot;:4.11},{&quot;2026-09-03&quot;:4.22},{&quot;2026-09-04&quot;:4.28},{&quot;2026-09-05&quot;:4.29},{&quot;2026-09-06&quot;:4.43},{&quot;2026-09-07&quot;:4.43},{&quot;2026-09-08&quot;:4.43},{&quot;2026-09-09&quot;:4.43},{&quot;2026-09-10&quot;:4.43},{&quot;2026-09-11&quot;:4.4}]}"
        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="295"
  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-afr 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">
            Tasha&#39;s Hideous Laughter
        </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">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.12
          </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="Tasha&#39;s Hideous Laughter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/4/c4932113-904f-427a-9566-509cc008f3ef.jpg?1783926505" />

        <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">
            Tasha&#39;s Hideous Laughter
        </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-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="Tasha&#39;s Hideous Laughter" src="https://cards.scryfall.io/large/front/c/4/c4932113-904f-427a-9566-509cc008f3ef.jpg?1783926505" />
    </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.12
              </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">
                $3.84
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.28},{&quot;2026-06-14&quot;:5.28},{&quot;2026-06-15&quot;:5.3},{&quot;2026-06-16&quot;:5.3},{&quot;2026-06-17&quot;:5.3},{&quot;2026-06-18&quot;:5.3},{&quot;2026-06-19&quot;:5.3},{&quot;2026-06-20&quot;:5.3},{&quot;2026-06-21&quot;:5.31},{&quot;2026-06-22&quot;:5.31},{&quot;2026-06-23&quot;:5.31},{&quot;2026-06-24&quot;:5.31},{&quot;2026-06-25&quot;:5.31},{&quot;2026-06-26&quot;:5.31},{&quot;2026-06-27&quot;:5.22},{&quot;2026-06-28&quot;:5.16},{&quot;2026-06-29&quot;:5.08},{&quot;2026-06-30&quot;:5.08},{&quot;2026-07-01&quot;:5.08},{&quot;2026-07-02&quot;:5.0},{&quot;2026-07-03&quot;:5.0},{&quot;2026-07-04&quot;:5.0},{&quot;2026-07-05&quot;:5.0},{&quot;2026-07-06&quot;:4.92},{&quot;2026-07-07&quot;:4.86},{&quot;2026-07-08&quot;:4.78},{&quot;2026-07-09&quot;:4.69},{&quot;2026-07-10&quot;:4.69},{&quot;2026-07-11&quot;:4.69},{&quot;2026-07-12&quot;:4.61},{&quot;2026-07-13&quot;:4.36},{&quot;2026-07-14&quot;:4.36},{&quot;2026-07-15&quot;:4.36},{&quot;2026-07-16&quot;:4.36},{&quot;2026-07-17&quot;:4.36},{&quot;2026-07-18&quot;:4.36},{&quot;2026-07-19&quot;:4.09},{&quot;2026-07-20&quot;:4.1},{&quot;2026-07-21&quot;:4.1},{&quot;2026-07-22&quot;:4.1},{&quot;2026-07-23&quot;:4.1},{&quot;2026-07-24&quot;:4.1},{&quot;2026-07-25&quot;:4.03},{&quot;2026-07-26&quot;:4.03},{&quot;2026-07-27&quot;:4.03},{&quot;2026-07-28&quot;:4.03},{&quot;2026-07-29&quot;:3.98},{&quot;2026-07-30&quot;:3.93},{&quot;2026-07-31&quot;:3.82},{&quot;2026-08-01&quot;:3.82},{&quot;2026-08-02&quot;:3.82},{&quot;2026-08-03&quot;:3.91},{&quot;2026-08-04&quot;:3.81},{&quot;2026-08-05&quot;:3.7},{&quot;2026-08-07&quot;:3.73},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.72},{&quot;2026-08-10&quot;:3.72},{&quot;2026-08-11&quot;:3.66},{&quot;2026-08-12&quot;:3.66},{&quot;2026-08-13&quot;:3.64},{&quot;2026-08-14&quot;:3.64},{&quot;2026-08-15&quot;:3.64},{&quot;2026-08-16&quot;:3.67},{&quot;2026-08-17&quot;:3.67},{&quot;2026-08-18&quot;:3.67},{&quot;2026-08-19&quot;:3.68},{&quot;2026-08-20&quot;:3.68},{&quot;2026-08-21&quot;:3.68},{&quot;2026-08-22&quot;:3.68},{&quot;2026-08-23&quot;:3.71},{&quot;2026-08-24&quot;:3.71},{&quot;2026-08-25&quot;:3.75},{&quot;2026-08-26&quot;:3.75},{&quot;2026-08-27&quot;:3.79},{&quot;2026-08-28&quot;:3.79},{&quot;2026-08-29&quot;:3.79},{&quot;2026-08-30&quot;:3.81},{&quot;2026-08-31&quot;:3.94},{&quot;2026-09-01&quot;:3.94},{&quot;2026-09-02&quot;:3.94},{&quot;2026-09-03&quot;:3.94},{&quot;2026-09-04&quot;:3.99},{&quot;2026-09-05&quot;:4.04},{&quot;2026-09-06&quot;:4.04},{&quot;2026-09-07&quot;:3.84},{&quot;2026-09-08&quot;:3.84},{&quot;2026-09-09&quot;:3.84},{&quot;2026-09-10&quot;:3.84},{&quot;2026-09-11&quot;:3.84}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.94},{&quot;2026-06-14&quot;:3.9},{&quot;2026-06-15&quot;:3.9},{&quot;2026-06-16&quot;:4.0},{&quot;2026-06-17&quot;:4.1},{&quot;2026-06-18&quot;:4.18},{&quot;2026-06-19&quot;:4.08},{&quot;2026-06-20&quot;:4.2},{&quot;2026-06-21&quot;:4.17},{&quot;2026-06-22&quot;:4.13},{&quot;2026-06-23&quot;:4.12},{&quot;2026-06-24&quot;:4.08},{&quot;2026-06-25&quot;:4.19},{&quot;2026-06-26&quot;:4.05},{&quot;2026-06-27&quot;:4.05},{&quot;2026-06-28&quot;:3.94},{&quot;2026-06-29&quot;:3.91},{&quot;2026-06-30&quot;:3.89},{&quot;2026-07-01&quot;:3.89},{&quot;2026-07-02&quot;:3.93},{&quot;2026-07-03&quot;:3.97},{&quot;2026-07-04&quot;:3.97},{&quot;2026-07-05&quot;:3.97},{&quot;2026-07-06&quot;:3.95},{&quot;2026-07-07&quot;:3.97},{&quot;2026-07-08&quot;:4.24},{&quot;2026-07-09&quot;:4.01},{&quot;2026-07-10&quot;:3.99},{&quot;2026-07-11&quot;:3.96},{&quot;2026-07-12&quot;:3.76},{&quot;2026-07-13&quot;:3.86},{&quot;2026-07-14&quot;:3.88},{&quot;2026-07-15&quot;:3.56},{&quot;2026-07-16&quot;:3.72},{&quot;2026-07-17&quot;:3.72},{&quot;2026-07-18&quot;:3.74},{&quot;2026-07-19&quot;:3.7},{&quot;2026-07-20&quot;:3.66},{&quot;2026-07-21&quot;:3.68},{&quot;2026-07-22&quot;:3.64},{&quot;2026-07-23&quot;:3.62},{&quot;2026-07-24&quot;:3.7},{&quot;2026-07-25&quot;:3.54},{&quot;2026-07-26&quot;:3.64},{&quot;2026-07-27&quot;:3.7},{&quot;2026-07-28&quot;:3.76},{&quot;2026-07-29&quot;:3.72},{&quot;2026-07-30&quot;:3.72},{&quot;2026-07-31&quot;:3.68},{&quot;2026-08-01&quot;:3.68},{&quot;2026-08-02&quot;:3.85},{&quot;2026-08-03&quot;:3.79},{&quot;2026-08-04&quot;:4.09},{&quot;2026-08-05&quot;:4.04},{&quot;2026-08-07&quot;:4.15},{&quot;2026-08-08&quot;:4.15},{&quot;2026-08-09&quot;:4.08},{&quot;2026-08-10&quot;:4.32},{&quot;2026-08-11&quot;:4.32},{&quot;2026-08-12&quot;:4.77},{&quot;2026-08-13&quot;:4.91},{&quot;2026-08-14&quot;:4.91},{&quot;2026-08-15&quot;:4.91},{&quot;2026-08-16&quot;:4.75},{&quot;2026-08-17&quot;:4.48},{&quot;2026-08-18&quot;:4.5},{&quot;2026-08-19&quot;:4.41},{&quot;2026-08-20&quot;:4.45},{&quot;2026-08-21&quot;:4.4},{&quot;2026-08-22&quot;:4.28},{&quot;2026-08-23&quot;:4.33},{&quot;2026-08-24&quot;:4.36},{&quot;2026-08-25&quot;:4.44},{&quot;2026-08-26&quot;:4.51},{&quot;2026-08-27&quot;:4.99},{&quot;2026-08-28&quot;:4.97},{&quot;2026-08-29&quot;:4.97},{&quot;2026-08-30&quot;:4.96},{&quot;2026-08-31&quot;:5.03},{&quot;2026-09-01&quot;:4.64},{&quot;2026-09-02&quot;:4.68},{&quot;2026-09-03&quot;:4.68},{&quot;2026-09-04&quot;:4.66},{&quot;2026-09-05&quot;:4.69},{&quot;2026-09-06&quot;:4.47},{&quot;2026-09-07&quot;:4.54},{&quot;2026-09-08&quot;:4.39},{&quot;2026-09-09&quot;:4.28},{&quot;2026-09-10&quot;:4.13},{&quot;2026-09-11&quot;:4.12}]}"
        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="11573"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Court of Cunning" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/f/2f585f52-7b07-4453-b543-9654d314aa36.jpg?1783928864" />

        <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">
            Court of Cunning
        </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-1'></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="Court of Cunning" src="https://cards.scryfall.io/large/front/2/f/2f585f52-7b07-4453-b543-9654d314aa36.jpg?1783928864" />
    </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.95
              </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">
                $4.50
              </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;:4.41},{&quot;2026-06-11&quot;:4.39},{&quot;2026-06-12&quot;:4.39},{&quot;2026-06-13&quot;:4.39},{&quot;2026-06-14&quot;:4.39},{&quot;2026-06-15&quot;:4.44},{&quot;2026-06-16&quot;:4.44},{&quot;2026-06-17&quot;:4.44},{&quot;2026-06-18&quot;:4.45},{&quot;2026-06-19&quot;:4.46},{&quot;2026-06-20&quot;:4.46},{&quot;2026-06-21&quot;:4.51},{&quot;2026-06-22&quot;:4.51},{&quot;2026-06-23&quot;:4.51},{&quot;2026-06-24&quot;:4.52},{&quot;2026-06-25&quot;:4.56},{&quot;2026-06-26&quot;:4.56},{&quot;2026-06-27&quot;:4.55},{&quot;2026-06-28&quot;:4.55},{&quot;2026-06-29&quot;:4.55},{&quot;2026-06-30&quot;:4.55},{&quot;2026-07-01&quot;:4.55},{&quot;2026-07-02&quot;:4.55},{&quot;2026-07-03&quot;:4.55},{&quot;2026-07-04&quot;:4.55},{&quot;2026-07-05&quot;:4.55},{&quot;2026-07-06&quot;:4.55},{&quot;2026-07-07&quot;:4.55},{&quot;2026-07-08&quot;:4.55},{&quot;2026-07-09&quot;:4.55},{&quot;2026-07-10&quot;:4.55},{&quot;2026-07-11&quot;:4.55},{&quot;2026-07-12&quot;:4.55},{&quot;2026-07-13&quot;:4.55},{&quot;2026-07-14&quot;:4.55},{&quot;2026-07-15&quot;:4.67},{&quot;2026-07-16&quot;:4.62},{&quot;2026-07-17&quot;:4.6},{&quot;2026-07-18&quot;:4.6},{&quot;2026-07-19&quot;:4.6},{&quot;2026-07-20&quot;:4.6},{&quot;2026-07-21&quot;:4.6},{&quot;2026-07-23&quot;:4.6},{&quot;2026-07-25&quot;:4.6},{&quot;2026-07-26&quot;:4.6},{&quot;2026-07-27&quot;:4.6},{&quot;2026-07-29&quot;:4.6},{&quot;2026-07-30&quot;:4.6},{&quot;2026-07-31&quot;:4.63},{&quot;2026-08-01&quot;:4.49},{&quot;2026-08-02&quot;:4.49},{&quot;2026-08-03&quot;:4.49},{&quot;2026-08-04&quot;:4.56},{&quot;2026-08-05&quot;:4.56},{&quot;2026-08-07&quot;:4.56},{&quot;2026-08-08&quot;:4.56},{&quot;2026-08-09&quot;:4.56},{&quot;2026-08-10&quot;:4.56},{&quot;2026-08-11&quot;:4.54},{&quot;2026-08-12&quot;:4.54},{&quot;2026-08-13&quot;:4.54},{&quot;2026-08-14&quot;:4.52},{&quot;2026-08-15&quot;:4.46},{&quot;2026-08-16&quot;:4.4},{&quot;2026-08-17&quot;:4.4},{&quot;2026-08-18&quot;:4.4},{&quot;2026-08-19&quot;:4.4},{&quot;2026-08-20&quot;:4.4},{&quot;2026-08-21&quot;:4.41},{&quot;2026-08-22&quot;:4.41},{&quot;2026-08-23&quot;:4.49},{&quot;2026-08-24&quot;:4.49},{&quot;2026-08-25&quot;:4.49},{&quot;2026-08-26&quot;:4.51},{&quot;2026-08-27&quot;:4.51},{&quot;2026-08-28&quot;:4.51},{&quot;2026-08-29&quot;:4.51},{&quot;2026-08-30&quot;:4.51},{&quot;2026-08-31&quot;:4.51},{&quot;2026-09-01&quot;:4.51},{&quot;2026-09-02&quot;:4.51},{&quot;2026-09-03&quot;:4.51},{&quot;2026-09-04&quot;:4.51},{&quot;2026-09-05&quot;:4.51},{&quot;2026-09-06&quot;:4.51},{&quot;2026-09-07&quot;:4.51},{&quot;2026-09-08&quot;:4.51},{&quot;2026-09-09&quot;:4.5},{&quot;2026-09-10&quot;:4.5},{&quot;2026-09-11&quot;:4.5}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.19},{&quot;2026-06-11&quot;:4.87},{&quot;2026-06-12&quot;:4.8},{&quot;2026-06-13&quot;:5.05},{&quot;2026-06-14&quot;:5.03},{&quot;2026-06-15&quot;:5.06},{&quot;2026-06-16&quot;:4.93},{&quot;2026-06-17&quot;:4.72},{&quot;2026-06-18&quot;:4.59},{&quot;2026-06-19&quot;:4.64},{&quot;2026-06-20&quot;:4.71},{&quot;2026-06-21&quot;:4.62},{&quot;2026-06-22&quot;:4.67},{&quot;2026-06-23&quot;:4.58},{&quot;2026-06-24&quot;:4.46},{&quot;2026-06-25&quot;:4.44},{&quot;2026-06-26&quot;:4.44},{&quot;2026-06-27&quot;:4.35},{&quot;2026-06-28&quot;:4.14},{&quot;2026-06-29&quot;:4.12},{&quot;2026-06-30&quot;:4.35},{&quot;2026-07-01&quot;:4.33},{&quot;2026-07-02&quot;:4.45},{&quot;2026-07-03&quot;:4.44},{&quot;2026-07-04&quot;:4.44},{&quot;2026-07-05&quot;:4.46},{&quot;2026-07-06&quot;:4.41},{&quot;2026-07-07&quot;:4.31},{&quot;2026-07-08&quot;:4.17},{&quot;2026-07-09&quot;:4.0},{&quot;2026-07-10&quot;:3.88},{&quot;2026-07-11&quot;:3.95},{&quot;2026-07-12&quot;:3.92},{&quot;2026-07-13&quot;:3.92},{&quot;2026-07-14&quot;:4.03},{&quot;2026-07-15&quot;:4.05},{&quot;2026-07-16&quot;:4.06},{&quot;2026-07-17&quot;:4.02},{&quot;2026-07-18&quot;:4.04},{&quot;2026-07-19&quot;:4.12},{&quot;2026-07-20&quot;:4.33},{&quot;2026-07-21&quot;:4.42},{&quot;2026-07-23&quot;:4.31},{&quot;2026-07-25&quot;:4.52},{&quot;2026-07-26&quot;:4.37},{&quot;2026-07-27&quot;:4.11},{&quot;2026-07-29&quot;:4.2},{&quot;2026-07-30&quot;:4.04},{&quot;2026-07-31&quot;:4.2},{&quot;2026-08-01&quot;:4.26},{&quot;2026-08-02&quot;:4.41},{&quot;2026-08-03&quot;:4.43},{&quot;2026-08-04&quot;:4.5},{&quot;2026-08-05&quot;:4.51},{&quot;2026-08-07&quot;:4.46},{&quot;2026-08-08&quot;:4.4},{&quot;2026-08-09&quot;:4.44},{&quot;2026-08-10&quot;:4.41},{&quot;2026-08-11&quot;:4.2},{&quot;2026-08-12&quot;:4.18},{&quot;2026-08-13&quot;:4.15},{&quot;2026-08-14&quot;:4.13},{&quot;2026-08-15&quot;:4.13},{&quot;2026-08-16&quot;:4.11},{&quot;2026-08-17&quot;:4.2},{&quot;2026-08-18&quot;:4.3},{&quot;2026-08-19&quot;:4.43},{&quot;2026-08-20&quot;:4.43},{&quot;2026-08-21&quot;:4.71},{&quot;2026-08-22&quot;:4.87},{&quot;2026-08-23&quot;:4.99},{&quot;2026-08-24&quot;:5.16},{&quot;2026-08-25&quot;:5.16},{&quot;2026-08-26&quot;:5.04},{&quot;2026-08-27&quot;:4.71},{&quot;2026-08-28&quot;:4.48},{&quot;2026-08-29&quot;:4.48},{&quot;2026-08-30&quot;:4.17},{&quot;2026-08-31&quot;:4.58},{&quot;2026-09-01&quot;:4.58},{&quot;2026-09-02&quot;:4.44},{&quot;2026-09-03&quot;:4.2},{&quot;2026-09-04&quot;:3.91},{&quot;2026-09-05&quot;:3.8},{&quot;2026-09-06&quot;:3.83},{&quot;2026-09-07&quot;:3.59},{&quot;2026-09-08&quot;:3.56},{&quot;2026-09-09&quot;:3.57},{&quot;2026-09-10&quot;:3.83},{&quot;2026-09-11&quot;:3.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15613"
  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-m20 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">
            Dread Presence
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Dread Presence" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/0430db1a-5cad-4444-ba93-57fb32e65606.jpg?1783932995" />

        <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">
            Dread Presence
        </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 — Nightmare</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="Dread Presence" src="https://cards.scryfall.io/large/front/0/4/0430db1a-5cad-4444-ba93-57fb32e65606.jpg?1783932995" />
    </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.33
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $4.98
              </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-10&quot;:4.62},{&quot;2026-06-11&quot;:4.62},{&quot;2026-06-12&quot;:4.62},{&quot;2026-06-13&quot;:4.62},{&quot;2026-06-14&quot;:4.62},{&quot;2026-06-15&quot;:4.62},{&quot;2026-06-16&quot;:4.62},{&quot;2026-06-17&quot;:4.62},{&quot;2026-06-18&quot;:4.62},{&quot;2026-06-19&quot;:4.61},{&quot;2026-06-20&quot;:4.61},{&quot;2026-06-21&quot;:4.61},{&quot;2026-06-22&quot;:4.66},{&quot;2026-06-23&quot;:4.66},{&quot;2026-06-24&quot;:4.66},{&quot;2026-06-25&quot;:4.66},{&quot;2026-06-26&quot;:4.66},{&quot;2026-06-27&quot;:4.66},{&quot;2026-06-28&quot;:4.66},{&quot;2026-06-29&quot;:4.66},{&quot;2026-06-30&quot;:4.66},{&quot;2026-07-01&quot;:4.66},{&quot;2026-07-02&quot;:4.66},{&quot;2026-07-03&quot;:4.66},{&quot;2026-07-04&quot;:4.66},{&quot;2026-07-05&quot;:4.66},{&quot;2026-07-06&quot;:4.66},{&quot;2026-07-07&quot;:4.66},{&quot;2026-07-08&quot;:4.7},{&quot;2026-07-09&quot;:4.7},{&quot;2026-07-10&quot;:4.7},{&quot;2026-07-11&quot;:4.7},{&quot;2026-07-12&quot;:4.7},{&quot;2026-07-13&quot;:4.7},{&quot;2026-07-14&quot;:4.7},{&quot;2026-07-15&quot;:4.7},{&quot;2026-07-16&quot;:4.7},{&quot;2026-07-17&quot;:4.7},{&quot;2026-07-18&quot;:4.72},{&quot;2026-07-19&quot;:4.72},{&quot;2026-07-20&quot;:4.72},{&quot;2026-07-21&quot;:4.72},{&quot;2026-07-23&quot;:4.75},{&quot;2026-07-25&quot;:4.75},{&quot;2026-07-26&quot;:4.75},{&quot;2026-07-27&quot;:4.73},{&quot;2026-07-29&quot;:4.73},{&quot;2026-07-30&quot;:4.74},{&quot;2026-07-31&quot;:4.74},{&quot;2026-08-01&quot;:4.74},{&quot;2026-08-02&quot;:4.76},{&quot;2026-08-03&quot;:4.76},{&quot;2026-08-04&quot;:4.76},{&quot;2026-08-05&quot;:4.76},{&quot;2026-08-07&quot;:4.76},{&quot;2026-08-08&quot;:4.76},{&quot;2026-08-09&quot;:4.76},{&quot;2026-08-10&quot;:4.76},{&quot;2026-08-11&quot;:4.76},{&quot;2026-08-12&quot;:4.76},{&quot;2026-08-13&quot;:4.76},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.76},{&quot;2026-08-16&quot;:4.76},{&quot;2026-08-17&quot;:4.79},{&quot;2026-08-18&quot;:4.79},{&quot;2026-08-19&quot;:4.79},{&quot;2026-08-20&quot;:4.79},{&quot;2026-08-21&quot;:4.81},{&quot;2026-08-22&quot;:4.81},{&quot;2026-08-23&quot;:4.87},{&quot;2026-08-24&quot;:4.87},{&quot;2026-08-25&quot;:4.87},{&quot;2026-08-26&quot;:4.87},{&quot;2026-08-27&quot;:4.98},{&quot;2026-08-28&quot;:4.98},{&quot;2026-08-29&quot;:4.98},{&quot;2026-08-30&quot;:4.98},{&quot;2026-08-31&quot;:4.98},{&quot;2026-09-01&quot;:4.98},{&quot;2026-09-02&quot;:4.98},{&quot;2026-09-03&quot;:4.98},{&quot;2026-09-04&quot;:4.98},{&quot;2026-09-05&quot;:4.98},{&quot;2026-09-06&quot;:4.98},{&quot;2026-09-07&quot;:4.98},{&quot;2026-09-08&quot;:4.98},{&quot;2026-09-09&quot;:4.98},{&quot;2026-09-10&quot;:4.98},{&quot;2026-09-11&quot;:4.98}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.61},{&quot;2026-06-11&quot;:3.68},{&quot;2026-06-12&quot;:3.46},{&quot;2026-06-13&quot;:3.34},{&quot;2026-06-14&quot;:3.17},{&quot;2026-06-15&quot;:3.27},{&quot;2026-06-16&quot;:3.27},{&quot;2026-06-17&quot;:3.12},{&quot;2026-06-18&quot;:3.02},{&quot;2026-06-19&quot;:3.05},{&quot;2026-06-20&quot;:2.92},{&quot;2026-06-21&quot;:2.86},{&quot;2026-06-22&quot;:2.86},{&quot;2026-06-23&quot;:2.81},{&quot;2026-06-24&quot;:2.63},{&quot;2026-06-25&quot;:2.67},{&quot;2026-06-26&quot;:2.64},{&quot;2026-06-27&quot;:2.63},{&quot;2026-06-28&quot;:2.62},{&quot;2026-06-29&quot;:2.59},{&quot;2026-06-30&quot;:2.59},{&quot;2026-07-01&quot;:2.5},{&quot;2026-07-02&quot;:2.49},{&quot;2026-07-03&quot;:2.52},{&quot;2026-07-04&quot;:2.54},{&quot;2026-07-05&quot;:2.53},{&quot;2026-07-06&quot;:2.53},{&quot;2026-07-07&quot;:2.53},{&quot;2026-07-08&quot;:2.49},{&quot;2026-07-09&quot;:2.5},{&quot;2026-07-10&quot;:2.45},{&quot;2026-07-11&quot;:2.39},{&quot;2026-07-12&quot;:2.38},{&quot;2026-07-13&quot;:2.43},{&quot;2026-07-14&quot;:2.36},{&quot;2026-07-15&quot;:2.36},{&quot;2026-07-16&quot;:2.35},{&quot;2026-07-17&quot;:2.3},{&quot;2026-07-18&quot;:2.28},{&quot;2026-07-19&quot;:2.3},{&quot;2026-07-20&quot;:2.29},{&quot;2026-07-21&quot;:2.29},{&quot;2026-07-23&quot;:2.25},{&quot;2026-07-25&quot;:2.26},{&quot;2026-07-26&quot;:2.26},{&quot;2026-07-27&quot;:2.26},{&quot;2026-07-29&quot;:2.32},{&quot;2026-07-30&quot;:2.32},{&quot;2026-07-31&quot;:2.4},{&quot;2026-08-01&quot;:2.4},{&quot;2026-08-02&quot;:2.43},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.46},{&quot;2026-08-05&quot;:2.52},{&quot;2026-08-07&quot;:2.62},{&quot;2026-08-08&quot;:2.66},{&quot;2026-08-09&quot;:2.66},{&quot;2026-08-10&quot;:2.69},{&quot;2026-08-11&quot;:2.85},{&quot;2026-08-12&quot;:2.88},{&quot;2026-08-13&quot;:2.87},{&quot;2026-08-14&quot;:2.88},{&quot;2026-08-15&quot;:2.84},{&quot;2026-08-16&quot;:2.81},{&quot;2026-08-17&quot;:2.79},{&quot;2026-08-18&quot;:3.02},{&quot;2026-08-19&quot;:3.07},{&quot;2026-08-20&quot;:3.07},{&quot;2026-08-21&quot;:3.24},{&quot;2026-08-22&quot;:3.31},{&quot;2026-08-23&quot;:3.56},{&quot;2026-08-24&quot;:3.43},{&quot;2026-08-25&quot;:3.43},{&quot;2026-08-26&quot;:3.25},{&quot;2026-08-27&quot;:3.19},{&quot;2026-08-28&quot;:3.2},{&quot;2026-08-29&quot;:3.2},{&quot;2026-08-30&quot;:3.25},{&quot;2026-08-31&quot;:3.26},{&quot;2026-09-01&quot;:3.26},{&quot;2026-09-02&quot;:3.35},{&quot;2026-09-03&quot;:3.49},{&quot;2026-09-04&quot;:3.49},{&quot;2026-09-05&quot;:3.57},{&quot;2026-09-06&quot;:3.63},{&quot;2026-09-07&quot;:3.55},{&quot;2026-09-08&quot;:3.44},{&quot;2026-09-09&quot;:3.37},{&quot;2026-09-10&quot;:3.26},{&quot;2026-09-11&quot;:3.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="8933"
  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-c14 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Swiftfoot Boots" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4b224614-6374-4c42-8715-daa0b73ca05c.jpg?1783938815" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/4/b/4b224614-6374-4c42-8715-daa0b73ca05c.jpg?1783938815" />
    </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.32
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.86},{&quot;2026-06-10&quot;:2.45},{&quot;2026-06-11&quot;:2.39},{&quot;2026-06-12&quot;:2.43},{&quot;2026-06-13&quot;:2.43},{&quot;2026-06-14&quot;:2.37},{&quot;2026-06-15&quot;:2.35},{&quot;2026-06-16&quot;:2.29},{&quot;2026-06-17&quot;:2.33},{&quot;2026-06-18&quot;:2.35},{&quot;2026-06-19&quot;:2.35},{&quot;2026-06-20&quot;:2.31},{&quot;2026-06-21&quot;:2.31},{&quot;2026-06-22&quot;:2.32},{&quot;2026-06-24&quot;:2.26},{&quot;2026-06-25&quot;:2.26},{&quot;2026-06-26&quot;:2.07},{&quot;2026-06-27&quot;:2.07},{&quot;2026-06-28&quot;:2.26},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.22},{&quot;2026-07-01&quot;:2.2},{&quot;2026-07-02&quot;:2.2},{&quot;2026-07-03&quot;:2.2},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.2},{&quot;2026-07-06&quot;:2.31},{&quot;2026-07-07&quot;:2.37},{&quot;2026-07-08&quot;:2.51},{&quot;2026-07-09&quot;:2.51},{&quot;2026-07-10&quot;:2.51},{&quot;2026-07-11&quot;:2.55},{&quot;2026-07-12&quot;:2.57},{&quot;2026-07-13&quot;:2.53},{&quot;2026-07-14&quot;:2.21},{&quot;2026-07-15&quot;:2.28},{&quot;2026-07-16&quot;:2.28},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.32},{&quot;2026-07-19&quot;:2.34},{&quot;2026-07-20&quot;:2.34},{&quot;2026-07-21&quot;:2.32},{&quot;2026-07-23&quot;:2.32},{&quot;2026-07-25&quot;:2.59},{&quot;2026-07-26&quot;:2.55},{&quot;2026-07-27&quot;:2.64},{&quot;2026-07-29&quot;:2.64},{&quot;2026-07-30&quot;:2.72},{&quot;2026-07-31&quot;:2.84},{&quot;2026-08-01&quot;:2.84},{&quot;2026-08-02&quot;:2.7},{&quot;2026-08-03&quot;:2.7},{&quot;2026-08-04&quot;:2.75},{&quot;2026-08-05&quot;:2.75},{&quot;2026-08-07&quot;:2.72},{&quot;2026-08-08&quot;:2.72},{&quot;2026-08-09&quot;:2.72},{&quot;2026-08-10&quot;:2.72},{&quot;2026-08-11&quot;:2.72},{&quot;2026-08-12&quot;:2.65},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.74},{&quot;2026-08-15&quot;:2.74},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.69},{&quot;2026-08-18&quot;:2.66},{&quot;2026-08-19&quot;:2.69},{&quot;2026-08-20&quot;:2.69},{&quot;2026-08-21&quot;:2.63},{&quot;2026-08-22&quot;:2.6},{&quot;2026-08-23&quot;:2.79},{&quot;2026-08-24&quot;:2.79},{&quot;2026-08-25&quot;:2.79},{&quot;2026-08-26&quot;:2.67},{&quot;2026-08-27&quot;:2.87},{&quot;2026-08-28&quot;:2.91},{&quot;2026-08-29&quot;:2.91},{&quot;2026-08-30&quot;:2.91},{&quot;2026-08-31&quot;:3.04},{&quot;2026-09-01&quot;:3.04},{&quot;2026-09-02&quot;:2.96},{&quot;2026-09-03&quot;:3.03},{&quot;2026-09-04&quot;:3.01},{&quot;2026-09-05&quot;:3.06},{&quot;2026-09-06&quot;:3.06},{&quot;2026-09-07&quot;:3.49},{&quot;2026-09-08&quot;:3.47},{&quot;2026-09-09&quot;:3.32},{&quot;2026-09-10&quot;:3.32},{&quot;2026-09-11&quot;:3.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="75191"
  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">
            Nemesis of Reason
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Nemesis of Reason
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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="Nemesis of Reason" src="https://cards.scryfall.io/large/front/a/a/aa1243b2-502c-4aee-b61e-f23656bf29f2.jpg?1783932364" />
    </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.21
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-13&quot;:3.13},{&quot;2026-06-14&quot;:3.13},{&quot;2026-06-15&quot;:3.13},{&quot;2026-06-16&quot;:3.14},{&quot;2026-06-17&quot;:3.15},{&quot;2026-06-18&quot;:3.15},{&quot;2026-06-19&quot;:3.1},{&quot;2026-06-20&quot;:3.1},{&quot;2026-06-21&quot;:3.22},{&quot;2026-06-22&quot;:3.22},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.32},{&quot;2026-06-25&quot;:3.25},{&quot;2026-06-26&quot;:3.25},{&quot;2026-06-27&quot;:3.32},{&quot;2026-06-28&quot;:3.4},{&quot;2026-06-29&quot;:3.42},{&quot;2026-06-30&quot;:3.49},{&quot;2026-07-01&quot;:3.49},{&quot;2026-07-02&quot;:3.49},{&quot;2026-07-03&quot;:3.49},{&quot;2026-07-04&quot;:3.43},{&quot;2026-07-05&quot;:3.43},{&quot;2026-07-06&quot;:3.43},{&quot;2026-07-07&quot;:3.46},{&quot;2026-07-08&quot;:3.45},{&quot;2026-07-09&quot;:3.45},{&quot;2026-07-10&quot;:3.45},{&quot;2026-07-11&quot;:3.46},{&quot;2026-07-12&quot;:3.46},{&quot;2026-07-13&quot;:3.46},{&quot;2026-07-14&quot;:3.46},{&quot;2026-07-15&quot;:3.36},{&quot;2026-07-16&quot;:3.36},{&quot;2026-07-17&quot;:3.31},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.33},{&quot;2026-07-20&quot;:3.34},{&quot;2026-07-21&quot;:3.36},{&quot;2026-07-22&quot;:3.36},{&quot;2026-07-23&quot;:3.31},{&quot;2026-07-24&quot;:3.28},{&quot;2026-07-25&quot;:3.25},{&quot;2026-07-26&quot;:3.25},{&quot;2026-07-27&quot;:3.25},{&quot;2026-07-28&quot;:3.25},{&quot;2026-07-29&quot;:3.25},{&quot;2026-07-30&quot;:3.25},{&quot;2026-07-31&quot;:3.22},{&quot;2026-08-01&quot;:3.14},{&quot;2026-08-02&quot;:3.18},{&quot;2026-08-03&quot;:3.18},{&quot;2026-08-04&quot;:3.18},{&quot;2026-08-05&quot;:3.14},{&quot;2026-08-07&quot;:3.14},{&quot;2026-08-08&quot;:3.12},{&quot;2026-08-09&quot;:3.12},{&quot;2026-08-10&quot;:3.11},{&quot;2026-08-11&quot;:3.11},{&quot;2026-08-12&quot;:3.11},{&quot;2026-08-13&quot;:3.11},{&quot;2026-08-14&quot;:3.03},{&quot;2026-08-15&quot;:3.03},{&quot;2026-08-16&quot;:2.98},{&quot;2026-08-17&quot;:2.92},{&quot;2026-08-18&quot;:2.98},{&quot;2026-08-19&quot;:2.98},{&quot;2026-08-20&quot;:2.97},{&quot;2026-08-21&quot;:2.97},{&quot;2026-08-22&quot;:2.97},{&quot;2026-08-23&quot;:2.95},{&quot;2026-08-24&quot;:2.95},{&quot;2026-08-25&quot;:2.98},{&quot;2026-08-26&quot;:2.98},{&quot;2026-08-27&quot;:3.02},{&quot;2026-08-28&quot;:2.98},{&quot;2026-08-29&quot;:2.98},{&quot;2026-08-30&quot;:3.02},{&quot;2026-08-31&quot;:3.11},{&quot;2026-09-01&quot;:3.17},{&quot;2026-09-02&quot;:3.17},{&quot;2026-09-03&quot;:3.24},{&quot;2026-09-04&quot;:3.24},{&quot;2026-09-05&quot;:3.26},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.26},{&quot;2026-09-08&quot;:3.21},{&quot;2026-09-09&quot;:3.21},{&quot;2026-09-10&quot;:3.21},{&quot;2026-09-11&quot;:3.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="48889"
  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">
            Fractured Sanity
        </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">
              ↓
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.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="Fractured Sanity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/1/413ac8fb-5156-4f90-81f5-1879e273c9e2.jpg?1783926878" />

        <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">
            Fractured Sanity
        </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-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fractured Sanity" src="https://cards.scryfall.io/large/front/4/1/413ac8fb-5156-4f90-81f5-1879e273c9e2.jpg?1783926878" />
    </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.18
              </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">
                $4.60
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.24},{&quot;2026-06-14&quot;:4.24},{&quot;2026-06-15&quot;:4.24},{&quot;2026-06-16&quot;:4.24},{&quot;2026-06-17&quot;:4.24},{&quot;2026-06-18&quot;:4.24},{&quot;2026-06-19&quot;:4.24},{&quot;2026-06-20&quot;:4.24},{&quot;2026-06-21&quot;:4.24},{&quot;2026-06-22&quot;:4.24},{&quot;2026-06-23&quot;:4.24},{&quot;2026-06-24&quot;:4.24},{&quot;2026-06-25&quot;:4.27},{&quot;2026-06-26&quot;:4.27},{&quot;2026-06-27&quot;:4.27},{&quot;2026-06-28&quot;:4.31},{&quot;2026-06-29&quot;:4.31},{&quot;2026-06-30&quot;:4.31},{&quot;2026-07-01&quot;:4.31},{&quot;2026-07-02&quot;:4.31},{&quot;2026-07-03&quot;:4.31},{&quot;2026-07-04&quot;:4.31},{&quot;2026-07-05&quot;:4.31},{&quot;2026-07-06&quot;:4.31},{&quot;2026-07-07&quot;:4.31},{&quot;2026-07-08&quot;:4.31},{&quot;2026-07-09&quot;:4.42},{&quot;2026-07-10&quot;:4.39},{&quot;2026-07-11&quot;:4.39},{&quot;2026-07-12&quot;:4.39},{&quot;2026-07-13&quot;:4.39},{&quot;2026-07-14&quot;:4.39},{&quot;2026-07-15&quot;:4.39},{&quot;2026-07-16&quot;:4.47},{&quot;2026-07-17&quot;:4.47},{&quot;2026-07-18&quot;:4.47},{&quot;2026-07-19&quot;:4.47},{&quot;2026-07-20&quot;:4.47},{&quot;2026-07-21&quot;:4.47},{&quot;2026-07-22&quot;:4.51},{&quot;2026-07-23&quot;:4.47},{&quot;2026-07-24&quot;:4.47},{&quot;2026-07-25&quot;:4.47},{&quot;2026-07-26&quot;:4.51},{&quot;2026-07-27&quot;:4.51},{&quot;2026-07-28&quot;:4.51},{&quot;2026-07-29&quot;:4.51},{&quot;2026-07-30&quot;:4.51},{&quot;2026-07-31&quot;:4.51},{&quot;2026-08-01&quot;:4.51},{&quot;2026-08-02&quot;:4.51},{&quot;2026-08-03&quot;:4.51},{&quot;2026-08-04&quot;:4.51},{&quot;2026-08-05&quot;:4.51},{&quot;2026-08-07&quot;:4.51},{&quot;2026-08-08&quot;:4.51},{&quot;2026-08-09&quot;:4.51},{&quot;2026-08-10&quot;:4.51},{&quot;2026-08-11&quot;:4.51},{&quot;2026-08-12&quot;:4.51},{&quot;2026-08-13&quot;:4.38},{&quot;2026-08-14&quot;:4.38},{&quot;2026-08-15&quot;:4.38},{&quot;2026-08-16&quot;:4.38},{&quot;2026-08-17&quot;:4.38},{&quot;2026-08-18&quot;:4.38},{&quot;2026-08-19&quot;:4.38},{&quot;2026-08-20&quot;:4.38},{&quot;2026-08-21&quot;:4.38},{&quot;2026-08-22&quot;:4.38},{&quot;2026-08-23&quot;:4.52},{&quot;2026-08-24&quot;:4.52},{&quot;2026-08-25&quot;:4.52},{&quot;2026-08-26&quot;:4.52},{&quot;2026-08-27&quot;:4.61},{&quot;2026-08-28&quot;:4.61},{&quot;2026-08-29&quot;:4.61},{&quot;2026-08-30&quot;:4.61},{&quot;2026-08-31&quot;:4.61},{&quot;2026-09-01&quot;:4.61},{&quot;2026-09-02&quot;:4.61},{&quot;2026-09-03&quot;:4.61},{&quot;2026-09-04&quot;:4.61},{&quot;2026-09-05&quot;:4.61},{&quot;2026-09-06&quot;:4.61},{&quot;2026-09-07&quot;:4.61},{&quot;2026-09-08&quot;:4.61},{&quot;2026-09-09&quot;:4.51},{&quot;2026-09-10&quot;:4.51},{&quot;2026-09-11&quot;:4.6}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.29},{&quot;2026-06-14&quot;:2.26},{&quot;2026-06-15&quot;:2.32},{&quot;2026-06-16&quot;:2.33},{&quot;2026-06-17&quot;:2.44},{&quot;2026-06-18&quot;:2.59},{&quot;2026-06-19&quot;:2.62},{&quot;2026-06-20&quot;:2.62},{&quot;2026-06-21&quot;:2.61},{&quot;2026-06-22&quot;:2.82},{&quot;2026-06-23&quot;:2.82},{&quot;2026-06-24&quot;:2.77},{&quot;2026-06-25&quot;:3.02},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.02},{&quot;2026-06-28&quot;:3.17},{&quot;2026-06-29&quot;:3.28},{&quot;2026-06-30&quot;:3.31},{&quot;2026-07-01&quot;:3.18},{&quot;2026-07-02&quot;:3.06},{&quot;2026-07-03&quot;:2.78},{&quot;2026-07-04&quot;:2.59},{&quot;2026-07-05&quot;:2.35},{&quot;2026-07-06&quot;:2.39},{&quot;2026-07-07&quot;:2.51},{&quot;2026-07-08&quot;:2.7},{&quot;2026-07-09&quot;:2.71},{&quot;2026-07-10&quot;:2.54},{&quot;2026-07-11&quot;:2.47},{&quot;2026-07-12&quot;:2.41},{&quot;2026-07-13&quot;:2.35},{&quot;2026-07-14&quot;:2.2},{&quot;2026-07-15&quot;:2.19},{&quot;2026-07-16&quot;:2.23},{&quot;2026-07-17&quot;:2.38},{&quot;2026-07-18&quot;:2.46},{&quot;2026-07-19&quot;:2.55},{&quot;2026-07-20&quot;:2.99},{&quot;2026-07-21&quot;:3.03},{&quot;2026-07-22&quot;:2.82},{&quot;2026-07-23&quot;:2.91},{&quot;2026-07-24&quot;:2.86},{&quot;2026-07-25&quot;:2.85},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.75},{&quot;2026-07-28&quot;:2.92},{&quot;2026-07-29&quot;:3.01},{&quot;2026-07-30&quot;:2.73},{&quot;2026-07-31&quot;:2.63},{&quot;2026-08-01&quot;:2.61},{&quot;2026-08-02&quot;:2.85},{&quot;2026-08-03&quot;:3.06},{&quot;2026-08-04&quot;:3.09},{&quot;2026-08-05&quot;:3.32},{&quot;2026-08-07&quot;:3.22},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:2.95},{&quot;2026-08-10&quot;:3.05},{&quot;2026-08-11&quot;:3.02},{&quot;2026-08-12&quot;:2.99},{&quot;2026-08-13&quot;:3.05},{&quot;2026-08-14&quot;:2.98},{&quot;2026-08-15&quot;:2.77},{&quot;2026-08-16&quot;:2.8},{&quot;2026-08-17&quot;:2.8},{&quot;2026-08-18&quot;:2.6},{&quot;2026-08-19&quot;:2.48},{&quot;2026-08-20&quot;:2.61},{&quot;2026-08-21&quot;:2.58},{&quot;2026-08-22&quot;:2.69},{&quot;2026-08-23&quot;:2.78},{&quot;2026-08-24&quot;:2.81},{&quot;2026-08-25&quot;:2.5},{&quot;2026-08-26&quot;:2.64},{&quot;2026-08-27&quot;:2.77},{&quot;2026-08-28&quot;:2.47},{&quot;2026-08-29&quot;:2.47},{&quot;2026-08-30&quot;:2.57},{&quot;2026-08-31&quot;:2.62},{&quot;2026-09-01&quot;:2.98},{&quot;2026-09-02&quot;:3.13},{&quot;2026-09-03&quot;:3.2},{&quot;2026-09-04&quot;:3.49},{&quot;2026-09-05&quot;:3.69},{&quot;2026-09-06&quot;:3.61},{&quot;2026-09-07&quot;:3.51},{&quot;2026-09-08&quot;:3.68},{&quot;2026-09-09&quot;:3.46},{&quot;2026-09-10&quot;:3.36},{&quot;2026-09-11&quot;:3.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="77442"
  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-thb 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">
            Ashiok, Nightmare Muse
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ashiok
      </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">
              ↓
              8%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.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="Ashiok, Nightmare Muse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/1/c18d2a4a-cfde-434e-85eb-f9aae0da9dce.jpg?1783931506" />

        <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">
            Ashiok, Nightmare Muse
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Ashiok</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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="Ashiok, Nightmare Muse" src="https://cards.scryfall.io/large/front/c/1/c18d2a4a-cfde-434e-85eb-f9aae0da9dce.jpg?1783931506" />
    </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.10
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.87},{&quot;2026-06-14&quot;:3.85},{&quot;2026-06-15&quot;:4.01},{&quot;2026-06-16&quot;:4.01},{&quot;2026-06-17&quot;:4.01},{&quot;2026-06-18&quot;:4.01},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:4.08},{&quot;2026-06-21&quot;:4.01},{&quot;2026-06-22&quot;:4.15},{&quot;2026-06-23&quot;:4.22},{&quot;2026-06-24&quot;:4.13},{&quot;2026-06-25&quot;:4.17},{&quot;2026-06-26&quot;:4.17},{&quot;2026-06-27&quot;:4.17},{&quot;2026-06-28&quot;:4.17},{&quot;2026-06-29&quot;:4.17},{&quot;2026-06-30&quot;:4.17},{&quot;2026-07-01&quot;:4.17},{&quot;2026-07-02&quot;:4.31},{&quot;2026-07-03&quot;:4.31},{&quot;2026-07-04&quot;:4.31},{&quot;2026-07-05&quot;:4.26},{&quot;2026-07-06&quot;:4.26},{&quot;2026-07-07&quot;:4.26},{&quot;2026-07-08&quot;:4.26},{&quot;2026-07-09&quot;:4.26},{&quot;2026-07-10&quot;:4.26},{&quot;2026-07-11&quot;:4.26},{&quot;2026-07-12&quot;:4.26},{&quot;2026-07-13&quot;:4.26},{&quot;2026-07-14&quot;:4.26},{&quot;2026-07-15&quot;:4.26},{&quot;2026-07-16&quot;:4.26},{&quot;2026-07-17&quot;:4.26},{&quot;2026-07-18&quot;:4.26},{&quot;2026-07-19&quot;:4.26},{&quot;2026-07-20&quot;:4.26},{&quot;2026-07-21&quot;:4.26},{&quot;2026-07-22&quot;:4.26},{&quot;2026-07-23&quot;:4.26},{&quot;2026-07-24&quot;:4.26},{&quot;2026-07-25&quot;:4.26},{&quot;2026-07-26&quot;:4.26},{&quot;2026-07-27&quot;:4.26},{&quot;2026-07-28&quot;:4.26},{&quot;2026-07-29&quot;:4.26},{&quot;2026-07-30&quot;:4.26},{&quot;2026-07-31&quot;:4.23},{&quot;2026-08-01&quot;:4.23},{&quot;2026-08-02&quot;:4.23},{&quot;2026-08-03&quot;:4.23},{&quot;2026-08-04&quot;:4.23},{&quot;2026-08-05&quot;:4.23},{&quot;2026-08-07&quot;:4.26},{&quot;2026-08-08&quot;:4.26},{&quot;2026-08-09&quot;:4.29},{&quot;2026-08-10&quot;:4.29},{&quot;2026-08-11&quot;:4.16},{&quot;2026-08-12&quot;:4.16},{&quot;2026-08-13&quot;:4.16},{&quot;2026-08-14&quot;:4.22},{&quot;2026-08-15&quot;:4.22},{&quot;2026-08-16&quot;:4.25},{&quot;2026-08-17&quot;:4.3},{&quot;2026-08-18&quot;:4.3},{&quot;2026-08-19&quot;:4.3},{&quot;2026-08-20&quot;:4.3},{&quot;2026-08-21&quot;:4.3},{&quot;2026-08-22&quot;:4.32},{&quot;2026-08-23&quot;:4.4},{&quot;2026-08-24&quot;:4.4},{&quot;2026-08-25&quot;:4.4},{&quot;2026-08-26&quot;:4.32},{&quot;2026-08-27&quot;:4.32},{&quot;2026-08-28&quot;:4.37},{&quot;2026-08-29&quot;:4.37},{&quot;2026-08-30&quot;:4.38},{&quot;2026-08-31&quot;:4.38},{&quot;2026-09-01&quot;:4.38},{&quot;2026-09-02&quot;:4.38},{&quot;2026-09-03&quot;:4.38},{&quot;2026-09-04&quot;:4.39},{&quot;2026-09-05&quot;:4.39},{&quot;2026-09-06&quot;:4.39},{&quot;2026-09-07&quot;:4.39},{&quot;2026-09-08&quot;:4.39},{&quot;2026-09-09&quot;:4.39},{&quot;2026-09-10&quot;:4.39},{&quot;2026-09-11&quot;:4.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.9},{&quot;2026-06-14&quot;:3.73},{&quot;2026-06-15&quot;:3.78},{&quot;2026-06-16&quot;:3.78},{&quot;2026-06-17&quot;:3.78},{&quot;2026-06-18&quot;:3.78},{&quot;2026-06-19&quot;:3.73},{&quot;2026-06-20&quot;:3.62},{&quot;2026-06-21&quot;:3.62},{&quot;2026-06-22&quot;:3.71},{&quot;2026-06-23&quot;:3.71},{&quot;2026-06-24&quot;:3.71},{&quot;2026-06-25&quot;:3.71},{&quot;2026-06-26&quot;:3.71},{&quot;2026-06-27&quot;:3.75},{&quot;2026-06-28&quot;:3.75},{&quot;2026-06-29&quot;:3.75},{&quot;2026-06-30&quot;:3.75},{&quot;2026-07-01&quot;:3.71},{&quot;2026-07-02&quot;:3.48},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.51},{&quot;2026-07-05&quot;:3.51},{&quot;2026-07-06&quot;:3.55},{&quot;2026-07-07&quot;:3.77},{&quot;2026-07-08&quot;:3.7},{&quot;2026-07-09&quot;:3.7},{&quot;2026-07-10&quot;:3.66},{&quot;2026-07-11&quot;:3.66},{&quot;2026-07-12&quot;:3.7},{&quot;2026-07-13&quot;:3.61},{&quot;2026-07-14&quot;:3.61},{&quot;2026-07-15&quot;:3.61},{&quot;2026-07-16&quot;:3.61},{&quot;2026-07-17&quot;:3.61},{&quot;2026-07-18&quot;:3.61},{&quot;2026-07-19&quot;:3.61},{&quot;2026-07-20&quot;:3.61},{&quot;2026-07-21&quot;:3.55},{&quot;2026-07-22&quot;:3.46},{&quot;2026-07-23&quot;:3.37},{&quot;2026-07-24&quot;:3.37},{&quot;2026-07-25&quot;:3.31},{&quot;2026-07-26&quot;:3.41},{&quot;2026-07-27&quot;:3.44},{&quot;2026-07-28&quot;:3.47},{&quot;2026-07-29&quot;:3.47},{&quot;2026-07-30&quot;:3.47},{&quot;2026-07-31&quot;:3.59},{&quot;2026-08-01&quot;:3.59},{&quot;2026-08-02&quot;:3.59},{&quot;2026-08-03&quot;:3.67},{&quot;2026-08-04&quot;:3.66},{&quot;2026-08-05&quot;:3.66},{&quot;2026-08-07&quot;:3.63},{&quot;2026-08-08&quot;:3.72},{&quot;2026-08-09&quot;:3.63},{&quot;2026-08-10&quot;:3.59},{&quot;2026-08-11&quot;:3.59},{&quot;2026-08-12&quot;:3.59},{&quot;2026-08-13&quot;:3.65},{&quot;2026-08-14&quot;:3.65},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.54},{&quot;2026-08-17&quot;:3.54},{&quot;2026-08-18&quot;:3.61},{&quot;2026-08-19&quot;:3.61},{&quot;2026-08-20&quot;:3.54},{&quot;2026-08-21&quot;:3.54},{&quot;2026-08-22&quot;:3.79},{&quot;2026-08-23&quot;:3.68},{&quot;2026-08-24&quot;:3.68},{&quot;2026-08-25&quot;:3.6},{&quot;2026-08-26&quot;:3.6},{&quot;2026-08-27&quot;:3.6},{&quot;2026-08-28&quot;:3.6},{&quot;2026-08-29&quot;:3.6},{&quot;2026-08-30&quot;:3.52},{&quot;2026-08-31&quot;:3.46},{&quot;2026-09-01&quot;:3.36},{&quot;2026-09-02&quot;:3.36},{&quot;2026-09-03&quot;:3.36},{&quot;2026-09-04&quot;:3.36},{&quot;2026-09-05&quot;:3.36},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.18},{&quot;2026-09-08&quot;:3.21},{&quot;2026-09-09&quot;:3.1},{&quot;2026-09-10&quot;:3.1},{&quot;2026-09-11&quot;:3.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="6284"
  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-chr 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">
            Hell&#39;s Caretaker
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Hell&#39;s Caretaker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/e/ce4004fe-e8ed-4806-878b-34ee3ed82016.jpg?1783947371" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Hell&#39;s Caretaker" src="https://cards.scryfall.io/large/front/c/e/ce4004fe-e8ed-4806-878b-34ee3ed82016.jpg?1783947371" />
    </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.93
              </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.72</span>
              <span class="text-xs text-grey-text">Credit: $0.94</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="31799"
  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-fut 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">
            Fleshwrither
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.84
          </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="Fleshwrither" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08e1a646-6925-4a53-a99c-8951af016a7a.jpg?1783943112" />

        <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">
            Fleshwrither
        </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 — Horror</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Fleshwrither" src="https://cards.scryfall.io/large/front/0/8/08e1a646-6925-4a53-a99c-8951af016a7a.jpg?1783943112" />
    </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.84
              </span>

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:35.1},{&quot;2026-06-12&quot;:35.1},{&quot;2026-06-13&quot;:35.1},{&quot;2026-06-14&quot;:35.1},{&quot;2026-06-15&quot;:35.1},{&quot;2026-06-16&quot;:35.1},{&quot;2026-06-17&quot;:35.1},{&quot;2026-06-18&quot;:35.1},{&quot;2026-06-19&quot;:35.1},{&quot;2026-06-20&quot;:35.1},{&quot;2026-06-21&quot;:35.1},{&quot;2026-06-22&quot;:35.1},{&quot;2026-06-23&quot;:35.1},{&quot;2026-06-24&quot;:35.1},{&quot;2026-06-25&quot;:35.1},{&quot;2026-06-26&quot;:35.1},{&quot;2026-06-27&quot;:35.1},{&quot;2026-06-28&quot;:35.1},{&quot;2026-06-29&quot;:35.1},{&quot;2026-06-30&quot;:35.1},{&quot;2026-07-01&quot;:35.1},{&quot;2026-07-02&quot;:35.1},{&quot;2026-07-03&quot;:35.1},{&quot;2026-07-04&quot;:35.1},{&quot;2026-07-05&quot;:35.1},{&quot;2026-07-06&quot;:35.1},{&quot;2026-07-07&quot;:35.1},{&quot;2026-07-08&quot;:35.1},{&quot;2026-07-09&quot;:35.1},{&quot;2026-07-10&quot;:35.1},{&quot;2026-07-11&quot;:35.1},{&quot;2026-07-12&quot;:35.1},{&quot;2026-07-13&quot;:35.1},{&quot;2026-07-14&quot;:35.1},{&quot;2026-07-15&quot;:35.1},{&quot;2026-07-16&quot;:35.1},{&quot;2026-07-17&quot;:35.1},{&quot;2026-07-18&quot;:35.1},{&quot;2026-07-19&quot;:35.1},{&quot;2026-07-20&quot;:35.1},{&quot;2026-07-21&quot;:35.1},{&quot;2026-07-23&quot;:35.1},{&quot;2026-07-25&quot;:35.1},{&quot;2026-07-26&quot;:35.1},{&quot;2026-07-27&quot;:35.1},{&quot;2026-07-28&quot;:35.1},{&quot;2026-07-29&quot;:35.1},{&quot;2026-07-30&quot;:35.1},{&quot;2026-07-31&quot;:35.1},{&quot;2026-08-01&quot;:35.1},{&quot;2026-08-02&quot;:35.1},{&quot;2026-08-03&quot;:35.1},{&quot;2026-08-04&quot;:35.1},{&quot;2026-08-05&quot;:35.1},{&quot;2026-08-07&quot;:35.1},{&quot;2026-08-08&quot;:35.1},{&quot;2026-08-09&quot;:35.1},{&quot;2026-08-10&quot;:35.1},{&quot;2026-08-11&quot;:35.1},{&quot;2026-08-12&quot;:35.1},{&quot;2026-08-13&quot;:37.25},{&quot;2026-08-14&quot;:37.25},{&quot;2026-08-15&quot;:37.25},{&quot;2026-08-16&quot;:37.25},{&quot;2026-08-17&quot;:37.25},{&quot;2026-08-18&quot;:37.25},{&quot;2026-08-19&quot;:37.25},{&quot;2026-08-20&quot;:37.25},{&quot;2026-08-21&quot;:37.25},{&quot;2026-08-22&quot;:37.25},{&quot;2026-08-23&quot;:37.25},{&quot;2026-08-24&quot;:37.25},{&quot;2026-08-25&quot;:37.25},{&quot;2026-08-26&quot;:37.25},{&quot;2026-08-27&quot;:37.25},{&quot;2026-08-28&quot;:37.25},{&quot;2026-08-29&quot;:37.25},{&quot;2026-08-30&quot;:37.25},{&quot;2026-08-31&quot;:37.25},{&quot;2026-09-01&quot;:37.25},{&quot;2026-09-02&quot;:37.25},{&quot;2026-09-03&quot;:37.25},{&quot;2026-09-04&quot;:37.25},{&quot;2026-09-05&quot;:42.0},{&quot;2026-09-06&quot;:42.0},{&quot;2026-09-07&quot;:42.0},{&quot;2026-09-08&quot;:42.0},{&quot;2026-09-09&quot;:42.0},{&quot;2026-09-10&quot;:42.0},{&quot;2026-09-11&quot;:24.69}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:5.58},{&quot;2026-06-12&quot;:5.58},{&quot;2026-06-13&quot;:5.58},{&quot;2026-06-14&quot;:5.48},{&quot;2026-06-15&quot;:5.48},{&quot;2026-06-16&quot;:5.84},{&quot;2026-06-17&quot;:5.84},{&quot;2026-06-18&quot;:5.84},{&quot;2026-06-19&quot;:5.97},{&quot;2026-06-20&quot;:5.97},{&quot;2026-06-21&quot;:5.97},{&quot;2026-06-22&quot;:5.97},{&quot;2026-06-23&quot;:5.96},{&quot;2026-06-24&quot;:5.96},{&quot;2026-06-25&quot;:5.96},{&quot;2026-06-26&quot;:5.96},{&quot;2026-06-27&quot;:5.96},{&quot;2026-06-28&quot;:5.82},{&quot;2026-06-29&quot;:5.82},{&quot;2026-06-30&quot;:5.82},{&quot;2026-07-01&quot;:5.82},{&quot;2026-07-02&quot;:5.82},{&quot;2026-07-03&quot;:5.82},{&quot;2026-07-04&quot;:5.82},{&quot;2026-07-05&quot;:5.82},{&quot;2026-07-06&quot;:5.82},{&quot;2026-07-07&quot;:5.82},{&quot;2026-07-08&quot;:5.82},{&quot;2026-07-09&quot;:5.82},{&quot;2026-07-10&quot;:5.82},{&quot;2026-07-11&quot;:5.82},{&quot;2026-07-12&quot;:5.82},{&quot;2026-07-13&quot;:5.87},{&quot;2026-07-14&quot;:5.87},{&quot;2026-07-15&quot;:5.85},{&quot;2026-07-16&quot;:5.85},{&quot;2026-07-17&quot;:5.85},{&quot;2026-07-18&quot;:5.85},{&quot;2026-07-19&quot;:5.85},{&quot;2026-07-20&quot;:5.85},{&quot;2026-07-21&quot;:5.8},{&quot;2026-07-23&quot;:5.8},{&quot;2026-07-25&quot;:5.76},{&quot;2026-07-26&quot;:5.76},{&quot;2026-07-27&quot;:5.76},{&quot;2026-07-28&quot;:5.76},{&quot;2026-07-29&quot;:5.76},{&quot;2026-07-30&quot;:5.21},{&quot;2026-07-31&quot;:5.21},{&quot;2026-08-01&quot;:5.21},{&quot;2026-08-02&quot;:5.21},{&quot;2026-08-03&quot;:5.13},{&quot;2026-08-04&quot;:5.13},{&quot;2026-08-05&quot;:4.71},{&quot;2026-08-07&quot;:4.71},{&quot;2026-08-08&quot;:4.71},{&quot;2026-08-09&quot;:4.24},{&quot;2026-08-10&quot;:4.33},{&quot;2026-08-11&quot;:4.33},{&quot;2026-08-12&quot;:4.33},{&quot;2026-08-13&quot;:4.33},{&quot;2026-08-14&quot;:4.33},{&quot;2026-08-15&quot;:4.33},{&quot;2026-08-16&quot;:4.33},{&quot;2026-08-17&quot;:4.33},{&quot;2026-08-18&quot;:4.33},{&quot;2026-08-19&quot;:4.33},{&quot;2026-08-20&quot;:4.33},{&quot;2026-08-21&quot;:4.33},{&quot;2026-08-22&quot;:3.9},{&quot;2026-08-23&quot;:3.9},{&quot;2026-08-24&quot;:3.9},{&quot;2026-08-25&quot;:3.9},{&quot;2026-08-26&quot;:3.9},{&quot;2026-08-27&quot;:3.9},{&quot;2026-08-28&quot;:3.74},{&quot;2026-08-29&quot;:3.74},{&quot;2026-08-30&quot;:3.38},{&quot;2026-08-31&quot;:3.03},{&quot;2026-09-01&quot;:3.03},{&quot;2026-09-02&quot;:2.56},{&quot;2026-09-03&quot;:2.64},{&quot;2026-09-04&quot;:2.74},{&quot;2026-09-05&quot;:2.84},{&quot;2026-09-06&quot;:2.84},{&quot;2026-09-07&quot;:2.84},{&quot;2026-09-08&quot;:2.84},{&quot;2026-09-09&quot;:2.84},{&quot;2026-09-10&quot;:2.84},{&quot;2026-09-11&quot;:2.84}]}"
        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="47541"
  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-a25 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">
            Nihil Spellbomb
        </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">
            $2.66
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Nihil Spellbomb
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nihil Spellbomb" src="https://cards.scryfall.io/large/front/e/5/e5892a23-efae-4731-9b8f-41c87960fe93.jpg?1783935110" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:8.2},{&quot;2026-06-11&quot;:8.2},{&quot;2026-06-12&quot;:8.2},{&quot;2026-06-13&quot;:8.2},{&quot;2026-06-14&quot;:8.2},{&quot;2026-06-15&quot;:8.2},{&quot;2026-06-16&quot;:8.2},{&quot;2026-06-17&quot;:8.2},{&quot;2026-06-18&quot;:8.26},{&quot;2026-06-19&quot;:8.26},{&quot;2026-06-20&quot;:8.26},{&quot;2026-06-21&quot;:8.26},{&quot;2026-06-22&quot;:8.26},{&quot;2026-06-23&quot;:8.3},{&quot;2026-06-24&quot;:8.3},{&quot;2026-06-25&quot;:8.3},{&quot;2026-06-26&quot;:8.3},{&quot;2026-06-27&quot;:8.3},{&quot;2026-06-28&quot;:8.27},{&quot;2026-06-29&quot;:8.27},{&quot;2026-06-30&quot;:8.27},{&quot;2026-07-01&quot;:8.27},{&quot;2026-07-02&quot;:8.27},{&quot;2026-07-03&quot;:8.27},{&quot;2026-07-04&quot;:8.27},{&quot;2026-07-05&quot;:8.31},{&quot;2026-07-06&quot;:8.31},{&quot;2026-07-07&quot;:8.31},{&quot;2026-07-08&quot;:8.31},{&quot;2026-07-09&quot;:8.31},{&quot;2026-07-10&quot;:8.31},{&quot;2026-07-11&quot;:8.31},{&quot;2026-07-12&quot;:8.31},{&quot;2026-07-13&quot;:8.31},{&quot;2026-07-14&quot;:8.31},{&quot;2026-07-15&quot;:8.27},{&quot;2026-07-16&quot;:8.31},{&quot;2026-07-17&quot;:8.31},{&quot;2026-07-18&quot;:8.31},{&quot;2026-07-19&quot;:8.31},{&quot;2026-07-20&quot;:8.31},{&quot;2026-07-21&quot;:8.31},{&quot;2026-07-23&quot;:8.31},{&quot;2026-07-25&quot;:8.31},{&quot;2026-07-26&quot;:8.31},{&quot;2026-07-27&quot;:8.31},{&quot;2026-07-29&quot;:8.22},{&quot;2026-07-30&quot;:8.22},{&quot;2026-07-31&quot;:8.22},{&quot;2026-08-01&quot;:8.22},{&quot;2026-08-02&quot;:8.22},{&quot;2026-08-03&quot;:8.22},{&quot;2026-08-04&quot;:8.22},{&quot;2026-08-05&quot;:8.22},{&quot;2026-08-07&quot;:8.23},{&quot;2026-08-08&quot;:8.23},{&quot;2026-08-09&quot;:8.23},{&quot;2026-08-10&quot;:8.23},{&quot;2026-08-11&quot;:8.23},{&quot;2026-08-12&quot;:8.23},{&quot;2026-08-13&quot;:8.23},{&quot;2026-08-14&quot;:8.21},{&quot;2026-08-15&quot;:8.21},{&quot;2026-08-16&quot;:8.17},{&quot;2026-08-17&quot;:8.17},{&quot;2026-08-18&quot;:8.17},{&quot;2026-08-19&quot;:8.17},{&quot;2026-08-20&quot;:8.17},{&quot;2026-08-21&quot;:8.18},{&quot;2026-08-22&quot;:8.18},{&quot;2026-08-23&quot;:8.23},{&quot;2026-08-24&quot;:8.18},{&quot;2026-08-25&quot;:8.18},{&quot;2026-08-26&quot;:8.25},{&quot;2026-08-27&quot;:8.25},{&quot;2026-08-28&quot;:8.25},{&quot;2026-08-29&quot;:8.25},{&quot;2026-08-30&quot;:8.25},{&quot;2026-08-31&quot;:8.25},{&quot;2026-09-01&quot;:8.25},{&quot;2026-09-02&quot;:8.25},{&quot;2026-09-03&quot;:8.25},{&quot;2026-09-04&quot;:8.25},{&quot;2026-09-05&quot;:8.25},{&quot;2026-09-06&quot;:8.25},{&quot;2026-09-07&quot;:8.24},{&quot;2026-09-08&quot;:8.24},{&quot;2026-09-09&quot;:8.24},{&quot;2026-09-10&quot;:8.24},{&quot;2026-09-11&quot;:8.24}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.99},{&quot;2026-06-11&quot;:1.99},{&quot;2026-06-12&quot;:2.0},{&quot;2026-06-13&quot;:1.98},{&quot;2026-06-14&quot;:1.98},{&quot;2026-06-15&quot;:1.98},{&quot;2026-06-16&quot;:1.98},{&quot;2026-06-17&quot;:2.04},{&quot;2026-06-18&quot;:2.02},{&quot;2026-06-19&quot;:2.04},{&quot;2026-06-20&quot;:1.94},{&quot;2026-06-21&quot;:1.88},{&quot;2026-06-22&quot;:1.87},{&quot;2026-06-23&quot;:1.8},{&quot;2026-06-24&quot;:1.77},{&quot;2026-06-25&quot;:1.77},{&quot;2026-06-26&quot;:1.77},{&quot;2026-06-27&quot;:1.81},{&quot;2026-06-28&quot;:1.75},{&quot;2026-06-29&quot;:1.74},{&quot;2026-06-30&quot;:1.77},{&quot;2026-07-01&quot;:1.8},{&quot;2026-07-02&quot;:1.81},{&quot;2026-07-03&quot;:1.82},{&quot;2026-07-04&quot;:1.79},{&quot;2026-07-05&quot;:1.8},{&quot;2026-07-06&quot;:1.86},{&quot;2026-07-07&quot;:1.87},{&quot;2026-07-08&quot;:1.87},{&quot;2026-07-09&quot;:1.87},{&quot;2026-07-10&quot;:1.87},{&quot;2026-07-11&quot;:1.86},{&quot;2026-07-12&quot;:1.87},{&quot;2026-07-13&quot;:1.87},{&quot;2026-07-14&quot;:1.88},{&quot;2026-07-15&quot;:1.88},{&quot;2026-07-16&quot;:1.88},{&quot;2026-07-17&quot;:1.88},{&quot;2026-07-18&quot;:1.95},{&quot;2026-07-19&quot;:1.95},{&quot;2026-07-20&quot;:1.95},{&quot;2026-07-21&quot;:1.96},{&quot;2026-07-23&quot;:1.96},{&quot;2026-07-25&quot;:2.03},{&quot;2026-07-26&quot;:2.03},{&quot;2026-07-27&quot;:2.03},{&quot;2026-07-29&quot;:2.08},{&quot;2026-07-30&quot;:2.1},{&quot;2026-07-31&quot;:2.15},{&quot;2026-08-01&quot;:2.16},{&quot;2026-08-02&quot;:2.13},{&quot;2026-08-03&quot;:2.16},{&quot;2026-08-04&quot;:2.16},{&quot;2026-08-05&quot;:2.13},{&quot;2026-08-07&quot;:2.18},{&quot;2026-08-08&quot;:2.19},{&quot;2026-08-09&quot;:2.21},{&quot;2026-08-10&quot;:2.17},{&quot;2026-08-11&quot;:2.18},{&quot;2026-08-12&quot;:2.18},{&quot;2026-08-13&quot;:2.21},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.35},{&quot;2026-08-17&quot;:2.34},{&quot;2026-08-18&quot;:2.34},{&quot;2026-08-19&quot;:2.37},{&quot;2026-08-20&quot;:2.37},{&quot;2026-08-21&quot;:2.37},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.41},{&quot;2026-08-24&quot;:2.44},{&quot;2026-08-25&quot;:2.44},{&quot;2026-08-26&quot;:2.51},{&quot;2026-08-27&quot;:2.47},{&quot;2026-08-28&quot;:2.49},{&quot;2026-08-29&quot;:2.49},{&quot;2026-08-30&quot;:2.5},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.49},{&quot;2026-09-02&quot;:2.53},{&quot;2026-09-03&quot;:2.57},{&quot;2026-09-04&quot;:2.57},{&quot;2026-09-05&quot;:2.57},{&quot;2026-09-06&quot;:2.64},{&quot;2026-09-07&quot;:2.64},{&quot;2026-09-08&quot;:2.69},{&quot;2026-09-09&quot;:2.64},{&quot;2026-09-10&quot;:2.65},{&quot;2026-09-11&quot;:2.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34588"
  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-iko 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-50 text-badge-text">
              ↑
              18%
            </span>

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

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

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

        <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/6/c/6c8c3f0e-7af4-410b-a675-9ea84f51e812.jpg?1783930996" />
    </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.43
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  18%
                </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.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">$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-08&quot;:1.39},{&quot;2026-06-10&quot;:1.34},{&quot;2026-06-11&quot;:1.34},{&quot;2026-06-12&quot;:1.34},{&quot;2026-06-13&quot;:1.34},{&quot;2026-06-14&quot;:1.34},{&quot;2026-06-15&quot;:1.34},{&quot;2026-06-16&quot;:1.34},{&quot;2026-06-17&quot;:1.34},{&quot;2026-06-18&quot;:1.34},{&quot;2026-06-19&quot;:1.27},{&quot;2026-06-20&quot;:1.27},{&quot;2026-06-21&quot;:1.27},{&quot;2026-06-22&quot;:1.27},{&quot;2026-06-24&quot;:1.19},{&quot;2026-06-25&quot;:1.19},{&quot;2026-06-26&quot;:1.22},{&quot;2026-06-27&quot;:1.21},{&quot;2026-06-28&quot;:1.17},{&quot;2026-06-29&quot;:1.17},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.13},{&quot;2026-07-02&quot;:1.13},{&quot;2026-07-03&quot;:1.11},{&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.11},{&quot;2026-07-08&quot;:1.11},{&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.13},{&quot;2026-07-14&quot;:1.13},{&quot;2026-07-15&quot;:1.13},{&quot;2026-07-16&quot;:1.13},{&quot;2026-07-17&quot;:1.13},{&quot;2026-07-18&quot;:1.13},{&quot;2026-07-19&quot;:1.13},{&quot;2026-07-20&quot;:1.13},{&quot;2026-07-21&quot;:1.13},{&quot;2026-07-23&quot;:1.15},{&quot;2026-07-25&quot;:1.14},{&quot;2026-07-26&quot;:1.14},{&quot;2026-07-27&quot;:1.17},{&quot;2026-07-29&quot;:1.27},{&quot;2026-07-30&quot;:1.27},{&quot;2026-07-31&quot;:1.27},{&quot;2026-08-01&quot;:1.27},{&quot;2026-08-02&quot;:1.27},{&quot;2026-08-03&quot;:1.27},{&quot;2026-08-04&quot;:1.27},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.2},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.14},{&quot;2026-08-10&quot;:1.14},{&quot;2026-08-11&quot;:1.14},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.14},{&quot;2026-08-14&quot;:1.14},{&quot;2026-08-15&quot;:1.14},{&quot;2026-08-16&quot;:1.14},{&quot;2026-08-17&quot;:1.14},{&quot;2026-08-18&quot;:1.14},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.05},{&quot;2026-08-23&quot;:1.11},{&quot;2026-08-24&quot;:1.11},{&quot;2026-08-25&quot;:1.11},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.11},{&quot;2026-08-28&quot;:1.15},{&quot;2026-08-29&quot;:1.15},{&quot;2026-08-30&quot;:1.15},{&quot;2026-08-31&quot;:1.15},{&quot;2026-09-01&quot;:1.15},{&quot;2026-09-02&quot;:1.15},{&quot;2026-09-03&quot;:1.14},{&quot;2026-09-04&quot;:1.14},{&quot;2026-09-05&quot;:1.15},{&quot;2026-09-06&quot;:1.15},{&quot;2026-09-07&quot;:1.15},{&quot;2026-09-08&quot;:1.15},{&quot;2026-09-09&quot;:1.15},{&quot;2026-09-10&quot;:1.15},{&quot;2026-09-11&quot;:1.15}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.18},{&quot;2026-06-10&quot;:2.22},{&quot;2026-06-11&quot;:2.31},{&quot;2026-06-12&quot;:2.31},{&quot;2026-06-13&quot;:2.31},{&quot;2026-06-14&quot;:2.31},{&quot;2026-06-15&quot;:2.35},{&quot;2026-06-16&quot;:2.35},{&quot;2026-06-17&quot;:2.28},{&quot;2026-06-18&quot;:2.16},{&quot;2026-06-19&quot;:2.14},{&quot;2026-06-20&quot;:2.14},{&quot;2026-06-21&quot;:2.04},{&quot;2026-06-22&quot;:2.01},{&quot;2026-06-24&quot;:2.05},{&quot;2026-06-25&quot;:2.04},{&quot;2026-06-26&quot;:2.03},{&quot;2026-06-27&quot;:1.91},{&quot;2026-06-28&quot;:1.91},{&quot;2026-06-29&quot;:1.87},{&quot;2026-06-30&quot;:1.82},{&quot;2026-07-01&quot;:1.82},{&quot;2026-07-02&quot;:1.82},{&quot;2026-07-03&quot;:1.82},{&quot;2026-07-04&quot;:1.79},{&quot;2026-07-05&quot;:1.75},{&quot;2026-07-06&quot;:1.75},{&quot;2026-07-07&quot;:1.75},{&quot;2026-07-08&quot;:1.75},{&quot;2026-07-09&quot;:1.75},{&quot;2026-07-10&quot;:1.75},{&quot;2026-07-11&quot;:1.75},{&quot;2026-07-12&quot;:1.75},{&quot;2026-07-13&quot;:1.73},{&quot;2026-07-14&quot;:1.74},{&quot;2026-07-15&quot;:1.76},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:2.01},{&quot;2026-07-18&quot;:2.01},{&quot;2026-07-19&quot;:2.0},{&quot;2026-07-20&quot;:2.01},{&quot;2026-07-21&quot;:2.01},{&quot;2026-07-23&quot;:2.07},{&quot;2026-07-25&quot;:2.07},{&quot;2026-07-26&quot;:2.07},{&quot;2026-07-27&quot;:2.03},{&quot;2026-07-29&quot;:2.05},{&quot;2026-07-30&quot;:2.02},{&quot;2026-07-31&quot;:1.99},{&quot;2026-08-01&quot;:1.99},{&quot;2026-08-02&quot;:1.99},{&quot;2026-08-03&quot;:1.99},{&quot;2026-08-04&quot;:1.99},{&quot;2026-08-05&quot;:1.99},{&quot;2026-08-07&quot;:1.99},{&quot;2026-08-08&quot;:1.99},{&quot;2026-08-09&quot;:1.93},{&quot;2026-08-10&quot;:2.02},{&quot;2026-08-11&quot;:1.97},{&quot;2026-08-12&quot;:1.97},{&quot;2026-08-13&quot;:1.9},{&quot;2026-08-14&quot;:1.9},{&quot;2026-08-15&quot;:1.9},{&quot;2026-08-16&quot;:1.82},{&quot;2026-08-17&quot;:1.82},{&quot;2026-08-18&quot;:1.82},{&quot;2026-08-19&quot;:1.73},{&quot;2026-08-20&quot;:1.73},{&quot;2026-08-21&quot;:1.54},{&quot;2026-08-22&quot;:1.35},{&quot;2026-08-23&quot;:1.35},{&quot;2026-08-24&quot;:1.36},{&quot;2026-08-25&quot;:1.36},{&quot;2026-08-26&quot;:1.5},{&quot;2026-08-27&quot;:1.51},{&quot;2026-08-28&quot;:1.51},{&quot;2026-08-29&quot;:1.51},{&quot;2026-08-30&quot;:1.67},{&quot;2026-08-31&quot;:1.69},{&quot;2026-09-01&quot;:1.69},{&quot;2026-09-02&quot;:2.08},{&quot;2026-09-03&quot;:2.06},{&quot;2026-09-04&quot;:2.06},{&quot;2026-09-05&quot;:2.06},{&quot;2026-09-06&quot;:2.06},{&quot;2026-09-07&quot;:2.27},{&quot;2026-09-08&quot;:2.52},{&quot;2026-09-09&quot;:2.43},{&quot;2026-09-10&quot;:2.43},{&quot;2026-09-11&quot;:2.43}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76738"
  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-ths 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">
            Ashiok, Nightmare Weaver
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ashiok
      </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.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="Ashiok, Nightmare Weaver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/9/599c3c9f-dfb7-4357-9d9c-9a1a4616b103.jpg?1783939731" />

        <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">
            Ashiok, Nightmare Weaver
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Ashiok</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><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="Ashiok, Nightmare Weaver" src="https://cards.scryfall.io/large/front/5/9/599c3c9f-dfb7-4357-9d9c-9a1a4616b103.jpg?1783939731" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:8.65},{&quot;2026-06-12&quot;:8.65},{&quot;2026-06-13&quot;:8.82},{&quot;2026-06-14&quot;:8.92},{&quot;2026-06-15&quot;:8.92},{&quot;2026-06-16&quot;:8.92},{&quot;2026-06-17&quot;:8.92},{&quot;2026-06-18&quot;:8.92},{&quot;2026-06-19&quot;:8.92},{&quot;2026-06-20&quot;:8.92},{&quot;2026-06-21&quot;:8.92},{&quot;2026-06-22&quot;:8.98},{&quot;2026-06-23&quot;:9.01},{&quot;2026-06-24&quot;:9.02},{&quot;2026-06-25&quot;:9.02},{&quot;2026-06-26&quot;:9.02},{&quot;2026-06-27&quot;:9.02},{&quot;2026-06-28&quot;:9.02},{&quot;2026-06-29&quot;:9.02},{&quot;2026-06-30&quot;:9.02},{&quot;2026-07-01&quot;:9.02},{&quot;2026-07-02&quot;:9.02},{&quot;2026-07-03&quot;:9.02},{&quot;2026-07-04&quot;:9.02},{&quot;2026-07-05&quot;:9.02},{&quot;2026-07-06&quot;:9.02},{&quot;2026-07-07&quot;:9.02},{&quot;2026-07-08&quot;:9.02},{&quot;2026-07-09&quot;:9.02},{&quot;2026-07-10&quot;:9.02},{&quot;2026-07-11&quot;:9.02},{&quot;2026-07-12&quot;:9.02},{&quot;2026-07-13&quot;:9.02},{&quot;2026-07-14&quot;:9.02},{&quot;2026-07-15&quot;:9.02},{&quot;2026-07-16&quot;:9.02},{&quot;2026-07-17&quot;:8.98},{&quot;2026-07-18&quot;:8.98},{&quot;2026-07-19&quot;:8.98},{&quot;2026-07-20&quot;:8.98},{&quot;2026-07-21&quot;:8.98},{&quot;2026-07-23&quot;:8.98},{&quot;2026-07-25&quot;:8.98},{&quot;2026-07-26&quot;:8.98},{&quot;2026-07-27&quot;:8.98},{&quot;2026-07-28&quot;:8.98},{&quot;2026-07-29&quot;:8.98},{&quot;2026-07-30&quot;:8.98},{&quot;2026-07-31&quot;:8.98},{&quot;2026-08-01&quot;:8.98},{&quot;2026-08-02&quot;:8.98},{&quot;2026-08-03&quot;:9.06},{&quot;2026-08-04&quot;:9.16},{&quot;2026-08-05&quot;:9.16},{&quot;2026-08-07&quot;:9.16},{&quot;2026-08-08&quot;:9.16},{&quot;2026-08-09&quot;:9.34},{&quot;2026-08-10&quot;:9.34},{&quot;2026-08-11&quot;:9.34},{&quot;2026-08-12&quot;:9.34},{&quot;2026-08-13&quot;:9.38},{&quot;2026-08-14&quot;:9.38},{&quot;2026-08-15&quot;:9.38},{&quot;2026-08-16&quot;:9.38},{&quot;2026-08-17&quot;:9.38},{&quot;2026-08-18&quot;:9.38},{&quot;2026-08-19&quot;:9.38},{&quot;2026-08-20&quot;:9.38},{&quot;2026-08-21&quot;:9.38},{&quot;2026-08-22&quot;:9.38},{&quot;2026-08-23&quot;:9.42},{&quot;2026-08-24&quot;:9.42},{&quot;2026-08-25&quot;:9.42},{&quot;2026-08-26&quot;:9.42},{&quot;2026-08-27&quot;:9.42},{&quot;2026-08-28&quot;:9.46},{&quot;2026-08-29&quot;:9.46},{&quot;2026-08-30&quot;:9.46},{&quot;2026-08-31&quot;:9.46},{&quot;2026-09-01&quot;:9.46},{&quot;2026-09-02&quot;:9.46},{&quot;2026-09-03&quot;:9.46},{&quot;2026-09-04&quot;:9.46},{&quot;2026-09-05&quot;:9.46},{&quot;2026-09-06&quot;:9.58},{&quot;2026-09-07&quot;:9.58},{&quot;2026-09-08&quot;:9.58},{&quot;2026-09-09&quot;:9.58},{&quot;2026-09-10&quot;:9.65},{&quot;2026-09-11&quot;:9.65}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.54},{&quot;2026-06-12&quot;:1.54},{&quot;2026-06-13&quot;:1.54},{&quot;2026-06-14&quot;:1.55},{&quot;2026-06-15&quot;:1.54},{&quot;2026-06-16&quot;:1.54},{&quot;2026-06-17&quot;:1.54},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.47},{&quot;2026-06-20&quot;:1.44},{&quot;2026-06-21&quot;:1.44},{&quot;2026-06-22&quot;:1.51},{&quot;2026-06-23&quot;:1.48},{&quot;2026-06-24&quot;:1.46},{&quot;2026-06-25&quot;:1.49},{&quot;2026-06-26&quot;:1.5},{&quot;2026-06-27&quot;:1.5},{&quot;2026-06-28&quot;:1.5},{&quot;2026-06-29&quot;:1.5},{&quot;2026-06-30&quot;:1.5},{&quot;2026-07-01&quot;:1.5},{&quot;2026-07-02&quot;:1.51},{&quot;2026-07-03&quot;:1.51},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.53},{&quot;2026-07-06&quot;:1.51},{&quot;2026-07-07&quot;:1.51},{&quot;2026-07-08&quot;:1.53},{&quot;2026-07-09&quot;:1.53},{&quot;2026-07-10&quot;:1.5},{&quot;2026-07-11&quot;:1.5},{&quot;2026-07-12&quot;:1.5},{&quot;2026-07-13&quot;:1.5},{&quot;2026-07-14&quot;:1.5},{&quot;2026-07-15&quot;:1.5},{&quot;2026-07-16&quot;:1.5},{&quot;2026-07-17&quot;:1.5},{&quot;2026-07-18&quot;:1.49},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.48},{&quot;2026-07-21&quot;:1.49},{&quot;2026-07-23&quot;:1.48},{&quot;2026-07-25&quot;:1.5},{&quot;2026-07-26&quot;:1.5},{&quot;2026-07-27&quot;:1.47},{&quot;2026-07-28&quot;:1.42},{&quot;2026-07-29&quot;:1.42},{&quot;2026-07-30&quot;:1.41},{&quot;2026-07-31&quot;:1.4},{&quot;2026-08-01&quot;:1.4},{&quot;2026-08-02&quot;:1.4},{&quot;2026-08-03&quot;:1.41},{&quot;2026-08-04&quot;:1.43},{&quot;2026-08-05&quot;:1.43},{&quot;2026-08-07&quot;:1.44},{&quot;2026-08-08&quot;:1.44},{&quot;2026-08-09&quot;:1.44},{&quot;2026-08-10&quot;:1.47},{&quot;2026-08-11&quot;:1.46},{&quot;2026-08-12&quot;:1.49},{&quot;2026-08-13&quot;:1.48},{&quot;2026-08-14&quot;:1.45},{&quot;2026-08-15&quot;:1.46},{&quot;2026-08-16&quot;:1.43},{&quot;2026-08-17&quot;:1.46},{&quot;2026-08-18&quot;:1.46},{&quot;2026-08-19&quot;:1.46},{&quot;2026-08-20&quot;:1.46},{&quot;2026-08-21&quot;:1.48},{&quot;2026-08-22&quot;:1.45},{&quot;2026-08-23&quot;:1.45},{&quot;2026-08-24&quot;:1.53},{&quot;2026-08-25&quot;:1.53},{&quot;2026-08-26&quot;:1.53},{&quot;2026-08-27&quot;:1.53},{&quot;2026-08-28&quot;:1.6},{&quot;2026-08-29&quot;:1.6},{&quot;2026-08-30&quot;:1.59},{&quot;2026-08-31&quot;:1.59},{&quot;2026-09-01&quot;:1.66},{&quot;2026-09-02&quot;:1.66},{&quot;2026-09-03&quot;:1.62},{&quot;2026-09-04&quot;:1.92},{&quot;2026-09-05&quot;:2.29},{&quot;2026-09-06&quot;:2.35},{&quot;2026-09-07&quot;:2.35},{&quot;2026-09-08&quot;:2.35},{&quot;2026-09-09&quot;:2.34},{&quot;2026-09-10&quot;:2.34},{&quot;2026-09-11&quot;:2.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="4548"
  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-bfz 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">
            Sire of Stagnation
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Sire of Stagnation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/6/d6252913-7b8e-4746-91e0-658ce13cdf18.jpg?1783938181" />

        <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">
            Sire of Stagnation
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Sire of Stagnation" src="https://cards.scryfall.io/large/front/d/6/d6252913-7b8e-4746-91e0-658ce13cdf18.jpg?1783938181" />
    </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.29
              </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">
                $8.63
              </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.95</span>
              <span class="text-xs text-grey-text">Credit: $1.24</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:8.45},{&quot;2026-06-14&quot;:8.45},{&quot;2026-06-15&quot;:8.45},{&quot;2026-06-16&quot;:8.45},{&quot;2026-06-17&quot;:8.45},{&quot;2026-06-18&quot;:8.45},{&quot;2026-06-19&quot;:8.45},{&quot;2026-06-20&quot;:8.45},{&quot;2026-06-21&quot;:8.45},{&quot;2026-06-22&quot;:8.45},{&quot;2026-06-23&quot;:8.45},{&quot;2026-06-24&quot;:8.45},{&quot;2026-06-25&quot;:8.45},{&quot;2026-06-26&quot;:8.45},{&quot;2026-06-27&quot;:8.45},{&quot;2026-06-28&quot;:8.45},{&quot;2026-06-29&quot;:8.45},{&quot;2026-06-30&quot;:8.45},{&quot;2026-07-01&quot;:8.45},{&quot;2026-07-02&quot;:8.45},{&quot;2026-07-03&quot;:8.45},{&quot;2026-07-04&quot;:8.44},{&quot;2026-07-05&quot;:8.44},{&quot;2026-07-06&quot;:8.44},{&quot;2026-07-07&quot;:8.44},{&quot;2026-07-08&quot;:8.44},{&quot;2026-07-09&quot;:8.44},{&quot;2026-07-10&quot;:8.44},{&quot;2026-07-11&quot;:8.44},{&quot;2026-07-12&quot;:8.44},{&quot;2026-07-13&quot;:8.44},{&quot;2026-07-14&quot;:8.44},{&quot;2026-07-15&quot;:8.25},{&quot;2026-07-16&quot;:8.25},{&quot;2026-07-17&quot;:8.25},{&quot;2026-07-18&quot;:8.25},{&quot;2026-07-19&quot;:8.25},{&quot;2026-07-20&quot;:8.25},{&quot;2026-07-21&quot;:8.07},{&quot;2026-07-22&quot;:8.07},{&quot;2026-07-23&quot;:8.07},{&quot;2026-07-24&quot;:8.06},{&quot;2026-07-25&quot;:8.06},{&quot;2026-07-26&quot;:8.06},{&quot;2026-07-27&quot;:8.06},{&quot;2026-07-28&quot;:8.06},{&quot;2026-07-29&quot;:8.06},{&quot;2026-07-30&quot;:8.22},{&quot;2026-07-31&quot;:8.22},{&quot;2026-08-01&quot;:8.22},{&quot;2026-08-02&quot;:8.22},{&quot;2026-08-03&quot;:8.22},{&quot;2026-08-04&quot;:8.22},{&quot;2026-08-05&quot;:8.22},{&quot;2026-08-07&quot;:8.23},{&quot;2026-08-08&quot;:8.23},{&quot;2026-08-09&quot;:8.23},{&quot;2026-08-10&quot;:8.23},{&quot;2026-08-11&quot;:8.23},{&quot;2026-08-12&quot;:8.23},{&quot;2026-08-13&quot;:8.23},{&quot;2026-08-14&quot;:8.23},{&quot;2026-08-15&quot;:8.23},{&quot;2026-08-16&quot;:8.23},{&quot;2026-08-17&quot;:8.23},{&quot;2026-08-18&quot;:8.23},{&quot;2026-08-19&quot;:8.27},{&quot;2026-08-20&quot;:8.27},{&quot;2026-08-21&quot;:8.27},{&quot;2026-08-22&quot;:8.27},{&quot;2026-08-23&quot;:8.27},{&quot;2026-08-24&quot;:8.27},{&quot;2026-08-25&quot;:8.26},{&quot;2026-08-26&quot;:8.26},{&quot;2026-08-27&quot;:8.26},{&quot;2026-08-28&quot;:8.26},{&quot;2026-08-29&quot;:8.26},{&quot;2026-08-30&quot;:8.42},{&quot;2026-08-31&quot;:8.42},{&quot;2026-09-01&quot;:8.42},{&quot;2026-09-02&quot;:8.42},{&quot;2026-09-03&quot;:8.42},{&quot;2026-09-04&quot;:8.42},{&quot;2026-09-05&quot;:8.42},{&quot;2026-09-06&quot;:8.42},{&quot;2026-09-07&quot;:8.42},{&quot;2026-09-08&quot;:8.42},{&quot;2026-09-09&quot;:8.63},{&quot;2026-09-10&quot;:8.63},{&quot;2026-09-11&quot;:8.63}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.24},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.26},{&quot;2026-06-16&quot;:1.26},{&quot;2026-06-17&quot;:1.26},{&quot;2026-06-18&quot;:1.26},{&quot;2026-06-19&quot;:1.26},{&quot;2026-06-20&quot;:1.26},{&quot;2026-06-21&quot;:1.26},{&quot;2026-06-22&quot;:1.26},{&quot;2026-06-23&quot;:1.26},{&quot;2026-06-24&quot;:1.25},{&quot;2026-06-25&quot;:1.25},{&quot;2026-06-26&quot;:1.25},{&quot;2026-06-27&quot;:1.25},{&quot;2026-06-28&quot;:1.24},{&quot;2026-06-29&quot;:1.19},{&quot;2026-06-30&quot;:1.14},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.14},{&quot;2026-07-03&quot;:1.14},{&quot;2026-07-04&quot;:1.14},{&quot;2026-07-05&quot;:1.14},{&quot;2026-07-06&quot;:1.16},{&quot;2026-07-07&quot;:1.16},{&quot;2026-07-08&quot;:1.16},{&quot;2026-07-09&quot;:1.16},{&quot;2026-07-10&quot;:1.16},{&quot;2026-07-11&quot;:1.12},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&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.12},{&quot;2026-07-21&quot;:1.15},{&quot;2026-07-22&quot;:1.15},{&quot;2026-07-23&quot;:1.16},{&quot;2026-07-24&quot;:1.16},{&quot;2026-07-25&quot;:1.19},{&quot;2026-07-26&quot;:1.18},{&quot;2026-07-27&quot;:1.39},{&quot;2026-07-28&quot;:1.39},{&quot;2026-07-29&quot;:1.39},{&quot;2026-07-30&quot;:1.4},{&quot;2026-07-31&quot;:1.42},{&quot;2026-08-01&quot;:1.5},{&quot;2026-08-02&quot;:1.58},{&quot;2026-08-03&quot;:1.64},{&quot;2026-08-04&quot;:1.64},{&quot;2026-08-05&quot;:1.64},{&quot;2026-08-07&quot;:1.64},{&quot;2026-08-08&quot;:1.73},{&quot;2026-08-09&quot;:1.7},{&quot;2026-08-10&quot;:1.7},{&quot;2026-08-11&quot;:1.76},{&quot;2026-08-12&quot;:1.88},{&quot;2026-08-13&quot;:1.88},{&quot;2026-08-14&quot;:1.87},{&quot;2026-08-15&quot;:1.87},{&quot;2026-08-16&quot;:1.87},{&quot;2026-08-17&quot;:1.88},{&quot;2026-08-18&quot;:1.88},{&quot;2026-08-19&quot;:1.88},{&quot;2026-08-20&quot;:1.92},{&quot;2026-08-21&quot;:1.71},{&quot;2026-08-22&quot;:1.71},{&quot;2026-08-23&quot;:1.74},{&quot;2026-08-24&quot;:1.79},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.86},{&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.83},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.98},{&quot;2026-09-02&quot;:2.05},{&quot;2026-09-03&quot;:2.15},{&quot;2026-09-04&quot;:2.11},{&quot;2026-09-05&quot;:2.11},{&quot;2026-09-06&quot;:2.28},{&quot;2026-09-07&quot;:2.28},{&quot;2026-09-08&quot;:2.28},{&quot;2026-09-09&quot;:2.28},{&quot;2026-09-10&quot;:2.24},{&quot;2026-09-11&quot;:2.29}]}"
        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="28981"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $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="Bojuka Bog" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/e/6e1d1e83-c34a-46af-8aec-ff698446099f.jpg?1783926162" />

        <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">
            Bojuka Bog
        </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="Bojuka Bog" src="https://cards.scryfall.io/large/front/6/e/6e1d1e83-c34a-46af-8aec-ff698446099f.jpg?1783926162" />
    </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-50">
                  ↑
                  9%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.18},{&quot;2026-06-12&quot;:1.2},{&quot;2026-06-13&quot;:1.2},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.24},{&quot;2026-06-16&quot;:1.24},{&quot;2026-06-17&quot;:1.29},{&quot;2026-06-18&quot;:1.29},{&quot;2026-06-19&quot;:1.29},{&quot;2026-06-20&quot;:1.29},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.36},{&quot;2026-06-23&quot;:1.45},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.45},{&quot;2026-06-26&quot;:1.43},{&quot;2026-06-27&quot;:1.5},{&quot;2026-06-28&quot;:1.53},{&quot;2026-06-29&quot;:1.53},{&quot;2026-06-30&quot;:1.53},{&quot;2026-07-01&quot;:1.51},{&quot;2026-07-02&quot;:1.51},{&quot;2026-07-03&quot;:1.51},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.51},{&quot;2026-07-06&quot;:1.51},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.55},{&quot;2026-07-09&quot;:1.55},{&quot;2026-07-10&quot;:1.55},{&quot;2026-07-11&quot;:1.55},{&quot;2026-07-12&quot;:1.7},{&quot;2026-07-13&quot;:1.7},{&quot;2026-07-14&quot;:1.7},{&quot;2026-07-15&quot;:1.8},{&quot;2026-07-16&quot;:1.82},{&quot;2026-07-17&quot;:1.82},{&quot;2026-07-18&quot;:1.78},{&quot;2026-07-19&quot;:1.86},{&quot;2026-07-20&quot;:1.86},{&quot;2026-07-21&quot;:1.91},{&quot;2026-07-23&quot;:1.91},{&quot;2026-07-25&quot;:1.92},{&quot;2026-07-26&quot;:1.92},{&quot;2026-07-27&quot;:1.94},{&quot;2026-07-28&quot;:1.98},{&quot;2026-07-29&quot;:1.98},{&quot;2026-07-30&quot;:1.98},{&quot;2026-07-31&quot;:1.99},{&quot;2026-08-01&quot;:1.99},{&quot;2026-08-02&quot;:2.0},{&quot;2026-08-03&quot;:2.02},{&quot;2026-08-04&quot;:2.02},{&quot;2026-08-05&quot;:1.99},{&quot;2026-08-07&quot;:1.86},{&quot;2026-08-08&quot;:1.81},{&quot;2026-08-09&quot;:1.79},{&quot;2026-08-10&quot;:1.8},{&quot;2026-08-11&quot;:1.8},{&quot;2026-08-12&quot;:1.81},{&quot;2026-08-13&quot;:1.81},{&quot;2026-08-14&quot;:1.81},{&quot;2026-08-15&quot;:1.81},{&quot;2026-08-16&quot;:1.81},{&quot;2026-08-17&quot;:1.81},{&quot;2026-08-18&quot;:1.8},{&quot;2026-08-19&quot;:1.86},{&quot;2026-08-20&quot;:1.86},{&quot;2026-08-21&quot;:1.81},{&quot;2026-08-22&quot;:1.81},{&quot;2026-08-23&quot;:1.81},{&quot;2026-08-24&quot;:1.8},{&quot;2026-08-25&quot;:1.8},{&quot;2026-08-26&quot;:1.78},{&quot;2026-08-27&quot;:1.78},{&quot;2026-08-28&quot;:1.83},{&quot;2026-08-29&quot;:1.83},{&quot;2026-08-30&quot;:1.83},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.87},{&quot;2026-09-02&quot;:1.89},{&quot;2026-09-03&quot;:1.87},{&quot;2026-09-04&quot;:1.87},{&quot;2026-09-05&quot;:1.87},{&quot;2026-09-06&quot;:1.87},{&quot;2026-09-07&quot;:1.95},{&quot;2026-09-08&quot;:1.95},{&quot;2026-09-09&quot;:1.98},{&quot;2026-09-10&quot;:1.98},{&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="50976"
  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-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">
            Sign in Blood
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $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="Sign in Blood" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/2/12f94c5a-684e-4a48-8280-f0e3db712d75.jpg?1783938409" />

        <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">
            Sign in Blood
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Sign in Blood" src="https://cards.scryfall.io/large/front/1/2/12f94c5a-684e-4a48-8280-f0e3db712d75.jpg?1783938409" />
    </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-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.22
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:1.5},{&quot;2026-06-10&quot;:1.56},{&quot;2026-06-11&quot;:1.56},{&quot;2026-06-12&quot;:1.56},{&quot;2026-06-13&quot;:1.56},{&quot;2026-06-14&quot;:1.56},{&quot;2026-06-15&quot;:1.56},{&quot;2026-06-16&quot;:1.56},{&quot;2026-06-17&quot;:1.56},{&quot;2026-06-18&quot;:1.56},{&quot;2026-06-19&quot;:1.56},{&quot;2026-06-20&quot;:1.56},{&quot;2026-06-21&quot;:1.56},{&quot;2026-06-22&quot;:1.56},{&quot;2026-06-24&quot;:1.6},{&quot;2026-06-25&quot;:1.6},{&quot;2026-06-26&quot;:1.6},{&quot;2026-06-27&quot;:1.6},{&quot;2026-06-28&quot;:1.6},{&quot;2026-06-29&quot;:1.6},{&quot;2026-06-30&quot;:1.6},{&quot;2026-07-01&quot;:1.56},{&quot;2026-07-02&quot;:1.56},{&quot;2026-07-03&quot;:1.55},{&quot;2026-07-04&quot;:1.55},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.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.59},{&quot;2026-07-15&quot;:1.59},{&quot;2026-07-16&quot;:1.59},{&quot;2026-07-17&quot;:1.59},{&quot;2026-07-18&quot;:1.59},{&quot;2026-07-19&quot;:1.59},{&quot;2026-07-20&quot;:1.59},{&quot;2026-07-21&quot;:1.59},{&quot;2026-07-23&quot;:1.59},{&quot;2026-07-25&quot;:1.59},{&quot;2026-07-26&quot;:1.59},{&quot;2026-07-27&quot;:1.59},{&quot;2026-07-29&quot;:1.59},{&quot;2026-07-30&quot;:1.59},{&quot;2026-07-31&quot;:1.59},{&quot;2026-08-01&quot;:1.59},{&quot;2026-08-02&quot;:1.59},{&quot;2026-08-03&quot;:1.59},{&quot;2026-08-04&quot;:1.59},{&quot;2026-08-05&quot;:1.59},{&quot;2026-08-07&quot;:1.59},{&quot;2026-08-08&quot;:1.59},{&quot;2026-08-09&quot;:1.59},{&quot;2026-08-10&quot;:1.59},{&quot;2026-08-11&quot;:1.59},{&quot;2026-08-12&quot;:1.59},{&quot;2026-08-13&quot;:1.59},{&quot;2026-08-14&quot;:1.59},{&quot;2026-08-15&quot;:1.59},{&quot;2026-08-16&quot;:1.57},{&quot;2026-08-17&quot;:1.57},{&quot;2026-08-18&quot;:1.44},{&quot;2026-08-19&quot;:1.44},{&quot;2026-08-20&quot;:1.44},{&quot;2026-08-21&quot;:1.31},{&quot;2026-08-22&quot;:1.31},{&quot;2026-08-23&quot;:1.31},{&quot;2026-08-24&quot;:1.31},{&quot;2026-08-25&quot;:1.31},{&quot;2026-08-26&quot;:1.31},{&quot;2026-08-27&quot;:1.31},{&quot;2026-08-28&quot;:1.31},{&quot;2026-08-29&quot;:1.31},{&quot;2026-08-30&quot;:1.31},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.23},{&quot;2026-09-03&quot;:1.23},{&quot;2026-09-04&quot;:1.23},{&quot;2026-09-05&quot;:1.23},{&quot;2026-09-06&quot;:1.21},{&quot;2026-09-07&quot;:1.22},{&quot;2026-09-08&quot;:1.22},{&quot;2026-09-09&quot;:1.22},{&quot;2026-09-10&quot;:1.22},{&quot;2026-09-11&quot;:1.22}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.8},{&quot;2026-06-10&quot;:1.08},{&quot;2026-06-11&quot;:1.08},{&quot;2026-06-12&quot;:1.5},{&quot;2026-06-13&quot;:1.5},{&quot;2026-06-14&quot;:1.48},{&quot;2026-06-15&quot;:1.48},{&quot;2026-06-16&quot;:1.46},{&quot;2026-06-17&quot;:1.46},{&quot;2026-06-18&quot;:1.46},{&quot;2026-06-19&quot;:1.46},{&quot;2026-06-20&quot;:1.46},{&quot;2026-06-21&quot;:1.46},{&quot;2026-06-22&quot;:1.46},{&quot;2026-06-24&quot;:1.49},{&quot;2026-06-25&quot;:1.49},{&quot;2026-06-26&quot;:1.49},{&quot;2026-06-27&quot;:1.49},{&quot;2026-06-28&quot;:1.41},{&quot;2026-06-29&quot;:1.41},{&quot;2026-06-30&quot;:1.4},{&quot;2026-07-01&quot;:1.32},{&quot;2026-07-02&quot;:0.98},{&quot;2026-07-03&quot;:0.98},{&quot;2026-07-04&quot;:0.98},{&quot;2026-07-05&quot;:0.99},{&quot;2026-07-06&quot;:0.99},{&quot;2026-07-07&quot;:0.99},{&quot;2026-07-08&quot;:0.99},{&quot;2026-07-09&quot;:0.99},{&quot;2026-07-10&quot;:0.99},{&quot;2026-07-11&quot;:0.97},{&quot;2026-07-12&quot;:0.97},{&quot;2026-07-13&quot;:0.97},{&quot;2026-07-14&quot;:0.97},{&quot;2026-07-15&quot;:0.97},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:0.97},{&quot;2026-07-19&quot;:0.84},{&quot;2026-07-20&quot;:0.84},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-23&quot;:0.84},{&quot;2026-07-25&quot;:0.85},{&quot;2026-07-26&quot;:0.85},{&quot;2026-07-27&quot;:0.87},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.89},{&quot;2026-07-31&quot;:0.87},{&quot;2026-08-01&quot;:0.87},{&quot;2026-08-02&quot;:0.87},{&quot;2026-08-03&quot;:0.87},{&quot;2026-08-04&quot;:0.87},{&quot;2026-08-05&quot;:0.87},{&quot;2026-08-07&quot;:0.91},{&quot;2026-08-08&quot;:0.91},{&quot;2026-08-09&quot;:1.33},{&quot;2026-08-10&quot;:1.33},{&quot;2026-08-11&quot;:1.32},{&quot;2026-08-12&quot;:1.32},{&quot;2026-08-13&quot;:1.32},{&quot;2026-08-14&quot;:1.76},{&quot;2026-08-15&quot;:1.76},{&quot;2026-08-16&quot;:1.76},{&quot;2026-08-17&quot;:1.76},{&quot;2026-08-18&quot;:2.17},{&quot;2026-08-19&quot;:2.33},{&quot;2026-08-20&quot;:2.33},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.35},{&quot;2026-08-23&quot;:2.42},{&quot;2026-08-24&quot;:2.43},{&quot;2026-08-25&quot;:2.43},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.21},{&quot;2026-08-29&quot;:2.21},{&quot;2026-08-30&quot;:2.24},{&quot;2026-08-31&quot;:2.24},{&quot;2026-09-01&quot;:2.24},{&quot;2026-09-02&quot;:2.14},{&quot;2026-09-03&quot;:2.14},{&quot;2026-09-04&quot;:1.99},{&quot;2026-09-05&quot;:2.0},{&quot;2026-09-06&quot;:1.97},{&quot;2026-09-07&quot;:2.03},{&quot;2026-09-08&quot;:2.03},{&quot;2026-09-09&quot;:2.03},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            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.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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/a/0afa0e33-4804-4b00-b625-c2d6b61090fc.jpg?1783928297" />

        <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/0/a/0afa0e33-4804-4b00-b625-c2d6b61090fc.jpg?1783928297" />
    </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.83
              </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.35</span>
              <span class="text-xs text-grey-text">Credit: $1.76</span>
            </div>
        </div>

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

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


      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Grazilaxx, Illithid Scholar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/8/98cca453-4611-4f3d-85d8-d74d260c7598.jpg?1783926512" />

        <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">
            Grazilaxx, Illithid Scholar
        </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 — Horror</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><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="Grazilaxx, Illithid Scholar" src="https://cards.scryfall.io/large/front/9/8/98cca453-4611-4f3d-85d8-d74d260c7598.jpg?1783926512" />
    </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.82
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.76},{&quot;2026-06-14&quot;:1.76},{&quot;2026-06-15&quot;:1.76},{&quot;2026-06-16&quot;:1.75},{&quot;2026-06-17&quot;:1.75},{&quot;2026-06-18&quot;:1.69},{&quot;2026-06-19&quot;:1.69},{&quot;2026-06-20&quot;:1.69},{&quot;2026-06-21&quot;:1.68},{&quot;2026-06-22&quot;:1.68},{&quot;2026-06-23&quot;:1.68},{&quot;2026-06-24&quot;:1.68},{&quot;2026-06-25&quot;:1.68},{&quot;2026-06-26&quot;:1.68},{&quot;2026-06-27&quot;:1.68},{&quot;2026-06-28&quot;:1.68},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.7},{&quot;2026-07-03&quot;:1.7},{&quot;2026-07-04&quot;:1.61},{&quot;2026-07-05&quot;:1.61},{&quot;2026-07-06&quot;:1.61},{&quot;2026-07-07&quot;:1.65},{&quot;2026-07-08&quot;:1.65},{&quot;2026-07-09&quot;:1.65},{&quot;2026-07-10&quot;:1.69},{&quot;2026-07-11&quot;:1.69},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.69},{&quot;2026-07-14&quot;:1.69},{&quot;2026-07-15&quot;:1.67},{&quot;2026-07-16&quot;:1.63},{&quot;2026-07-17&quot;:1.63},{&quot;2026-07-18&quot;:1.63},{&quot;2026-07-19&quot;:1.63},{&quot;2026-07-20&quot;:1.63},{&quot;2026-07-21&quot;:1.57},{&quot;2026-07-22&quot;:1.61},{&quot;2026-07-23&quot;:1.61},{&quot;2026-07-24&quot;:1.61},{&quot;2026-07-25&quot;:1.61},{&quot;2026-07-26&quot;:1.61},{&quot;2026-07-27&quot;:1.61},{&quot;2026-07-28&quot;:1.57},{&quot;2026-07-29&quot;:1.61},{&quot;2026-07-30&quot;:1.61},{&quot;2026-07-31&quot;:1.61},{&quot;2026-08-01&quot;:1.61},{&quot;2026-08-02&quot;:1.61},{&quot;2026-08-03&quot;:1.61},{&quot;2026-08-04&quot;:1.61},{&quot;2026-08-05&quot;:1.6},{&quot;2026-08-07&quot;:1.67},{&quot;2026-08-08&quot;:1.67},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.72},{&quot;2026-08-11&quot;:1.72},{&quot;2026-08-12&quot;:1.72},{&quot;2026-08-13&quot;:1.72},{&quot;2026-08-14&quot;:1.72},{&quot;2026-08-15&quot;:1.72},{&quot;2026-08-16&quot;:1.73},{&quot;2026-08-17&quot;:1.73},{&quot;2026-08-18&quot;:1.8},{&quot;2026-08-19&quot;:1.79},{&quot;2026-08-20&quot;:1.79},{&quot;2026-08-21&quot;:1.72},{&quot;2026-08-22&quot;:1.76},{&quot;2026-08-23&quot;:1.76},{&quot;2026-08-24&quot;:1.75},{&quot;2026-08-25&quot;:1.75},{&quot;2026-08-26&quot;:1.75},{&quot;2026-08-27&quot;:1.75},{&quot;2026-08-28&quot;:1.75},{&quot;2026-08-29&quot;:1.75},{&quot;2026-08-30&quot;:1.71},{&quot;2026-08-31&quot;:1.63},{&quot;2026-09-01&quot;:1.64},{&quot;2026-09-02&quot;:1.64},{&quot;2026-09-03&quot;:1.64},{&quot;2026-09-04&quot;:1.64},{&quot;2026-09-05&quot;:1.64},{&quot;2026-09-06&quot;:1.64},{&quot;2026-09-07&quot;:1.64},{&quot;2026-09-08&quot;:1.64},{&quot;2026-09-09&quot;:1.71},{&quot;2026-09-10&quot;:1.71},{&quot;2026-09-11&quot;:1.72}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.74},{&quot;2026-06-14&quot;:1.72},{&quot;2026-06-15&quot;:1.84},{&quot;2026-06-16&quot;:1.84},{&quot;2026-06-17&quot;:1.84},{&quot;2026-06-18&quot;:1.78},{&quot;2026-06-19&quot;:1.74},{&quot;2026-06-20&quot;:1.74},{&quot;2026-06-21&quot;:1.84},{&quot;2026-06-22&quot;:2.11},{&quot;2026-06-23&quot;:2.15},{&quot;2026-06-24&quot;:2.18},{&quot;2026-06-25&quot;:2.18},{&quot;2026-06-26&quot;:2.2},{&quot;2026-06-27&quot;:2.2},{&quot;2026-06-28&quot;:2.18},{&quot;2026-06-29&quot;:2.23},{&quot;2026-06-30&quot;:2.14},{&quot;2026-07-01&quot;:2.08},{&quot;2026-07-02&quot;:2.2},{&quot;2026-07-03&quot;:2.2},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.27},{&quot;2026-07-06&quot;:2.18},{&quot;2026-07-07&quot;:2.18},{&quot;2026-07-08&quot;:2.03},{&quot;2026-07-09&quot;:1.94},{&quot;2026-07-10&quot;:1.75},{&quot;2026-07-11&quot;:1.68},{&quot;2026-07-12&quot;:1.65},{&quot;2026-07-13&quot;:1.65},{&quot;2026-07-14&quot;:1.67},{&quot;2026-07-15&quot;:1.6},{&quot;2026-07-16&quot;:1.62},{&quot;2026-07-17&quot;:1.55},{&quot;2026-07-18&quot;:1.54},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.49},{&quot;2026-07-21&quot;:1.55},{&quot;2026-07-22&quot;:1.54},{&quot;2026-07-23&quot;:1.54},{&quot;2026-07-24&quot;:1.49},{&quot;2026-07-25&quot;:1.5},{&quot;2026-07-26&quot;:1.54},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-28&quot;:1.59},{&quot;2026-07-29&quot;:1.54},{&quot;2026-07-30&quot;:1.52},{&quot;2026-07-31&quot;:1.52},{&quot;2026-08-01&quot;:1.52},{&quot;2026-08-02&quot;:1.52},{&quot;2026-08-03&quot;:1.46},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.61},{&quot;2026-08-07&quot;:1.63},{&quot;2026-08-08&quot;:1.6},{&quot;2026-08-09&quot;:1.72},{&quot;2026-08-10&quot;:1.75},{&quot;2026-08-11&quot;:1.73},{&quot;2026-08-12&quot;:1.68},{&quot;2026-08-13&quot;:1.68},{&quot;2026-08-14&quot;:1.69},{&quot;2026-08-15&quot;:1.69},{&quot;2026-08-16&quot;:1.69},{&quot;2026-08-17&quot;:1.72},{&quot;2026-08-18&quot;:1.72},{&quot;2026-08-19&quot;:1.73},{&quot;2026-08-20&quot;:1.73},{&quot;2026-08-21&quot;:1.75},{&quot;2026-08-22&quot;:1.77},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.66},{&quot;2026-08-26&quot;:1.66},{&quot;2026-08-27&quot;:1.71},{&quot;2026-08-28&quot;:1.7},{&quot;2026-08-29&quot;:1.7},{&quot;2026-08-30&quot;:1.76},{&quot;2026-08-31&quot;:1.81},{&quot;2026-09-01&quot;:1.83},{&quot;2026-09-02&quot;:1.85},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.81},{&quot;2026-09-06&quot;:1.78},{&quot;2026-09-07&quot;:1.78},{&quot;2026-09-08&quot;:1.78},{&quot;2026-09-09&quot;:1.77},{&quot;2026-09-10&quot;:1.81},{&quot;2026-09-11&quot;:1.82}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="28492"
  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">
            Ebony Fly
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ebony Fly" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7f11245d-9e80-42b0-b371-21e990a2e6ef.jpg?1783926235" />

        <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">
            Ebony Fly
        </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="Ebony Fly" src="https://cards.scryfall.io/large/front/7/f/7f11245d-9e80-42b0-b371-21e990a2e6ef.jpg?1783926235" />
    </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.68
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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.03},{&quot;2026-06-14&quot;:2.1},{&quot;2026-06-15&quot;:2.13},{&quot;2026-06-16&quot;:2.13},{&quot;2026-06-17&quot;:2.11},{&quot;2026-06-18&quot;:2.2},{&quot;2026-06-19&quot;:2.31},{&quot;2026-06-20&quot;:2.35},{&quot;2026-06-21&quot;:2.34},{&quot;2026-06-22&quot;:2.3},{&quot;2026-06-23&quot;:2.3},{&quot;2026-06-24&quot;:2.38},{&quot;2026-06-25&quot;:2.32},{&quot;2026-06-26&quot;:2.32},{&quot;2026-06-27&quot;:2.26},{&quot;2026-06-28&quot;:2.31},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.29},{&quot;2026-07-01&quot;:2.14},{&quot;2026-07-02&quot;:2.1},{&quot;2026-07-03&quot;:2.07},{&quot;2026-07-04&quot;:2.07},{&quot;2026-07-05&quot;:1.96},{&quot;2026-07-06&quot;:1.91},{&quot;2026-07-07&quot;:1.91},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:1.9},{&quot;2026-07-10&quot;:1.88},{&quot;2026-07-11&quot;:1.93},{&quot;2026-07-12&quot;:1.87},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.87},{&quot;2026-07-15&quot;:1.85},{&quot;2026-07-16&quot;:1.85},{&quot;2026-07-17&quot;:1.83},{&quot;2026-07-18&quot;:1.77},{&quot;2026-07-19&quot;:1.73},{&quot;2026-07-20&quot;:1.64},{&quot;2026-07-21&quot;:1.61},{&quot;2026-07-22&quot;:1.69},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-24&quot;:1.77},{&quot;2026-07-25&quot;:1.77},{&quot;2026-07-26&quot;:1.72},{&quot;2026-07-27&quot;:1.69},{&quot;2026-07-28&quot;:1.69},{&quot;2026-07-29&quot;:1.69},{&quot;2026-07-30&quot;:1.7},{&quot;2026-07-31&quot;:1.61},{&quot;2026-08-01&quot;:1.63},{&quot;2026-08-02&quot;:1.75},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.79},{&quot;2026-08-05&quot;:1.82},{&quot;2026-08-07&quot;:1.68},{&quot;2026-08-08&quot;:1.7},{&quot;2026-08-09&quot;:1.72},{&quot;2026-08-10&quot;:1.58},{&quot;2026-08-11&quot;:1.55},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.59},{&quot;2026-08-14&quot;:1.59},{&quot;2026-08-15&quot;:1.59},{&quot;2026-08-16&quot;:1.59},{&quot;2026-08-17&quot;:1.61},{&quot;2026-08-18&quot;:1.61},{&quot;2026-08-19&quot;:1.61},{&quot;2026-08-20&quot;:1.49},{&quot;2026-08-21&quot;:1.33},{&quot;2026-08-22&quot;:1.3},{&quot;2026-08-23&quot;:1.24},{&quot;2026-08-24&quot;:1.27},{&quot;2026-08-25&quot;:1.27},{&quot;2026-08-26&quot;:1.31},{&quot;2026-08-27&quot;:1.36},{&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.39},{&quot;2026-09-01&quot;:1.38},{&quot;2026-09-02&quot;:1.45},{&quot;2026-09-03&quot;:1.49},{&quot;2026-09-04&quot;:1.61},{&quot;2026-09-05&quot;:1.63},{&quot;2026-09-06&quot;:1.63},{&quot;2026-09-07&quot;:1.65},{&quot;2026-09-08&quot;:1.67},{&quot;2026-09-09&quot;:1.68},{&quot;2026-09-10&quot;:1.68},{&quot;2026-09-11&quot;:1.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="61378"
  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-rav 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-100 text-badge-text">
              ↓
              7%
            </span>

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

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

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

        <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/9/a/9a9a1df5-a4e8-49a4-aebe-ca93894ccfcf.jpg?1783943598" />
    </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.53
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:10.11},{&quot;2026-06-11&quot;:10.11},{&quot;2026-06-12&quot;:10.11},{&quot;2026-06-13&quot;:10.11},{&quot;2026-06-14&quot;:10.11},{&quot;2026-06-15&quot;:10.11},{&quot;2026-06-16&quot;:10.11},{&quot;2026-06-17&quot;:10.11},{&quot;2026-06-18&quot;:10.11},{&quot;2026-06-19&quot;:10.11},{&quot;2026-06-20&quot;:10.11},{&quot;2026-06-21&quot;:10.11},{&quot;2026-06-22&quot;:10.11},{&quot;2026-06-23&quot;:10.11},{&quot;2026-06-24&quot;:10.11},{&quot;2026-06-25&quot;:10.11},{&quot;2026-06-26&quot;:10.11},{&quot;2026-06-27&quot;:10.11},{&quot;2026-06-28&quot;:10.11},{&quot;2026-06-29&quot;:10.11},{&quot;2026-06-30&quot;:10.11},{&quot;2026-07-01&quot;:10.11},{&quot;2026-07-02&quot;:10.11},{&quot;2026-07-03&quot;:10.11},{&quot;2026-07-04&quot;:10.11},{&quot;2026-07-05&quot;:10.11},{&quot;2026-07-06&quot;:10.11},{&quot;2026-07-07&quot;:10.11},{&quot;2026-07-08&quot;:10.11},{&quot;2026-07-09&quot;:10.11},{&quot;2026-07-10&quot;:10.11},{&quot;2026-07-11&quot;:10.11},{&quot;2026-07-12&quot;:10.11},{&quot;2026-07-13&quot;:10.11},{&quot;2026-07-14&quot;:10.11},{&quot;2026-07-15&quot;:10.11},{&quot;2026-07-16&quot;:10.11},{&quot;2026-07-17&quot;:10.11},{&quot;2026-07-18&quot;:10.11},{&quot;2026-07-19&quot;:10.11},{&quot;2026-07-20&quot;:10.11},{&quot;2026-07-21&quot;:10.11},{&quot;2026-07-23&quot;:10.11},{&quot;2026-07-25&quot;:10.11},{&quot;2026-07-26&quot;:10.13},{&quot;2026-07-27&quot;:10.13},{&quot;2026-07-29&quot;:10.13},{&quot;2026-07-30&quot;:10.13},{&quot;2026-07-31&quot;:10.13},{&quot;2026-08-01&quot;:10.13},{&quot;2026-08-02&quot;:10.13},{&quot;2026-08-03&quot;:10.13},{&quot;2026-08-04&quot;:10.13},{&quot;2026-08-05&quot;:10.13},{&quot;2026-08-07&quot;:10.13},{&quot;2026-08-08&quot;:10.13},{&quot;2026-08-09&quot;:10.13},{&quot;2026-08-10&quot;:10.16},{&quot;2026-08-11&quot;:10.16},{&quot;2026-08-12&quot;:10.13},{&quot;2026-08-13&quot;:10.13},{&quot;2026-08-14&quot;:10.13},{&quot;2026-08-15&quot;:10.13},{&quot;2026-08-16&quot;:10.13},{&quot;2026-08-17&quot;:10.13},{&quot;2026-08-18&quot;:10.13},{&quot;2026-08-19&quot;:10.13},{&quot;2026-08-20&quot;:10.13},{&quot;2026-08-21&quot;:10.13},{&quot;2026-08-22&quot;:10.13},{&quot;2026-08-23&quot;:10.13},{&quot;2026-08-24&quot;:10.13},{&quot;2026-08-25&quot;:10.13},{&quot;2026-08-26&quot;:10.13},{&quot;2026-08-27&quot;:10.13},{&quot;2026-08-28&quot;:10.13},{&quot;2026-08-29&quot;:10.13},{&quot;2026-08-30&quot;:10.13},{&quot;2026-08-31&quot;:10.13},{&quot;2026-09-01&quot;:10.13},{&quot;2026-09-02&quot;:10.13},{&quot;2026-09-03&quot;:10.13},{&quot;2026-09-04&quot;:10.13},{&quot;2026-09-05&quot;:10.13},{&quot;2026-09-06&quot;:10.13},{&quot;2026-09-07&quot;:10.13},{&quot;2026-09-08&quot;:10.13},{&quot;2026-09-09&quot;:10.13},{&quot;2026-09-10&quot;:10.13},{&quot;2026-09-11&quot;:10.13}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.77},{&quot;2026-06-11&quot;:1.77},{&quot;2026-06-12&quot;:1.77},{&quot;2026-06-13&quot;:1.77},{&quot;2026-06-14&quot;:1.77},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.77},{&quot;2026-06-17&quot;:1.74},{&quot;2026-06-18&quot;:1.74},{&quot;2026-06-19&quot;:1.74},{&quot;2026-06-20&quot;:1.74},{&quot;2026-06-21&quot;:1.74},{&quot;2026-06-22&quot;:1.74},{&quot;2026-06-23&quot;:1.74},{&quot;2026-06-24&quot;:1.69},{&quot;2026-06-25&quot;:1.69},{&quot;2026-06-26&quot;:1.69},{&quot;2026-06-27&quot;:1.69},{&quot;2026-06-28&quot;:1.69},{&quot;2026-06-29&quot;:1.69},{&quot;2026-06-30&quot;:1.62},{&quot;2026-07-01&quot;:1.56},{&quot;2026-07-02&quot;:1.56},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.52},{&quot;2026-07-05&quot;:1.52},{&quot;2026-07-06&quot;:1.49},{&quot;2026-07-07&quot;:1.49},{&quot;2026-07-08&quot;:1.51},{&quot;2026-07-09&quot;:1.51},{&quot;2026-07-10&quot;:1.51},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.53},{&quot;2026-07-14&quot;:1.53},{&quot;2026-07-15&quot;:1.51},{&quot;2026-07-16&quot;:1.51},{&quot;2026-07-17&quot;:1.51},{&quot;2026-07-18&quot;:1.54},{&quot;2026-07-19&quot;:1.53},{&quot;2026-07-20&quot;:1.53},{&quot;2026-07-21&quot;:1.53},{&quot;2026-07-23&quot;:1.55},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.52},{&quot;2026-07-27&quot;:1.51},{&quot;2026-07-29&quot;:1.51},{&quot;2026-07-30&quot;:1.51},{&quot;2026-07-31&quot;:1.51},{&quot;2026-08-01&quot;:1.51},{&quot;2026-08-02&quot;:1.51},{&quot;2026-08-03&quot;:1.38},{&quot;2026-08-04&quot;:1.51},{&quot;2026-08-05&quot;:1.36},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.15},{&quot;2026-08-11&quot;:1.14},{&quot;2026-08-12&quot;:1.09},{&quot;2026-08-13&quot;:1.09},{&quot;2026-08-14&quot;:1.18},{&quot;2026-08-15&quot;:1.11},{&quot;2026-08-16&quot;:1.11},{&quot;2026-08-17&quot;:1.11},{&quot;2026-08-18&quot;:1.3},{&quot;2026-08-19&quot;:1.35},{&quot;2026-08-20&quot;:1.35},{&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.3},{&quot;2026-08-25&quot;:1.3},{&quot;2026-08-26&quot;:1.22},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.24},{&quot;2026-08-29&quot;:1.24},{&quot;2026-08-30&quot;:1.38},{&quot;2026-08-31&quot;:1.46},{&quot;2026-09-01&quot;:1.46},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.58},{&quot;2026-09-04&quot;:1.58},{&quot;2026-09-05&quot;:1.65},{&quot;2026-09-06&quot;:1.69},{&quot;2026-09-07&quot;:1.7},{&quot;2026-09-08&quot;:1.7},{&quot;2026-09-09&quot;:1.7},{&quot;2026-09-10&quot;:1.72},{&quot;2026-09-11&quot;:1.53}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85066"
  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-war 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">
            Ashiok, Dream Render
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Ashiok
      </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">
            $1.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="Ashiok, Dream Render" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/2/f2df3258-c053-48a8-974f-d80899b2cd93.jpg?1783933381" />

        <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">
            Ashiok, Dream Render
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Ashiok</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-ub'></i><i class='no-tailwind ms ms-cost ml-0 ms-ub'></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="Ashiok, Dream Render" src="https://cards.scryfall.io/large/front/f/2/f2df3258-c053-48a8-974f-d80899b2cd93.jpg?1783933381" />
    </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.33
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:6.97},{&quot;2026-06-13&quot;:6.97},{&quot;2026-06-14&quot;:6.97},{&quot;2026-06-15&quot;:6.97},{&quot;2026-06-16&quot;:6.97},{&quot;2026-06-17&quot;:6.97},{&quot;2026-06-18&quot;:6.97},{&quot;2026-06-19&quot;:6.97},{&quot;2026-06-20&quot;:6.97},{&quot;2026-06-21&quot;:6.97},{&quot;2026-06-22&quot;:7.02},{&quot;2026-06-23&quot;:7.02},{&quot;2026-06-24&quot;:7.02},{&quot;2026-06-25&quot;:7.02},{&quot;2026-06-26&quot;:7.02},{&quot;2026-06-27&quot;:7.02},{&quot;2026-06-28&quot;:7.02},{&quot;2026-06-29&quot;:7.02},{&quot;2026-06-30&quot;:7.02},{&quot;2026-07-01&quot;:7.04},{&quot;2026-07-02&quot;:7.04},{&quot;2026-07-03&quot;:7.04},{&quot;2026-07-04&quot;:6.98},{&quot;2026-07-05&quot;:6.98},{&quot;2026-07-06&quot;:7.11},{&quot;2026-07-07&quot;:7.11},{&quot;2026-07-08&quot;:7.11},{&quot;2026-07-09&quot;:7.11},{&quot;2026-07-10&quot;:7.11},{&quot;2026-07-11&quot;:7.11},{&quot;2026-07-12&quot;:7.11},{&quot;2026-07-13&quot;:7.11},{&quot;2026-07-14&quot;:7.11},{&quot;2026-07-15&quot;:7.11},{&quot;2026-07-16&quot;:7.11},{&quot;2026-07-17&quot;:7.11},{&quot;2026-07-18&quot;:7.11},{&quot;2026-07-19&quot;:7.11},{&quot;2026-07-20&quot;:7.11},{&quot;2026-07-21&quot;:7.11},{&quot;2026-07-23&quot;:7.11},{&quot;2026-07-24&quot;:7.12},{&quot;2026-07-25&quot;:7.12},{&quot;2026-07-26&quot;:7.12},{&quot;2026-07-27&quot;:7.12},{&quot;2026-07-28&quot;:7.12},{&quot;2026-07-29&quot;:7.12},{&quot;2026-07-30&quot;:7.12},{&quot;2026-07-31&quot;:7.19},{&quot;2026-08-01&quot;:7.19},{&quot;2026-08-02&quot;:7.19},{&quot;2026-08-03&quot;:7.19},{&quot;2026-08-04&quot;:7.2},{&quot;2026-08-05&quot;:7.2},{&quot;2026-08-07&quot;:7.2},{&quot;2026-08-08&quot;:7.2},{&quot;2026-08-09&quot;:7.2},{&quot;2026-08-10&quot;:7.2},{&quot;2026-08-11&quot;:7.15},{&quot;2026-08-12&quot;:7.15},{&quot;2026-08-13&quot;:7.15},{&quot;2026-08-14&quot;:7.15},{&quot;2026-08-15&quot;:7.16},{&quot;2026-08-16&quot;:7.16},{&quot;2026-08-17&quot;:7.16},{&quot;2026-08-18&quot;:7.16},{&quot;2026-08-19&quot;:7.16},{&quot;2026-08-20&quot;:7.16},{&quot;2026-08-21&quot;:7.18},{&quot;2026-08-22&quot;:7.18},{&quot;2026-08-23&quot;:7.18},{&quot;2026-08-24&quot;:7.18},{&quot;2026-08-25&quot;:7.22},{&quot;2026-08-26&quot;:7.22},{&quot;2026-08-27&quot;:7.22},{&quot;2026-08-28&quot;:7.22},{&quot;2026-08-29&quot;:7.22},{&quot;2026-08-30&quot;:7.22},{&quot;2026-08-31&quot;:7.22},{&quot;2026-09-01&quot;:7.22},{&quot;2026-09-02&quot;:7.22},{&quot;2026-09-03&quot;:7.22},{&quot;2026-09-04&quot;:7.22},{&quot;2026-09-05&quot;:7.22},{&quot;2026-09-06&quot;:7.22},{&quot;2026-09-07&quot;:7.22},{&quot;2026-09-08&quot;:7.22},{&quot;2026-09-09&quot;:7.22},{&quot;2026-09-10&quot;:7.2},{&quot;2026-09-11&quot;:7.2}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.98},{&quot;2026-06-13&quot;:1.92},{&quot;2026-06-14&quot;:1.82},{&quot;2026-06-15&quot;:1.72},{&quot;2026-06-16&quot;:1.69},{&quot;2026-06-17&quot;:1.67},{&quot;2026-06-18&quot;:1.66},{&quot;2026-06-19&quot;:1.65},{&quot;2026-06-20&quot;:1.58},{&quot;2026-06-21&quot;:1.58},{&quot;2026-06-22&quot;:1.63},{&quot;2026-06-23&quot;:1.53},{&quot;2026-06-24&quot;:1.52},{&quot;2026-06-25&quot;:1.56},{&quot;2026-06-26&quot;:1.58},{&quot;2026-06-27&quot;:1.54},{&quot;2026-06-28&quot;:1.46},{&quot;2026-06-29&quot;:1.32},{&quot;2026-06-30&quot;:1.26},{&quot;2026-07-01&quot;:1.31},{&quot;2026-07-02&quot;:1.26},{&quot;2026-07-03&quot;:1.36},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.27},{&quot;2026-07-08&quot;:1.21},{&quot;2026-07-09&quot;:1.18},{&quot;2026-07-10&quot;:1.06},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.01},{&quot;2026-07-13&quot;:1.08},{&quot;2026-07-14&quot;:1.16},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.26},{&quot;2026-07-17&quot;:1.28},{&quot;2026-07-18&quot;:1.28},{&quot;2026-07-19&quot;:1.3},{&quot;2026-07-20&quot;:1.33},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-23&quot;:1.36},{&quot;2026-07-24&quot;:1.3},{&quot;2026-07-25&quot;:1.32},{&quot;2026-07-26&quot;:1.32},{&quot;2026-07-27&quot;:1.31},{&quot;2026-07-28&quot;:1.32},{&quot;2026-07-29&quot;:1.33},{&quot;2026-07-30&quot;:1.29},{&quot;2026-07-31&quot;:1.35},{&quot;2026-08-01&quot;:1.35},{&quot;2026-08-02&quot;:1.3},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.29},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.25},{&quot;2026-08-08&quot;:1.21},{&quot;2026-08-09&quot;:1.17},{&quot;2026-08-10&quot;:1.09},{&quot;2026-08-11&quot;:1.12},{&quot;2026-08-12&quot;:1.2},{&quot;2026-08-13&quot;:1.5},{&quot;2026-08-14&quot;:1.56},{&quot;2026-08-15&quot;:1.66},{&quot;2026-08-16&quot;:1.61},{&quot;2026-08-17&quot;:1.61},{&quot;2026-08-18&quot;:1.54},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.56},{&quot;2026-08-21&quot;:1.56},{&quot;2026-08-22&quot;:1.51},{&quot;2026-08-23&quot;:1.54},{&quot;2026-08-24&quot;:1.53},{&quot;2026-08-25&quot;:1.51},{&quot;2026-08-26&quot;:1.52},{&quot;2026-08-27&quot;:1.45},{&quot;2026-08-28&quot;:1.42},{&quot;2026-08-29&quot;:1.42},{&quot;2026-08-30&quot;:1.35},{&quot;2026-08-31&quot;:1.31},{&quot;2026-09-01&quot;:1.26},{&quot;2026-09-02&quot;:1.23},{&quot;2026-09-03&quot;:1.24},{&quot;2026-09-04&quot;:1.16},{&quot;2026-09-05&quot;:1.17},{&quot;2026-09-06&quot;:1.19},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.25},{&quot;2026-09-09&quot;:1.25},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.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="47257"
  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-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">
            Drown in Dreams
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Drown in Dreams" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/af4d5acb-12d6-46d7-aaf9-3ace1520825a.jpg?1783925379" />

        <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">
            Drown in Dreams
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><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="Drown in Dreams" src="https://cards.scryfall.io/large/front/a/f/af4d5acb-12d6-46d7-aaf9-3ace1520825a.jpg?1783925379" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.8},{&quot;2026-06-12&quot;:2.79},{&quot;2026-06-13&quot;:2.73},{&quot;2026-06-14&quot;:2.73},{&quot;2026-06-15&quot;:2.84},{&quot;2026-06-16&quot;:2.8},{&quot;2026-06-17&quot;:2.8},{&quot;2026-06-18&quot;:2.82},{&quot;2026-06-19&quot;:2.79},{&quot;2026-06-20&quot;:2.79},{&quot;2026-06-21&quot;:2.58},{&quot;2026-06-22&quot;:2.58},{&quot;2026-06-23&quot;:2.64},{&quot;2026-06-24&quot;:2.64},{&quot;2026-06-25&quot;:2.64},{&quot;2026-06-26&quot;:2.64},{&quot;2026-06-27&quot;:2.64},{&quot;2026-06-28&quot;:2.58},{&quot;2026-06-29&quot;:2.51},{&quot;2026-06-30&quot;:2.58},{&quot;2026-07-01&quot;:2.47},{&quot;2026-07-02&quot;:2.42},{&quot;2026-07-03&quot;:2.37},{&quot;2026-07-04&quot;:2.2},{&quot;2026-07-05&quot;:2.18},{&quot;2026-07-06&quot;:2.19},{&quot;2026-07-07&quot;:2.15},{&quot;2026-07-08&quot;:2.16},{&quot;2026-07-09&quot;:2.1},{&quot;2026-07-10&quot;:2.27},{&quot;2026-07-11&quot;:2.39},{&quot;2026-07-12&quot;:2.61},{&quot;2026-07-13&quot;:2.61},{&quot;2026-07-14&quot;:2.54},{&quot;2026-07-15&quot;:2.62},{&quot;2026-07-16&quot;:2.76},{&quot;2026-07-17&quot;:2.72},{&quot;2026-07-18&quot;:2.75},{&quot;2026-07-19&quot;:2.68},{&quot;2026-07-20&quot;:2.55},{&quot;2026-07-21&quot;:2.48},{&quot;2026-07-23&quot;:2.48},{&quot;2026-07-25&quot;:2.41},{&quot;2026-07-26&quot;:2.41},{&quot;2026-07-27&quot;:2.41},{&quot;2026-07-28&quot;:2.26},{&quot;2026-07-29&quot;:2.22},{&quot;2026-07-30&quot;:2.11},{&quot;2026-07-31&quot;:2.07},{&quot;2026-08-01&quot;:1.97},{&quot;2026-08-02&quot;:1.98},{&quot;2026-08-03&quot;:1.98},{&quot;2026-08-04&quot;:2.09},{&quot;2026-08-05&quot;:2.09},{&quot;2026-08-07&quot;:2.12},{&quot;2026-08-08&quot;:2.12},{&quot;2026-08-09&quot;:2.02},{&quot;2026-08-10&quot;:1.95},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.96},{&quot;2026-08-13&quot;:1.91},{&quot;2026-08-14&quot;:1.94},{&quot;2026-08-15&quot;:1.93},{&quot;2026-08-16&quot;:2.02},{&quot;2026-08-17&quot;:1.96},{&quot;2026-08-18&quot;:2.05},{&quot;2026-08-19&quot;:2.0},{&quot;2026-08-20&quot;:2.0},{&quot;2026-08-21&quot;:2.22},{&quot;2026-08-22&quot;:2.08},{&quot;2026-08-23&quot;:1.98},{&quot;2026-08-24&quot;:1.98},{&quot;2026-08-25&quot;:1.98},{&quot;2026-08-26&quot;:1.83},{&quot;2026-08-27&quot;:1.83},{&quot;2026-08-28&quot;:1.83},{&quot;2026-08-29&quot;:1.83},{&quot;2026-08-30&quot;:1.77},{&quot;2026-08-31&quot;:1.77},{&quot;2026-09-01&quot;:1.77},{&quot;2026-09-02&quot;:1.66},{&quot;2026-09-03&quot;:1.66},{&quot;2026-09-04&quot;:1.65},{&quot;2026-09-05&quot;:1.53},{&quot;2026-09-06&quot;:1.43},{&quot;2026-09-07&quot;:1.38},{&quot;2026-09-08&quot;:1.38},{&quot;2026-09-09&quot;:1.38},{&quot;2026-09-10&quot;:1.38},{&quot;2026-09-11&quot;:1.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="39293"
  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-jmp 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">
            Ravenous Chupacabra
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Ravenous Chupacabra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/0/40d3e58e-f989-4169-9e2c-a66a23170dcf.jpg?1783930411" />

        <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">
            Ravenous Chupacabra
        </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 — Beast Horror</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Ravenous Chupacabra" src="https://cards.scryfall.io/large/front/4/0/40d3e58e-f989-4169-9e2c-a66a23170dcf.jpg?1783930411" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15644"
  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-m20 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 the Void
        </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="text-sm font-medium text-nine-white">
            $0.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="Leyline of the Void" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/04d5d429-e0c6-42cc-a477-da7dabb1c295.jpg?1783932991" />

        <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 the Void
        </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><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="Leyline of the Void" src="https://cards.scryfall.io/large/front/0/4/04d5d429-e0c6-42cc-a477-da7dabb1c295.jpg?1783932991" />
    </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.78
              </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.66
              </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-11&quot;:1.45},{&quot;2026-06-12&quot;:1.42},{&quot;2026-06-13&quot;:1.42},{&quot;2026-06-14&quot;:1.42},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.42},{&quot;2026-06-19&quot;:1.42},{&quot;2026-06-20&quot;:1.42},{&quot;2026-06-21&quot;:1.4},{&quot;2026-06-22&quot;:1.4},{&quot;2026-06-23&quot;:1.4},{&quot;2026-06-24&quot;:1.41},{&quot;2026-06-25&quot;:1.41},{&quot;2026-06-26&quot;:1.41},{&quot;2026-06-27&quot;:1.41},{&quot;2026-06-28&quot;:1.41},{&quot;2026-06-29&quot;:1.42},{&quot;2026-06-30&quot;:1.42},{&quot;2026-07-01&quot;:1.42},{&quot;2026-07-02&quot;:1.42},{&quot;2026-07-03&quot;:1.4},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.4},{&quot;2026-07-07&quot;:1.4},{&quot;2026-07-08&quot;:1.44},{&quot;2026-07-09&quot;:1.44},{&quot;2026-07-10&quot;:1.44},{&quot;2026-07-11&quot;:1.44},{&quot;2026-07-12&quot;:1.42},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.42},{&quot;2026-07-15&quot;:1.42},{&quot;2026-07-16&quot;:1.42},{&quot;2026-07-17&quot;:1.42},{&quot;2026-07-18&quot;:1.42},{&quot;2026-07-19&quot;:1.42},{&quot;2026-07-20&quot;:1.42},{&quot;2026-07-21&quot;:1.42},{&quot;2026-07-23&quot;:1.42},{&quot;2026-07-25&quot;:1.42},{&quot;2026-07-26&quot;:1.42},{&quot;2026-07-27&quot;:1.42},{&quot;2026-07-28&quot;:1.42},{&quot;2026-07-29&quot;:1.42},{&quot;2026-07-30&quot;:1.42},{&quot;2026-07-31&quot;:1.42},{&quot;2026-08-01&quot;:1.42},{&quot;2026-08-02&quot;:1.42},{&quot;2026-08-03&quot;:1.42},{&quot;2026-08-04&quot;:1.42},{&quot;2026-08-05&quot;:1.47},{&quot;2026-08-07&quot;:1.72},{&quot;2026-08-08&quot;:1.72},{&quot;2026-08-09&quot;:1.72},{&quot;2026-08-10&quot;:1.72},{&quot;2026-08-11&quot;:1.72},{&quot;2026-08-12&quot;:1.72},{&quot;2026-08-13&quot;:1.63},{&quot;2026-08-14&quot;:1.63},{&quot;2026-08-15&quot;:1.63},{&quot;2026-08-16&quot;:1.63},{&quot;2026-08-17&quot;:1.63},{&quot;2026-08-18&quot;:1.63},{&quot;2026-08-19&quot;:1.63},{&quot;2026-08-20&quot;:1.63},{&quot;2026-08-21&quot;:1.63},{&quot;2026-08-22&quot;:1.63},{&quot;2026-08-23&quot;:1.63},{&quot;2026-08-24&quot;:1.63},{&quot;2026-08-25&quot;:1.63},{&quot;2026-08-26&quot;:1.63},{&quot;2026-08-27&quot;:1.63},{&quot;2026-08-28&quot;:1.63},{&quot;2026-08-29&quot;:1.63},{&quot;2026-08-30&quot;:1.63},{&quot;2026-08-31&quot;:1.63},{&quot;2026-09-01&quot;:1.63},{&quot;2026-09-02&quot;:1.61},{&quot;2026-09-03&quot;:1.61},{&quot;2026-09-04&quot;:1.61},{&quot;2026-09-05&quot;:1.61},{&quot;2026-09-06&quot;:1.61},{&quot;2026-09-07&quot;:1.61},{&quot;2026-09-08&quot;:1.66},{&quot;2026-09-09&quot;:1.66},{&quot;2026-09-10&quot;:1.66},{&quot;2026-09-11&quot;:1.66}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.73},{&quot;2026-06-12&quot;:0.73},{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.73},{&quot;2026-06-15&quot;:0.75},{&quot;2026-06-16&quot;:0.75},{&quot;2026-06-17&quot;:0.76},{&quot;2026-06-18&quot;:0.78},{&quot;2026-06-19&quot;:0.75},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-23&quot;:0.73},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.73},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.73},{&quot;2026-06-28&quot;:0.73},{&quot;2026-06-29&quot;:0.73},{&quot;2026-06-30&quot;:0.73},{&quot;2026-07-01&quot;:0.73},{&quot;2026-07-02&quot;:0.73},{&quot;2026-07-03&quot;:0.73},{&quot;2026-07-04&quot;:0.73},{&quot;2026-07-05&quot;:0.72},{&quot;2026-07-06&quot;:0.72},{&quot;2026-07-07&quot;:0.7},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.67},{&quot;2026-07-10&quot;:0.67},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.69},{&quot;2026-07-14&quot;:0.69},{&quot;2026-07-15&quot;:0.7},{&quot;2026-07-16&quot;:0.7},{&quot;2026-07-17&quot;:0.72},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.72},{&quot;2026-07-20&quot;:0.7},{&quot;2026-07-21&quot;:0.7},{&quot;2026-07-23&quot;:0.7},{&quot;2026-07-25&quot;:0.72},{&quot;2026-07-26&quot;:0.72},{&quot;2026-07-27&quot;:0.72},{&quot;2026-07-28&quot;:0.72},{&quot;2026-07-29&quot;:0.74},{&quot;2026-07-30&quot;:0.74},{&quot;2026-07-31&quot;:0.74},{&quot;2026-08-01&quot;:0.74},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.74},{&quot;2026-08-04&quot;:0.75},{&quot;2026-08-05&quot;:0.75},{&quot;2026-08-07&quot;:0.75},{&quot;2026-08-08&quot;:0.75},{&quot;2026-08-09&quot;:0.75},{&quot;2026-08-10&quot;:0.75},{&quot;2026-08-11&quot;:0.79},{&quot;2026-08-12&quot;:0.79},{&quot;2026-08-13&quot;:0.79},{&quot;2026-08-14&quot;:0.8},{&quot;2026-08-15&quot;:0.8},{&quot;2026-08-16&quot;:0.78},{&quot;2026-08-17&quot;:0.78},{&quot;2026-08-18&quot;:0.77},{&quot;2026-08-19&quot;:0.76},{&quot;2026-08-20&quot;:0.76},{&quot;2026-08-21&quot;:0.78},{&quot;2026-08-22&quot;:0.78},{&quot;2026-08-23&quot;:0.76},{&quot;2026-08-24&quot;:0.76},{&quot;2026-08-25&quot;:0.76},{&quot;2026-08-26&quot;:0.78},{&quot;2026-08-27&quot;:0.78},{&quot;2026-08-28&quot;:0.78},{&quot;2026-08-29&quot;:0.78},{&quot;2026-08-30&quot;:0.78},{&quot;2026-08-31&quot;:0.78},{&quot;2026-09-01&quot;:0.78},{&quot;2026-09-02&quot;:0.78},{&quot;2026-09-03&quot;:0.78},{&quot;2026-09-04&quot;:0.78},{&quot;2026-09-05&quot;:0.78},{&quot;2026-09-06&quot;:0.78},{&quot;2026-09-07&quot;:0.78},{&quot;2026-09-08&quot;:0.78},{&quot;2026-09-09&quot;:0.78},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.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="89652"
  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">
            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">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/9/89ed88b1-c2b8-4c6e-87a6-168035b2f8c8.jpg?1783929451" />

        <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">
            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="Arcane Signet" src="https://cards.scryfall.io/large/front/8/9/89ed88b1-c2b8-4c6e-87a6-168035b2f8c8.jpg?1783929451" />
    </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.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">$0.33</span>
              <span class="text-xs text-grey-text">Credit: $0.43</span>
            </div>
        </div>

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Thief of Sanity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/0/307543ca-8e17-433f-9758-4c77da6c0870.jpg?1783934119" />

        <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">
            Thief of Sanity
        </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 — Specter</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><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="Thief of Sanity" src="https://cards.scryfall.io/large/front/3/0/307543ca-8e17-433f-9758-4c77da6c0870.jpg?1783934119" />
    </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.64
              </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">
                $1.87
              </span>

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Oblivion Sower" src="https://cards.scryfall.io/large/front/2/2/22e07a4d-8096-4532-bb00-e6e66f1c6843.jpg?1783938223" />
    </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.63
              </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.95
              </span>

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76836"
  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-ths 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">
            Prowler&#39;s Helm
        </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">
              ↑
              2%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Prowler&#39;s Helm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/1/c100a22c-bf34-42b7-9339-4733698c0935.jpg?1783939718" />

        <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">
            Prowler&#39;s Helm
        </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="Prowler&#39;s Helm" src="https://cards.scryfall.io/large/front/c/1/c100a22c-bf34-42b7-9339-4733698c0935.jpg?1783939718" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:3.4},{&quot;2026-06-10&quot;:3.4},{&quot;2026-06-11&quot;:3.4},{&quot;2026-06-12&quot;:3.4},{&quot;2026-06-13&quot;:3.4},{&quot;2026-06-14&quot;:3.4},{&quot;2026-06-15&quot;:3.4},{&quot;2026-06-16&quot;:3.4},{&quot;2026-06-17&quot;:3.4},{&quot;2026-06-18&quot;:3.4},{&quot;2026-06-19&quot;:3.4},{&quot;2026-06-20&quot;:3.4},{&quot;2026-06-21&quot;:3.32},{&quot;2026-06-22&quot;:3.32},{&quot;2026-06-24&quot;:3.32},{&quot;2026-06-25&quot;:3.32},{&quot;2026-06-26&quot;:3.32},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.28},{&quot;2026-06-29&quot;:3.28},{&quot;2026-06-30&quot;:3.24},{&quot;2026-07-01&quot;:3.24},{&quot;2026-07-02&quot;:3.24},{&quot;2026-07-03&quot;:3.24},{&quot;2026-07-04&quot;:3.24},{&quot;2026-07-05&quot;:3.24},{&quot;2026-07-06&quot;:3.24},{&quot;2026-07-07&quot;:3.24},{&quot;2026-07-08&quot;:3.24},{&quot;2026-07-09&quot;:3.2},{&quot;2026-07-10&quot;:3.2},{&quot;2026-07-11&quot;:3.2},{&quot;2026-07-12&quot;:3.2},{&quot;2026-07-13&quot;:3.2},{&quot;2026-07-14&quot;:3.2},{&quot;2026-07-15&quot;:3.2},{&quot;2026-07-16&quot;:3.2},{&quot;2026-07-17&quot;:3.2},{&quot;2026-07-18&quot;:3.3},{&quot;2026-07-19&quot;:3.3},{&quot;2026-07-20&quot;:3.3},{&quot;2026-07-21&quot;:3.3},{&quot;2026-07-23&quot;:3.14},{&quot;2026-07-25&quot;:3.23},{&quot;2026-07-26&quot;:3.38},{&quot;2026-07-27&quot;:3.38},{&quot;2026-07-29&quot;:3.38},{&quot;2026-07-30&quot;:3.38},{&quot;2026-07-31&quot;:3.4},{&quot;2026-08-01&quot;:3.4},{&quot;2026-08-02&quot;:3.4},{&quot;2026-08-03&quot;:3.4},{&quot;2026-08-04&quot;:3.4},{&quot;2026-08-05&quot;:3.4},{&quot;2026-08-07&quot;:3.48},{&quot;2026-08-08&quot;:3.48},{&quot;2026-08-09&quot;:3.48},{&quot;2026-08-10&quot;:3.48},{&quot;2026-08-11&quot;:3.48},{&quot;2026-08-12&quot;:3.48},{&quot;2026-08-13&quot;:3.5},{&quot;2026-08-14&quot;:3.5},{&quot;2026-08-15&quot;:3.5},{&quot;2026-08-16&quot;:3.5},{&quot;2026-08-17&quot;:3.5},{&quot;2026-08-18&quot;:3.5},{&quot;2026-08-19&quot;:3.5},{&quot;2026-08-20&quot;:3.5},{&quot;2026-08-21&quot;:3.5},{&quot;2026-08-22&quot;:3.5},{&quot;2026-08-23&quot;:3.5},{&quot;2026-08-24&quot;:3.5},{&quot;2026-08-25&quot;:3.5},{&quot;2026-08-26&quot;:3.55},{&quot;2026-08-27&quot;:3.55},{&quot;2026-08-28&quot;:3.55},{&quot;2026-08-29&quot;:3.55},{&quot;2026-08-30&quot;:3.55},{&quot;2026-08-31&quot;:3.55},{&quot;2026-09-01&quot;:3.55},{&quot;2026-09-02&quot;:3.58},{&quot;2026-09-03&quot;:3.58},{&quot;2026-09-04&quot;:3.58},{&quot;2026-09-05&quot;:3.58},{&quot;2026-09-06&quot;:3.58},{&quot;2026-09-07&quot;:3.58},{&quot;2026-09-08&quot;:3.58},{&quot;2026-09-09&quot;:3.58},{&quot;2026-09-10&quot;:3.61},{&quot;2026-09-11&quot;:3.61}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.61},{&quot;2026-06-10&quot;:0.6},{&quot;2026-06-11&quot;:0.6},{&quot;2026-06-12&quot;:0.59},{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.57},{&quot;2026-06-16&quot;:0.58},{&quot;2026-06-17&quot;:0.64},{&quot;2026-06-18&quot;:0.64},{&quot;2026-06-19&quot;:0.66},{&quot;2026-06-20&quot;:0.68},{&quot;2026-06-21&quot;:0.68},{&quot;2026-06-22&quot;:0.71},{&quot;2026-06-24&quot;:0.66},{&quot;2026-06-25&quot;:0.66},{&quot;2026-06-26&quot;:0.66},{&quot;2026-06-27&quot;:0.66},{&quot;2026-06-28&quot;:0.66},{&quot;2026-06-29&quot;:0.63},{&quot;2026-06-30&quot;:0.63},{&quot;2026-07-01&quot;:0.63},{&quot;2026-07-02&quot;:0.63},{&quot;2026-07-03&quot;:0.62},{&quot;2026-07-04&quot;:0.62},{&quot;2026-07-05&quot;:0.62},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.61},{&quot;2026-07-08&quot;:0.62},{&quot;2026-07-09&quot;:0.63},{&quot;2026-07-10&quot;:0.64},{&quot;2026-07-11&quot;:0.63},{&quot;2026-07-12&quot;:0.64},{&quot;2026-07-13&quot;:0.64},{&quot;2026-07-14&quot;:0.63},{&quot;2026-07-15&quot;:0.63},{&quot;2026-07-16&quot;:0.63},{&quot;2026-07-17&quot;:0.63},{&quot;2026-07-18&quot;:0.62},{&quot;2026-07-19&quot;:0.62},{&quot;2026-07-20&quot;:0.62},{&quot;2026-07-21&quot;:0.62},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-25&quot;:0.64},{&quot;2026-07-26&quot;:0.68},{&quot;2026-07-27&quot;:0.69},{&quot;2026-07-29&quot;:0.72},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.7},{&quot;2026-08-01&quot;:0.7},{&quot;2026-08-02&quot;:0.7},{&quot;2026-08-03&quot;:0.7},{&quot;2026-08-04&quot;:0.7},{&quot;2026-08-05&quot;:0.71},{&quot;2026-08-07&quot;:0.75},{&quot;2026-08-08&quot;:0.75},{&quot;2026-08-09&quot;:0.72},{&quot;2026-08-10&quot;:0.71},{&quot;2026-08-11&quot;:0.71},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.71},{&quot;2026-08-14&quot;:0.72},{&quot;2026-08-15&quot;:0.71},{&quot;2026-08-16&quot;:0.72},{&quot;2026-08-17&quot;:0.71},{&quot;2026-08-18&quot;:0.69},{&quot;2026-08-19&quot;:0.67},{&quot;2026-08-20&quot;:0.67},{&quot;2026-08-21&quot;:0.65},{&quot;2026-08-22&quot;:0.64},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.64},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.61},{&quot;2026-08-27&quot;:0.61},{&quot;2026-08-28&quot;:0.58},{&quot;2026-08-29&quot;:0.58},{&quot;2026-08-30&quot;:0.58},{&quot;2026-08-31&quot;:0.58},{&quot;2026-09-01&quot;:0.58},{&quot;2026-09-02&quot;:0.58},{&quot;2026-09-03&quot;:0.59},{&quot;2026-09-04&quot;:0.61},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.61},{&quot;2026-09-07&quot;:0.63},{&quot;2026-09-08&quot;:0.63},{&quot;2026-09-09&quot;:0.63},{&quot;2026-09-10&quot;:0.62},{&quot;2026-09-11&quot;:0.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="45018"
  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-m13 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">
            Tormod&#39;s Crypt
        </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.59
          </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="Tormod&#39;s Crypt" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/f/efdfb60b-948b-40fb-b18e-08f0300624b3.jpg?1783940457" />

        <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">
            Tormod&#39;s Crypt
        </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-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="Tormod&#39;s Crypt" src="https://cards.scryfall.io/large/front/e/f/efdfb60b-948b-40fb-b18e-08f0300624b3.jpg?1783940457" />
    </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.59
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.86},{&quot;2026-06-14&quot;:1.86},{&quot;2026-06-15&quot;:1.86},{&quot;2026-06-16&quot;:1.86},{&quot;2026-06-17&quot;:1.86},{&quot;2026-06-18&quot;:1.86},{&quot;2026-06-19&quot;:1.86},{&quot;2026-06-20&quot;:1.86},{&quot;2026-06-21&quot;:1.86},{&quot;2026-06-22&quot;:1.86},{&quot;2026-06-23&quot;:1.86},{&quot;2026-06-24&quot;:1.86},{&quot;2026-06-25&quot;:2.04},{&quot;2026-06-26&quot;:2.04},{&quot;2026-06-27&quot;:2.04},{&quot;2026-06-28&quot;:1.97},{&quot;2026-06-29&quot;:1.97},{&quot;2026-06-30&quot;:1.97},{&quot;2026-07-01&quot;:2.07},{&quot;2026-07-02&quot;:2.07},{&quot;2026-07-03&quot;:1.7},{&quot;2026-07-04&quot;:1.7},{&quot;2026-07-05&quot;:1.7},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.7},{&quot;2026-07-08&quot;:1.7},{&quot;2026-07-09&quot;:1.7},{&quot;2026-07-10&quot;:1.7},{&quot;2026-07-11&quot;:1.7},{&quot;2026-07-12&quot;:1.7},{&quot;2026-07-13&quot;:1.7},{&quot;2026-07-14&quot;:1.7},{&quot;2026-07-15&quot;:1.7},{&quot;2026-07-16&quot;:1.7},{&quot;2026-07-17&quot;:1.7},{&quot;2026-07-18&quot;:1.7},{&quot;2026-07-19&quot;:1.7},{&quot;2026-07-20&quot;:1.7},{&quot;2026-07-21&quot;:1.7},{&quot;2026-07-22&quot;:1.7},{&quot;2026-07-23&quot;:1.7},{&quot;2026-07-24&quot;:1.7},{&quot;2026-07-25&quot;:1.68},{&quot;2026-07-26&quot;:1.68},{&quot;2026-07-27&quot;:1.68},{&quot;2026-07-28&quot;:1.68},{&quot;2026-07-29&quot;:1.68},{&quot;2026-07-30&quot;:1.68},{&quot;2026-07-31&quot;:1.68},{&quot;2026-08-01&quot;:1.68},{&quot;2026-08-02&quot;:1.68},{&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.68},{&quot;2026-08-08&quot;:1.68},{&quot;2026-08-09&quot;:1.68},{&quot;2026-08-10&quot;:1.68},{&quot;2026-08-11&quot;:1.68},{&quot;2026-08-12&quot;:1.68},{&quot;2026-08-13&quot;:1.68},{&quot;2026-08-14&quot;:1.68},{&quot;2026-08-15&quot;:1.68},{&quot;2026-08-16&quot;:1.68},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.68},{&quot;2026-08-19&quot;:1.68},{&quot;2026-08-20&quot;:1.68},{&quot;2026-08-21&quot;:1.68},{&quot;2026-08-22&quot;:1.68},{&quot;2026-08-23&quot;:1.68},{&quot;2026-08-24&quot;:1.68},{&quot;2026-08-25&quot;:1.75},{&quot;2026-08-26&quot;:1.75},{&quot;2026-08-27&quot;:1.75},{&quot;2026-08-28&quot;:1.75},{&quot;2026-08-29&quot;:1.75},{&quot;2026-08-30&quot;:1.75},{&quot;2026-08-31&quot;:1.75},{&quot;2026-09-01&quot;:1.75},{&quot;2026-09-02&quot;:1.75},{&quot;2026-09-03&quot;:1.75},{&quot;2026-09-04&quot;:1.75},{&quot;2026-09-05&quot;:1.75},{&quot;2026-09-06&quot;:1.75},{&quot;2026-09-07&quot;:1.75},{&quot;2026-09-08&quot;:1.75},{&quot;2026-09-09&quot;:1.75},{&quot;2026-09-10&quot;:1.75},{&quot;2026-09-11&quot;:1.75}],&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.43},{&quot;2026-06-17&quot;:0.43},{&quot;2026-06-18&quot;:0.46},{&quot;2026-06-19&quot;:0.46},{&quot;2026-06-20&quot;:0.46},{&quot;2026-06-21&quot;:0.46},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.48},{&quot;2026-06-24&quot;:0.46},{&quot;2026-06-25&quot;:0.46},{&quot;2026-06-26&quot;:0.48},{&quot;2026-06-27&quot;:0.48},{&quot;2026-06-28&quot;:0.49},{&quot;2026-06-29&quot;:0.49},{&quot;2026-06-30&quot;:0.48},{&quot;2026-07-01&quot;:0.5},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.51},{&quot;2026-07-04&quot;:0.51},{&quot;2026-07-05&quot;:0.51},{&quot;2026-07-06&quot;:0.48},{&quot;2026-07-07&quot;:0.48},{&quot;2026-07-08&quot;:0.48},{&quot;2026-07-09&quot;:0.48},{&quot;2026-07-10&quot;:0.48},{&quot;2026-07-11&quot;:0.48},{&quot;2026-07-12&quot;:0.53},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.54},{&quot;2026-07-15&quot;:0.54},{&quot;2026-07-16&quot;:0.54},{&quot;2026-07-17&quot;:0.54},{&quot;2026-07-18&quot;:0.55},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-22&quot;:0.55},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-24&quot;:0.55},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.57},{&quot;2026-07-28&quot;:0.57},{&quot;2026-07-29&quot;:0.57},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.56},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.57},{&quot;2026-08-05&quot;:0.57},{&quot;2026-08-07&quot;:0.58},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.56},{&quot;2026-08-13&quot;:0.56},{&quot;2026-08-14&quot;:0.55},{&quot;2026-08-15&quot;:0.54},{&quot;2026-08-16&quot;:0.54},{&quot;2026-08-17&quot;:0.49},{&quot;2026-08-18&quot;:0.48},{&quot;2026-08-19&quot;:0.49},{&quot;2026-08-20&quot;:0.49},{&quot;2026-08-21&quot;:0.56},{&quot;2026-08-22&quot;:0.57},{&quot;2026-08-23&quot;:0.57},{&quot;2026-08-24&quot;:0.57},{&quot;2026-08-25&quot;:0.57},{&quot;2026-08-26&quot;:0.57},{&quot;2026-08-27&quot;:0.57},{&quot;2026-08-28&quot;:0.57},{&quot;2026-08-29&quot;:0.57},{&quot;2026-08-30&quot;:0.57},{&quot;2026-08-31&quot;:0.57},{&quot;2026-09-01&quot;:0.57},{&quot;2026-09-02&quot;:0.58},{&quot;2026-09-03&quot;:0.57},{&quot;2026-09-04&quot;:0.57},{&quot;2026-09-05&quot;:0.57},{&quot;2026-09-06&quot;:0.57},{&quot;2026-09-07&quot;:0.57},{&quot;2026-09-08&quot;:0.59},{&quot;2026-09-09&quot;:0.59},{&quot;2026-09-10&quot;:0.59},{&quot;2026-09-11&quot;:0.59}]}"
        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="87908"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Temple of the False God
        </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.59
          </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="Temple of the False God" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/f/1f3b5582-4530-4f9a-b416-275dfbfa0477.jpg?1783931754" />

        <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">
            Temple of the False God
        </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="Temple of the False God" src="https://cards.scryfall.io/large/front/1/f/1f3b5582-4530-4f9a-b416-275dfbfa0477.jpg?1783931754" />
    </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.59
              </span>

            </div>
          </div>

      </div>


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

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


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Author of Shadows" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95b5fc08-5c50-4ec9-9788-54f95c4ce916.jpg?1783927602" />

        <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">
            Author of Shadows
        </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 — Shade Warlock</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Author of Shadows" src="https://cards.scryfall.io/large/front/9/5/95b5fc08-5c50-4ec9-9788-54f95c4ce916.jpg?1783927602" />
    </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.53
              </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.30</span>
              <span class="text-xs text-grey-text">Credit: $0.39</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="32746"
  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-gtc 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">
            Nightveil Specter
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Nightveil Specter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/3/e3754b8c-16d2-41e3-b41b-4b2e70833e82.jpg?1783940094" />

        <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">
            Nightveil Specter
        </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 — Specter</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-ub'></i><i class='no-tailwind ms ms-cost ml-0 ms-ub'></i><i class='no-tailwind ms ms-cost ml-0 ms-ub'></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="Nightveil Specter" src="https://cards.scryfall.io/large/front/e/3/e3754b8c-16d2-41e3-b41b-4b2e70833e82.jpg?1783940094" />
    </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-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">
                $1.38
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;2026-06-13&quot;:1.24},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.24},{&quot;2026-06-16&quot;:1.32},{&quot;2026-06-17&quot;:1.32},{&quot;2026-06-18&quot;:1.32},{&quot;2026-06-19&quot;:1.32},{&quot;2026-06-20&quot;:1.32},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.32},{&quot;2026-06-23&quot;:1.32},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.32},{&quot;2026-06-27&quot;:1.32},{&quot;2026-06-28&quot;:1.32},{&quot;2026-06-29&quot;:1.32},{&quot;2026-06-30&quot;:1.32},{&quot;2026-07-01&quot;:1.32},{&quot;2026-07-02&quot;:1.32},{&quot;2026-07-03&quot;:1.32},{&quot;2026-07-04&quot;:1.3},{&quot;2026-07-05&quot;:1.3},{&quot;2026-07-06&quot;:1.3},{&quot;2026-07-07&quot;:1.3},{&quot;2026-07-08&quot;:1.3},{&quot;2026-07-09&quot;:1.3},{&quot;2026-07-10&quot;:1.3},{&quot;2026-07-11&quot;:1.3},{&quot;2026-07-12&quot;:1.3},{&quot;2026-07-13&quot;:1.3},{&quot;2026-07-14&quot;:1.3},{&quot;2026-07-15&quot;:1.3},{&quot;2026-07-16&quot;:1.3},{&quot;2026-07-17&quot;:1.3},{&quot;2026-07-18&quot;:1.3},{&quot;2026-07-19&quot;:1.3},{&quot;2026-07-20&quot;:1.3},{&quot;2026-07-21&quot;:1.3},{&quot;2026-07-22&quot;:1.3},{&quot;2026-07-23&quot;:1.3},{&quot;2026-07-24&quot;:1.3},{&quot;2026-07-25&quot;:1.3},{&quot;2026-07-26&quot;:1.3},{&quot;2026-07-27&quot;:1.3},{&quot;2026-07-28&quot;:1.3},{&quot;2026-07-29&quot;:1.3},{&quot;2026-07-30&quot;:1.3},{&quot;2026-07-31&quot;:1.3},{&quot;2026-08-01&quot;:1.3},{&quot;2026-08-02&quot;:1.3},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.3},{&quot;2026-08-05&quot;:1.3},{&quot;2026-08-07&quot;:1.3},{&quot;2026-08-08&quot;:1.3},{&quot;2026-08-09&quot;:1.3},{&quot;2026-08-10&quot;:1.3},{&quot;2026-08-11&quot;:1.3},{&quot;2026-08-12&quot;:1.3},{&quot;2026-08-13&quot;:1.4},{&quot;2026-08-14&quot;:1.4},{&quot;2026-08-15&quot;:1.4},{&quot;2026-08-16&quot;:1.4},{&quot;2026-08-17&quot;:1.4},{&quot;2026-08-18&quot;:1.4},{&quot;2026-08-19&quot;:1.4},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.4},{&quot;2026-08-22&quot;:1.4},{&quot;2026-08-23&quot;:1.4},{&quot;2026-08-24&quot;:1.4},{&quot;2026-08-25&quot;:1.4},{&quot;2026-08-26&quot;:1.4},{&quot;2026-08-27&quot;:1.4},{&quot;2026-08-28&quot;:1.4},{&quot;2026-08-29&quot;:1.4},{&quot;2026-08-30&quot;:1.4},{&quot;2026-08-31&quot;:1.4},{&quot;2026-09-01&quot;:1.4},{&quot;2026-09-02&quot;:1.4},{&quot;2026-09-03&quot;:1.4},{&quot;2026-09-04&quot;:1.4},{&quot;2026-09-05&quot;:1.4},{&quot;2026-09-06&quot;:1.4},{&quot;2026-09-07&quot;:1.38},{&quot;2026-09-08&quot;:1.38},{&quot;2026-09-09&quot;:1.38},{&quot;2026-09-10&quot;:1.38},{&quot;2026-09-11&quot;:1.38}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.6},{&quot;2026-06-14&quot;:0.6},{&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.6},{&quot;2026-06-20&quot;:0.6},{&quot;2026-06-21&quot;:0.6},{&quot;2026-06-22&quot;:0.6},{&quot;2026-06-23&quot;:0.58},{&quot;2026-06-24&quot;:0.58},{&quot;2026-06-25&quot;:0.58},{&quot;2026-06-26&quot;:0.58},{&quot;2026-06-27&quot;:0.58},{&quot;2026-06-28&quot;:0.6},{&quot;2026-06-29&quot;:0.6},{&quot;2026-06-30&quot;:0.6},{&quot;2026-07-01&quot;:0.6},{&quot;2026-07-02&quot;:0.6},{&quot;2026-07-03&quot;:0.6},{&quot;2026-07-04&quot;:0.6},{&quot;2026-07-05&quot;:0.6},{&quot;2026-07-06&quot;:0.6},{&quot;2026-07-07&quot;:0.6},{&quot;2026-07-08&quot;:0.6},{&quot;2026-07-09&quot;:0.6},{&quot;2026-07-10&quot;:0.6},{&quot;2026-07-11&quot;:0.6},{&quot;2026-07-12&quot;:0.6},{&quot;2026-07-13&quot;:0.6},{&quot;2026-07-14&quot;:0.6},{&quot;2026-07-15&quot;:0.6},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.57},{&quot;2026-07-19&quot;:0.57},{&quot;2026-07-20&quot;:0.56},{&quot;2026-07-21&quot;:0.56},{&quot;2026-07-22&quot;:0.55},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-24&quot;:0.55},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.55},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.55},{&quot;2026-07-29&quot;:0.54},{&quot;2026-07-30&quot;:0.54},{&quot;2026-07-31&quot;:0.54},{&quot;2026-08-01&quot;:0.55},{&quot;2026-08-02&quot;:0.54},{&quot;2026-08-03&quot;:0.54},{&quot;2026-08-04&quot;:0.54},{&quot;2026-08-05&quot;:0.54},{&quot;2026-08-07&quot;:0.54},{&quot;2026-08-08&quot;:0.54},{&quot;2026-08-09&quot;:0.54},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.54},{&quot;2026-08-12&quot;:0.53},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.53},{&quot;2026-08-15&quot;:0.53},{&quot;2026-08-16&quot;:0.52},{&quot;2026-08-17&quot;:0.52},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.52},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.52},{&quot;2026-08-25&quot;:0.52},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.52},{&quot;2026-08-28&quot;:0.52},{&quot;2026-08-29&quot;:0.52},{&quot;2026-08-30&quot;:0.52},{&quot;2026-08-31&quot;:0.52},{&quot;2026-09-01&quot;:0.52},{&quot;2026-09-02&quot;:0.52},{&quot;2026-09-03&quot;:0.52},{&quot;2026-09-04&quot;:0.52},{&quot;2026-09-05&quot;:0.52},{&quot;2026-09-06&quot;:0.52},{&quot;2026-09-07&quot;:0.52},{&quot;2026-09-08&quot;:0.52},{&quot;2026-09-09&quot;:0.52},{&quot;2026-09-10&quot;:0.52},{&quot;2026-09-11&quot;:0.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="77061"
  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-thb 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">
            Nightmare Shepherd
        </span>


      </div>

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

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

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

        <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">
            Nightmare Shepherd
        </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 Creature — Demon</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><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="Nightmare Shepherd" src="https://cards.scryfall.io/large/front/8/7/87141d83-50b4-4aeb-bfc5-8baa8b31a47a.jpg?1783931433" />
    </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.50
              </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.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.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;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.73},{&quot;2026-06-15&quot;:0.73},{&quot;2026-06-16&quot;:0.73},{&quot;2026-06-17&quot;:0.73},{&quot;2026-06-18&quot;:0.73},{&quot;2026-06-19&quot;:0.73},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-23&quot;:0.73},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.73},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.73},{&quot;2026-06-28&quot;:0.73},{&quot;2026-06-29&quot;:0.73},{&quot;2026-06-30&quot;:0.73},{&quot;2026-07-01&quot;:0.73},{&quot;2026-07-02&quot;:0.73},{&quot;2026-07-03&quot;:0.73},{&quot;2026-07-04&quot;:0.73},{&quot;2026-07-05&quot;:0.73},{&quot;2026-07-06&quot;:0.73},{&quot;2026-07-07&quot;:0.73},{&quot;2026-07-08&quot;:0.73},{&quot;2026-07-09&quot;:0.73},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.73},{&quot;2026-07-14&quot;:0.73},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.73},{&quot;2026-07-18&quot;:0.73},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.73},{&quot;2026-07-21&quot;:0.73},{&quot;2026-07-22&quot;:0.73},{&quot;2026-07-23&quot;:0.73},{&quot;2026-07-24&quot;:0.73},{&quot;2026-07-25&quot;:0.73},{&quot;2026-07-26&quot;:0.73},{&quot;2026-07-27&quot;:0.73},{&quot;2026-07-28&quot;:0.73},{&quot;2026-07-29&quot;:0.73},{&quot;2026-07-30&quot;:0.73},{&quot;2026-07-31&quot;:0.73},{&quot;2026-08-01&quot;:0.73},{&quot;2026-08-02&quot;:0.73},{&quot;2026-08-03&quot;:0.73},{&quot;2026-08-04&quot;:0.73},{&quot;2026-08-05&quot;:0.73},{&quot;2026-08-07&quot;:0.48},{&quot;2026-08-08&quot;:0.48},{&quot;2026-08-09&quot;:0.48},{&quot;2026-08-10&quot;:0.48},{&quot;2026-08-11&quot;:0.48},{&quot;2026-08-12&quot;:0.48},{&quot;2026-08-13&quot;:0.48},{&quot;2026-08-14&quot;:0.48},{&quot;2026-08-15&quot;:0.48},{&quot;2026-08-16&quot;:0.48},{&quot;2026-08-17&quot;:0.48},{&quot;2026-08-18&quot;:0.48},{&quot;2026-08-19&quot;:0.48},{&quot;2026-08-20&quot;:0.48},{&quot;2026-08-21&quot;:0.48},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.48},{&quot;2026-08-25&quot;:0.48},{&quot;2026-08-26&quot;:0.48},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.48},{&quot;2026-08-31&quot;:0.48},{&quot;2026-09-01&quot;:0.48},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.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.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}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.51},{&quot;2026-06-14&quot;:0.51},{&quot;2026-06-15&quot;:0.51},{&quot;2026-06-16&quot;:0.51},{&quot;2026-06-17&quot;:0.52},{&quot;2026-06-18&quot;:0.52},{&quot;2026-06-19&quot;:0.52},{&quot;2026-06-20&quot;:0.52},{&quot;2026-06-21&quot;:0.52},{&quot;2026-06-22&quot;:0.52},{&quot;2026-06-23&quot;:0.52},{&quot;2026-06-24&quot;:0.52},{&quot;2026-06-25&quot;:0.52},{&quot;2026-06-26&quot;:0.52},{&quot;2026-06-27&quot;:0.52},{&quot;2026-06-28&quot;:0.52},{&quot;2026-06-29&quot;:0.51},{&quot;2026-06-30&quot;:0.51},{&quot;2026-07-01&quot;:0.51},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.51},{&quot;2026-07-04&quot;:0.51},{&quot;2026-07-05&quot;:0.51},{&quot;2026-07-06&quot;:0.51},{&quot;2026-07-07&quot;:0.51},{&quot;2026-07-08&quot;:0.51},{&quot;2026-07-09&quot;:0.51},{&quot;2026-07-10&quot;:0.51},{&quot;2026-07-11&quot;:0.51},{&quot;2026-07-12&quot;:0.51},{&quot;2026-07-13&quot;:0.51},{&quot;2026-07-14&quot;:0.51},{&quot;2026-07-15&quot;:0.51},{&quot;2026-07-16&quot;:0.51},{&quot;2026-07-17&quot;:0.51},{&quot;2026-07-18&quot;:0.51},{&quot;2026-07-19&quot;:0.51},{&quot;2026-07-20&quot;:0.51},{&quot;2026-07-21&quot;:0.51},{&quot;2026-07-22&quot;:0.51},{&quot;2026-07-23&quot;:0.51},{&quot;2026-07-24&quot;:0.51},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.51},{&quot;2026-07-28&quot;:0.51},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.51},{&quot;2026-08-03&quot;:0.51},{&quot;2026-08-04&quot;:0.51},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.51},{&quot;2026-08-08&quot;:0.51},{&quot;2026-08-09&quot;:0.51},{&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.5},{&quot;2026-08-15&quot;:0.5},{&quot;2026-08-16&quot;:0.5},{&quot;2026-08-17&quot;:0.5},{&quot;2026-08-18&quot;:0.5},{&quot;2026-08-19&quot;:0.5},{&quot;2026-08-20&quot;:0.5},{&quot;2026-08-21&quot;:0.5},{&quot;2026-08-22&quot;:0.5},{&quot;2026-08-23&quot;:0.5},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.5},{&quot;2026-08-26&quot;:0.5},{&quot;2026-08-27&quot;:0.5},{&quot;2026-08-28&quot;:0.5},{&quot;2026-08-29&quot;:0.5},{&quot;2026-08-30&quot;:0.5},{&quot;2026-08-31&quot;:0.5},{&quot;2026-09-01&quot;:0.5},{&quot;2026-09-02&quot;:0.5},{&quot;2026-09-03&quot;:0.5},{&quot;2026-09-04&quot;:0.5},{&quot;2026-09-05&quot;:0.5},{&quot;2026-09-06&quot;:0.5},{&quot;2026-09-07&quot;:0.5},{&quot;2026-09-08&quot;:0.5},{&quot;2026-09-09&quot;:0.5},{&quot;2026-09-10&quot;:0.5},{&quot;2026-09-11&quot;:0.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary 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">
              ↓
              36%
            </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="Mask of Griselbrand" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/829786e2-260b-4bc6-935b-1868b37e2d33.jpg?1783925614" />

        <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">
            Mask of Griselbrand
        </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 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><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="Mask of Griselbrand" src="https://cards.scryfall.io/large/front/8/2/829786e2-260b-4bc6-935b-1868b37e2d33.jpg?1783925614" />
    </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-100">
                  ↓
                  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.54
              </span>

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

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Scavenger Grounds" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/8/78748ac8-4726-4156-a97e-023f80fef610.jpg?1783927484" />

        <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">
            Scavenger Grounds
        </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 — Desert</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="Scavenger Grounds" src="https://cards.scryfall.io/large/front/7/8/78748ac8-4726-4156-a97e-023f80fef610.jpg?1783927484" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10985"
  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-c20 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">
            Rogue&#39;s Passage
        </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.43
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rogue&#39;s Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/8230642b-865e-4114-87f9-516fb7efa6cd.jpg?1783931113" />

        <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">
            Rogue&#39;s Passage
        </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="Rogue&#39;s Passage" src="https://cards.scryfall.io/large/front/8/2/8230642b-865e-4114-87f9-516fb7efa6cd.jpg?1783931113" />
    </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.43
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="37549"
  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-xln 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">
            Deadeye Tracker
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Deadeye Tracker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/848902db-7a10-4754-b50a-57a9e845705a.jpg?1783935762" />

        <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">
            Deadeye Tracker
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Pirate</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="Deadeye Tracker" src="https://cards.scryfall.io/large/front/8/4/848902db-7a10-4754-b50a-57a9e845705a.jpg?1783935762" />
    </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.43
              </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.58
              </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.67},{&quot;2026-06-14&quot;:0.67},{&quot;2026-06-15&quot;:0.67},{&quot;2026-06-16&quot;:0.7},{&quot;2026-06-17&quot;:0.7},{&quot;2026-06-18&quot;:0.7},{&quot;2026-06-19&quot;:0.7},{&quot;2026-06-20&quot;:0.7},{&quot;2026-06-21&quot;:0.7},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-23&quot;:0.7},{&quot;2026-06-24&quot;:0.7},{&quot;2026-06-25&quot;:0.7},{&quot;2026-06-26&quot;:0.7},{&quot;2026-06-27&quot;:0.65},{&quot;2026-06-28&quot;:0.65},{&quot;2026-06-29&quot;:0.65},{&quot;2026-06-30&quot;:0.65},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.65},{&quot;2026-07-03&quot;:0.6},{&quot;2026-07-04&quot;:0.6},{&quot;2026-07-05&quot;:0.6},{&quot;2026-07-06&quot;:0.6},{&quot;2026-07-07&quot;:0.6},{&quot;2026-07-08&quot;:0.6},{&quot;2026-07-09&quot;:0.6},{&quot;2026-07-10&quot;:0.6},{&quot;2026-07-11&quot;:0.6},{&quot;2026-07-12&quot;:0.6},{&quot;2026-07-13&quot;:0.6},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.64},{&quot;2026-07-16&quot;:0.64},{&quot;2026-07-17&quot;:0.64},{&quot;2026-07-18&quot;:0.69},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.69},{&quot;2026-07-21&quot;:0.69},{&quot;2026-07-22&quot;:0.69},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-24&quot;:0.69},{&quot;2026-07-25&quot;:0.69},{&quot;2026-07-26&quot;:0.69},{&quot;2026-07-27&quot;:0.69},{&quot;2026-07-28&quot;:0.69},{&quot;2026-07-29&quot;:0.69},{&quot;2026-07-30&quot;:0.69},{&quot;2026-07-31&quot;:0.69},{&quot;2026-08-01&quot;:0.69},{&quot;2026-08-02&quot;:0.69},{&quot;2026-08-03&quot;:0.69},{&quot;2026-08-04&quot;:0.69},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.69},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.64},{&quot;2026-08-10&quot;:0.64},{&quot;2026-08-11&quot;:0.64},{&quot;2026-08-12&quot;:0.64},{&quot;2026-08-13&quot;:0.64},{&quot;2026-08-14&quot;:0.64},{&quot;2026-08-15&quot;:0.64},{&quot;2026-08-16&quot;:0.64},{&quot;2026-08-17&quot;:0.64},{&quot;2026-08-18&quot;:0.64},{&quot;2026-08-19&quot;:0.64},{&quot;2026-08-20&quot;:0.64},{&quot;2026-08-21&quot;:0.64},{&quot;2026-08-22&quot;:0.64},{&quot;2026-08-23&quot;:0.64},{&quot;2026-08-24&quot;:0.6},{&quot;2026-08-25&quot;:0.6},{&quot;2026-08-26&quot;:0.6},{&quot;2026-08-27&quot;:0.6},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.6},{&quot;2026-08-31&quot;:0.6},{&quot;2026-09-01&quot;:0.6},{&quot;2026-09-02&quot;:0.6},{&quot;2026-09-03&quot;:0.58},{&quot;2026-09-04&quot;:0.58},{&quot;2026-09-05&quot;:0.58},{&quot;2026-09-06&quot;:0.58},{&quot;2026-09-07&quot;:0.58},{&quot;2026-09-08&quot;:0.58},{&quot;2026-09-09&quot;:0.58},{&quot;2026-09-10&quot;:0.58},{&quot;2026-09-11&quot;:0.58}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.32},{&quot;2026-06-14&quot;:0.32},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.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.32},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.32},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.32},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.31},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.31},{&quot;2026-07-15&quot;:0.31},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.33},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-24&quot;:0.32},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.33},{&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.37},{&quot;2026-08-11&quot;:0.37},{&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.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.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.42},{&quot;2026-08-27&quot;:0.42},{&quot;2026-08-28&quot;:0.42},{&quot;2026-08-29&quot;:0.42},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.42},{&quot;2026-09-01&quot;:0.43},{&quot;2026-09-02&quot;:0.43},{&quot;2026-09-03&quot;:0.43},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.43},{&quot;2026-09-06&quot;:0.43},{&quot;2026-09-07&quot;:0.43},{&quot;2026-09-08&quot;:0.43},{&quot;2026-09-09&quot;:0.43},{&quot;2026-09-10&quot;:0.43},{&quot;2026-09-11&quot;:0.43}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15692"
  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-m20 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">
            Yarok&#39;s Fenlurker
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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.40
          </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="Yarok&#39;s Fenlurker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/6/16b122f8-fcd9-4b2a-92f6-f0ed7307ff58.jpg?1783932986" />

        <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">
            Yarok&#39;s Fenlurker
        </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 — Horror</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><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="Yarok&#39;s Fenlurker" src="https://cards.scryfall.io/large/front/1/6/16b122f8-fcd9-4b2a-92f6-f0ed7307ff58.jpg?1783932986" />
    </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.40
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:0.46},{&quot;2026-06-11&quot;:0.46},{&quot;2026-06-12&quot;:0.46},{&quot;2026-06-13&quot;:0.46},{&quot;2026-06-14&quot;:0.46},{&quot;2026-06-15&quot;:0.46},{&quot;2026-06-16&quot;:0.46},{&quot;2026-06-17&quot;:0.46},{&quot;2026-06-18&quot;:0.46},{&quot;2026-06-19&quot;:0.46},{&quot;2026-06-20&quot;:0.48},{&quot;2026-06-21&quot;:0.48},{&quot;2026-06-22&quot;:0.48},{&quot;2026-06-23&quot;:0.48},{&quot;2026-06-24&quot;:0.48},{&quot;2026-06-25&quot;:0.48},{&quot;2026-06-26&quot;:0.48},{&quot;2026-06-27&quot;:0.48},{&quot;2026-06-28&quot;:0.48},{&quot;2026-06-29&quot;:0.48},{&quot;2026-06-30&quot;:0.48},{&quot;2026-07-01&quot;:0.48},{&quot;2026-07-02&quot;:0.48},{&quot;2026-07-03&quot;:0.48},{&quot;2026-07-04&quot;:0.48},{&quot;2026-07-05&quot;:0.48},{&quot;2026-07-06&quot;:0.48},{&quot;2026-07-07&quot;:0.48},{&quot;2026-07-08&quot;:0.5},{&quot;2026-07-09&quot;:0.5},{&quot;2026-07-10&quot;:0.5},{&quot;2026-07-11&quot;:0.5},{&quot;2026-07-12&quot;:0.5},{&quot;2026-07-13&quot;:0.5},{&quot;2026-07-14&quot;:0.5},{&quot;2026-07-15&quot;:0.5},{&quot;2026-07-16&quot;:0.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.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.55},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-29&quot;:0.55},{&quot;2026-07-30&quot;:0.55},{&quot;2026-07-31&quot;:0.55},{&quot;2026-08-01&quot;:0.55},{&quot;2026-08-02&quot;:0.55},{&quot;2026-08-03&quot;:0.55},{&quot;2026-08-04&quot;:0.55},{&quot;2026-08-05&quot;:0.55},{&quot;2026-08-07&quot;:0.55},{&quot;2026-08-08&quot;:0.56},{&quot;2026-08-09&quot;:0.56},{&quot;2026-08-10&quot;:0.56},{&quot;2026-08-11&quot;:0.56},{&quot;2026-08-12&quot;:0.56},{&quot;2026-08-13&quot;:0.56},{&quot;2026-08-14&quot;:0.56},{&quot;2026-08-15&quot;:0.56},{&quot;2026-08-16&quot;:0.56},{&quot;2026-08-17&quot;:0.56},{&quot;2026-08-18&quot;:0.56},{&quot;2026-08-19&quot;:0.56},{&quot;2026-08-20&quot;:0.56},{&quot;2026-08-21&quot;:0.69},{&quot;2026-08-22&quot;:0.69},{&quot;2026-08-23&quot;:0.69},{&quot;2026-08-24&quot;:0.69},{&quot;2026-08-25&quot;:0.69},{&quot;2026-08-26&quot;:0.69},{&quot;2026-08-27&quot;:0.68},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.68},{&quot;2026-08-31&quot;:0.68},{&quot;2026-09-01&quot;:0.68},{&quot;2026-09-02&quot;:0.68},{&quot;2026-09-03&quot;:0.68},{&quot;2026-09-04&quot;:0.68},{&quot;2026-09-05&quot;:0.68},{&quot;2026-09-06&quot;:0.68},{&quot;2026-09-07&quot;:0.68},{&quot;2026-09-08&quot;:0.68},{&quot;2026-09-09&quot;:0.68},{&quot;2026-09-10&quot;:0.68},{&quot;2026-09-11&quot;:0.68}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.38},{&quot;2026-06-11&quot;:0.38},{&quot;2026-06-12&quot;:0.36},{&quot;2026-06-13&quot;:0.35},{&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.35},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.36},{&quot;2026-06-23&quot;:0.36},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.37},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.41},{&quot;2026-07-06&quot;:0.41},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.4},{&quot;2026-07-12&quot;:0.39},{&quot;2026-07-13&quot;:0.39},{&quot;2026-07-14&quot;:0.39},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.38},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.37},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.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.35},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.36},{&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.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.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.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.39},{&quot;2026-09-06&quot;:0.39},{&quot;2026-09-07&quot;:0.41},{&quot;2026-09-08&quot;:0.41},{&quot;2026-09-09&quot;:0.41},{&quot;2026-09-10&quot;:0.4},{&quot;2026-09-11&quot;:0.4}]}"
        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="16415"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-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-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.40
          </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/3/0/30b3d647-3546-4ade-b395-f2370750a7a6.jpg?1783930643" />

        <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/3/0/30b3d647-3546-4ade-b395-f2370750a7a6.jpg?1783930643" />
    </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.40
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.86
              </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.42},{&quot;2026-06-12&quot;:0.42},{&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.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.43},{&quot;2026-06-24&quot;:0.43},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.43},{&quot;2026-06-27&quot;:0.43},{&quot;2026-06-28&quot;:0.43},{&quot;2026-06-29&quot;:0.43},{&quot;2026-06-30&quot;:0.43},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.43},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.43},{&quot;2026-07-07&quot;:0.43},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.49},{&quot;2026-07-10&quot;:0.49},{&quot;2026-07-11&quot;:0.49},{&quot;2026-07-12&quot;:0.49},{&quot;2026-07-13&quot;:0.49},{&quot;2026-07-14&quot;:0.49},{&quot;2026-07-15&quot;:0.46},{&quot;2026-07-16&quot;:0.46},{&quot;2026-07-17&quot;:0.46},{&quot;2026-07-18&quot;:0.46},{&quot;2026-07-19&quot;:0.46},{&quot;2026-07-20&quot;:0.46},{&quot;2026-07-21&quot;:0.47},{&quot;2026-07-23&quot;:0.52},{&quot;2026-07-25&quot;:0.57},{&quot;2026-07-26&quot;:0.57},{&quot;2026-07-27&quot;:0.58},{&quot;2026-07-28&quot;:0.58},{&quot;2026-07-29&quot;:0.58},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.62},{&quot;2026-08-01&quot;:0.62},{&quot;2026-08-02&quot;:0.64},{&quot;2026-08-03&quot;:0.64},{&quot;2026-08-04&quot;:0.64},{&quot;2026-08-05&quot;:0.64},{&quot;2026-08-07&quot;:0.66},{&quot;2026-08-08&quot;:0.66},{&quot;2026-08-09&quot;:0.66},{&quot;2026-08-10&quot;:0.66},{&quot;2026-08-11&quot;:0.67},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.66},{&quot;2026-08-16&quot;:0.66},{&quot;2026-08-17&quot;:0.7},{&quot;2026-08-18&quot;:0.7},{&quot;2026-08-19&quot;:0.7},{&quot;2026-08-20&quot;:0.7},{&quot;2026-08-21&quot;:0.74},{&quot;2026-08-22&quot;:0.74},{&quot;2026-08-23&quot;:0.87},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.87},{&quot;2026-08-26&quot;:0.87},{&quot;2026-08-27&quot;:0.86},{&quot;2026-08-28&quot;:0.86},{&quot;2026-08-29&quot;:0.86},{&quot;2026-08-30&quot;:0.86},{&quot;2026-08-31&quot;:0.86},{&quot;2026-09-01&quot;:0.86},{&quot;2026-09-02&quot;:0.86},{&quot;2026-09-03&quot;:0.86},{&quot;2026-09-04&quot;:0.86},{&quot;2026-09-05&quot;:0.86},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.86},{&quot;2026-09-08&quot;:0.86},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.86},{&quot;2026-09-11&quot;:0.86}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.39},{&quot;2026-06-12&quot;:0.39},{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.39},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.38},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.35},{&quot;2026-06-28&quot;:0.34},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.32},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.34},{&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.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.28},{&quot;2026-07-21&quot;:0.28},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-28&quot;:0.31},{&quot;2026-07-29&quot;:0.31},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.3},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.33},{&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.35},{&quot;2026-08-13&quot;:0.38},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.37},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&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.39},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.39},{&quot;2026-09-05&quot;:0.39},{&quot;2026-09-06&quot;:0.39},{&quot;2026-09-07&quot;:0.39},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.39},{&quot;2026-09-11&quot;:0.4}]}"
        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="7480"
  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-cmd 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">
            Syphon Mind
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              12%
            </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="Syphon Mind" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/53a224be-4365-46da-9ff2-a04ea16e5154.jpg?1783941216" />

        <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">
            Syphon Mind
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Syphon Mind" src="https://cards.scryfall.io/large/front/5/3/53a224be-4365-46da-9ff2-a04ea16e5154.jpg?1783941216" />
    </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">
                  ↑
                  12%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-12&quot;:0.53},{&quot;2026-06-13&quot;:0.53},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.53},{&quot;2026-06-16&quot;:0.53},{&quot;2026-06-17&quot;:0.53},{&quot;2026-06-18&quot;:0.53},{&quot;2026-06-19&quot;:0.53},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.53},{&quot;2026-06-22&quot;:0.53},{&quot;2026-06-23&quot;:0.53},{&quot;2026-06-24&quot;:0.53},{&quot;2026-06-25&quot;:0.53},{&quot;2026-06-26&quot;:0.53},{&quot;2026-06-27&quot;:0.53},{&quot;2026-06-28&quot;:0.53},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.53},{&quot;2026-07-01&quot;:0.53},{&quot;2026-07-02&quot;:0.53},{&quot;2026-07-03&quot;:0.53},{&quot;2026-07-04&quot;:0.53},{&quot;2026-07-05&quot;:0.53},{&quot;2026-07-06&quot;:0.53},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.53},{&quot;2026-07-09&quot;:0.53},{&quot;2026-07-10&quot;:0.53},{&quot;2026-07-11&quot;:0.53},{&quot;2026-07-12&quot;:0.53},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.53},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.52},{&quot;2026-07-20&quot;:0.52},{&quot;2026-07-21&quot;:0.51},{&quot;2026-07-23&quot;:0.49},{&quot;2026-07-24&quot;:0.49},{&quot;2026-07-25&quot;:0.49},{&quot;2026-07-26&quot;:0.5},{&quot;2026-07-27&quot;:0.5},{&quot;2026-07-28&quot;:0.5},{&quot;2026-07-29&quot;:0.5},{&quot;2026-07-30&quot;:0.5},{&quot;2026-07-31&quot;:0.5},{&quot;2026-08-01&quot;:0.5},{&quot;2026-08-02&quot;:0.5},{&quot;2026-08-03&quot;:0.5},{&quot;2026-08-04&quot;:0.5},{&quot;2026-08-05&quot;:0.5},{&quot;2026-08-07&quot;:0.48},{&quot;2026-08-08&quot;:0.48},{&quot;2026-08-09&quot;:0.48},{&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.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="47733"
  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-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">
            Choked Estuary
        </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.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="Choked Estuary" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/843c932a-e91c-49f2-bbd2-3a1ff4faa0f8.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">
            Choked Estuary
        </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="Choked Estuary" src="https://cards.scryfall.io/large/front/8/4/843c932a-e91c-49f2-bbd2-3a1ff4faa0f8.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">
                $0.38
              </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.18</span>
              <span class="text-xs text-grey-text">Credit: $0.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-10&quot;:0.34},{&quot;2026-06-11&quot;:0.34},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.34},{&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.36},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.37},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.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.4},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.4},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&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-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.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.38},{&quot;2026-08-08&quot;:0.38},{&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.38},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.38},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.38}]}"
        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="40377"
  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-khm 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">
            Draugr Necromancer
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Draugr Necromancer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/6/76d8e0ff-e720-41ca-af69-35585a2d7ae2.jpg?1783928251" />

        <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">
            Draugr Necromancer
        </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">Snow Creature — Zombie Cleric</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="Draugr Necromancer" src="https://cards.scryfall.io/large/front/7/6/76d8e0ff-e720-41ca-af69-35585a2d7ae2.jpg?1783928251" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

          <div 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 Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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


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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28377"
          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">
              20
            </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>
              Winged Boots


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49038"
          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">
              97
            </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>
              Profane Tutor


            </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">
                
              </div>
            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48889"
          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-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Fractured Sanity


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-iko 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">
                <div class="flex items-center gap-2">
                  $2.43

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

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

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

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


            </td>

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="50976"
          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">
              97
            </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-common ss-fw ss-2x mr-4"></i>
              Sign in Blood


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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40532"
          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-khc 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.83

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

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

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

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

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

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


            </td>

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

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

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

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

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

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


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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="61378"
          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-rav 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.53

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.95
            </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="61378"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_61378" src="/boxset_card/61378?collection_id=207&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-war ss-uncommon ss-fw ss-2x mr-4"></i>
              Ashiok, Dream Render


            </td>

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47257"
          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">
              13
            </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-rare ss-fw ss-2x mr-4"></i>
              Drown in Dreams


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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89652"
          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">
              106
            </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>
              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.74

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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

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

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

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

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


            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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


            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35897"
          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-mid ss-rare ss-fw ss-2x mr-4"></i>
              Mask of Griselbrand


            </td>

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

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

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

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


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

                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-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">
                <div class="flex items-center gap-2">
                  $0.40

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></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">
                      ↑
                      12%
                    </span>
                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47733"
          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">
              169
            </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-rare ss-fw ss-2x mr-4"></i>
              Choked Estuary


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.18
            </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="47733"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47733" src="/boxset_card/47733?collection_id=207&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khm ss-rare ss-fw ss-2x mr-4"></i>
              Draugr Necromancer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Snow Creature — Zombie Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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.37

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40377"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40377" src="/boxset_card/40377?collection_id=207&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 99 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=207&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=207&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>