<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="4" 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="80015"
  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-bot 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">
            Goldbug, Humanity&#39;s Ally 
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Goldbug, Humanity&#39;s Ally // Goldbug, Scrappy Scout" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/7/67a29ad8-2cca-4dab-ac71-d3b0b2489d79.jpg?1783919890" />

        <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">
            Goldbug, Humanity&#39;s Ally 
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Goldbug, Humanity&#39;s Ally // Goldbug, Scrappy Scout" src="https://cards.scryfall.io/large/front/6/7/67a29ad8-2cca-4dab-ac71-d3b0b2489d79.jpg?1783919890" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Goldbug, Humanity&#39;s Ally // Goldbug, Scrappy Scout" src="https://cards.scryfall.io/large/back/6/7/67a29ad8-2cca-4dab-ac71-d3b0b2489d79.jpg?1783919890" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:137.5},{&quot;2026-06-14&quot;:137.5},{&quot;2026-06-15&quot;:137.5},{&quot;2026-06-16&quot;:137.5},{&quot;2026-06-17&quot;:137.5},{&quot;2026-06-18&quot;:137.5},{&quot;2026-06-19&quot;:137.5},{&quot;2026-06-20&quot;:137.5},{&quot;2026-06-21&quot;:137.5},{&quot;2026-06-22&quot;:137.5},{&quot;2026-06-23&quot;:137.5},{&quot;2026-06-24&quot;:137.5},{&quot;2026-06-25&quot;:137.5},{&quot;2026-06-26&quot;:137.5},{&quot;2026-06-27&quot;:137.5},{&quot;2026-06-28&quot;:137.5},{&quot;2026-06-29&quot;:137.5},{&quot;2026-06-30&quot;:137.5},{&quot;2026-07-01&quot;:137.5},{&quot;2026-07-02&quot;:137.5},{&quot;2026-07-03&quot;:137.8},{&quot;2026-07-04&quot;:137.8},{&quot;2026-07-05&quot;:137.8},{&quot;2026-07-06&quot;:137.8},{&quot;2026-07-07&quot;:137.8},{&quot;2026-07-08&quot;:137.8},{&quot;2026-07-09&quot;:137.8},{&quot;2026-07-10&quot;:137.8},{&quot;2026-07-11&quot;:137.8},{&quot;2026-07-12&quot;:137.8},{&quot;2026-07-13&quot;:137.8},{&quot;2026-07-14&quot;:137.8},{&quot;2026-07-15&quot;:137.8},{&quot;2026-07-16&quot;:138.95},{&quot;2026-07-17&quot;:138.95},{&quot;2026-07-18&quot;:138.95},{&quot;2026-07-19&quot;:138.95},{&quot;2026-07-20&quot;:138.95},{&quot;2026-07-21&quot;:138.95},{&quot;2026-07-22&quot;:138.95},{&quot;2026-07-23&quot;:138.95},{&quot;2026-07-24&quot;:138.95},{&quot;2026-07-25&quot;:138.95},{&quot;2026-07-26&quot;:138.95},{&quot;2026-07-27&quot;:138.95},{&quot;2026-07-28&quot;:138.95},{&quot;2026-07-29&quot;:138.95},{&quot;2026-07-30&quot;:140.78},{&quot;2026-07-31&quot;:140.78},{&quot;2026-08-01&quot;:140.78},{&quot;2026-08-02&quot;:140.78},{&quot;2026-08-03&quot;:140.78},{&quot;2026-08-04&quot;:140.78},{&quot;2026-08-05&quot;:140.78},{&quot;2026-08-07&quot;:140.78},{&quot;2026-08-08&quot;:140.78},{&quot;2026-08-09&quot;:140.78},{&quot;2026-08-10&quot;:140.78},{&quot;2026-08-11&quot;:140.78},{&quot;2026-08-12&quot;:140.78},{&quot;2026-08-13&quot;:140.78},{&quot;2026-08-14&quot;:140.78},{&quot;2026-08-15&quot;:140.78},{&quot;2026-08-16&quot;:140.78},{&quot;2026-08-17&quot;:140.78},{&quot;2026-08-18&quot;:140.78},{&quot;2026-08-19&quot;:140.78},{&quot;2026-08-20&quot;:140.78},{&quot;2026-08-21&quot;:140.78},{&quot;2026-08-22&quot;:140.78},{&quot;2026-08-23&quot;:140.78},{&quot;2026-08-24&quot;:140.78},{&quot;2026-08-25&quot;:140.78},{&quot;2026-08-26&quot;:140.78},{&quot;2026-08-27&quot;:140.78},{&quot;2026-08-28&quot;:140.78},{&quot;2026-08-29&quot;:140.78},{&quot;2026-08-30&quot;:140.78},{&quot;2026-08-31&quot;:140.78},{&quot;2026-09-01&quot;:140.78},{&quot;2026-09-02&quot;:140.78},{&quot;2026-09-03&quot;:140.78},{&quot;2026-09-04&quot;:140.78},{&quot;2026-09-05&quot;:140.78},{&quot;2026-09-06&quot;:140.78},{&quot;2026-09-07&quot;:140.78},{&quot;2026-09-08&quot;:141.94},{&quot;2026-09-09&quot;:141.94},{&quot;2026-09-10&quot;:141.94},{&quot;2026-09-11&quot;:141.94}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:7.78},{&quot;2026-06-14&quot;:7.78},{&quot;2026-06-15&quot;:7.78},{&quot;2026-06-16&quot;:7.78},{&quot;2026-06-17&quot;:7.78},{&quot;2026-06-18&quot;:7.78},{&quot;2026-06-19&quot;:7.79},{&quot;2026-06-20&quot;:7.84},{&quot;2026-06-21&quot;:7.84},{&quot;2026-06-22&quot;:7.84},{&quot;2026-06-23&quot;:7.84},{&quot;2026-06-24&quot;:7.63},{&quot;2026-06-25&quot;:7.62},{&quot;2026-06-26&quot;:7.62},{&quot;2026-06-27&quot;:7.62},{&quot;2026-06-28&quot;:7.62},{&quot;2026-06-29&quot;:7.62},{&quot;2026-06-30&quot;:7.62},{&quot;2026-07-01&quot;:7.62},{&quot;2026-07-02&quot;:7.62},{&quot;2026-07-03&quot;:7.58},{&quot;2026-07-04&quot;:7.59},{&quot;2026-07-05&quot;:7.59},{&quot;2026-07-06&quot;:7.59},{&quot;2026-07-07&quot;:7.59},{&quot;2026-07-08&quot;:7.59},{&quot;2026-07-09&quot;:7.53},{&quot;2026-07-10&quot;:7.53},{&quot;2026-07-11&quot;:7.53},{&quot;2026-07-12&quot;:7.53},{&quot;2026-07-13&quot;:7.53},{&quot;2026-07-14&quot;:7.53},{&quot;2026-07-15&quot;:7.53},{&quot;2026-07-16&quot;:7.53},{&quot;2026-07-17&quot;:7.5},{&quot;2026-07-18&quot;:7.5},{&quot;2026-07-19&quot;:7.45},{&quot;2026-07-20&quot;:7.45},{&quot;2026-07-21&quot;:7.39},{&quot;2026-07-22&quot;:7.39},{&quot;2026-07-23&quot;:7.39},{&quot;2026-07-24&quot;:7.34},{&quot;2026-07-25&quot;:7.34},{&quot;2026-07-26&quot;:7.28},{&quot;2026-07-27&quot;:7.26},{&quot;2026-07-28&quot;:7.26},{&quot;2026-07-29&quot;:7.21},{&quot;2026-07-30&quot;:7.2},{&quot;2026-07-31&quot;:7.2},{&quot;2026-08-01&quot;:7.2},{&quot;2026-08-02&quot;:7.16},{&quot;2026-08-03&quot;:7.16},{&quot;2026-08-04&quot;:7.16},{&quot;2026-08-05&quot;:7.15},{&quot;2026-08-07&quot;:7.15},{&quot;2026-08-08&quot;:7.14},{&quot;2026-08-09&quot;:7.19},{&quot;2026-08-10&quot;:7.19},{&quot;2026-08-11&quot;:7.19},{&quot;2026-08-12&quot;:7.19},{&quot;2026-08-13&quot;:7.18},{&quot;2026-08-14&quot;:7.2},{&quot;2026-08-15&quot;:7.2},{&quot;2026-08-16&quot;:7.2},{&quot;2026-08-17&quot;:7.07},{&quot;2026-08-18&quot;:7.07},{&quot;2026-08-19&quot;:7.07},{&quot;2026-08-20&quot;:7.07},{&quot;2026-08-21&quot;:7.1},{&quot;2026-08-22&quot;:7.07},{&quot;2026-08-23&quot;:7.05},{&quot;2026-08-24&quot;:7.11},{&quot;2026-08-25&quot;:7.11},{&quot;2026-08-26&quot;:7.11},{&quot;2026-08-27&quot;:7.11},{&quot;2026-08-28&quot;:7.11},{&quot;2026-08-29&quot;:7.11},{&quot;2026-08-30&quot;:7.25},{&quot;2026-08-31&quot;:7.25},{&quot;2026-09-01&quot;:7.17},{&quot;2026-09-02&quot;:7.2},{&quot;2026-09-03&quot;:7.15},{&quot;2026-09-04&quot;:7.09},{&quot;2026-09-05&quot;:7.05},{&quot;2026-09-06&quot;:7.06},{&quot;2026-09-07&quot;:7.06},{&quot;2026-09-08&quot;:7.07},{&quot;2026-09-09&quot;:7.07},{&quot;2026-09-10&quot;:7.07},{&quot;2026-09-11&quot;:7.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="97947"
  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-fic 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">
            Lulu, Stern Guardian
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $107.89
          </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="Lulu, Stern Guardian" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/9/99cb1ba3-e16b-414d-8682-fb3b2f350ea2.jpg?1782684322" />

        <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">
            Lulu, Stern Guardian
        </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 — Human Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lulu, Stern Guardian" src="https://cards.scryfall.io/large/front/9/9/99cb1ba3-e16b-414d-8682-fb3b2f350ea2.jpg?1782684322" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:188.88},{&quot;2026-06-12&quot;:190.29},{&quot;2026-06-13&quot;:184.84},{&quot;2026-06-14&quot;:184.84},{&quot;2026-06-15&quot;:185.06},{&quot;2026-06-16&quot;:185.06},{&quot;2026-06-17&quot;:185.06},{&quot;2026-06-18&quot;:183.9},{&quot;2026-06-19&quot;:177.8},{&quot;2026-06-20&quot;:173.85},{&quot;2026-06-21&quot;:171.57},{&quot;2026-06-22&quot;:171.57},{&quot;2026-06-23&quot;:170.81},{&quot;2026-06-24&quot;:170.37},{&quot;2026-06-25&quot;:170.37},{&quot;2026-06-26&quot;:170.49},{&quot;2026-06-27&quot;:169.58},{&quot;2026-06-28&quot;:169.46},{&quot;2026-06-29&quot;:169.46},{&quot;2026-06-30&quot;:167.43},{&quot;2026-07-01&quot;:165.43},{&quot;2026-07-02&quot;:164.44},{&quot;2026-07-03&quot;:162.6},{&quot;2026-07-04&quot;:160.89},{&quot;2026-07-05&quot;:160.89},{&quot;2026-07-06&quot;:160.89},{&quot;2026-07-07&quot;:162.4},{&quot;2026-07-08&quot;:162.4},{&quot;2026-07-09&quot;:160.06},{&quot;2026-07-10&quot;:162.99},{&quot;2026-07-11&quot;:162.07},{&quot;2026-07-12&quot;:161.48},{&quot;2026-07-13&quot;:157.33},{&quot;2026-07-14&quot;:157.33},{&quot;2026-07-15&quot;:156.59},{&quot;2026-07-16&quot;:155.79},{&quot;2026-07-17&quot;:154.39},{&quot;2026-07-18&quot;:154.39},{&quot;2026-07-19&quot;:154.39},{&quot;2026-07-20&quot;:152.61},{&quot;2026-07-21&quot;:151.72},{&quot;2026-07-23&quot;:150.0},{&quot;2026-07-25&quot;:145.09},{&quot;2026-07-26&quot;:142.24},{&quot;2026-07-27&quot;:140.24},{&quot;2026-07-28&quot;:137.5},{&quot;2026-07-29&quot;:134.61},{&quot;2026-07-30&quot;:130.38},{&quot;2026-07-31&quot;:127.64},{&quot;2026-08-01&quot;:122.79},{&quot;2026-08-02&quot;:120.09},{&quot;2026-08-03&quot;:119.56},{&quot;2026-08-04&quot;:119.38},{&quot;2026-08-05&quot;:117.29},{&quot;2026-08-07&quot;:117.1},{&quot;2026-08-08&quot;:117.68},{&quot;2026-08-09&quot;:117.83},{&quot;2026-08-10&quot;:117.83},{&quot;2026-08-11&quot;:117.79},{&quot;2026-08-12&quot;:117.86},{&quot;2026-08-13&quot;:117.68},{&quot;2026-08-14&quot;:117.85},{&quot;2026-08-15&quot;:118.3},{&quot;2026-08-16&quot;:117.96},{&quot;2026-08-17&quot;:118.39},{&quot;2026-08-18&quot;:118.39},{&quot;2026-08-19&quot;:118.39},{&quot;2026-08-20&quot;:118.39},{&quot;2026-08-21&quot;:119.02},{&quot;2026-08-22&quot;:118.01},{&quot;2026-08-23&quot;:116.45},{&quot;2026-08-24&quot;:115.66},{&quot;2026-08-25&quot;:115.66},{&quot;2026-08-26&quot;:113.08},{&quot;2026-08-27&quot;:113.08},{&quot;2026-08-28&quot;:112.2},{&quot;2026-08-29&quot;:112.2},{&quot;2026-08-30&quot;:111.03},{&quot;2026-08-31&quot;:109.79},{&quot;2026-09-01&quot;:109.79},{&quot;2026-09-02&quot;:110.03},{&quot;2026-09-03&quot;:110.03},{&quot;2026-09-04&quot;:107.25},{&quot;2026-09-05&quot;:107.59},{&quot;2026-09-06&quot;:107.59},{&quot;2026-09-07&quot;:107.39},{&quot;2026-09-08&quot;:106.87},{&quot;2026-09-09&quot;:107.59},{&quot;2026-09-10&quot;:107.89},{&quot;2026-09-11&quot;:107.89}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Choco, Seeker of Paradise" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1ce688fa-1fdb-4acd-b9b0-bf7325a6b8e0.jpg?1782684301" />

        <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">
            Choco, Seeker of Paradise
        </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 — Bird</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Choco, Seeker of Paradise" src="https://cards.scryfall.io/large/front/1/c/1ce688fa-1fdb-4acd-b9b0-bf7325a6b8e0.jpg?1782684301" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:97.71},{&quot;2026-06-11&quot;:100.98},{&quot;2026-06-12&quot;:103.43},{&quot;2026-06-13&quot;:103.51},{&quot;2026-06-14&quot;:103.76},{&quot;2026-06-15&quot;:103.76},{&quot;2026-06-16&quot;:103.76},{&quot;2026-06-17&quot;:103.74},{&quot;2026-06-18&quot;:102.01},{&quot;2026-06-19&quot;:102.01},{&quot;2026-06-20&quot;:102.03},{&quot;2026-06-21&quot;:102.91},{&quot;2026-06-22&quot;:103.03},{&quot;2026-06-23&quot;:102.8},{&quot;2026-06-24&quot;:102.8},{&quot;2026-06-25&quot;:102.71},{&quot;2026-06-26&quot;:102.67},{&quot;2026-06-27&quot;:102.74},{&quot;2026-06-28&quot;:102.13},{&quot;2026-06-29&quot;:102.13},{&quot;2026-06-30&quot;:101.58},{&quot;2026-07-01&quot;:101.61},{&quot;2026-07-02&quot;:101.71},{&quot;2026-07-03&quot;:101.85},{&quot;2026-07-04&quot;:102.23},{&quot;2026-07-05&quot;:102.09},{&quot;2026-07-06&quot;:101.93},{&quot;2026-07-07&quot;:101.82},{&quot;2026-07-08&quot;:101.71},{&quot;2026-07-09&quot;:102.11},{&quot;2026-07-10&quot;:102.11},{&quot;2026-07-11&quot;:102.41},{&quot;2026-07-12&quot;:102.25},{&quot;2026-07-13&quot;:102.25},{&quot;2026-07-14&quot;:102.06},{&quot;2026-07-15&quot;:101.99},{&quot;2026-07-16&quot;:103.2},{&quot;2026-07-17&quot;:103.2},{&quot;2026-07-18&quot;:104.52},{&quot;2026-07-19&quot;:104.78},{&quot;2026-07-20&quot;:105.98},{&quot;2026-07-21&quot;:105.94},{&quot;2026-07-23&quot;:104.37},{&quot;2026-07-25&quot;:103.82},{&quot;2026-07-26&quot;:103.82},{&quot;2026-07-27&quot;:103.6},{&quot;2026-07-29&quot;:103.6},{&quot;2026-07-30&quot;:102.64},{&quot;2026-07-31&quot;:101.3},{&quot;2026-08-01&quot;:100.92},{&quot;2026-08-02&quot;:100.53},{&quot;2026-08-03&quot;:100.22},{&quot;2026-08-04&quot;:100.22},{&quot;2026-08-05&quot;:97.21},{&quot;2026-08-07&quot;:96.63},{&quot;2026-08-08&quot;:95.02},{&quot;2026-08-09&quot;:95.02},{&quot;2026-08-10&quot;:94.55},{&quot;2026-08-11&quot;:95.32},{&quot;2026-08-12&quot;:94.92},{&quot;2026-08-13&quot;:95.65},{&quot;2026-08-14&quot;:95.65},{&quot;2026-08-15&quot;:95.67},{&quot;2026-08-16&quot;:95.68},{&quot;2026-08-17&quot;:95.68},{&quot;2026-08-18&quot;:95.93},{&quot;2026-08-19&quot;:96.02},{&quot;2026-08-20&quot;:96.02},{&quot;2026-08-21&quot;:96.68},{&quot;2026-08-22&quot;:97.21},{&quot;2026-08-23&quot;:97.21},{&quot;2026-08-24&quot;:97.21},{&quot;2026-08-25&quot;:97.21},{&quot;2026-08-26&quot;:97.21},{&quot;2026-08-27&quot;:97.21},{&quot;2026-08-28&quot;:97.21},{&quot;2026-08-29&quot;:97.21},{&quot;2026-08-30&quot;:96.59},{&quot;2026-08-31&quot;:96.59},{&quot;2026-09-01&quot;:96.59},{&quot;2026-09-02&quot;:96.6},{&quot;2026-09-03&quot;:96.6},{&quot;2026-09-04&quot;:96.62},{&quot;2026-09-05&quot;:95.94},{&quot;2026-09-06&quot;:96.11},{&quot;2026-09-07&quot;:96.11},{&quot;2026-09-08&quot;:95.7},{&quot;2026-09-09&quot;:95.75},{&quot;2026-09-10&quot;:95.72},{&quot;2026-09-11&quot;:96.16}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

        <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">
            Smothering Tithe
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Smothering Tithe" src="https://cards.scryfall.io/large/front/f/2/f25a4bbe-2af0-4d4a-95d4-d52c5937c747.jpg?1783921927" />
    </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">
                $55.71
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:48.78},{&quot;2026-06-13&quot;:50.87},{&quot;2026-06-14&quot;:51.54},{&quot;2026-06-15&quot;:51.54},{&quot;2026-06-16&quot;:51.54},{&quot;2026-06-17&quot;:51.54},{&quot;2026-06-18&quot;:52.01},{&quot;2026-06-19&quot;:52.01},{&quot;2026-06-20&quot;:52.01},{&quot;2026-06-21&quot;:52.01},{&quot;2026-06-22&quot;:52.01},{&quot;2026-06-23&quot;:52.01},{&quot;2026-06-24&quot;:52.01},{&quot;2026-06-25&quot;:52.01},{&quot;2026-06-26&quot;:52.52},{&quot;2026-06-27&quot;:53.29},{&quot;2026-06-28&quot;:53.29},{&quot;2026-06-29&quot;:53.29},{&quot;2026-06-30&quot;:53.29},{&quot;2026-07-01&quot;:53.29},{&quot;2026-07-02&quot;:53.29},{&quot;2026-07-03&quot;:53.29},{&quot;2026-07-04&quot;:53.29},{&quot;2026-07-05&quot;:53.29},{&quot;2026-07-06&quot;:53.72},{&quot;2026-07-07&quot;:53.72},{&quot;2026-07-08&quot;:53.72},{&quot;2026-07-09&quot;:53.72},{&quot;2026-07-10&quot;:53.72},{&quot;2026-07-11&quot;:53.72},{&quot;2026-07-12&quot;:54.12},{&quot;2026-07-13&quot;:54.12},{&quot;2026-07-14&quot;:54.12},{&quot;2026-07-15&quot;:54.12},{&quot;2026-07-16&quot;:54.12},{&quot;2026-07-17&quot;:54.12},{&quot;2026-07-18&quot;:54.12},{&quot;2026-07-19&quot;:54.12},{&quot;2026-07-20&quot;:54.12},{&quot;2026-07-21&quot;:54.12},{&quot;2026-07-23&quot;:54.12},{&quot;2026-07-24&quot;:54.12},{&quot;2026-07-25&quot;:54.12},{&quot;2026-07-26&quot;:54.12},{&quot;2026-07-27&quot;:54.12},{&quot;2026-07-28&quot;:54.12},{&quot;2026-07-29&quot;:54.12},{&quot;2026-07-30&quot;:54.48},{&quot;2026-07-31&quot;:54.48},{&quot;2026-08-01&quot;:54.48},{&quot;2026-08-02&quot;:54.48},{&quot;2026-08-03&quot;:54.48},{&quot;2026-08-04&quot;:54.48},{&quot;2026-08-05&quot;:54.48},{&quot;2026-08-07&quot;:54.48},{&quot;2026-08-08&quot;:54.48},{&quot;2026-08-09&quot;:54.48},{&quot;2026-08-10&quot;:54.48},{&quot;2026-08-11&quot;:55.17},{&quot;2026-08-12&quot;:55.17},{&quot;2026-08-13&quot;:55.17},{&quot;2026-08-14&quot;:55.86},{&quot;2026-08-15&quot;:55.86},{&quot;2026-08-16&quot;:55.86},{&quot;2026-08-17&quot;:55.86},{&quot;2026-08-18&quot;:56.32},{&quot;2026-08-19&quot;:56.81},{&quot;2026-08-20&quot;:56.81},{&quot;2026-08-21&quot;:57.51},{&quot;2026-08-22&quot;:57.51},{&quot;2026-08-23&quot;:57.51},{&quot;2026-08-24&quot;:57.51},{&quot;2026-08-25&quot;:57.47},{&quot;2026-08-26&quot;:57.47},{&quot;2026-08-27&quot;:57.64},{&quot;2026-08-28&quot;:57.64},{&quot;2026-08-29&quot;:57.64},{&quot;2026-08-30&quot;:57.9},{&quot;2026-08-31&quot;:57.9},{&quot;2026-09-01&quot;:57.9},{&quot;2026-09-02&quot;:58.23},{&quot;2026-09-03&quot;:58.23},{&quot;2026-09-04&quot;:58.23},{&quot;2026-09-05&quot;:58.23},{&quot;2026-09-06&quot;:58.21},{&quot;2026-09-07&quot;:58.21},{&quot;2026-09-08&quot;:58.21},{&quot;2026-09-09&quot;:58.21},{&quot;2026-09-10&quot;:57.91},{&quot;2026-09-11&quot;:57.91}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:56.96},{&quot;2026-06-13&quot;:57.06},{&quot;2026-06-14&quot;:57.06},{&quot;2026-06-15&quot;:57.06},{&quot;2026-06-16&quot;:57.14},{&quot;2026-06-17&quot;:57.14},{&quot;2026-06-18&quot;:57.14},{&quot;2026-06-19&quot;:58.02},{&quot;2026-06-20&quot;:58.4},{&quot;2026-06-21&quot;:58.44},{&quot;2026-06-22&quot;:58.44},{&quot;2026-06-23&quot;:58.77},{&quot;2026-06-24&quot;:59.25},{&quot;2026-06-25&quot;:60.15},{&quot;2026-06-26&quot;:59.87},{&quot;2026-06-27&quot;:60.41},{&quot;2026-06-28&quot;:58.35},{&quot;2026-06-29&quot;:60.78},{&quot;2026-06-30&quot;:60.78},{&quot;2026-07-01&quot;:60.78},{&quot;2026-07-02&quot;:61.1},{&quot;2026-07-03&quot;:61.1},{&quot;2026-07-04&quot;:62.29},{&quot;2026-07-05&quot;:62.29},{&quot;2026-07-06&quot;:62.13},{&quot;2026-07-07&quot;:62.13},{&quot;2026-07-08&quot;:62.13},{&quot;2026-07-09&quot;:62.09},{&quot;2026-07-10&quot;:61.5},{&quot;2026-07-11&quot;:61.5},{&quot;2026-07-12&quot;:61.6},{&quot;2026-07-13&quot;:60.63},{&quot;2026-07-14&quot;:59.64},{&quot;2026-07-15&quot;:60.51},{&quot;2026-07-16&quot;:59.44},{&quot;2026-07-17&quot;:58.51},{&quot;2026-07-18&quot;:58.12},{&quot;2026-07-19&quot;:57.7},{&quot;2026-07-20&quot;:56.59},{&quot;2026-07-21&quot;:56.2},{&quot;2026-07-23&quot;:55.8},{&quot;2026-07-24&quot;:55.04},{&quot;2026-07-25&quot;:55.6},{&quot;2026-07-26&quot;:55.6},{&quot;2026-07-27&quot;:55.6},{&quot;2026-07-28&quot;:55.99},{&quot;2026-07-29&quot;:56.01},{&quot;2026-07-30&quot;:56.01},{&quot;2026-07-31&quot;:58.23},{&quot;2026-08-01&quot;:57.97},{&quot;2026-08-02&quot;:58.36},{&quot;2026-08-03&quot;:57.88},{&quot;2026-08-04&quot;:57.6},{&quot;2026-08-05&quot;:58.1},{&quot;2026-08-07&quot;:58.3},{&quot;2026-08-08&quot;:59.04},{&quot;2026-08-09&quot;:59.02},{&quot;2026-08-10&quot;:58.73},{&quot;2026-08-11&quot;:58.17},{&quot;2026-08-12&quot;:58.05},{&quot;2026-08-13&quot;:58.02},{&quot;2026-08-14&quot;:58.02},{&quot;2026-08-15&quot;:57.0},{&quot;2026-08-16&quot;:56.53},{&quot;2026-08-17&quot;:56.55},{&quot;2026-08-18&quot;:56.55},{&quot;2026-08-19&quot;:56.52},{&quot;2026-08-20&quot;:56.52},{&quot;2026-08-21&quot;:54.85},{&quot;2026-08-22&quot;:54.65},{&quot;2026-08-23&quot;:54.34},{&quot;2026-08-24&quot;:54.38},{&quot;2026-08-25&quot;:54.92},{&quot;2026-08-26&quot;:53.86},{&quot;2026-08-27&quot;:54.55},{&quot;2026-08-28&quot;:55.82},{&quot;2026-08-29&quot;:55.82},{&quot;2026-08-30&quot;:56.55},{&quot;2026-08-31&quot;:56.55},{&quot;2026-09-01&quot;:56.43},{&quot;2026-09-02&quot;:56.84},{&quot;2026-09-03&quot;:56.59},{&quot;2026-09-04&quot;:56.59},{&quot;2026-09-05&quot;:56.13},{&quot;2026-09-06&quot;:56.95},{&quot;2026-09-07&quot;:57.18},{&quot;2026-09-08&quot;:56.99},{&quot;2026-09-09&quot;:56.35},{&quot;2026-09-10&quot;:55.83},{&quot;2026-09-11&quot;:55.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Force of Negation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/1825a719-1b2a-4af9-9cd2-7cb497cd0317.jpg?1783921916" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Force of Negation
        </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-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="Force of Negation" src="https://cards.scryfall.io/large/front/1/8/1825a719-1b2a-4af9-9cd2-7cb497cd0317.jpg?1783921916" />
    </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">
                $52.98
              </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">
                $58.27
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:55.63},{&quot;2026-06-14&quot;:56.3},{&quot;2026-06-15&quot;:56.45},{&quot;2026-06-16&quot;:56.45},{&quot;2026-06-17&quot;:56.45},{&quot;2026-06-18&quot;:56.94},{&quot;2026-06-19&quot;:56.94},{&quot;2026-06-20&quot;:56.94},{&quot;2026-06-21&quot;:56.94},{&quot;2026-06-22&quot;:56.94},{&quot;2026-06-23&quot;:56.94},{&quot;2026-06-24&quot;:56.94},{&quot;2026-06-25&quot;:56.94},{&quot;2026-06-26&quot;:56.97},{&quot;2026-06-27&quot;:57.06},{&quot;2026-06-28&quot;:56.9},{&quot;2026-06-29&quot;:56.9},{&quot;2026-06-30&quot;:56.9},{&quot;2026-07-01&quot;:56.9},{&quot;2026-07-02&quot;:57.04},{&quot;2026-07-03&quot;:57.04},{&quot;2026-07-04&quot;:57.04},{&quot;2026-07-05&quot;:57.04},{&quot;2026-07-06&quot;:57.04},{&quot;2026-07-07&quot;:57.33},{&quot;2026-07-08&quot;:57.33},{&quot;2026-07-09&quot;:57.33},{&quot;2026-07-10&quot;:57.33},{&quot;2026-07-11&quot;:57.33},{&quot;2026-07-12&quot;:57.33},{&quot;2026-07-13&quot;:57.33},{&quot;2026-07-14&quot;:57.33},{&quot;2026-07-15&quot;:57.33},{&quot;2026-07-16&quot;:57.26},{&quot;2026-07-17&quot;:57.32},{&quot;2026-07-18&quot;:57.16},{&quot;2026-07-19&quot;:57.16},{&quot;2026-07-20&quot;:57.16},{&quot;2026-07-21&quot;:57.24},{&quot;2026-07-22&quot;:57.16},{&quot;2026-07-23&quot;:57.16},{&quot;2026-07-24&quot;:57.16},{&quot;2026-07-25&quot;:57.16},{&quot;2026-07-26&quot;:57.16},{&quot;2026-07-27&quot;:57.16},{&quot;2026-07-28&quot;:57.16},{&quot;2026-07-29&quot;:57.16},{&quot;2026-07-30&quot;:57.16},{&quot;2026-07-31&quot;:57.16},{&quot;2026-08-01&quot;:57.16},{&quot;2026-08-02&quot;:57.31},{&quot;2026-08-03&quot;:57.31},{&quot;2026-08-04&quot;:57.31},{&quot;2026-08-05&quot;:57.31},{&quot;2026-08-07&quot;:57.31},{&quot;2026-08-08&quot;:57.31},{&quot;2026-08-09&quot;:57.31},{&quot;2026-08-10&quot;:57.15},{&quot;2026-08-11&quot;:57.15},{&quot;2026-08-12&quot;:57.42},{&quot;2026-08-13&quot;:57.42},{&quot;2026-08-14&quot;:57.42},{&quot;2026-08-15&quot;:57.42},{&quot;2026-08-16&quot;:57.42},{&quot;2026-08-17&quot;:57.42},{&quot;2026-08-18&quot;:57.42},{&quot;2026-08-19&quot;:57.42},{&quot;2026-08-20&quot;:57.42},{&quot;2026-08-21&quot;:57.86},{&quot;2026-08-22&quot;:58.16},{&quot;2026-08-23&quot;:58.34},{&quot;2026-08-24&quot;:58.34},{&quot;2026-08-25&quot;:58.34},{&quot;2026-08-26&quot;:58.34},{&quot;2026-08-27&quot;:58.34},{&quot;2026-08-28&quot;:58.34},{&quot;2026-08-29&quot;:58.34},{&quot;2026-08-30&quot;:58.27},{&quot;2026-08-31&quot;:58.27},{&quot;2026-09-01&quot;:58.27},{&quot;2026-09-02&quot;:58.27},{&quot;2026-09-03&quot;:58.27},{&quot;2026-09-04&quot;:58.27},{&quot;2026-09-05&quot;:58.27},{&quot;2026-09-06&quot;:58.27},{&quot;2026-09-07&quot;:58.27},{&quot;2026-09-08&quot;:58.27},{&quot;2026-09-09&quot;:58.27},{&quot;2026-09-10&quot;:58.27},{&quot;2026-09-11&quot;:58.27}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:50.18},{&quot;2026-06-14&quot;:50.22},{&quot;2026-06-15&quot;:50.7},{&quot;2026-06-16&quot;:50.79},{&quot;2026-06-17&quot;:50.52},{&quot;2026-06-18&quot;:50.3},{&quot;2026-06-19&quot;:50.3},{&quot;2026-06-20&quot;:49.92},{&quot;2026-06-21&quot;:49.87},{&quot;2026-06-22&quot;:50.43},{&quot;2026-06-23&quot;:51.07},{&quot;2026-06-24&quot;:50.96},{&quot;2026-06-25&quot;:51.35},{&quot;2026-06-26&quot;:50.98},{&quot;2026-06-27&quot;:51.25},{&quot;2026-06-28&quot;:51.75},{&quot;2026-06-29&quot;:51.75},{&quot;2026-06-30&quot;:51.56},{&quot;2026-07-01&quot;:51.61},{&quot;2026-07-02&quot;:51.7},{&quot;2026-07-03&quot;:51.77},{&quot;2026-07-04&quot;:52.0},{&quot;2026-07-05&quot;:52.98},{&quot;2026-07-06&quot;:52.82},{&quot;2026-07-07&quot;:52.82},{&quot;2026-07-08&quot;:52.82},{&quot;2026-07-09&quot;:52.6},{&quot;2026-07-10&quot;:52.62},{&quot;2026-07-11&quot;:52.96},{&quot;2026-07-12&quot;:52.32},{&quot;2026-07-13&quot;:52.53},{&quot;2026-07-14&quot;:52.53},{&quot;2026-07-15&quot;:54.1},{&quot;2026-07-16&quot;:54.1},{&quot;2026-07-17&quot;:54.18},{&quot;2026-07-18&quot;:54.18},{&quot;2026-07-19&quot;:54.23},{&quot;2026-07-20&quot;:54.4},{&quot;2026-07-21&quot;:54.43},{&quot;2026-07-22&quot;:54.41},{&quot;2026-07-23&quot;:54.53},{&quot;2026-07-24&quot;:55.34},{&quot;2026-07-25&quot;:55.34},{&quot;2026-07-26&quot;:55.34},{&quot;2026-07-27&quot;:55.34},{&quot;2026-07-28&quot;:55.94},{&quot;2026-07-29&quot;:55.94},{&quot;2026-07-30&quot;:55.94},{&quot;2026-07-31&quot;:56.6},{&quot;2026-08-01&quot;:56.6},{&quot;2026-08-02&quot;:56.54},{&quot;2026-08-03&quot;:56.78},{&quot;2026-08-04&quot;:56.97},{&quot;2026-08-05&quot;:56.23},{&quot;2026-08-07&quot;:53.0},{&quot;2026-08-08&quot;:53.0},{&quot;2026-08-09&quot;:52.5},{&quot;2026-08-10&quot;:52.78},{&quot;2026-08-11&quot;:52.78},{&quot;2026-08-12&quot;:52.33},{&quot;2026-08-13&quot;:52.33},{&quot;2026-08-14&quot;:52.33},{&quot;2026-08-15&quot;:51.93},{&quot;2026-08-16&quot;:51.87},{&quot;2026-08-17&quot;:51.23},{&quot;2026-08-18&quot;:51.23},{&quot;2026-08-19&quot;:51.99},{&quot;2026-08-20&quot;:51.27},{&quot;2026-08-21&quot;:50.13},{&quot;2026-08-22&quot;:50.38},{&quot;2026-08-23&quot;:50.38},{&quot;2026-08-24&quot;:50.0},{&quot;2026-08-25&quot;:49.89},{&quot;2026-08-26&quot;:51.0},{&quot;2026-08-27&quot;:51.85},{&quot;2026-08-28&quot;:51.85},{&quot;2026-08-29&quot;:51.85},{&quot;2026-08-30&quot;:50.95},{&quot;2026-08-31&quot;:50.81},{&quot;2026-09-01&quot;:51.08},{&quot;2026-09-02&quot;:51.37},{&quot;2026-09-03&quot;:51.8},{&quot;2026-09-04&quot;:51.8},{&quot;2026-09-05&quot;:51.8},{&quot;2026-09-06&quot;:52.28},{&quot;2026-09-07&quot;:52.28},{&quot;2026-09-08&quot;:52.71},{&quot;2026-09-09&quot;:52.71},{&quot;2026-09-10&quot;:52.98},{&quot;2026-09-11&quot;:52.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="97938"
  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-fic 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">
            Vivi&#39;s Persistence
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Vivi&#39;s Persistence
        </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vivi&#39;s Persistence" src="https://cards.scryfall.io/large/front/b/e/be6ba2e4-e657-4a2d-8f5f-255376d861b3.jpg?1782684331" />
    </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">
                $52.86
              </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">
                $55.72
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$48.00</span>
              <span class="text-xs text-grey-text">Credit: $62.40</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;:40.03},{&quot;2026-06-13&quot;:39.73},{&quot;2026-06-14&quot;:39.78},{&quot;2026-06-15&quot;:39.85},{&quot;2026-06-16&quot;:39.86},{&quot;2026-06-17&quot;:39.44},{&quot;2026-06-18&quot;:39.6},{&quot;2026-06-19&quot;:41.36},{&quot;2026-06-20&quot;:41.42},{&quot;2026-06-21&quot;:41.37},{&quot;2026-06-22&quot;:41.42},{&quot;2026-06-23&quot;:41.42},{&quot;2026-06-24&quot;:41.1},{&quot;2026-06-25&quot;:41.35},{&quot;2026-06-26&quot;:41.42},{&quot;2026-06-27&quot;:42.1},{&quot;2026-06-28&quot;:43.2},{&quot;2026-06-29&quot;:43.65},{&quot;2026-06-30&quot;:43.58},{&quot;2026-07-01&quot;:43.84},{&quot;2026-07-02&quot;:43.9},{&quot;2026-07-03&quot;:43.9},{&quot;2026-07-04&quot;:43.75},{&quot;2026-07-05&quot;:43.75},{&quot;2026-07-06&quot;:42.95},{&quot;2026-07-07&quot;:43.07},{&quot;2026-07-08&quot;:42.2},{&quot;2026-07-09&quot;:42.52},{&quot;2026-07-10&quot;:43.27},{&quot;2026-07-11&quot;:43.23},{&quot;2026-07-12&quot;:43.28},{&quot;2026-07-13&quot;:43.16},{&quot;2026-07-14&quot;:43.8},{&quot;2026-07-15&quot;:44.68},{&quot;2026-07-16&quot;:44.58},{&quot;2026-07-17&quot;:44.94},{&quot;2026-07-18&quot;:45.37},{&quot;2026-07-19&quot;:48.2},{&quot;2026-07-20&quot;:48.11},{&quot;2026-07-21&quot;:48.28},{&quot;2026-07-23&quot;:49.75},{&quot;2026-07-24&quot;:50.47},{&quot;2026-07-25&quot;:50.59},{&quot;2026-07-26&quot;:50.46},{&quot;2026-07-27&quot;:50.15},{&quot;2026-07-28&quot;:50.11},{&quot;2026-07-29&quot;:49.31},{&quot;2026-07-30&quot;:50.07},{&quot;2026-07-31&quot;:50.36},{&quot;2026-08-01&quot;:50.59},{&quot;2026-08-02&quot;:50.59},{&quot;2026-08-03&quot;:51.67},{&quot;2026-08-04&quot;:51.64},{&quot;2026-08-05&quot;:49.18},{&quot;2026-08-07&quot;:49.89},{&quot;2026-08-08&quot;:50.7},{&quot;2026-08-09&quot;:50.2},{&quot;2026-08-10&quot;:50.16},{&quot;2026-08-11&quot;:50.16},{&quot;2026-08-12&quot;:49.79},{&quot;2026-08-13&quot;:50.99},{&quot;2026-08-14&quot;:51.43},{&quot;2026-08-15&quot;:51.43},{&quot;2026-08-16&quot;:50.95},{&quot;2026-08-17&quot;:51.29},{&quot;2026-08-18&quot;:51.6},{&quot;2026-08-19&quot;:52.18},{&quot;2026-08-20&quot;:52.18},{&quot;2026-08-21&quot;:51.05},{&quot;2026-08-22&quot;:50.81},{&quot;2026-08-23&quot;:51.93},{&quot;2026-08-24&quot;:52.13},{&quot;2026-08-25&quot;:51.73},{&quot;2026-08-26&quot;:52.32},{&quot;2026-08-27&quot;:53.11},{&quot;2026-08-28&quot;:53.04},{&quot;2026-08-29&quot;:53.04},{&quot;2026-08-30&quot;:54.24},{&quot;2026-08-31&quot;:54.14},{&quot;2026-09-01&quot;:53.26},{&quot;2026-09-02&quot;:54.18},{&quot;2026-09-03&quot;:54.31},{&quot;2026-09-04&quot;:53.46},{&quot;2026-09-05&quot;:52.08},{&quot;2026-09-06&quot;:51.63},{&quot;2026-09-07&quot;:52.59},{&quot;2026-09-08&quot;:54.21},{&quot;2026-09-09&quot;:53.91},{&quot;2026-09-10&quot;:54.42},{&quot;2026-09-11&quot;:55.72}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:42.41},{&quot;2026-06-13&quot;:42.78},{&quot;2026-06-14&quot;:42.4},{&quot;2026-06-15&quot;:42.38},{&quot;2026-06-16&quot;:42.4},{&quot;2026-06-17&quot;:42.4},{&quot;2026-06-18&quot;:42.36},{&quot;2026-06-19&quot;:42.36},{&quot;2026-06-20&quot;:42.35},{&quot;2026-06-21&quot;:42.35},{&quot;2026-06-22&quot;:42.35},{&quot;2026-06-23&quot;:42.35},{&quot;2026-06-24&quot;:42.35},{&quot;2026-06-25&quot;:42.4},{&quot;2026-06-26&quot;:42.67},{&quot;2026-06-27&quot;:43.0},{&quot;2026-06-28&quot;:43.0},{&quot;2026-06-29&quot;:43.0},{&quot;2026-06-30&quot;:43.0},{&quot;2026-07-01&quot;:42.97},{&quot;2026-07-02&quot;:42.97},{&quot;2026-07-03&quot;:43.09},{&quot;2026-07-04&quot;:43.22},{&quot;2026-07-05&quot;:43.02},{&quot;2026-07-06&quot;:43.02},{&quot;2026-07-07&quot;:43.18},{&quot;2026-07-08&quot;:43.18},{&quot;2026-07-09&quot;:43.18},{&quot;2026-07-10&quot;:43.18},{&quot;2026-07-11&quot;:42.84},{&quot;2026-07-12&quot;:42.84},{&quot;2026-07-13&quot;:42.84},{&quot;2026-07-14&quot;:42.86},{&quot;2026-07-15&quot;:42.87},{&quot;2026-07-16&quot;:42.82},{&quot;2026-07-17&quot;:42.82},{&quot;2026-07-18&quot;:42.82},{&quot;2026-07-19&quot;:42.78},{&quot;2026-07-20&quot;:42.88},{&quot;2026-07-21&quot;:42.88},{&quot;2026-07-23&quot;:42.95},{&quot;2026-07-24&quot;:43.05},{&quot;2026-07-25&quot;:43.05},{&quot;2026-07-26&quot;:43.05},{&quot;2026-07-27&quot;:43.26},{&quot;2026-07-28&quot;:43.26},{&quot;2026-07-29&quot;:43.59},{&quot;2026-07-30&quot;:43.69},{&quot;2026-07-31&quot;:44.0},{&quot;2026-08-01&quot;:44.0},{&quot;2026-08-02&quot;:44.0},{&quot;2026-08-03&quot;:44.0},{&quot;2026-08-04&quot;:44.0},{&quot;2026-08-05&quot;:44.0},{&quot;2026-08-07&quot;:44.05},{&quot;2026-08-08&quot;:44.05},{&quot;2026-08-09&quot;:44.05},{&quot;2026-08-10&quot;:44.19},{&quot;2026-08-11&quot;:45.44},{&quot;2026-08-12&quot;:45.44},{&quot;2026-08-13&quot;:46.0},{&quot;2026-08-14&quot;:46.32},{&quot;2026-08-15&quot;:46.32},{&quot;2026-08-16&quot;:46.32},{&quot;2026-08-17&quot;:46.95},{&quot;2026-08-18&quot;:46.95},{&quot;2026-08-19&quot;:47.19},{&quot;2026-08-20&quot;:47.19},{&quot;2026-08-21&quot;:47.51},{&quot;2026-08-22&quot;:48.65},{&quot;2026-08-23&quot;:49.34},{&quot;2026-08-24&quot;:49.34},{&quot;2026-08-25&quot;:49.98},{&quot;2026-08-26&quot;:49.98},{&quot;2026-08-27&quot;:50.46},{&quot;2026-08-28&quot;:50.93},{&quot;2026-08-29&quot;:50.93},{&quot;2026-08-30&quot;:50.93},{&quot;2026-08-31&quot;:50.93},{&quot;2026-09-01&quot;:51.09},{&quot;2026-09-02&quot;:51.53},{&quot;2026-09-03&quot;:51.31},{&quot;2026-09-04&quot;:51.46},{&quot;2026-09-05&quot;:52.5},{&quot;2026-09-06&quot;:52.64},{&quot;2026-09-07&quot;:52.64},{&quot;2026-09-08&quot;:52.64},{&quot;2026-09-09&quot;:52.86},{&quot;2026-09-10&quot;:52.86},{&quot;2026-09-11&quot;:52.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Assassin
      </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">
            $50.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="Vincent Valentine // Galian Beast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/5/15ea1113-7360-462d-91b8-22d5110cbf5a.jpg?1783906452" />

        <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">
            Vincent Valentine 
        </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 — Assassin</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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Vincent Valentine // Galian Beast" src="https://cards.scryfall.io/large/front/1/5/15ea1113-7360-462d-91b8-22d5110cbf5a.jpg?1783906452" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Vincent Valentine // Galian Beast" src="https://cards.scryfall.io/large/back/1/5/15ea1113-7360-462d-91b8-22d5110cbf5a.jpg?1783906452" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:40.42},{&quot;2026-06-10&quot;:39.91},{&quot;2026-06-11&quot;:40.32},{&quot;2026-06-12&quot;:40.18},{&quot;2026-06-13&quot;:40.29},{&quot;2026-06-14&quot;:40.29},{&quot;2026-06-15&quot;:40.03},{&quot;2026-06-16&quot;:40.03},{&quot;2026-06-17&quot;:40.06},{&quot;2026-06-18&quot;:39.54},{&quot;2026-06-19&quot;:39.86},{&quot;2026-06-20&quot;:40.2},{&quot;2026-06-21&quot;:40.2},{&quot;2026-06-22&quot;:40.2},{&quot;2026-06-24&quot;:41.28},{&quot;2026-06-25&quot;:41.75},{&quot;2026-06-26&quot;:41.75},{&quot;2026-06-27&quot;:41.75},{&quot;2026-06-28&quot;:41.75},{&quot;2026-06-29&quot;:41.75},{&quot;2026-06-30&quot;:41.74},{&quot;2026-07-01&quot;:41.98},{&quot;2026-07-02&quot;:41.98},{&quot;2026-07-03&quot;:41.57},{&quot;2026-07-04&quot;:41.69},{&quot;2026-07-05&quot;:41.78},{&quot;2026-07-06&quot;:41.87},{&quot;2026-07-07&quot;:41.88},{&quot;2026-07-08&quot;:42.47},{&quot;2026-07-09&quot;:42.47},{&quot;2026-07-10&quot;:43.01},{&quot;2026-07-11&quot;:44.18},{&quot;2026-07-12&quot;:44.89},{&quot;2026-07-13&quot;:44.85},{&quot;2026-07-14&quot;:44.68},{&quot;2026-07-15&quot;:44.9},{&quot;2026-07-16&quot;:44.9},{&quot;2026-07-17&quot;:45.44},{&quot;2026-07-18&quot;:45.5},{&quot;2026-07-19&quot;:45.87},{&quot;2026-07-20&quot;:46.83},{&quot;2026-07-21&quot;:46.81},{&quot;2026-07-23&quot;:46.62},{&quot;2026-07-25&quot;:46.66},{&quot;2026-07-26&quot;:46.67},{&quot;2026-07-27&quot;:46.27},{&quot;2026-07-29&quot;:46.27},{&quot;2026-07-30&quot;:46.26},{&quot;2026-07-31&quot;:46.05},{&quot;2026-08-01&quot;:46.05},{&quot;2026-08-02&quot;:46.05},{&quot;2026-08-03&quot;:46.07},{&quot;2026-08-04&quot;:45.95},{&quot;2026-08-05&quot;:46.62},{&quot;2026-08-07&quot;:46.3},{&quot;2026-08-08&quot;:45.81},{&quot;2026-08-09&quot;:45.79},{&quot;2026-08-10&quot;:45.79},{&quot;2026-08-11&quot;:45.69},{&quot;2026-08-12&quot;:46.05},{&quot;2026-08-13&quot;:46.04},{&quot;2026-08-14&quot;:46.19},{&quot;2026-08-15&quot;:46.24},{&quot;2026-08-16&quot;:46.66},{&quot;2026-08-17&quot;:46.89},{&quot;2026-08-18&quot;:47.39},{&quot;2026-08-19&quot;:47.39},{&quot;2026-08-20&quot;:47.39},{&quot;2026-08-21&quot;:47.46},{&quot;2026-08-22&quot;:47.55},{&quot;2026-08-23&quot;:47.55},{&quot;2026-08-24&quot;:47.59},{&quot;2026-08-25&quot;:47.59},{&quot;2026-08-26&quot;:48.0},{&quot;2026-08-27&quot;:48.94},{&quot;2026-08-28&quot;:48.94},{&quot;2026-08-29&quot;:48.94},{&quot;2026-08-30&quot;:49.18},{&quot;2026-08-31&quot;:49.15},{&quot;2026-09-01&quot;:49.15},{&quot;2026-09-02&quot;:49.15},{&quot;2026-09-03&quot;:49.78},{&quot;2026-09-04&quot;:50.87},{&quot;2026-09-05&quot;:50.87},{&quot;2026-09-06&quot;:50.62},{&quot;2026-09-07&quot;:50.62},{&quot;2026-09-08&quot;:50.7},{&quot;2026-09-09&quot;:50.44},{&quot;2026-09-10&quot;:50.44},{&quot;2026-09-11&quot;:50.44}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $41.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="Enlightened Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/7/0760068d-71c2-4b38-9f66-4454875de27e.jpg?1783904753" />

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Enlightened Tutor" src="https://cards.scryfall.io/large/front/0/7/0760068d-71c2-4b38-9f66-4454875de27e.jpg?1783904753" />
    </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">
                $41.64
              </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">$24.00</span>
              <span class="text-xs text-grey-text">Credit: $31.20</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:44.38},{&quot;2026-06-14&quot;:44.15},{&quot;2026-06-15&quot;:44.03},{&quot;2026-06-16&quot;:43.97},{&quot;2026-06-17&quot;:42.91},{&quot;2026-06-18&quot;:42.16},{&quot;2026-06-19&quot;:42.09},{&quot;2026-06-20&quot;:41.73},{&quot;2026-06-21&quot;:41.67},{&quot;2026-06-22&quot;:41.54},{&quot;2026-06-23&quot;:41.7},{&quot;2026-06-24&quot;:41.47},{&quot;2026-06-25&quot;:42.05},{&quot;2026-06-26&quot;:42.05},{&quot;2026-06-27&quot;:41.57},{&quot;2026-06-28&quot;:41.3},{&quot;2026-06-29&quot;:40.8},{&quot;2026-06-30&quot;:40.97},{&quot;2026-07-01&quot;:41.38},{&quot;2026-07-02&quot;:40.54},{&quot;2026-07-03&quot;:41.68},{&quot;2026-07-04&quot;:41.97},{&quot;2026-07-05&quot;:41.97},{&quot;2026-07-06&quot;:41.89},{&quot;2026-07-07&quot;:41.46},{&quot;2026-07-08&quot;:40.84},{&quot;2026-07-09&quot;:40.07},{&quot;2026-07-10&quot;:40.43},{&quot;2026-07-11&quot;:40.33},{&quot;2026-07-12&quot;:40.76},{&quot;2026-07-13&quot;:40.54},{&quot;2026-07-14&quot;:39.45},{&quot;2026-07-15&quot;:39.48},{&quot;2026-07-16&quot;:39.6},{&quot;2026-07-17&quot;:39.7},{&quot;2026-07-18&quot;:39.94},{&quot;2026-07-19&quot;:39.46},{&quot;2026-07-20&quot;:39.68},{&quot;2026-07-21&quot;:39.56},{&quot;2026-07-22&quot;:39.56},{&quot;2026-07-23&quot;:39.46},{&quot;2026-07-24&quot;:39.33},{&quot;2026-07-25&quot;:39.29},{&quot;2026-07-26&quot;:39.27},{&quot;2026-07-27&quot;:39.59},{&quot;2026-07-28&quot;:40.27},{&quot;2026-07-29&quot;:40.5},{&quot;2026-07-30&quot;:40.61},{&quot;2026-07-31&quot;:40.71},{&quot;2026-08-01&quot;:40.71},{&quot;2026-08-02&quot;:41.17},{&quot;2026-08-03&quot;:42.47},{&quot;2026-08-04&quot;:42.76},{&quot;2026-08-05&quot;:42.99},{&quot;2026-08-07&quot;:43.06},{&quot;2026-08-08&quot;:44.0},{&quot;2026-08-09&quot;:44.22},{&quot;2026-08-10&quot;:43.94},{&quot;2026-08-11&quot;:43.83},{&quot;2026-08-12&quot;:43.83},{&quot;2026-08-13&quot;:44.18},{&quot;2026-08-14&quot;:44.25},{&quot;2026-08-15&quot;:44.66},{&quot;2026-08-16&quot;:43.89},{&quot;2026-08-17&quot;:43.56},{&quot;2026-08-18&quot;:43.25},{&quot;2026-08-19&quot;:42.81},{&quot;2026-08-20&quot;:42.33},{&quot;2026-08-21&quot;:42.31},{&quot;2026-08-22&quot;:41.88},{&quot;2026-08-23&quot;:41.42},{&quot;2026-08-24&quot;:40.4},{&quot;2026-08-25&quot;:39.99},{&quot;2026-08-26&quot;:39.46},{&quot;2026-08-27&quot;:39.09},{&quot;2026-08-28&quot;:39.43},{&quot;2026-08-29&quot;:39.43},{&quot;2026-08-30&quot;:39.75},{&quot;2026-08-31&quot;:40.07},{&quot;2026-09-01&quot;:40.8},{&quot;2026-09-02&quot;:41.29},{&quot;2026-09-03&quot;:41.46},{&quot;2026-09-04&quot;:41.8},{&quot;2026-09-05&quot;:42.26},{&quot;2026-09-06&quot;:42.04},{&quot;2026-09-07&quot;:42.04},{&quot;2026-09-08&quot;:41.85},{&quot;2026-09-09&quot;:41.83},{&quot;2026-09-10&quot;:41.64},{&quot;2026-09-11&quot;:41.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="14223"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Jeska&#39;s Will
        </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">
              ↓
              4%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Jeska&#39;s Will" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/3308993d-8bfb-477a-887a-89ed35577f57.jpg?1783922422" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Jeska&#39;s Will" src="https://cards.scryfall.io/large/front/3/3/3308993d-8bfb-477a-887a-89ed35577f57.jpg?1783922422" />
    </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">
                $40.41
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:41.82},{&quot;2026-06-10&quot;:41.68},{&quot;2026-06-11&quot;:41.83},{&quot;2026-06-12&quot;:41.83},{&quot;2026-06-13&quot;:41.83},{&quot;2026-06-14&quot;:42.06},{&quot;2026-06-15&quot;:42.43},{&quot;2026-06-16&quot;:42.78},{&quot;2026-06-17&quot;:43.37},{&quot;2026-06-18&quot;:43.37},{&quot;2026-06-19&quot;:43.37},{&quot;2026-06-20&quot;:43.6},{&quot;2026-06-21&quot;:44.2},{&quot;2026-06-22&quot;:44.01},{&quot;2026-06-24&quot;:44.02},{&quot;2026-06-25&quot;:44.26},{&quot;2026-06-26&quot;:44.1},{&quot;2026-06-27&quot;:43.93},{&quot;2026-06-28&quot;:43.54},{&quot;2026-06-29&quot;:43.54},{&quot;2026-06-30&quot;:43.15},{&quot;2026-07-01&quot;:42.53},{&quot;2026-07-02&quot;:42.16},{&quot;2026-07-03&quot;:40.9},{&quot;2026-07-04&quot;:39.34},{&quot;2026-07-05&quot;:38.69},{&quot;2026-07-06&quot;:38.61},{&quot;2026-07-07&quot;:38.68},{&quot;2026-07-08&quot;:38.68},{&quot;2026-07-09&quot;:39.96},{&quot;2026-07-10&quot;:39.96},{&quot;2026-07-11&quot;:39.96},{&quot;2026-07-12&quot;:40.42},{&quot;2026-07-13&quot;:40.42},{&quot;2026-07-14&quot;:40.53},{&quot;2026-07-15&quot;:40.57},{&quot;2026-07-16&quot;:40.62},{&quot;2026-07-17&quot;:40.52},{&quot;2026-07-18&quot;:40.44},{&quot;2026-07-19&quot;:40.44},{&quot;2026-07-20&quot;:40.54},{&quot;2026-07-21&quot;:40.37},{&quot;2026-07-23&quot;:40.14},{&quot;2026-07-25&quot;:39.82},{&quot;2026-07-26&quot;:40.13},{&quot;2026-07-27&quot;:40.19},{&quot;2026-07-29&quot;:40.19},{&quot;2026-07-30&quot;:39.9},{&quot;2026-07-31&quot;:40.23},{&quot;2026-08-01&quot;:40.23},{&quot;2026-08-02&quot;:40.23},{&quot;2026-08-03&quot;:40.23},{&quot;2026-08-04&quot;:40.23},{&quot;2026-08-05&quot;:40.02},{&quot;2026-08-07&quot;:40.2},{&quot;2026-08-08&quot;:40.44},{&quot;2026-08-09&quot;:40.6},{&quot;2026-08-10&quot;:40.6},{&quot;2026-08-11&quot;:40.6},{&quot;2026-08-12&quot;:40.6},{&quot;2026-08-13&quot;:40.62},{&quot;2026-08-14&quot;:40.61},{&quot;2026-08-15&quot;:40.54},{&quot;2026-08-16&quot;:41.0},{&quot;2026-08-17&quot;:40.76},{&quot;2026-08-18&quot;:40.9},{&quot;2026-08-19&quot;:41.2},{&quot;2026-08-20&quot;:41.2},{&quot;2026-08-21&quot;:41.9},{&quot;2026-08-22&quot;:42.04},{&quot;2026-08-23&quot;:42.04},{&quot;2026-08-24&quot;:42.34},{&quot;2026-08-25&quot;:42.34},{&quot;2026-08-26&quot;:42.12},{&quot;2026-08-27&quot;:42.52},{&quot;2026-08-28&quot;:42.65},{&quot;2026-08-29&quot;:42.65},{&quot;2026-08-30&quot;:42.56},{&quot;2026-08-31&quot;:42.56},{&quot;2026-09-01&quot;:42.56},{&quot;2026-09-02&quot;:42.29},{&quot;2026-09-03&quot;:42.29},{&quot;2026-09-04&quot;:42.34},{&quot;2026-09-05&quot;:42.09},{&quot;2026-09-06&quot;:42.13},{&quot;2026-09-07&quot;:41.35},{&quot;2026-09-08&quot;:41.4},{&quot;2026-09-09&quot;:41.15},{&quot;2026-09-10&quot;:41.03},{&quot;2026-09-11&quot;:40.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Jeska&#39;s Will" src="https://cards.scryfall.io/large/front/4/e/4e91d96d-cc69-439b-b876-a7d57039022c.jpg?1783928812" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $39.70
              </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">
                $42.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">$33.00</span>
              <span class="text-xs text-grey-text">Credit: $42.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:46.73},{&quot;2026-06-14&quot;:46.73},{&quot;2026-06-15&quot;:46.73},{&quot;2026-06-16&quot;:46.73},{&quot;2026-06-17&quot;:46.67},{&quot;2026-06-18&quot;:46.67},{&quot;2026-06-19&quot;:46.67},{&quot;2026-06-20&quot;:46.67},{&quot;2026-06-21&quot;:46.67},{&quot;2026-06-22&quot;:46.67},{&quot;2026-06-23&quot;:46.67},{&quot;2026-06-24&quot;:46.67},{&quot;2026-06-25&quot;:46.67},{&quot;2026-06-26&quot;:46.67},{&quot;2026-06-27&quot;:46.67},{&quot;2026-06-28&quot;:46.67},{&quot;2026-06-29&quot;:46.87},{&quot;2026-06-30&quot;:46.87},{&quot;2026-07-01&quot;:46.84},{&quot;2026-07-02&quot;:46.8},{&quot;2026-07-03&quot;:46.8},{&quot;2026-07-04&quot;:46.8},{&quot;2026-07-05&quot;:46.8},{&quot;2026-07-06&quot;:46.56},{&quot;2026-07-07&quot;:46.56},{&quot;2026-07-08&quot;:46.56},{&quot;2026-07-09&quot;:47.06},{&quot;2026-07-10&quot;:47.06},{&quot;2026-07-11&quot;:47.06},{&quot;2026-07-12&quot;:47.06},{&quot;2026-07-13&quot;:47.06},{&quot;2026-07-14&quot;:46.92},{&quot;2026-07-15&quot;:46.92},{&quot;2026-07-16&quot;:46.92},{&quot;2026-07-17&quot;:46.92},{&quot;2026-07-18&quot;:46.92},{&quot;2026-07-19&quot;:46.92},{&quot;2026-07-20&quot;:46.87},{&quot;2026-07-21&quot;:46.7},{&quot;2026-07-22&quot;:46.49},{&quot;2026-07-23&quot;:46.49},{&quot;2026-07-24&quot;:46.49},{&quot;2026-07-25&quot;:45.87},{&quot;2026-07-26&quot;:45.87},{&quot;2026-07-27&quot;:45.87},{&quot;2026-07-28&quot;:45.43},{&quot;2026-07-29&quot;:45.43},{&quot;2026-07-30&quot;:45.43},{&quot;2026-07-31&quot;:45.31},{&quot;2026-08-01&quot;:45.1},{&quot;2026-08-02&quot;:45.1},{&quot;2026-08-03&quot;:45.1},{&quot;2026-08-04&quot;:44.79},{&quot;2026-08-05&quot;:44.56},{&quot;2026-08-07&quot;:44.45},{&quot;2026-08-08&quot;:44.45},{&quot;2026-08-09&quot;:44.45},{&quot;2026-08-10&quot;:44.45},{&quot;2026-08-11&quot;:44.71},{&quot;2026-08-12&quot;:44.38},{&quot;2026-08-13&quot;:44.38},{&quot;2026-08-14&quot;:44.38},{&quot;2026-08-15&quot;:44.38},{&quot;2026-08-16&quot;:44.38},{&quot;2026-08-17&quot;:43.89},{&quot;2026-08-18&quot;:43.89},{&quot;2026-08-19&quot;:43.89},{&quot;2026-08-20&quot;:43.89},{&quot;2026-08-21&quot;:43.89},{&quot;2026-08-22&quot;:43.29},{&quot;2026-08-23&quot;:43.29},{&quot;2026-08-24&quot;:43.29},{&quot;2026-08-25&quot;:43.29},{&quot;2026-08-26&quot;:42.76},{&quot;2026-08-27&quot;:42.4},{&quot;2026-08-28&quot;:41.68},{&quot;2026-08-29&quot;:41.68},{&quot;2026-08-30&quot;:41.68},{&quot;2026-08-31&quot;:41.68},{&quot;2026-09-01&quot;:41.59},{&quot;2026-09-02&quot;:41.67},{&quot;2026-09-03&quot;:41.76},{&quot;2026-09-04&quot;:41.68},{&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.15},{&quot;2026-09-10&quot;:42.15},{&quot;2026-09-11&quot;:42.15}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:41.02},{&quot;2026-06-14&quot;:41.29},{&quot;2026-06-15&quot;:42.01},{&quot;2026-06-16&quot;:42.17},{&quot;2026-06-17&quot;:41.56},{&quot;2026-06-18&quot;:42.0},{&quot;2026-06-19&quot;:41.5},{&quot;2026-06-20&quot;:41.92},{&quot;2026-06-21&quot;:42.17},{&quot;2026-06-22&quot;:41.82},{&quot;2026-06-23&quot;:42.07},{&quot;2026-06-24&quot;:41.76},{&quot;2026-06-25&quot;:40.34},{&quot;2026-06-26&quot;:40.25},{&quot;2026-06-27&quot;:39.65},{&quot;2026-06-28&quot;:38.93},{&quot;2026-06-29&quot;:38.14},{&quot;2026-06-30&quot;:38.4},{&quot;2026-07-01&quot;:38.34},{&quot;2026-07-02&quot;:38.06},{&quot;2026-07-03&quot;:38.86},{&quot;2026-07-04&quot;:39.06},{&quot;2026-07-05&quot;:38.7},{&quot;2026-07-06&quot;:38.6},{&quot;2026-07-07&quot;:38.66},{&quot;2026-07-08&quot;:38.59},{&quot;2026-07-09&quot;:38.42},{&quot;2026-07-10&quot;:38.43},{&quot;2026-07-11&quot;:38.39},{&quot;2026-07-12&quot;:38.71},{&quot;2026-07-13&quot;:39.13},{&quot;2026-07-14&quot;:39.3},{&quot;2026-07-15&quot;:39.39},{&quot;2026-07-16&quot;:40.3},{&quot;2026-07-17&quot;:40.3},{&quot;2026-07-18&quot;:40.55},{&quot;2026-07-19&quot;:40.39},{&quot;2026-07-20&quot;:40.61},{&quot;2026-07-21&quot;:40.25},{&quot;2026-07-22&quot;:40.04},{&quot;2026-07-23&quot;:39.47},{&quot;2026-07-24&quot;:39.46},{&quot;2026-07-25&quot;:39.23},{&quot;2026-07-26&quot;:39.25},{&quot;2026-07-27&quot;:39.22},{&quot;2026-07-28&quot;:39.0},{&quot;2026-07-29&quot;:39.01},{&quot;2026-07-30&quot;:38.78},{&quot;2026-07-31&quot;:39.3},{&quot;2026-08-01&quot;:39.25},{&quot;2026-08-02&quot;:39.44},{&quot;2026-08-03&quot;:39.46},{&quot;2026-08-04&quot;:39.43},{&quot;2026-08-05&quot;:39.17},{&quot;2026-08-07&quot;:39.49},{&quot;2026-08-08&quot;:39.94},{&quot;2026-08-09&quot;:39.85},{&quot;2026-08-10&quot;:39.87},{&quot;2026-08-11&quot;:40.35},{&quot;2026-08-12&quot;:40.85},{&quot;2026-08-13&quot;:41.11},{&quot;2026-08-14&quot;:41.37},{&quot;2026-08-15&quot;:41.37},{&quot;2026-08-16&quot;:41.19},{&quot;2026-08-17&quot;:40.32},{&quot;2026-08-18&quot;:40.85},{&quot;2026-08-19&quot;:40.72},{&quot;2026-08-20&quot;:40.82},{&quot;2026-08-21&quot;:40.16},{&quot;2026-08-22&quot;:40.16},{&quot;2026-08-23&quot;:39.76},{&quot;2026-08-24&quot;:39.11},{&quot;2026-08-25&quot;:38.77},{&quot;2026-08-26&quot;:38.47},{&quot;2026-08-27&quot;:38.25},{&quot;2026-08-28&quot;:37.86},{&quot;2026-08-29&quot;:37.86},{&quot;2026-08-30&quot;:37.98},{&quot;2026-08-31&quot;:38.18},{&quot;2026-09-01&quot;:38.44},{&quot;2026-09-02&quot;:39.32},{&quot;2026-09-03&quot;:39.1},{&quot;2026-09-04&quot;:39.72},{&quot;2026-09-05&quot;:40.34},{&quot;2026-09-06&quot;:40.45},{&quot;2026-09-07&quot;:40.43},{&quot;2026-09-08&quot;:40.04},{&quot;2026-09-09&quot;:40.04},{&quot;2026-09-10&quot;:39.74},{&quot;2026-09-11&quot;:39.7}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.89
          </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="Trinket Mage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/e/2e006682-5236-4a32-9f3d-7337b2c42b21.jpg?1783927734" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Trinket Mage" src="https://cards.scryfall.io/large/front/2/e/2e006682-5236-4a32-9f3d-7337b2c42b21.jpg?1783927734" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $37.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.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$25.00</span>
              <span class="text-xs text-grey-text">Credit: $32.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:40.01},{&quot;2026-06-14&quot;:40.01},{&quot;2026-06-15&quot;:40.01},{&quot;2026-06-16&quot;:40.01},{&quot;2026-06-17&quot;:40.01},{&quot;2026-06-18&quot;:40.01},{&quot;2026-06-19&quot;:40.01},{&quot;2026-06-20&quot;:40.01},{&quot;2026-06-21&quot;:39.44},{&quot;2026-06-22&quot;:39.75},{&quot;2026-06-23&quot;:39.75},{&quot;2026-06-24&quot;:39.75},{&quot;2026-06-25&quot;:39.75},{&quot;2026-06-26&quot;:39.48},{&quot;2026-06-27&quot;:39.04},{&quot;2026-06-28&quot;:39.04},{&quot;2026-06-29&quot;:39.04},{&quot;2026-06-30&quot;:39.04},{&quot;2026-07-01&quot;:39.04},{&quot;2026-07-02&quot;:38.26},{&quot;2026-07-03&quot;:38.26},{&quot;2026-07-04&quot;:38.26},{&quot;2026-07-05&quot;:38.26},{&quot;2026-07-06&quot;:38.26},{&quot;2026-07-07&quot;:38.26},{&quot;2026-07-08&quot;:38.17},{&quot;2026-07-09&quot;:38.17},{&quot;2026-07-10&quot;:38.17},{&quot;2026-07-11&quot;:38.18},{&quot;2026-07-12&quot;:38.18},{&quot;2026-07-13&quot;:38.18},{&quot;2026-07-14&quot;:38.18},{&quot;2026-07-15&quot;:38.18},{&quot;2026-07-16&quot;:38.18},{&quot;2026-07-17&quot;:38.18},{&quot;2026-07-18&quot;:38.18},{&quot;2026-07-19&quot;:38.18},{&quot;2026-07-20&quot;:38.18},{&quot;2026-07-21&quot;:38.18},{&quot;2026-07-22&quot;:38.18},{&quot;2026-07-23&quot;:38.18},{&quot;2026-07-24&quot;:38.18},{&quot;2026-07-25&quot;:38.18},{&quot;2026-07-26&quot;:38.18},{&quot;2026-07-27&quot;:38.18},{&quot;2026-07-28&quot;:37.94},{&quot;2026-07-29&quot;:37.94},{&quot;2026-07-30&quot;:37.94},{&quot;2026-07-31&quot;:37.94},{&quot;2026-08-01&quot;:37.94},{&quot;2026-08-02&quot;:37.94},{&quot;2026-08-03&quot;:37.94},{&quot;2026-08-04&quot;:37.94},{&quot;2026-08-05&quot;:37.94},{&quot;2026-08-07&quot;:37.94},{&quot;2026-08-08&quot;:37.94},{&quot;2026-08-09&quot;:37.94},{&quot;2026-08-10&quot;:37.94},{&quot;2026-08-11&quot;:37.94},{&quot;2026-08-12&quot;:37.94},{&quot;2026-08-13&quot;:37.94},{&quot;2026-08-14&quot;:37.94},{&quot;2026-08-15&quot;:37.94},{&quot;2026-08-16&quot;:37.94},{&quot;2026-08-17&quot;:37.94},{&quot;2026-08-18&quot;:37.94},{&quot;2026-08-19&quot;:37.94},{&quot;2026-08-20&quot;:37.94},{&quot;2026-08-21&quot;:37.94},{&quot;2026-08-22&quot;:37.85},{&quot;2026-08-23&quot;:37.41},{&quot;2026-08-24&quot;:37.41},{&quot;2026-08-25&quot;:37.41},{&quot;2026-08-26&quot;:37.41},{&quot;2026-08-27&quot;:37.41},{&quot;2026-08-28&quot;:37.41},{&quot;2026-08-29&quot;:37.41},{&quot;2026-08-30&quot;:37.41},{&quot;2026-08-31&quot;:37.41},{&quot;2026-09-01&quot;:37.41},{&quot;2026-09-02&quot;:37.41},{&quot;2026-09-03&quot;:37.41},{&quot;2026-09-04&quot;:37.41},{&quot;2026-09-05&quot;:37.41},{&quot;2026-09-06&quot;:37.41},{&quot;2026-09-07&quot;:37.41},{&quot;2026-09-08&quot;:37.41},{&quot;2026-09-09&quot;:37.93},{&quot;2026-09-10&quot;:37.93},{&quot;2026-09-11&quot;:37.93}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.97},{&quot;2026-06-14&quot;:3.78},{&quot;2026-06-15&quot;:3.78},{&quot;2026-06-16&quot;:4.01},{&quot;2026-06-17&quot;:4.01},{&quot;2026-06-18&quot;:3.83},{&quot;2026-06-19&quot;:3.83},{&quot;2026-06-20&quot;:3.71},{&quot;2026-06-21&quot;:3.7},{&quot;2026-06-22&quot;:3.8},{&quot;2026-06-23&quot;:3.7},{&quot;2026-06-24&quot;:3.7},{&quot;2026-06-25&quot;:3.54},{&quot;2026-06-26&quot;:3.7},{&quot;2026-06-27&quot;:3.7},{&quot;2026-06-28&quot;:3.7},{&quot;2026-06-29&quot;:3.7},{&quot;2026-06-30&quot;:3.7},{&quot;2026-07-01&quot;:3.55},{&quot;2026-07-02&quot;:3.49},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.48},{&quot;2026-07-05&quot;:3.48},{&quot;2026-07-06&quot;:3.36},{&quot;2026-07-07&quot;:3.35},{&quot;2026-07-08&quot;:3.33},{&quot;2026-07-09&quot;:3.33},{&quot;2026-07-10&quot;:3.33},{&quot;2026-07-11&quot;:3.33},{&quot;2026-07-12&quot;:3.29},{&quot;2026-07-13&quot;:3.34},{&quot;2026-07-14&quot;:3.34},{&quot;2026-07-15&quot;:3.26},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.03},{&quot;2026-07-18&quot;:2.87},{&quot;2026-07-19&quot;:2.87},{&quot;2026-07-20&quot;:2.9},{&quot;2026-07-21&quot;:2.9},{&quot;2026-07-22&quot;:2.9},{&quot;2026-07-23&quot;:2.97},{&quot;2026-07-24&quot;:2.97},{&quot;2026-07-25&quot;:2.97},{&quot;2026-07-26&quot;:2.97},{&quot;2026-07-27&quot;:2.97},{&quot;2026-07-28&quot;:3.04},{&quot;2026-07-29&quot;:3.04},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.85},{&quot;2026-08-01&quot;:2.86},{&quot;2026-08-02&quot;:3.0},{&quot;2026-08-03&quot;:3.0},{&quot;2026-08-04&quot;:2.92},{&quot;2026-08-05&quot;:3.03},{&quot;2026-08-07&quot;:3.15},{&quot;2026-08-08&quot;:3.15},{&quot;2026-08-09&quot;:3.15},{&quot;2026-08-10&quot;:3.41},{&quot;2026-08-11&quot;:3.39},{&quot;2026-08-12&quot;:3.44},{&quot;2026-08-13&quot;:3.44},{&quot;2026-08-14&quot;:3.44},{&quot;2026-08-15&quot;:3.6},{&quot;2026-08-16&quot;:3.59},{&quot;2026-08-17&quot;:3.59},{&quot;2026-08-18&quot;:3.6},{&quot;2026-08-19&quot;:3.6},{&quot;2026-08-20&quot;:3.81},{&quot;2026-08-21&quot;:3.81},{&quot;2026-08-22&quot;:3.81},{&quot;2026-08-23&quot;:3.74},{&quot;2026-08-24&quot;:3.87},{&quot;2026-08-25&quot;:3.88},{&quot;2026-08-26&quot;:3.88},{&quot;2026-08-27&quot;:4.0},{&quot;2026-08-28&quot;:4.13},{&quot;2026-08-29&quot;:4.13},{&quot;2026-08-30&quot;:4.21},{&quot;2026-08-31&quot;:4.21},{&quot;2026-09-01&quot;:4.06},{&quot;2026-09-02&quot;:4.06},{&quot;2026-09-03&quot;:4.06},{&quot;2026-09-04&quot;:4.06},{&quot;2026-09-05&quot;:4.06},{&quot;2026-09-06&quot;:4.06},{&quot;2026-09-07&quot;:4.06},{&quot;2026-09-08&quot;:4.04},{&quot;2026-09-09&quot;:4.04},{&quot;2026-09-10&quot;:3.89},{&quot;2026-09-11&quot;:3.89}]}"
        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="61923"
  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-rvr 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">
            Hellkite Tyrant
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dragon
      </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">
            $36.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="Hellkite Tyrant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/0/2078d569-47c1-43c8-b34f-ef84951b7566.jpg?1783913171" />

        <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">
            Hellkite Tyrant
        </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 — Dragon</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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hellkite Tyrant" src="https://cards.scryfall.io/large/front/2/0/2078d569-47c1-43c8-b34f-ef84951b7566.jpg?1783913171" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:26.79},{&quot;2026-06-14&quot;:26.73},{&quot;2026-06-15&quot;:26.83},{&quot;2026-06-16&quot;:27.27},{&quot;2026-06-17&quot;:27.27},{&quot;2026-06-18&quot;:27.2},{&quot;2026-06-19&quot;:27.08},{&quot;2026-06-20&quot;:27.3},{&quot;2026-06-21&quot;:27.3},{&quot;2026-06-22&quot;:27.3},{&quot;2026-06-23&quot;:27.3},{&quot;2026-06-24&quot;:27.35},{&quot;2026-06-25&quot;:27.35},{&quot;2026-06-26&quot;:27.21},{&quot;2026-06-27&quot;:27.76},{&quot;2026-06-28&quot;:27.76},{&quot;2026-06-29&quot;:28.08},{&quot;2026-06-30&quot;:28.08},{&quot;2026-07-01&quot;:28.19},{&quot;2026-07-02&quot;:28.17},{&quot;2026-07-03&quot;:28.17},{&quot;2026-07-04&quot;:28.82},{&quot;2026-07-05&quot;:28.82},{&quot;2026-07-06&quot;:28.82},{&quot;2026-07-07&quot;:28.82},{&quot;2026-07-08&quot;:28.82},{&quot;2026-07-09&quot;:28.82},{&quot;2026-07-10&quot;:28.82},{&quot;2026-07-11&quot;:28.82},{&quot;2026-07-12&quot;:28.82},{&quot;2026-07-13&quot;:28.82},{&quot;2026-07-14&quot;:28.82},{&quot;2026-07-15&quot;:28.82},{&quot;2026-07-16&quot;:28.82},{&quot;2026-07-17&quot;:28.94},{&quot;2026-07-18&quot;:29.57},{&quot;2026-07-19&quot;:29.57},{&quot;2026-07-20&quot;:29.57},{&quot;2026-07-21&quot;:29.66},{&quot;2026-07-22&quot;:29.66},{&quot;2026-07-23&quot;:29.66},{&quot;2026-07-24&quot;:29.88},{&quot;2026-07-25&quot;:30.36},{&quot;2026-07-26&quot;:30.36},{&quot;2026-07-27&quot;:30.36},{&quot;2026-07-28&quot;:30.36},{&quot;2026-07-29&quot;:30.36},{&quot;2026-07-30&quot;:30.36},{&quot;2026-07-31&quot;:30.36},{&quot;2026-08-01&quot;:30.36},{&quot;2026-08-02&quot;:30.36},{&quot;2026-08-03&quot;:30.36},{&quot;2026-08-04&quot;:30.36},{&quot;2026-08-05&quot;:30.36},{&quot;2026-08-07&quot;:30.36},{&quot;2026-08-08&quot;:30.36},{&quot;2026-08-09&quot;:30.64},{&quot;2026-08-10&quot;:31.21},{&quot;2026-08-11&quot;:31.21},{&quot;2026-08-12&quot;:31.45},{&quot;2026-08-13&quot;:31.86},{&quot;2026-08-14&quot;:31.98},{&quot;2026-08-15&quot;:32.33},{&quot;2026-08-16&quot;:32.93},{&quot;2026-08-17&quot;:32.93},{&quot;2026-08-18&quot;:33.2},{&quot;2026-08-19&quot;:33.2},{&quot;2026-08-20&quot;:32.93},{&quot;2026-08-21&quot;:32.93},{&quot;2026-08-22&quot;:33.31},{&quot;2026-08-23&quot;:33.31},{&quot;2026-08-24&quot;:33.76},{&quot;2026-08-25&quot;:34.45},{&quot;2026-08-26&quot;:34.67},{&quot;2026-08-27&quot;:35.98},{&quot;2026-08-28&quot;:35.98},{&quot;2026-08-29&quot;:35.98},{&quot;2026-08-30&quot;:35.98},{&quot;2026-08-31&quot;:35.98},{&quot;2026-09-01&quot;:36.42},{&quot;2026-09-02&quot;:36.42},{&quot;2026-09-03&quot;:36.42},{&quot;2026-09-04&quot;:36.42},{&quot;2026-09-05&quot;:36.42},{&quot;2026-09-06&quot;:36.42},{&quot;2026-09-07&quot;:36.43},{&quot;2026-09-08&quot;:36.43},{&quot;2026-09-09&quot;:36.43},{&quot;2026-09-10&quot;:36.43},{&quot;2026-09-11&quot;:36.85}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.0},{&quot;2026-06-14&quot;:10.0},{&quot;2026-06-15&quot;:10.24},{&quot;2026-06-16&quot;:10.25},{&quot;2026-06-17&quot;:10.23},{&quot;2026-06-18&quot;:10.25},{&quot;2026-06-19&quot;:10.29},{&quot;2026-06-20&quot;:10.36},{&quot;2026-06-21&quot;:10.47},{&quot;2026-06-22&quot;:10.58},{&quot;2026-06-23&quot;:10.62},{&quot;2026-06-24&quot;:10.69},{&quot;2026-06-25&quot;:10.69},{&quot;2026-06-26&quot;:10.69},{&quot;2026-06-27&quot;:10.57},{&quot;2026-06-28&quot;:10.57},{&quot;2026-06-29&quot;:10.57},{&quot;2026-06-30&quot;:10.57},{&quot;2026-07-01&quot;:10.57},{&quot;2026-07-02&quot;:10.15},{&quot;2026-07-03&quot;:10.16},{&quot;2026-07-04&quot;:10.23},{&quot;2026-07-05&quot;:10.26},{&quot;2026-07-06&quot;:10.23},{&quot;2026-07-07&quot;:9.98},{&quot;2026-07-08&quot;:9.77},{&quot;2026-07-09&quot;:9.81},{&quot;2026-07-10&quot;:9.81},{&quot;2026-07-11&quot;:9.96},{&quot;2026-07-12&quot;:9.96},{&quot;2026-07-13&quot;:9.98},{&quot;2026-07-14&quot;:10.04},{&quot;2026-07-15&quot;:9.98},{&quot;2026-07-16&quot;:9.95},{&quot;2026-07-17&quot;:10.01},{&quot;2026-07-18&quot;:9.99},{&quot;2026-07-19&quot;:10.13},{&quot;2026-07-20&quot;:10.2},{&quot;2026-07-21&quot;:10.12},{&quot;2026-07-22&quot;:10.04},{&quot;2026-07-23&quot;:10.21},{&quot;2026-07-24&quot;:10.18},{&quot;2026-07-25&quot;:10.13},{&quot;2026-07-26&quot;:10.13},{&quot;2026-07-27&quot;:10.05},{&quot;2026-07-28&quot;:9.88},{&quot;2026-07-29&quot;:9.95},{&quot;2026-07-30&quot;:10.05},{&quot;2026-07-31&quot;:10.09},{&quot;2026-08-01&quot;:10.06},{&quot;2026-08-02&quot;:10.06},{&quot;2026-08-03&quot;:10.01},{&quot;2026-08-04&quot;:10.02},{&quot;2026-08-05&quot;:9.87},{&quot;2026-08-07&quot;:9.9},{&quot;2026-08-08&quot;:9.86},{&quot;2026-08-09&quot;:9.82},{&quot;2026-08-10&quot;:9.83},{&quot;2026-08-11&quot;:9.85},{&quot;2026-08-12&quot;:9.88},{&quot;2026-08-13&quot;:10.0},{&quot;2026-08-14&quot;:10.17},{&quot;2026-08-15&quot;:10.22},{&quot;2026-08-16&quot;:10.29},{&quot;2026-08-17&quot;:10.41},{&quot;2026-08-18&quot;:10.45},{&quot;2026-08-19&quot;:10.63},{&quot;2026-08-20&quot;:11.1},{&quot;2026-08-21&quot;:10.97},{&quot;2026-08-22&quot;:11.19},{&quot;2026-08-23&quot;:11.18},{&quot;2026-08-24&quot;:11.65},{&quot;2026-08-25&quot;:11.78},{&quot;2026-08-26&quot;:11.71},{&quot;2026-08-27&quot;:11.62},{&quot;2026-08-28&quot;:11.64},{&quot;2026-08-29&quot;:11.64},{&quot;2026-08-30&quot;:11.81},{&quot;2026-08-31&quot;:12.06},{&quot;2026-09-01&quot;:12.11},{&quot;2026-09-02&quot;:12.15},{&quot;2026-09-03&quot;:12.31},{&quot;2026-09-04&quot;:12.67},{&quot;2026-09-05&quot;:12.9},{&quot;2026-09-06&quot;:13.25},{&quot;2026-09-07&quot;:13.36},{&quot;2026-09-08&quot;:13.36},{&quot;2026-09-09&quot;:13.42},{&quot;2026-09-10&quot;:13.42},{&quot;2026-09-11&quot;:13.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="17972"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $36.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="Enlightened Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1c9675fb-1a89-420f-aea8-50e0642f549c.jpg?1783918516" />

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Enlightened Tutor" src="https://cards.scryfall.io/large/front/1/c/1c9675fb-1a89-420f-aea8-50e0642f549c.jpg?1783918516" />
    </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">
                $36.31
              </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">
                $38.28
              </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">$25.00</span>
              <span class="text-xs text-grey-text">Credit: $32.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:37.99},{&quot;2026-06-14&quot;:37.99},{&quot;2026-06-15&quot;:38.22},{&quot;2026-06-16&quot;:38.22},{&quot;2026-06-17&quot;:38.68},{&quot;2026-06-18&quot;:38.48},{&quot;2026-06-19&quot;:39.16},{&quot;2026-06-20&quot;:39.16},{&quot;2026-06-21&quot;:39.12},{&quot;2026-06-22&quot;:39.27},{&quot;2026-06-23&quot;:39.27},{&quot;2026-06-24&quot;:39.46},{&quot;2026-06-25&quot;:39.46},{&quot;2026-06-26&quot;:39.46},{&quot;2026-06-27&quot;:39.46},{&quot;2026-06-28&quot;:39.93},{&quot;2026-06-29&quot;:39.93},{&quot;2026-06-30&quot;:39.93},{&quot;2026-07-01&quot;:39.86},{&quot;2026-07-02&quot;:40.01},{&quot;2026-07-03&quot;:40.01},{&quot;2026-07-04&quot;:40.01},{&quot;2026-07-05&quot;:39.53},{&quot;2026-07-06&quot;:39.82},{&quot;2026-07-07&quot;:39.51},{&quot;2026-07-08&quot;:39.51},{&quot;2026-07-09&quot;:39.51},{&quot;2026-07-10&quot;:39.51},{&quot;2026-07-11&quot;:39.41},{&quot;2026-07-12&quot;:39.59},{&quot;2026-07-13&quot;:39.59},{&quot;2026-07-14&quot;:39.59},{&quot;2026-07-15&quot;:39.71},{&quot;2026-07-16&quot;:39.71},{&quot;2026-07-17&quot;:39.77},{&quot;2026-07-18&quot;:39.77},{&quot;2026-07-19&quot;:39.77},{&quot;2026-07-20&quot;:39.77},{&quot;2026-07-21&quot;:39.77},{&quot;2026-07-22&quot;:39.77},{&quot;2026-07-23&quot;:40.09},{&quot;2026-07-24&quot;:40.09},{&quot;2026-07-25&quot;:40.09},{&quot;2026-07-26&quot;:40.09},{&quot;2026-07-27&quot;:40.09},{&quot;2026-07-28&quot;:40.09},{&quot;2026-07-29&quot;:40.09},{&quot;2026-07-30&quot;:40.3},{&quot;2026-07-31&quot;:39.59},{&quot;2026-08-01&quot;:39.38},{&quot;2026-08-02&quot;:39.04},{&quot;2026-08-03&quot;:39.04},{&quot;2026-08-04&quot;:39.04},{&quot;2026-08-05&quot;:39.04},{&quot;2026-08-07&quot;:39.52},{&quot;2026-08-08&quot;:39.5},{&quot;2026-08-09&quot;:39.5},{&quot;2026-08-10&quot;:39.92},{&quot;2026-08-11&quot;:39.69},{&quot;2026-08-12&quot;:39.49},{&quot;2026-08-13&quot;:39.49},{&quot;2026-08-14&quot;:39.04},{&quot;2026-08-15&quot;:39.04},{&quot;2026-08-16&quot;:39.1},{&quot;2026-08-17&quot;:39.1},{&quot;2026-08-18&quot;:38.74},{&quot;2026-08-19&quot;:39.24},{&quot;2026-08-20&quot;:39.35},{&quot;2026-08-21&quot;:39.35},{&quot;2026-08-22&quot;:39.35},{&quot;2026-08-23&quot;:39.35},{&quot;2026-08-24&quot;:39.45},{&quot;2026-08-25&quot;:39.45},{&quot;2026-08-26&quot;:39.45},{&quot;2026-08-27&quot;:39.45},{&quot;2026-08-28&quot;:39.45},{&quot;2026-08-29&quot;:39.45},{&quot;2026-08-30&quot;:39.49},{&quot;2026-08-31&quot;:39.09},{&quot;2026-09-01&quot;:39.09},{&quot;2026-09-02&quot;:39.09},{&quot;2026-09-03&quot;:39.09},{&quot;2026-09-04&quot;:39.09},{&quot;2026-09-05&quot;:39.09},{&quot;2026-09-06&quot;:39.09},{&quot;2026-09-07&quot;:39.11},{&quot;2026-09-08&quot;:38.78},{&quot;2026-09-09&quot;:38.78},{&quot;2026-09-10&quot;:38.27},{&quot;2026-09-11&quot;:38.28}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:37.6},{&quot;2026-06-14&quot;:37.58},{&quot;2026-06-15&quot;:37.03},{&quot;2026-06-16&quot;:37.9},{&quot;2026-06-17&quot;:38.16},{&quot;2026-06-18&quot;:37.76},{&quot;2026-06-19&quot;:37.24},{&quot;2026-06-20&quot;:37.04},{&quot;2026-06-21&quot;:37.04},{&quot;2026-06-22&quot;:36.68},{&quot;2026-06-23&quot;:36.68},{&quot;2026-06-24&quot;:36.65},{&quot;2026-06-25&quot;:36.65},{&quot;2026-06-26&quot;:36.51},{&quot;2026-06-27&quot;:35.98},{&quot;2026-06-28&quot;:35.02},{&quot;2026-06-29&quot;:36.41},{&quot;2026-06-30&quot;:35.86},{&quot;2026-07-01&quot;:36.22},{&quot;2026-07-02&quot;:36.91},{&quot;2026-07-03&quot;:39.39},{&quot;2026-07-04&quot;:39.54},{&quot;2026-07-05&quot;:39.56},{&quot;2026-07-06&quot;:39.58},{&quot;2026-07-07&quot;:39.48},{&quot;2026-07-08&quot;:39.35},{&quot;2026-07-09&quot;:39.79},{&quot;2026-07-10&quot;:39.75},{&quot;2026-07-11&quot;:39.58},{&quot;2026-07-12&quot;:39.42},{&quot;2026-07-13&quot;:38.65},{&quot;2026-07-14&quot;:38.67},{&quot;2026-07-15&quot;:38.37},{&quot;2026-07-16&quot;:38.49},{&quot;2026-07-17&quot;:38.23},{&quot;2026-07-18&quot;:38.19},{&quot;2026-07-19&quot;:38.19},{&quot;2026-07-20&quot;:37.88},{&quot;2026-07-21&quot;:38.14},{&quot;2026-07-22&quot;:38.32},{&quot;2026-07-23&quot;:37.85},{&quot;2026-07-24&quot;:37.71},{&quot;2026-07-25&quot;:38.01},{&quot;2026-07-26&quot;:38.71},{&quot;2026-07-27&quot;:38.74},{&quot;2026-07-28&quot;:38.73},{&quot;2026-07-29&quot;:38.77},{&quot;2026-07-30&quot;:38.77},{&quot;2026-07-31&quot;:38.36},{&quot;2026-08-01&quot;:37.93},{&quot;2026-08-02&quot;:37.81},{&quot;2026-08-03&quot;:37.81},{&quot;2026-08-04&quot;:37.81},{&quot;2026-08-05&quot;:37.64},{&quot;2026-08-07&quot;:37.64},{&quot;2026-08-08&quot;:37.93},{&quot;2026-08-09&quot;:37.93},{&quot;2026-08-10&quot;:37.93},{&quot;2026-08-11&quot;:37.93},{&quot;2026-08-12&quot;:37.85},{&quot;2026-08-13&quot;:37.31},{&quot;2026-08-14&quot;:37.11},{&quot;2026-08-15&quot;:35.91},{&quot;2026-08-16&quot;:35.87},{&quot;2026-08-17&quot;:35.2},{&quot;2026-08-18&quot;:35.05},{&quot;2026-08-19&quot;:34.93},{&quot;2026-08-20&quot;:34.66},{&quot;2026-08-21&quot;:34.35},{&quot;2026-08-22&quot;:34.25},{&quot;2026-08-23&quot;:34.16},{&quot;2026-08-24&quot;:35.04},{&quot;2026-08-25&quot;:35.35},{&quot;2026-08-26&quot;:35.35},{&quot;2026-08-27&quot;:35.34},{&quot;2026-08-28&quot;:35.44},{&quot;2026-08-29&quot;:35.44},{&quot;2026-08-30&quot;:35.77},{&quot;2026-08-31&quot;:35.78},{&quot;2026-09-01&quot;:35.78},{&quot;2026-09-02&quot;:36.24},{&quot;2026-09-03&quot;:36.42},{&quot;2026-09-04&quot;:36.51},{&quot;2026-09-05&quot;:36.41},{&quot;2026-09-06&quot;:36.4},{&quot;2026-09-07&quot;:36.04},{&quot;2026-09-08&quot;:36.12},{&quot;2026-09-09&quot;:36.19},{&quot;2026-09-10&quot;:36.3},{&quot;2026-09-11&quot;:36.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="20515"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-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">
            Green Sun&#39;s Zenith
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $34.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="Green Sun&#39;s Zenith" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/0/70291c7b-a86f-4466-8502-c28765a89b2a.jpg?1783921868" />

        <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">
            Green Sun&#39;s Zenith
        </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Green Sun&#39;s Zenith" src="https://cards.scryfall.io/large/front/7/0/70291c7b-a86f-4466-8502-c28765a89b2a.jpg?1783921868" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:28.49},{&quot;2026-06-14&quot;:28.49},{&quot;2026-06-15&quot;:28.49},{&quot;2026-06-16&quot;:28.49},{&quot;2026-06-17&quot;:28.49},{&quot;2026-06-18&quot;:28.49},{&quot;2026-06-19&quot;:28.49},{&quot;2026-06-20&quot;:28.49},{&quot;2026-06-21&quot;:28.49},{&quot;2026-06-22&quot;:28.49},{&quot;2026-06-23&quot;:28.49},{&quot;2026-06-24&quot;:28.49},{&quot;2026-06-25&quot;:28.8},{&quot;2026-06-26&quot;:28.8},{&quot;2026-06-27&quot;:28.8},{&quot;2026-06-28&quot;:28.8},{&quot;2026-06-29&quot;:28.8},{&quot;2026-06-30&quot;:28.8},{&quot;2026-07-01&quot;:28.8},{&quot;2026-07-02&quot;:28.98},{&quot;2026-07-03&quot;:29.05},{&quot;2026-07-04&quot;:29.05},{&quot;2026-07-05&quot;:29.05},{&quot;2026-07-06&quot;:29.05},{&quot;2026-07-07&quot;:29.42},{&quot;2026-07-08&quot;:29.42},{&quot;2026-07-09&quot;:29.42},{&quot;2026-07-10&quot;:29.42},{&quot;2026-07-11&quot;:29.42},{&quot;2026-07-12&quot;:29.42},{&quot;2026-07-13&quot;:29.42},{&quot;2026-07-14&quot;:29.42},{&quot;2026-07-15&quot;:29.42},{&quot;2026-07-16&quot;:29.42},{&quot;2026-07-17&quot;:29.42},{&quot;2026-07-18&quot;:29.42},{&quot;2026-07-19&quot;:29.42},{&quot;2026-07-20&quot;:29.42},{&quot;2026-07-21&quot;:29.42},{&quot;2026-07-22&quot;:29.42},{&quot;2026-07-23&quot;:29.42},{&quot;2026-07-24&quot;:29.42},{&quot;2026-07-25&quot;:29.5},{&quot;2026-07-26&quot;:29.69},{&quot;2026-07-27&quot;:29.86},{&quot;2026-07-28&quot;:29.86},{&quot;2026-07-29&quot;:29.86},{&quot;2026-07-30&quot;:30.14},{&quot;2026-07-31&quot;:30.14},{&quot;2026-08-01&quot;:30.14},{&quot;2026-08-02&quot;:30.14},{&quot;2026-08-03&quot;:30.14},{&quot;2026-08-04&quot;:30.14},{&quot;2026-08-05&quot;:30.14},{&quot;2026-08-07&quot;:30.14},{&quot;2026-08-08&quot;:30.14},{&quot;2026-08-09&quot;:30.14},{&quot;2026-08-10&quot;:29.9},{&quot;2026-08-11&quot;:30.29},{&quot;2026-08-12&quot;:30.29},{&quot;2026-08-13&quot;:30.29},{&quot;2026-08-14&quot;:30.29},{&quot;2026-08-15&quot;:30.53},{&quot;2026-08-16&quot;:30.77},{&quot;2026-08-17&quot;:31.05},{&quot;2026-08-18&quot;:31.05},{&quot;2026-08-19&quot;:31.05},{&quot;2026-08-20&quot;:31.05},{&quot;2026-08-21&quot;:31.05},{&quot;2026-08-22&quot;:31.05},{&quot;2026-08-23&quot;:31.05},{&quot;2026-08-24&quot;:31.05},{&quot;2026-08-25&quot;:31.59},{&quot;2026-08-26&quot;:32.24},{&quot;2026-08-27&quot;:32.24},{&quot;2026-08-28&quot;:32.24},{&quot;2026-08-29&quot;:32.24},{&quot;2026-08-30&quot;:32.24},{&quot;2026-08-31&quot;:32.24},{&quot;2026-09-01&quot;:32.24},{&quot;2026-09-02&quot;:32.24},{&quot;2026-09-03&quot;:32.24},{&quot;2026-09-04&quot;:32.24},{&quot;2026-09-05&quot;:32.24},{&quot;2026-09-06&quot;:32.36},{&quot;2026-09-07&quot;:32.36},{&quot;2026-09-08&quot;:32.36},{&quot;2026-09-09&quot;:32.73},{&quot;2026-09-10&quot;:32.73},{&quot;2026-09-11&quot;:32.73}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:28.72},{&quot;2026-06-14&quot;:28.91},{&quot;2026-06-15&quot;:28.99},{&quot;2026-06-16&quot;:28.76},{&quot;2026-06-17&quot;:28.76},{&quot;2026-06-18&quot;:28.81},{&quot;2026-06-19&quot;:28.68},{&quot;2026-06-20&quot;:28.78},{&quot;2026-06-21&quot;:28.7},{&quot;2026-06-22&quot;:28.58},{&quot;2026-06-23&quot;:28.78},{&quot;2026-06-24&quot;:28.78},{&quot;2026-06-25&quot;:29.0},{&quot;2026-06-26&quot;:29.23},{&quot;2026-06-27&quot;:28.95},{&quot;2026-06-28&quot;:28.96},{&quot;2026-06-29&quot;:28.96},{&quot;2026-06-30&quot;:28.96},{&quot;2026-07-01&quot;:30.19},{&quot;2026-07-02&quot;:29.99},{&quot;2026-07-03&quot;:29.99},{&quot;2026-07-04&quot;:29.84},{&quot;2026-07-05&quot;:30.13},{&quot;2026-07-06&quot;:30.23},{&quot;2026-07-07&quot;:30.49},{&quot;2026-07-08&quot;:29.94},{&quot;2026-07-09&quot;:29.85},{&quot;2026-07-10&quot;:29.85},{&quot;2026-07-11&quot;:29.52},{&quot;2026-07-12&quot;:28.98},{&quot;2026-07-13&quot;:29.26},{&quot;2026-07-14&quot;:28.85},{&quot;2026-07-15&quot;:28.87},{&quot;2026-07-16&quot;:28.51},{&quot;2026-07-17&quot;:28.51},{&quot;2026-07-18&quot;:28.43},{&quot;2026-07-19&quot;:27.87},{&quot;2026-07-20&quot;:28.77},{&quot;2026-07-21&quot;:28.69},{&quot;2026-07-22&quot;:28.95},{&quot;2026-07-23&quot;:29.11},{&quot;2026-07-24&quot;:28.81},{&quot;2026-07-25&quot;:28.96},{&quot;2026-07-26&quot;:28.96},{&quot;2026-07-27&quot;:29.31},{&quot;2026-07-28&quot;:30.27},{&quot;2026-07-29&quot;:30.27},{&quot;2026-07-30&quot;:30.53},{&quot;2026-07-31&quot;:30.05},{&quot;2026-08-01&quot;:30.61},{&quot;2026-08-02&quot;:30.3},{&quot;2026-08-03&quot;:30.62},{&quot;2026-08-04&quot;:31.01},{&quot;2026-08-05&quot;:31.52},{&quot;2026-08-07&quot;:31.81},{&quot;2026-08-08&quot;:31.97},{&quot;2026-08-09&quot;:31.51},{&quot;2026-08-10&quot;:31.57},{&quot;2026-08-11&quot;:31.18},{&quot;2026-08-12&quot;:31.09},{&quot;2026-08-13&quot;:31.46},{&quot;2026-08-14&quot;:31.44},{&quot;2026-08-15&quot;:31.49},{&quot;2026-08-16&quot;:30.93},{&quot;2026-08-17&quot;:31.41},{&quot;2026-08-18&quot;:31.68},{&quot;2026-08-19&quot;:31.68},{&quot;2026-08-20&quot;:31.96},{&quot;2026-08-21&quot;:31.92},{&quot;2026-08-22&quot;:31.92},{&quot;2026-08-23&quot;:31.91},{&quot;2026-08-24&quot;:31.91},{&quot;2026-08-25&quot;:31.7},{&quot;2026-08-26&quot;:31.7},{&quot;2026-08-27&quot;:31.93},{&quot;2026-08-28&quot;:31.93},{&quot;2026-08-29&quot;:31.93},{&quot;2026-08-30&quot;:31.73},{&quot;2026-08-31&quot;:32.01},{&quot;2026-09-01&quot;:32.37},{&quot;2026-09-02&quot;:32.63},{&quot;2026-09-03&quot;:33.37},{&quot;2026-09-04&quot;:34.95},{&quot;2026-09-05&quot;:34.8},{&quot;2026-09-06&quot;:34.53},{&quot;2026-09-07&quot;:34.51},{&quot;2026-09-08&quot;:34.51},{&quot;2026-09-09&quot;:34.93},{&quot;2026-09-10&quot;:34.93},{&quot;2026-09-11&quot;:34.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="80254"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Worldly Tutor" src="https://cards.scryfall.io/large/front/8/d/8d3569de-ff5e-44a2-94a2-86e994d2a0f1.jpg?1783904751" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:32.34},{&quot;2026-06-14&quot;:32.24},{&quot;2026-06-15&quot;:31.44},{&quot;2026-06-16&quot;:31.36},{&quot;2026-06-17&quot;:31.36},{&quot;2026-06-18&quot;:31.69},{&quot;2026-06-19&quot;:31.78},{&quot;2026-06-20&quot;:32.24},{&quot;2026-06-21&quot;:32.25},{&quot;2026-06-22&quot;:32.21},{&quot;2026-06-23&quot;:32.21},{&quot;2026-06-24&quot;:32.4},{&quot;2026-06-25&quot;:32.5},{&quot;2026-06-26&quot;:32.54},{&quot;2026-06-27&quot;:32.54},{&quot;2026-06-28&quot;:32.59},{&quot;2026-06-29&quot;:32.6},{&quot;2026-06-30&quot;:32.46},{&quot;2026-07-01&quot;:32.23},{&quot;2026-07-02&quot;:32.58},{&quot;2026-07-03&quot;:32.53},{&quot;2026-07-04&quot;:32.5},{&quot;2026-07-05&quot;:32.29},{&quot;2026-07-06&quot;:32.29},{&quot;2026-07-07&quot;:32.22},{&quot;2026-07-08&quot;:32.16},{&quot;2026-07-09&quot;:32.25},{&quot;2026-07-10&quot;:32.27},{&quot;2026-07-11&quot;:32.36},{&quot;2026-07-12&quot;:32.66},{&quot;2026-07-13&quot;:32.76},{&quot;2026-07-14&quot;:32.77},{&quot;2026-07-15&quot;:32.6},{&quot;2026-07-16&quot;:32.98},{&quot;2026-07-17&quot;:32.36},{&quot;2026-07-18&quot;:32.27},{&quot;2026-07-19&quot;:32.21},{&quot;2026-07-20&quot;:32.21},{&quot;2026-07-21&quot;:32.11},{&quot;2026-07-22&quot;:32.4},{&quot;2026-07-23&quot;:32.53},{&quot;2026-07-24&quot;:32.69},{&quot;2026-07-25&quot;:32.69},{&quot;2026-07-26&quot;:32.55},{&quot;2026-07-27&quot;:32.81},{&quot;2026-07-28&quot;:33.13},{&quot;2026-07-29&quot;:32.93},{&quot;2026-07-30&quot;:32.93},{&quot;2026-07-31&quot;:32.93},{&quot;2026-08-01&quot;:32.97},{&quot;2026-08-02&quot;:32.97},{&quot;2026-08-03&quot;:33.67},{&quot;2026-08-04&quot;:33.67},{&quot;2026-08-05&quot;:33.75},{&quot;2026-08-07&quot;:34.23},{&quot;2026-08-08&quot;:34.28},{&quot;2026-08-09&quot;:34.9},{&quot;2026-08-10&quot;:35.57},{&quot;2026-08-11&quot;:36.01},{&quot;2026-08-12&quot;:36.31},{&quot;2026-08-13&quot;:36.74},{&quot;2026-08-14&quot;:36.42},{&quot;2026-08-15&quot;:35.88},{&quot;2026-08-16&quot;:34.72},{&quot;2026-08-17&quot;:34.72},{&quot;2026-08-18&quot;:34.72},{&quot;2026-08-19&quot;:34.24},{&quot;2026-08-20&quot;:34.24},{&quot;2026-08-21&quot;:33.81},{&quot;2026-08-22&quot;:32.93},{&quot;2026-08-23&quot;:32.55},{&quot;2026-08-24&quot;:31.67},{&quot;2026-08-25&quot;:31.07},{&quot;2026-08-26&quot;:30.4},{&quot;2026-08-27&quot;:30.48},{&quot;2026-08-28&quot;:30.42},{&quot;2026-08-29&quot;:30.42},{&quot;2026-08-30&quot;:31.08},{&quot;2026-08-31&quot;:31.39},{&quot;2026-09-01&quot;:31.12},{&quot;2026-09-02&quot;:31.17},{&quot;2026-09-03&quot;:31.61},{&quot;2026-09-04&quot;:31.77},{&quot;2026-09-05&quot;:31.64},{&quot;2026-09-06&quot;:31.51},{&quot;2026-09-07&quot;:31.86},{&quot;2026-09-08&quot;:31.86},{&quot;2026-09-09&quot;:31.86},{&quot;2026-09-10&quot;:32.12},{&quot;2026-09-11&quot;:32.16}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $32.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="Worldly Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/3/f39aa2e9-e294-4ce6-bf5e-e1f579101a7a.jpg?1783918434" />

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Worldly Tutor" src="https://cards.scryfall.io/large/front/f/3/f39aa2e9-e294-4ce6-bf5e-e1f579101a7a.jpg?1783918434" />
    </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">
                $32.03
              </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">
                $31.32
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$19.50</span>
              <span class="text-xs text-grey-text">Credit: $25.35</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;:26.35},{&quot;2026-06-10&quot;:26.85},{&quot;2026-06-11&quot;:26.85},{&quot;2026-06-12&quot;:27.13},{&quot;2026-06-13&quot;:28.55},{&quot;2026-06-14&quot;:28.3},{&quot;2026-06-15&quot;:28.3},{&quot;2026-06-16&quot;:28.68},{&quot;2026-06-17&quot;:29.12},{&quot;2026-06-18&quot;:29.13},{&quot;2026-06-19&quot;:29.13},{&quot;2026-06-20&quot;:29.13},{&quot;2026-06-21&quot;:29.13},{&quot;2026-06-22&quot;:29.13},{&quot;2026-06-24&quot;:29.15},{&quot;2026-06-25&quot;:29.15},{&quot;2026-06-26&quot;:29.15},{&quot;2026-06-27&quot;:29.15},{&quot;2026-06-28&quot;:29.15},{&quot;2026-06-29&quot;:29.15},{&quot;2026-06-30&quot;:29.15},{&quot;2026-07-01&quot;:29.25},{&quot;2026-07-02&quot;:29.28},{&quot;2026-07-03&quot;:29.34},{&quot;2026-07-04&quot;:28.94},{&quot;2026-07-05&quot;:28.94},{&quot;2026-07-06&quot;:28.94},{&quot;2026-07-07&quot;:28.94},{&quot;2026-07-08&quot;:29.07},{&quot;2026-07-09&quot;:29.31},{&quot;2026-07-10&quot;:29.31},{&quot;2026-07-11&quot;:29.41},{&quot;2026-07-12&quot;:29.41},{&quot;2026-07-13&quot;:29.41},{&quot;2026-07-14&quot;:29.53},{&quot;2026-07-15&quot;:29.53},{&quot;2026-07-16&quot;:29.74},{&quot;2026-07-17&quot;:29.74},{&quot;2026-07-18&quot;:29.71},{&quot;2026-07-19&quot;:29.74},{&quot;2026-07-20&quot;:29.74},{&quot;2026-07-21&quot;:29.74},{&quot;2026-07-23&quot;:29.61},{&quot;2026-07-25&quot;:29.61},{&quot;2026-07-26&quot;:29.61},{&quot;2026-07-27&quot;:29.18},{&quot;2026-07-29&quot;:28.57},{&quot;2026-07-30&quot;:28.3},{&quot;2026-07-31&quot;:27.93},{&quot;2026-08-01&quot;:27.49},{&quot;2026-08-02&quot;:27.26},{&quot;2026-08-03&quot;:27.29},{&quot;2026-08-04&quot;:27.37},{&quot;2026-08-05&quot;:27.3},{&quot;2026-08-07&quot;:27.14},{&quot;2026-08-08&quot;:27.03},{&quot;2026-08-09&quot;:27.16},{&quot;2026-08-10&quot;:27.16},{&quot;2026-08-11&quot;:27.1},{&quot;2026-08-12&quot;:27.2},{&quot;2026-08-13&quot;:27.2},{&quot;2026-08-14&quot;:27.2},{&quot;2026-08-15&quot;:27.24},{&quot;2026-08-16&quot;:27.34},{&quot;2026-08-17&quot;:27.34},{&quot;2026-08-18&quot;:27.38},{&quot;2026-08-19&quot;:27.33},{&quot;2026-08-20&quot;:27.33},{&quot;2026-08-21&quot;:27.39},{&quot;2026-08-22&quot;:27.2},{&quot;2026-08-23&quot;:27.38},{&quot;2026-08-24&quot;:27.42},{&quot;2026-08-25&quot;:27.42},{&quot;2026-08-26&quot;:28.15},{&quot;2026-08-27&quot;:28.15},{&quot;2026-08-28&quot;:28.44},{&quot;2026-08-29&quot;:28.44},{&quot;2026-08-30&quot;:29.03},{&quot;2026-08-31&quot;:29.03},{&quot;2026-09-01&quot;:29.03},{&quot;2026-09-02&quot;:30.78},{&quot;2026-09-03&quot;:30.78},{&quot;2026-09-04&quot;:30.91},{&quot;2026-09-05&quot;:30.91},{&quot;2026-09-06&quot;:30.91},{&quot;2026-09-07&quot;:30.91},{&quot;2026-09-08&quot;:31.27},{&quot;2026-09-09&quot;:31.27},{&quot;2026-09-10&quot;:31.27},{&quot;2026-09-11&quot;:31.32}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:32.24},{&quot;2026-06-10&quot;:32.13},{&quot;2026-06-11&quot;:32.13},{&quot;2026-06-12&quot;:32.28},{&quot;2026-06-13&quot;:32.28},{&quot;2026-06-14&quot;:31.81},{&quot;2026-06-15&quot;:30.68},{&quot;2026-06-16&quot;:30.68},{&quot;2026-06-17&quot;:28.9},{&quot;2026-06-18&quot;:28.49},{&quot;2026-06-19&quot;:28.61},{&quot;2026-06-20&quot;:28.69},{&quot;2026-06-21&quot;:28.8},{&quot;2026-06-22&quot;:28.4},{&quot;2026-06-24&quot;:27.96},{&quot;2026-06-25&quot;:27.96},{&quot;2026-06-26&quot;:27.96},{&quot;2026-06-27&quot;:27.96},{&quot;2026-06-28&quot;:27.79},{&quot;2026-06-29&quot;:26.92},{&quot;2026-06-30&quot;:27.12},{&quot;2026-07-01&quot;:27.1},{&quot;2026-07-02&quot;:26.91},{&quot;2026-07-03&quot;:26.95},{&quot;2026-07-04&quot;:26.45},{&quot;2026-07-05&quot;:26.45},{&quot;2026-07-06&quot;:26.49},{&quot;2026-07-07&quot;:26.6},{&quot;2026-07-08&quot;:26.63},{&quot;2026-07-09&quot;:26.46},{&quot;2026-07-10&quot;:26.56},{&quot;2026-07-11&quot;:26.55},{&quot;2026-07-12&quot;:27.01},{&quot;2026-07-13&quot;:27.02},{&quot;2026-07-14&quot;:27.05},{&quot;2026-07-15&quot;:27.05},{&quot;2026-07-16&quot;:27.05},{&quot;2026-07-17&quot;:26.91},{&quot;2026-07-18&quot;:26.8},{&quot;2026-07-19&quot;:26.82},{&quot;2026-07-20&quot;:26.92},{&quot;2026-07-21&quot;:26.99},{&quot;2026-07-23&quot;:26.91},{&quot;2026-07-25&quot;:27.08},{&quot;2026-07-26&quot;:27.17},{&quot;2026-07-27&quot;:27.23},{&quot;2026-07-29&quot;:27.31},{&quot;2026-07-30&quot;:27.38},{&quot;2026-07-31&quot;:27.33},{&quot;2026-08-01&quot;:27.37},{&quot;2026-08-02&quot;:27.36},{&quot;2026-08-03&quot;:27.36},{&quot;2026-08-04&quot;:27.14},{&quot;2026-08-05&quot;:27.28},{&quot;2026-08-07&quot;:27.31},{&quot;2026-08-08&quot;:27.15},{&quot;2026-08-09&quot;:27.09},{&quot;2026-08-10&quot;:27.4},{&quot;2026-08-11&quot;:27.36},{&quot;2026-08-12&quot;:27.38},{&quot;2026-08-13&quot;:27.37},{&quot;2026-08-14&quot;:27.37},{&quot;2026-08-15&quot;:27.35},{&quot;2026-08-16&quot;:27.35},{&quot;2026-08-17&quot;:27.58},{&quot;2026-08-18&quot;:27.43},{&quot;2026-08-19&quot;:27.54},{&quot;2026-08-20&quot;:27.54},{&quot;2026-08-21&quot;:27.47},{&quot;2026-08-22&quot;:27.48},{&quot;2026-08-23&quot;:27.73},{&quot;2026-08-24&quot;:28.0},{&quot;2026-08-25&quot;:28.0},{&quot;2026-08-26&quot;:28.46},{&quot;2026-08-27&quot;:28.91},{&quot;2026-08-28&quot;:29.11},{&quot;2026-08-29&quot;:29.11},{&quot;2026-08-30&quot;:29.39},{&quot;2026-08-31&quot;:29.94},{&quot;2026-09-01&quot;:29.94},{&quot;2026-09-02&quot;:30.6},{&quot;2026-09-03&quot;:30.6},{&quot;2026-09-04&quot;:30.6},{&quot;2026-09-05&quot;:30.45},{&quot;2026-09-06&quot;:30.44},{&quot;2026-09-07&quot;:30.73},{&quot;2026-09-08&quot;:31.35},{&quot;2026-09-09&quot;:31.64},{&quot;2026-09-10&quot;:32.22},{&quot;2026-09-11&quot;:32.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="20058"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-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">
            Stoneforge Mystic
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $31.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="Stoneforge Mystic" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/d/4d3473d0-b46f-41f5-ac1e-ba217f7747d4.jpg?1783930209" />

        <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">
            Stoneforge Mystic
        </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 — Kor Artificer</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stoneforge Mystic" src="https://cards.scryfall.io/large/front/4/d/4d3473d0-b46f-41f5-ac1e-ba217f7747d4.jpg?1783930209" />
    </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">
                $31.45
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:29.7},{&quot;2026-06-11&quot;:29.7},{&quot;2026-06-12&quot;:29.7},{&quot;2026-06-13&quot;:29.7},{&quot;2026-06-14&quot;:29.7},{&quot;2026-06-15&quot;:30.29},{&quot;2026-06-16&quot;:30.29},{&quot;2026-06-17&quot;:30.29},{&quot;2026-06-18&quot;:30.29},{&quot;2026-06-19&quot;:30.29},{&quot;2026-06-20&quot;:30.29},{&quot;2026-06-21&quot;:30.29},{&quot;2026-06-22&quot;:31.68},{&quot;2026-06-23&quot;:32.28},{&quot;2026-06-24&quot;:32.28},{&quot;2026-06-25&quot;:32.28},{&quot;2026-06-26&quot;:32.28},{&quot;2026-06-27&quot;:32.28},{&quot;2026-06-28&quot;:32.71},{&quot;2026-06-29&quot;:32.79},{&quot;2026-06-30&quot;:32.75},{&quot;2026-07-01&quot;:32.75},{&quot;2026-07-02&quot;:32.75},{&quot;2026-07-03&quot;:32.75},{&quot;2026-07-04&quot;:32.75},{&quot;2026-07-05&quot;:32.75},{&quot;2026-07-06&quot;:32.75},{&quot;2026-07-07&quot;:32.75},{&quot;2026-07-08&quot;:32.75},{&quot;2026-07-09&quot;:32.75},{&quot;2026-07-10&quot;:32.79},{&quot;2026-07-11&quot;:32.79},{&quot;2026-07-12&quot;:32.79},{&quot;2026-07-13&quot;:32.79},{&quot;2026-07-14&quot;:32.79},{&quot;2026-07-15&quot;:32.79},{&quot;2026-07-16&quot;:32.79},{&quot;2026-07-17&quot;:32.91},{&quot;2026-07-18&quot;:32.91},{&quot;2026-07-19&quot;:32.91},{&quot;2026-07-20&quot;:32.91},{&quot;2026-07-21&quot;:32.91},{&quot;2026-07-23&quot;:33.31},{&quot;2026-07-25&quot;:33.31},{&quot;2026-07-26&quot;:33.31},{&quot;2026-07-27&quot;:33.52},{&quot;2026-07-29&quot;:33.52},{&quot;2026-07-30&quot;:33.52},{&quot;2026-07-31&quot;:33.82},{&quot;2026-08-01&quot;:33.82},{&quot;2026-08-02&quot;:33.82},{&quot;2026-08-03&quot;:33.82},{&quot;2026-08-04&quot;:33.82},{&quot;2026-08-05&quot;:34.07},{&quot;2026-08-07&quot;:34.07},{&quot;2026-08-08&quot;:34.07},{&quot;2026-08-09&quot;:34.56},{&quot;2026-08-10&quot;:34.86},{&quot;2026-08-11&quot;:34.86},{&quot;2026-08-12&quot;:34.86},{&quot;2026-08-13&quot;:34.86},{&quot;2026-08-14&quot;:34.86},{&quot;2026-08-15&quot;:34.86},{&quot;2026-08-16&quot;:34.86},{&quot;2026-08-17&quot;:34.86},{&quot;2026-08-18&quot;:34.79},{&quot;2026-08-19&quot;:34.79},{&quot;2026-08-20&quot;:34.79},{&quot;2026-08-21&quot;:34.79},{&quot;2026-08-22&quot;:34.79},{&quot;2026-08-23&quot;:34.79},{&quot;2026-08-24&quot;:34.94},{&quot;2026-08-25&quot;:34.94},{&quot;2026-08-26&quot;:35.31},{&quot;2026-08-27&quot;:35.31},{&quot;2026-08-28&quot;:35.31},{&quot;2026-08-29&quot;:35.31},{&quot;2026-08-30&quot;:35.31},{&quot;2026-08-31&quot;:35.31},{&quot;2026-09-01&quot;:35.31},{&quot;2026-09-02&quot;:35.31},{&quot;2026-09-03&quot;:35.31},{&quot;2026-09-04&quot;:35.31},{&quot;2026-09-05&quot;:35.31},{&quot;2026-09-06&quot;:35.31},{&quot;2026-09-07&quot;:35.31},{&quot;2026-09-08&quot;:35.31},{&quot;2026-09-09&quot;:35.31},{&quot;2026-09-10&quot;:35.31},{&quot;2026-09-11&quot;:35.31}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:29.91},{&quot;2026-06-11&quot;:29.84},{&quot;2026-06-12&quot;:30.13},{&quot;2026-06-13&quot;:30.13},{&quot;2026-06-14&quot;:30.13},{&quot;2026-06-15&quot;:30.7},{&quot;2026-06-16&quot;:30.7},{&quot;2026-06-17&quot;:30.44},{&quot;2026-06-18&quot;:30.36},{&quot;2026-06-19&quot;:30.25},{&quot;2026-06-20&quot;:30.2},{&quot;2026-06-21&quot;:29.77},{&quot;2026-06-22&quot;:29.77},{&quot;2026-06-23&quot;:29.57},{&quot;2026-06-24&quot;:29.76},{&quot;2026-06-25&quot;:29.76},{&quot;2026-06-26&quot;:30.06},{&quot;2026-06-27&quot;:29.97},{&quot;2026-06-28&quot;:30.75},{&quot;2026-06-29&quot;:30.69},{&quot;2026-06-30&quot;:30.43},{&quot;2026-07-01&quot;:29.94},{&quot;2026-07-02&quot;:30.01},{&quot;2026-07-03&quot;:30.43},{&quot;2026-07-04&quot;:30.43},{&quot;2026-07-05&quot;:30.43},{&quot;2026-07-06&quot;:30.43},{&quot;2026-07-07&quot;:30.43},{&quot;2026-07-08&quot;:30.61},{&quot;2026-07-09&quot;:30.56},{&quot;2026-07-10&quot;:30.56},{&quot;2026-07-11&quot;:30.97},{&quot;2026-07-12&quot;:31.21},{&quot;2026-07-13&quot;:31.77},{&quot;2026-07-14&quot;:31.77},{&quot;2026-07-15&quot;:32.46},{&quot;2026-07-16&quot;:31.57},{&quot;2026-07-17&quot;:31.34},{&quot;2026-07-18&quot;:31.34},{&quot;2026-07-19&quot;:31.34},{&quot;2026-07-20&quot;:31.55},{&quot;2026-07-21&quot;:31.65},{&quot;2026-07-23&quot;:31.43},{&quot;2026-07-25&quot;:31.34},{&quot;2026-07-26&quot;:31.34},{&quot;2026-07-27&quot;:31.34},{&quot;2026-07-29&quot;:31.34},{&quot;2026-07-30&quot;:31.33},{&quot;2026-07-31&quot;:31.74},{&quot;2026-08-01&quot;:31.74},{&quot;2026-08-02&quot;:31.63},{&quot;2026-08-03&quot;:31.63},{&quot;2026-08-04&quot;:31.22},{&quot;2026-08-05&quot;:31.47},{&quot;2026-08-07&quot;:31.69},{&quot;2026-08-08&quot;:31.22},{&quot;2026-08-09&quot;:31.26},{&quot;2026-08-10&quot;:30.91},{&quot;2026-08-11&quot;:31.26},{&quot;2026-08-12&quot;:31.31},{&quot;2026-08-13&quot;:31.31},{&quot;2026-08-14&quot;:31.33},{&quot;2026-08-15&quot;:30.89},{&quot;2026-08-16&quot;:31.37},{&quot;2026-08-17&quot;:31.37},{&quot;2026-08-18&quot;:31.37},{&quot;2026-08-19&quot;:31.09},{&quot;2026-08-20&quot;:31.09},{&quot;2026-08-21&quot;:31.22},{&quot;2026-08-22&quot;:31.2},{&quot;2026-08-23&quot;:31.38},{&quot;2026-08-24&quot;:31.56},{&quot;2026-08-25&quot;:31.56},{&quot;2026-08-26&quot;:31.96},{&quot;2026-08-27&quot;:31.96},{&quot;2026-08-28&quot;:31.96},{&quot;2026-08-29&quot;:31.96},{&quot;2026-08-30&quot;:32.06},{&quot;2026-08-31&quot;:31.89},{&quot;2026-09-01&quot;:31.89},{&quot;2026-09-02&quot;:31.83},{&quot;2026-09-03&quot;:31.76},{&quot;2026-09-04&quot;:31.72},{&quot;2026-09-05&quot;:31.71},{&quot;2026-09-06&quot;:31.71},{&quot;2026-09-07&quot;:31.6},{&quot;2026-09-08&quot;:31.45},{&quot;2026-09-09&quot;:31.45},{&quot;2026-09-10&quot;:31.45},{&quot;2026-09-11&quot;:31.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="74110"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-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">
            Delighted Halfling
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Delighted Halfling
        </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 — Halfling Citizen</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Delighted Halfling" src="https://cards.scryfall.io/large/front/7/1/71384418-173a-4f77-adab-56e52fa23692.jpg?1783916276" />
    </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">
                $30.61
              </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">
                $32.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">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.30</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:28.57},{&quot;2026-06-13&quot;:28.63},{&quot;2026-06-14&quot;:28.67},{&quot;2026-06-15&quot;:28.67},{&quot;2026-06-16&quot;:28.67},{&quot;2026-06-17&quot;:28.45},{&quot;2026-06-18&quot;:28.75},{&quot;2026-06-19&quot;:28.39},{&quot;2026-06-20&quot;:28.49},{&quot;2026-06-21&quot;:28.66},{&quot;2026-06-22&quot;:28.66},{&quot;2026-06-23&quot;:28.66},{&quot;2026-06-24&quot;:28.66},{&quot;2026-06-25&quot;:28.66},{&quot;2026-06-26&quot;:28.66},{&quot;2026-06-27&quot;:28.66},{&quot;2026-06-28&quot;:28.66},{&quot;2026-06-29&quot;:28.66},{&quot;2026-06-30&quot;:29.02},{&quot;2026-07-01&quot;:29.17},{&quot;2026-07-02&quot;:29.6},{&quot;2026-07-03&quot;:29.86},{&quot;2026-07-04&quot;:29.82},{&quot;2026-07-05&quot;:29.82},{&quot;2026-07-06&quot;:30.58},{&quot;2026-07-07&quot;:31.3},{&quot;2026-07-08&quot;:31.3},{&quot;2026-07-09&quot;:31.91},{&quot;2026-07-10&quot;:31.79},{&quot;2026-07-11&quot;:31.79},{&quot;2026-07-12&quot;:31.45},{&quot;2026-07-13&quot;:31.51},{&quot;2026-07-14&quot;:31.74},{&quot;2026-07-15&quot;:31.74},{&quot;2026-07-16&quot;:31.97},{&quot;2026-07-17&quot;:31.97},{&quot;2026-07-18&quot;:31.97},{&quot;2026-07-19&quot;:32.39},{&quot;2026-07-20&quot;:31.76},{&quot;2026-07-21&quot;:31.96},{&quot;2026-07-23&quot;:32.11},{&quot;2026-07-24&quot;:32.11},{&quot;2026-07-25&quot;:32.15},{&quot;2026-07-26&quot;:32.03},{&quot;2026-07-27&quot;:32.03},{&quot;2026-07-28&quot;:32.19},{&quot;2026-07-29&quot;:32.19},{&quot;2026-07-30&quot;:32.19},{&quot;2026-07-31&quot;:32.05},{&quot;2026-08-01&quot;:31.85},{&quot;2026-08-02&quot;:32.19},{&quot;2026-08-03&quot;:32.19},{&quot;2026-08-04&quot;:32.19},{&quot;2026-08-05&quot;:31.79},{&quot;2026-08-07&quot;:31.2},{&quot;2026-08-08&quot;:31.2},{&quot;2026-08-09&quot;:31.2},{&quot;2026-08-10&quot;:31.2},{&quot;2026-08-11&quot;:31.2},{&quot;2026-08-12&quot;:31.2},{&quot;2026-08-13&quot;:31.2},{&quot;2026-08-14&quot;:31.16},{&quot;2026-08-15&quot;:31.07},{&quot;2026-08-16&quot;:31.15},{&quot;2026-08-17&quot;:31.15},{&quot;2026-08-18&quot;:31.15},{&quot;2026-08-19&quot;:31.24},{&quot;2026-08-20&quot;:31.24},{&quot;2026-08-21&quot;:32.01},{&quot;2026-08-22&quot;:32.01},{&quot;2026-08-23&quot;:31.96},{&quot;2026-08-24&quot;:32.0},{&quot;2026-08-25&quot;:32.0},{&quot;2026-08-26&quot;:32.0},{&quot;2026-08-27&quot;:32.0},{&quot;2026-08-28&quot;:32.07},{&quot;2026-08-29&quot;:32.07},{&quot;2026-08-30&quot;:32.07},{&quot;2026-08-31&quot;:32.07},{&quot;2026-09-01&quot;:32.07},{&quot;2026-09-02&quot;:32.07},{&quot;2026-09-03&quot;:32.07},{&quot;2026-09-04&quot;:32.07},{&quot;2026-09-05&quot;:32.15},{&quot;2026-09-06&quot;:32.38},{&quot;2026-09-07&quot;:32.38},{&quot;2026-09-08&quot;:32.46},{&quot;2026-09-09&quot;:32.24},{&quot;2026-09-10&quot;:32.24},{&quot;2026-09-11&quot;:32.24}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:27.37},{&quot;2026-06-13&quot;:27.16},{&quot;2026-06-14&quot;:27.19},{&quot;2026-06-15&quot;:27.17},{&quot;2026-06-16&quot;:26.23},{&quot;2026-06-17&quot;:25.97},{&quot;2026-06-18&quot;:25.55},{&quot;2026-06-19&quot;:25.2},{&quot;2026-06-20&quot;:25.01},{&quot;2026-06-21&quot;:24.81},{&quot;2026-06-22&quot;:24.16},{&quot;2026-06-23&quot;:24.82},{&quot;2026-06-24&quot;:26.26},{&quot;2026-06-25&quot;:25.89},{&quot;2026-06-26&quot;:26.01},{&quot;2026-06-27&quot;:26.41},{&quot;2026-06-28&quot;:27.85},{&quot;2026-06-29&quot;:28.24},{&quot;2026-06-30&quot;:29.14},{&quot;2026-07-01&quot;:28.87},{&quot;2026-07-02&quot;:27.99},{&quot;2026-07-03&quot;:27.41},{&quot;2026-07-04&quot;:27.42},{&quot;2026-07-05&quot;:26.63},{&quot;2026-07-06&quot;:27.57},{&quot;2026-07-07&quot;:28.01},{&quot;2026-07-08&quot;:27.88},{&quot;2026-07-09&quot;:27.41},{&quot;2026-07-10&quot;:27.18},{&quot;2026-07-11&quot;:26.88},{&quot;2026-07-12&quot;:26.56},{&quot;2026-07-13&quot;:26.71},{&quot;2026-07-14&quot;:27.32},{&quot;2026-07-15&quot;:27.22},{&quot;2026-07-16&quot;:27.52},{&quot;2026-07-17&quot;:27.93},{&quot;2026-07-18&quot;:28.99},{&quot;2026-07-19&quot;:27.97},{&quot;2026-07-20&quot;:30.29},{&quot;2026-07-21&quot;:30.55},{&quot;2026-07-23&quot;:29.48},{&quot;2026-07-24&quot;:28.6},{&quot;2026-07-25&quot;:27.46},{&quot;2026-07-26&quot;:28.3},{&quot;2026-07-27&quot;:28.4},{&quot;2026-07-28&quot;:29.32},{&quot;2026-07-29&quot;:29.21},{&quot;2026-07-30&quot;:30.15},{&quot;2026-07-31&quot;:29.72},{&quot;2026-08-01&quot;:29.56},{&quot;2026-08-02&quot;:30.28},{&quot;2026-08-03&quot;:30.05},{&quot;2026-08-04&quot;:30.24},{&quot;2026-08-05&quot;:29.87},{&quot;2026-08-07&quot;:29.76},{&quot;2026-08-08&quot;:29.15},{&quot;2026-08-09&quot;:29.35},{&quot;2026-08-10&quot;:28.69},{&quot;2026-08-11&quot;:27.36},{&quot;2026-08-12&quot;:26.82},{&quot;2026-08-13&quot;:27.34},{&quot;2026-08-14&quot;:28.08},{&quot;2026-08-15&quot;:28.01},{&quot;2026-08-16&quot;:27.68},{&quot;2026-08-17&quot;:27.99},{&quot;2026-08-18&quot;:29.39},{&quot;2026-08-19&quot;:28.88},{&quot;2026-08-20&quot;:28.88},{&quot;2026-08-21&quot;:28.58},{&quot;2026-08-22&quot;:29.72},{&quot;2026-08-23&quot;:30.8},{&quot;2026-08-24&quot;:30.94},{&quot;2026-08-25&quot;:30.15},{&quot;2026-08-26&quot;:29.32},{&quot;2026-08-27&quot;:28.42},{&quot;2026-08-28&quot;:26.9},{&quot;2026-08-29&quot;:26.9},{&quot;2026-08-30&quot;:29.47},{&quot;2026-08-31&quot;:30.0},{&quot;2026-09-01&quot;:30.7},{&quot;2026-09-02&quot;:30.39},{&quot;2026-09-03&quot;:29.9},{&quot;2026-09-04&quot;:29.46},{&quot;2026-09-05&quot;:29.63},{&quot;2026-09-06&quot;:30.62},{&quot;2026-09-07&quot;:30.55},{&quot;2026-09-08&quot;:30.07},{&quot;2026-09-09&quot;:30.28},{&quot;2026-09-10&quot;:30.58},{&quot;2026-09-11&quot;:30.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="38138"
  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-jou 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">
            Dictate of Erebos
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $15.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="Dictate of Erebos" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/f/9f06db70-95f9-41eb-8e5f-8bc56fd34c09.jpg?1783939437" />

        <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">
            Dictate of Erebos
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dictate of Erebos" src="https://cards.scryfall.io/large/front/9/f/9f06db70-95f9-41eb-8e5f-8bc56fd34c09.jpg?1783939437" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:30.25},{&quot;2026-06-12&quot;:30.3},{&quot;2026-06-13&quot;:30.3},{&quot;2026-06-14&quot;:30.3},{&quot;2026-06-15&quot;:30.3},{&quot;2026-06-16&quot;:30.3},{&quot;2026-06-17&quot;:30.3},{&quot;2026-06-18&quot;:30.3},{&quot;2026-06-19&quot;:30.32},{&quot;2026-06-20&quot;:30.32},{&quot;2026-06-21&quot;:30.32},{&quot;2026-06-22&quot;:30.32},{&quot;2026-06-23&quot;:30.32},{&quot;2026-06-24&quot;:30.32},{&quot;2026-06-25&quot;:30.32},{&quot;2026-06-26&quot;:30.32},{&quot;2026-06-27&quot;:30.32},{&quot;2026-06-28&quot;:30.32},{&quot;2026-06-29&quot;:30.32},{&quot;2026-06-30&quot;:30.32},{&quot;2026-07-01&quot;:30.32},{&quot;2026-07-02&quot;:30.32},{&quot;2026-07-03&quot;:30.32},{&quot;2026-07-04&quot;:30.32},{&quot;2026-07-05&quot;:30.32},{&quot;2026-07-06&quot;:30.32},{&quot;2026-07-07&quot;:30.32},{&quot;2026-07-08&quot;:30.32},{&quot;2026-07-09&quot;:30.32},{&quot;2026-07-10&quot;:30.32},{&quot;2026-07-11&quot;:30.32},{&quot;2026-07-12&quot;:30.32},{&quot;2026-07-13&quot;:30.32},{&quot;2026-07-14&quot;:30.3},{&quot;2026-07-15&quot;:30.3},{&quot;2026-07-16&quot;:30.3},{&quot;2026-07-17&quot;:30.3},{&quot;2026-07-18&quot;:30.3},{&quot;2026-07-19&quot;:30.3},{&quot;2026-07-20&quot;:30.3},{&quot;2026-07-21&quot;:30.3},{&quot;2026-07-23&quot;:30.33},{&quot;2026-07-25&quot;:30.33},{&quot;2026-07-26&quot;:30.33},{&quot;2026-07-27&quot;:30.33},{&quot;2026-07-28&quot;:30.33},{&quot;2026-07-29&quot;:30.56},{&quot;2026-07-30&quot;:30.56},{&quot;2026-07-31&quot;:30.46},{&quot;2026-08-01&quot;:30.46},{&quot;2026-08-02&quot;:30.56},{&quot;2026-08-03&quot;:30.56},{&quot;2026-08-04&quot;:30.2},{&quot;2026-08-05&quot;:30.2},{&quot;2026-08-07&quot;:30.2},{&quot;2026-08-08&quot;:30.2},{&quot;2026-08-09&quot;:30.2},{&quot;2026-08-10&quot;:30.21},{&quot;2026-08-11&quot;:30.21},{&quot;2026-08-12&quot;:30.21},{&quot;2026-08-13&quot;:30.21},{&quot;2026-08-14&quot;:30.21},{&quot;2026-08-15&quot;:30.22},{&quot;2026-08-16&quot;:30.23},{&quot;2026-08-17&quot;:30.23},{&quot;2026-08-18&quot;:30.23},{&quot;2026-08-19&quot;:30.23},{&quot;2026-08-20&quot;:30.23},{&quot;2026-08-21&quot;:30.23},{&quot;2026-08-22&quot;:30.23},{&quot;2026-08-23&quot;:30.23},{&quot;2026-08-24&quot;:30.23},{&quot;2026-08-25&quot;:30.23},{&quot;2026-08-26&quot;:30.23},{&quot;2026-08-27&quot;:30.23},{&quot;2026-08-28&quot;:30.23},{&quot;2026-08-29&quot;:30.23},{&quot;2026-08-30&quot;:30.23},{&quot;2026-08-31&quot;:30.23},{&quot;2026-09-01&quot;:30.23},{&quot;2026-09-02&quot;:30.02},{&quot;2026-09-03&quot;:30.02},{&quot;2026-09-04&quot;:30.02},{&quot;2026-09-05&quot;:30.02},{&quot;2026-09-06&quot;:30.02},{&quot;2026-09-07&quot;:30.02},{&quot;2026-09-08&quot;:30.02},{&quot;2026-09-09&quot;:30.02},{&quot;2026-09-10&quot;:30.02},{&quot;2026-09-11&quot;:30.02}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:19.49},{&quot;2026-06-12&quot;:19.1},{&quot;2026-06-13&quot;:18.73},{&quot;2026-06-14&quot;:18.72},{&quot;2026-06-15&quot;:18.86},{&quot;2026-06-16&quot;:19.32},{&quot;2026-06-17&quot;:19.23},{&quot;2026-06-18&quot;:19.43},{&quot;2026-06-19&quot;:18.99},{&quot;2026-06-20&quot;:18.08},{&quot;2026-06-21&quot;:17.96},{&quot;2026-06-22&quot;:17.64},{&quot;2026-06-23&quot;:17.7},{&quot;2026-06-24&quot;:17.61},{&quot;2026-06-25&quot;:17.61},{&quot;2026-06-26&quot;:17.55},{&quot;2026-06-27&quot;:17.55},{&quot;2026-06-28&quot;:17.71},{&quot;2026-06-29&quot;:17.33},{&quot;2026-06-30&quot;:16.98},{&quot;2026-07-01&quot;:16.76},{&quot;2026-07-02&quot;:16.76},{&quot;2026-07-03&quot;:16.34},{&quot;2026-07-04&quot;:16.46},{&quot;2026-07-05&quot;:16.93},{&quot;2026-07-06&quot;:16.87},{&quot;2026-07-07&quot;:17.06},{&quot;2026-07-08&quot;:17.11},{&quot;2026-07-09&quot;:17.49},{&quot;2026-07-10&quot;:17.33},{&quot;2026-07-11&quot;:17.23},{&quot;2026-07-12&quot;:17.11},{&quot;2026-07-13&quot;:16.86},{&quot;2026-07-14&quot;:16.74},{&quot;2026-07-15&quot;:16.9},{&quot;2026-07-16&quot;:16.91},{&quot;2026-07-17&quot;:16.82},{&quot;2026-07-18&quot;:16.41},{&quot;2026-07-19&quot;:16.41},{&quot;2026-07-20&quot;:16.96},{&quot;2026-07-21&quot;:17.5},{&quot;2026-07-23&quot;:18.08},{&quot;2026-07-25&quot;:18.2},{&quot;2026-07-26&quot;:18.25},{&quot;2026-07-27&quot;:18.61},{&quot;2026-07-28&quot;:18.33},{&quot;2026-07-29&quot;:18.33},{&quot;2026-07-30&quot;:18.05},{&quot;2026-07-31&quot;:17.8},{&quot;2026-08-01&quot;:17.8},{&quot;2026-08-02&quot;:17.93},{&quot;2026-08-03&quot;:17.41},{&quot;2026-08-04&quot;:17.41},{&quot;2026-08-05&quot;:17.41},{&quot;2026-08-07&quot;:17.08},{&quot;2026-08-08&quot;:17.03},{&quot;2026-08-09&quot;:17.1},{&quot;2026-08-10&quot;:17.13},{&quot;2026-08-11&quot;:17.05},{&quot;2026-08-12&quot;:16.89},{&quot;2026-08-13&quot;:16.74},{&quot;2026-08-14&quot;:16.74},{&quot;2026-08-15&quot;:16.38},{&quot;2026-08-16&quot;:16.53},{&quot;2026-08-17&quot;:16.4},{&quot;2026-08-18&quot;:16.32},{&quot;2026-08-19&quot;:16.33},{&quot;2026-08-20&quot;:16.33},{&quot;2026-08-21&quot;:16.6},{&quot;2026-08-22&quot;:16.77},{&quot;2026-08-23&quot;:17.95},{&quot;2026-08-24&quot;:18.38},{&quot;2026-08-25&quot;:18.38},{&quot;2026-08-26&quot;:19.13},{&quot;2026-08-27&quot;:19.24},{&quot;2026-08-28&quot;:19.93},{&quot;2026-08-29&quot;:19.93},{&quot;2026-08-30&quot;:19.61},{&quot;2026-08-31&quot;:19.0},{&quot;2026-09-01&quot;:19.0},{&quot;2026-09-02&quot;:18.68},{&quot;2026-09-03&quot;:18.68},{&quot;2026-09-04&quot;:18.32},{&quot;2026-09-05&quot;:18.22},{&quot;2026-09-06&quot;:17.91},{&quot;2026-09-07&quot;:17.67},{&quot;2026-09-08&quot;:17.73},{&quot;2026-09-09&quot;:17.01},{&quot;2026-09-10&quot;:16.18},{&quot;2026-09-11&quot;:15.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="79698"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special 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">
            Yawgmoth, Thran Physician
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $29.22
          </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="Yawgmoth, Thran Physician" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/1/81564970-23ad-41a3-b5e0-21bdf13f6248.jpg?1783927727" />

        <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">
            Yawgmoth, Thran Physician
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Yawgmoth, Thran Physician" src="https://cards.scryfall.io/large/front/8/1/81564970-23ad-41a3-b5e0-21bdf13f6248.jpg?1783927727" />
    </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">
                $29.22
              </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">
                $101.60
              </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">$15.00</span>
              <span class="text-xs text-grey-text">Credit: $19.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:85.44},{&quot;2026-06-11&quot;:85.44},{&quot;2026-06-12&quot;:85.44},{&quot;2026-06-13&quot;:85.44},{&quot;2026-06-14&quot;:85.44},{&quot;2026-06-15&quot;:85.44},{&quot;2026-06-16&quot;:85.67},{&quot;2026-06-17&quot;:85.67},{&quot;2026-06-18&quot;:85.67},{&quot;2026-06-19&quot;:85.67},{&quot;2026-06-20&quot;:85.67},{&quot;2026-06-21&quot;:86.89},{&quot;2026-06-22&quot;:86.89},{&quot;2026-06-23&quot;:86.89},{&quot;2026-06-24&quot;:88.18},{&quot;2026-06-25&quot;:88.18},{&quot;2026-06-26&quot;:88.18},{&quot;2026-06-27&quot;:88.18},{&quot;2026-06-28&quot;:88.18},{&quot;2026-06-29&quot;:88.18},{&quot;2026-06-30&quot;:88.18},{&quot;2026-07-01&quot;:88.18},{&quot;2026-07-02&quot;:88.18},{&quot;2026-07-03&quot;:89.71},{&quot;2026-07-04&quot;:90.91},{&quot;2026-07-05&quot;:90.91},{&quot;2026-07-06&quot;:90.91},{&quot;2026-07-07&quot;:90.73},{&quot;2026-07-08&quot;:90.73},{&quot;2026-07-09&quot;:90.73},{&quot;2026-07-10&quot;:90.73},{&quot;2026-07-11&quot;:90.73},{&quot;2026-07-12&quot;:90.73},{&quot;2026-07-13&quot;:90.73},{&quot;2026-07-14&quot;:90.73},{&quot;2026-07-15&quot;:90.73},{&quot;2026-07-16&quot;:90.73},{&quot;2026-07-17&quot;:90.73},{&quot;2026-07-18&quot;:90.73},{&quot;2026-07-19&quot;:89.96},{&quot;2026-07-20&quot;:89.96},{&quot;2026-07-21&quot;:89.96},{&quot;2026-07-23&quot;:91.37},{&quot;2026-07-25&quot;:91.37},{&quot;2026-07-26&quot;:92.95},{&quot;2026-07-27&quot;:92.95},{&quot;2026-07-29&quot;:92.95},{&quot;2026-07-30&quot;:92.95},{&quot;2026-07-31&quot;:92.19},{&quot;2026-08-01&quot;:92.19},{&quot;2026-08-02&quot;:93.26},{&quot;2026-08-03&quot;:93.26},{&quot;2026-08-04&quot;:93.07},{&quot;2026-08-05&quot;:93.07},{&quot;2026-08-07&quot;:94.41},{&quot;2026-08-08&quot;:94.7},{&quot;2026-08-09&quot;:94.7},{&quot;2026-08-10&quot;:94.7},{&quot;2026-08-11&quot;:94.7},{&quot;2026-08-12&quot;:96.11},{&quot;2026-08-13&quot;:97.98},{&quot;2026-08-14&quot;:97.98},{&quot;2026-08-15&quot;:97.98},{&quot;2026-08-16&quot;:97.98},{&quot;2026-08-17&quot;:97.98},{&quot;2026-08-18&quot;:97.98},{&quot;2026-08-19&quot;:97.98},{&quot;2026-08-20&quot;:97.98},{&quot;2026-08-21&quot;:99.82},{&quot;2026-08-22&quot;:99.82},{&quot;2026-08-23&quot;:99.82},{&quot;2026-08-24&quot;:99.82},{&quot;2026-08-25&quot;:99.82},{&quot;2026-08-26&quot;:99.82},{&quot;2026-08-27&quot;:99.82},{&quot;2026-08-28&quot;:99.82},{&quot;2026-08-29&quot;:99.82},{&quot;2026-08-30&quot;:99.82},{&quot;2026-08-31&quot;:99.82},{&quot;2026-09-01&quot;:99.82},{&quot;2026-09-02&quot;:99.82},{&quot;2026-09-03&quot;:99.82},{&quot;2026-09-04&quot;:99.82},{&quot;2026-09-05&quot;:99.82},{&quot;2026-09-06&quot;:99.82},{&quot;2026-09-07&quot;:99.82},{&quot;2026-09-08&quot;:101.6},{&quot;2026-09-09&quot;:101.6},{&quot;2026-09-10&quot;:101.6},{&quot;2026-09-11&quot;:101.6}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:35.45},{&quot;2026-06-11&quot;:35.42},{&quot;2026-06-12&quot;:35.37},{&quot;2026-06-13&quot;:35.37},{&quot;2026-06-14&quot;:35.37},{&quot;2026-06-15&quot;:35.22},{&quot;2026-06-16&quot;:35.26},{&quot;2026-06-17&quot;:35.26},{&quot;2026-06-18&quot;:35.13},{&quot;2026-06-19&quot;:35.25},{&quot;2026-06-20&quot;:35.19},{&quot;2026-06-21&quot;:35.19},{&quot;2026-06-22&quot;:35.19},{&quot;2026-06-23&quot;:35.19},{&quot;2026-06-24&quot;:35.03},{&quot;2026-06-25&quot;:35.03},{&quot;2026-06-26&quot;:35.0},{&quot;2026-06-27&quot;:34.81},{&quot;2026-06-28&quot;:33.3},{&quot;2026-06-29&quot;:34.69},{&quot;2026-06-30&quot;:34.69},{&quot;2026-07-01&quot;:34.81},{&quot;2026-07-02&quot;:34.63},{&quot;2026-07-03&quot;:34.37},{&quot;2026-07-04&quot;:34.37},{&quot;2026-07-05&quot;:34.1},{&quot;2026-07-06&quot;:34.1},{&quot;2026-07-07&quot;:34.13},{&quot;2026-07-08&quot;:34.13},{&quot;2026-07-09&quot;:34.14},{&quot;2026-07-10&quot;:34.14},{&quot;2026-07-11&quot;:34.14},{&quot;2026-07-12&quot;:34.14},{&quot;2026-07-13&quot;:34.14},{&quot;2026-07-14&quot;:34.14},{&quot;2026-07-15&quot;:34.14},{&quot;2026-07-16&quot;:34.14},{&quot;2026-07-17&quot;:34.58},{&quot;2026-07-18&quot;:34.51},{&quot;2026-07-19&quot;:34.48},{&quot;2026-07-20&quot;:34.48},{&quot;2026-07-21&quot;:34.48},{&quot;2026-07-23&quot;:34.48},{&quot;2026-07-25&quot;:34.48},{&quot;2026-07-26&quot;:33.97},{&quot;2026-07-27&quot;:33.97},{&quot;2026-07-29&quot;:32.06},{&quot;2026-07-30&quot;:31.65},{&quot;2026-07-31&quot;:31.49},{&quot;2026-08-01&quot;:31.49},{&quot;2026-08-02&quot;:31.49},{&quot;2026-08-03&quot;:31.49},{&quot;2026-08-04&quot;:31.49},{&quot;2026-08-05&quot;:31.49},{&quot;2026-08-07&quot;:31.24},{&quot;2026-08-08&quot;:30.94},{&quot;2026-08-09&quot;:30.94},{&quot;2026-08-10&quot;:30.62},{&quot;2026-08-11&quot;:30.62},{&quot;2026-08-12&quot;:30.39},{&quot;2026-08-13&quot;:30.33},{&quot;2026-08-14&quot;:30.33},{&quot;2026-08-15&quot;:30.33},{&quot;2026-08-16&quot;:30.06},{&quot;2026-08-17&quot;:29.68},{&quot;2026-08-18&quot;:29.3},{&quot;2026-08-19&quot;:29.09},{&quot;2026-08-20&quot;:29.09},{&quot;2026-08-21&quot;:29.09},{&quot;2026-08-22&quot;:28.92},{&quot;2026-08-23&quot;:28.92},{&quot;2026-08-24&quot;:28.95},{&quot;2026-08-25&quot;:28.95},{&quot;2026-08-26&quot;:29.25},{&quot;2026-08-27&quot;:29.48},{&quot;2026-08-28&quot;:29.48},{&quot;2026-08-29&quot;:29.48},{&quot;2026-08-30&quot;:29.77},{&quot;2026-08-31&quot;:29.63},{&quot;2026-09-01&quot;:29.63},{&quot;2026-09-02&quot;:29.63},{&quot;2026-09-03&quot;:29.63},{&quot;2026-09-04&quot;:28.42},{&quot;2026-09-05&quot;:28.42},{&quot;2026-09-06&quot;:28.4},{&quot;2026-09-07&quot;:28.41},{&quot;2026-09-08&quot;:29.48},{&quot;2026-09-09&quot;:29.39},{&quot;2026-09-10&quot;:29.22},{&quot;2026-09-11&quot;:29.22}]}"
        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="75228"
  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-lcc 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">
            Charismatic Conqueror
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Vampire Soldier
      </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">
            $28.55
          </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="Charismatic Conqueror" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aa65e964-8ca5-4e56-b770-b50cddbc7365.jpg?1783913923" />

        <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">
            Charismatic Conqueror
        </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 — Vampire Soldier</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Charismatic Conqueror" src="https://cards.scryfall.io/large/front/a/a/aa65e964-8ca5-4e56-b770-b50cddbc7365.jpg?1783913923" />
    </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">
                $28.55
              </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">$20.50</span>
              <span class="text-xs text-grey-text">Credit: $26.65</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:27.68},{&quot;2026-06-11&quot;:27.68},{&quot;2026-06-12&quot;:28.47},{&quot;2026-06-13&quot;:28.4},{&quot;2026-06-14&quot;:28.07},{&quot;2026-06-15&quot;:28.07},{&quot;2026-06-16&quot;:28.5},{&quot;2026-06-17&quot;:28.54},{&quot;2026-06-18&quot;:28.39},{&quot;2026-06-19&quot;:28.53},{&quot;2026-06-20&quot;:28.53},{&quot;2026-06-21&quot;:28.53},{&quot;2026-06-22&quot;:28.52},{&quot;2026-06-23&quot;:28.54},{&quot;2026-06-24&quot;:28.65},{&quot;2026-06-25&quot;:28.62},{&quot;2026-06-26&quot;:28.62},{&quot;2026-06-27&quot;:28.62},{&quot;2026-06-28&quot;:28.62},{&quot;2026-06-29&quot;:28.6},{&quot;2026-06-30&quot;:28.61},{&quot;2026-07-01&quot;:28.65},{&quot;2026-07-02&quot;:28.49},{&quot;2026-07-03&quot;:28.44},{&quot;2026-07-04&quot;:28.45},{&quot;2026-07-05&quot;:28.44},{&quot;2026-07-06&quot;:28.01},{&quot;2026-07-07&quot;:27.61},{&quot;2026-07-08&quot;:27.92},{&quot;2026-07-09&quot;:27.92},{&quot;2026-07-10&quot;:27.62},{&quot;2026-07-11&quot;:27.62},{&quot;2026-07-12&quot;:27.66},{&quot;2026-07-13&quot;:27.66},{&quot;2026-07-14&quot;:27.66},{&quot;2026-07-15&quot;:27.86},{&quot;2026-07-16&quot;:27.86},{&quot;2026-07-17&quot;:27.39},{&quot;2026-07-18&quot;:27.39},{&quot;2026-07-19&quot;:27.32},{&quot;2026-07-20&quot;:27.32},{&quot;2026-07-21&quot;:27.32},{&quot;2026-07-23&quot;:27.32},{&quot;2026-07-25&quot;:27.32},{&quot;2026-07-26&quot;:27.32},{&quot;2026-07-27&quot;:27.37},{&quot;2026-07-29&quot;:27.18},{&quot;2026-07-30&quot;:27.19},{&quot;2026-07-31&quot;:27.19},{&quot;2026-08-01&quot;:27.19},{&quot;2026-08-02&quot;:27.19},{&quot;2026-08-03&quot;:27.36},{&quot;2026-08-04&quot;:27.3},{&quot;2026-08-05&quot;:27.26},{&quot;2026-08-07&quot;:27.5},{&quot;2026-08-08&quot;:27.66},{&quot;2026-08-09&quot;:27.77},{&quot;2026-08-10&quot;:27.71},{&quot;2026-08-11&quot;:27.71},{&quot;2026-08-12&quot;:27.71},{&quot;2026-08-13&quot;:27.66},{&quot;2026-08-14&quot;:27.63},{&quot;2026-08-15&quot;:27.62},{&quot;2026-08-16&quot;:27.33},{&quot;2026-08-17&quot;:27.34},{&quot;2026-08-18&quot;:27.33},{&quot;2026-08-19&quot;:27.33},{&quot;2026-08-20&quot;:27.33},{&quot;2026-08-21&quot;:27.5},{&quot;2026-08-22&quot;:27.41},{&quot;2026-08-23&quot;:27.42},{&quot;2026-08-24&quot;:27.45},{&quot;2026-08-25&quot;:27.45},{&quot;2026-08-26&quot;:27.4},{&quot;2026-08-27&quot;:27.11},{&quot;2026-08-28&quot;:27.17},{&quot;2026-08-29&quot;:27.17},{&quot;2026-08-30&quot;:27.45},{&quot;2026-08-31&quot;:27.8},{&quot;2026-09-01&quot;:27.8},{&quot;2026-09-02&quot;:27.88},{&quot;2026-09-03&quot;:27.88},{&quot;2026-09-04&quot;:28.08},{&quot;2026-09-05&quot;:28.27},{&quot;2026-09-06&quot;:28.48},{&quot;2026-09-07&quot;:28.5},{&quot;2026-09-08&quot;:28.5},{&quot;2026-09-09&quot;:28.5},{&quot;2026-09-10&quot;:28.56},{&quot;2026-09-11&quot;:28.55}]}"
        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="19605"
  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-dmc 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">
            The Reaver Cleaver
        </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">
            2 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $28.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="The Reaver Cleaver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a18cf0ef-1720-4bb1-9af2-8d59c2b553f9.jpg?1783921443" />

        <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">
            The Reaver Cleaver
        </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The Reaver Cleaver" src="https://cards.scryfall.io/large/front/a/1/a18cf0ef-1720-4bb1-9af2-8d59c2b553f9.jpg?1783921443" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:15.67},{&quot;2026-06-14&quot;:16.26},{&quot;2026-06-15&quot;:16.34},{&quot;2026-06-16&quot;:16.3},{&quot;2026-06-17&quot;:16.39},{&quot;2026-06-18&quot;:16.43},{&quot;2026-06-19&quot;:16.43},{&quot;2026-06-20&quot;:16.48},{&quot;2026-06-21&quot;:16.48},{&quot;2026-06-22&quot;:16.48},{&quot;2026-06-23&quot;:16.48},{&quot;2026-06-24&quot;:16.42},{&quot;2026-06-25&quot;:16.42},{&quot;2026-06-26&quot;:15.88},{&quot;2026-06-27&quot;:16.46},{&quot;2026-06-28&quot;:16.46},{&quot;2026-06-29&quot;:16.48},{&quot;2026-06-30&quot;:16.48},{&quot;2026-07-01&quot;:16.57},{&quot;2026-07-02&quot;:16.71},{&quot;2026-07-03&quot;:16.71},{&quot;2026-07-04&quot;:16.25},{&quot;2026-07-05&quot;:16.04},{&quot;2026-07-06&quot;:16.16},{&quot;2026-07-07&quot;:16.23},{&quot;2026-07-08&quot;:16.23},{&quot;2026-07-09&quot;:16.24},{&quot;2026-07-10&quot;:16.28},{&quot;2026-07-11&quot;:16.27},{&quot;2026-07-12&quot;:15.69},{&quot;2026-07-13&quot;:15.74},{&quot;2026-07-14&quot;:15.88},{&quot;2026-07-15&quot;:15.88},{&quot;2026-07-16&quot;:15.83},{&quot;2026-07-17&quot;:16.04},{&quot;2026-07-18&quot;:16.1},{&quot;2026-07-19&quot;:16.1},{&quot;2026-07-20&quot;:16.22},{&quot;2026-07-21&quot;:16.53},{&quot;2026-07-22&quot;:16.82},{&quot;2026-07-23&quot;:16.96},{&quot;2026-07-24&quot;:17.06},{&quot;2026-07-25&quot;:17.06},{&quot;2026-07-26&quot;:17.18},{&quot;2026-07-27&quot;:17.04},{&quot;2026-07-28&quot;:17.35},{&quot;2026-07-29&quot;:17.35},{&quot;2026-07-30&quot;:17.35},{&quot;2026-07-31&quot;:17.52},{&quot;2026-08-01&quot;:17.41},{&quot;2026-08-02&quot;:17.41},{&quot;2026-08-03&quot;:17.53},{&quot;2026-08-04&quot;:18.71},{&quot;2026-08-05&quot;:19.31},{&quot;2026-08-07&quot;:19.56},{&quot;2026-08-08&quot;:19.75},{&quot;2026-08-09&quot;:19.61},{&quot;2026-08-10&quot;:19.67},{&quot;2026-08-11&quot;:19.35},{&quot;2026-08-12&quot;:19.61},{&quot;2026-08-13&quot;:19.61},{&quot;2026-08-14&quot;:19.61},{&quot;2026-08-15&quot;:19.61},{&quot;2026-08-16&quot;:19.92},{&quot;2026-08-17&quot;:20.17},{&quot;2026-08-18&quot;:21.32},{&quot;2026-08-19&quot;:22.52},{&quot;2026-08-20&quot;:22.58},{&quot;2026-08-21&quot;:22.56},{&quot;2026-08-22&quot;:22.56},{&quot;2026-08-23&quot;:22.56},{&quot;2026-08-24&quot;:22.76},{&quot;2026-08-25&quot;:22.79},{&quot;2026-08-26&quot;:23.06},{&quot;2026-08-27&quot;:23.22},{&quot;2026-08-28&quot;:23.22},{&quot;2026-08-29&quot;:23.22},{&quot;2026-08-30&quot;:24.58},{&quot;2026-08-31&quot;:25.07},{&quot;2026-09-01&quot;:25.07},{&quot;2026-09-02&quot;:25.07},{&quot;2026-09-03&quot;:25.07},{&quot;2026-09-04&quot;:25.07},{&quot;2026-09-05&quot;:25.81},{&quot;2026-09-06&quot;:26.92},{&quot;2026-09-07&quot;:27.32},{&quot;2026-09-08&quot;:27.32},{&quot;2026-09-09&quot;:27.72},{&quot;2026-09-10&quot;:28.29},{&quot;2026-09-11&quot;:28.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="46564"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Etali, Primal Conqueror // Etali, Primal Sickness" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/e/3e97c609-3932-4428-96d4-1c97e61f0abb.jpg?1783916922" />

        <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">
            Etali, Primal Conqueror 
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Etali, Primal Conqueror // Etali, Primal Sickness" src="https://cards.scryfall.io/large/front/3/e/3e97c609-3932-4428-96d4-1c97e61f0abb.jpg?1783916922" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Etali, Primal Conqueror // Etali, Primal Sickness" src="https://cards.scryfall.io/large/back/3/e/3e97c609-3932-4428-96d4-1c97e61f0abb.jpg?1783916922" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </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">
                $26.06
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:33.67},{&quot;2026-06-14&quot;:33.9},{&quot;2026-06-15&quot;:33.8},{&quot;2026-06-16&quot;:33.8},{&quot;2026-06-17&quot;:33.72},{&quot;2026-06-18&quot;:33.72},{&quot;2026-06-19&quot;:33.72},{&quot;2026-06-20&quot;:33.72},{&quot;2026-06-21&quot;:33.72},{&quot;2026-06-22&quot;:33.72},{&quot;2026-06-23&quot;:33.57},{&quot;2026-06-24&quot;:33.57},{&quot;2026-06-25&quot;:33.57},{&quot;2026-06-26&quot;:33.57},{&quot;2026-06-27&quot;:33.56},{&quot;2026-06-28&quot;:33.44},{&quot;2026-06-29&quot;:33.44},{&quot;2026-06-30&quot;:33.44},{&quot;2026-07-01&quot;:33.6},{&quot;2026-07-02&quot;:33.6},{&quot;2026-07-03&quot;:33.76},{&quot;2026-07-04&quot;:33.76},{&quot;2026-07-05&quot;:33.72},{&quot;2026-07-06&quot;:33.64},{&quot;2026-07-07&quot;:33.24},{&quot;2026-07-08&quot;:33.2},{&quot;2026-07-09&quot;:33.2},{&quot;2026-07-10&quot;:33.2},{&quot;2026-07-11&quot;:33.2},{&quot;2026-07-12&quot;:33.13},{&quot;2026-07-13&quot;:33.27},{&quot;2026-07-14&quot;:33.39},{&quot;2026-07-15&quot;:33.55},{&quot;2026-07-16&quot;:33.55},{&quot;2026-07-17&quot;:33.23},{&quot;2026-07-18&quot;:33.19},{&quot;2026-07-19&quot;:33.19},{&quot;2026-07-20&quot;:33.19},{&quot;2026-07-21&quot;:33.06},{&quot;2026-07-22&quot;:32.99},{&quot;2026-07-23&quot;:32.99},{&quot;2026-07-24&quot;:33.08},{&quot;2026-07-25&quot;:33.08},{&quot;2026-07-26&quot;:33.05},{&quot;2026-07-27&quot;:32.94},{&quot;2026-07-28&quot;:32.94},{&quot;2026-07-29&quot;:32.94},{&quot;2026-07-30&quot;:32.94},{&quot;2026-07-31&quot;:32.95},{&quot;2026-08-01&quot;:33.06},{&quot;2026-08-02&quot;:32.98},{&quot;2026-08-03&quot;:32.78},{&quot;2026-08-04&quot;:32.86},{&quot;2026-08-05&quot;:32.86},{&quot;2026-08-07&quot;:32.5},{&quot;2026-08-08&quot;:32.5},{&quot;2026-08-09&quot;:32.46},{&quot;2026-08-10&quot;:32.22},{&quot;2026-08-11&quot;:32.22},{&quot;2026-08-12&quot;:32.22},{&quot;2026-08-13&quot;:31.66},{&quot;2026-08-14&quot;:31.68},{&quot;2026-08-15&quot;:31.68},{&quot;2026-08-16&quot;:31.68},{&quot;2026-08-17&quot;:31.68},{&quot;2026-08-18&quot;:31.68},{&quot;2026-08-19&quot;:31.58},{&quot;2026-08-20&quot;:31.58},{&quot;2026-08-21&quot;:31.58},{&quot;2026-08-22&quot;:31.44},{&quot;2026-08-23&quot;:31.24},{&quot;2026-08-24&quot;:31.24},{&quot;2026-08-25&quot;:31.24},{&quot;2026-08-26&quot;:31.24},{&quot;2026-08-27&quot;:31.24},{&quot;2026-08-28&quot;:31.12},{&quot;2026-08-29&quot;:31.12},{&quot;2026-08-30&quot;:31.12},{&quot;2026-08-31&quot;:31.12},{&quot;2026-09-01&quot;:31.12},{&quot;2026-09-02&quot;:31.04},{&quot;2026-09-03&quot;:31.04},{&quot;2026-09-04&quot;:31.04},{&quot;2026-09-05&quot;:31.11},{&quot;2026-09-06&quot;:31.08},{&quot;2026-09-07&quot;:31.08},{&quot;2026-09-08&quot;:31.08},{&quot;2026-09-09&quot;:30.8},{&quot;2026-09-10&quot;:30.73},{&quot;2026-09-11&quot;:30.73}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:29.71},{&quot;2026-06-14&quot;:29.71},{&quot;2026-06-15&quot;:29.69},{&quot;2026-06-16&quot;:29.78},{&quot;2026-06-17&quot;:29.78},{&quot;2026-06-18&quot;:29.77},{&quot;2026-06-19&quot;:29.85},{&quot;2026-06-20&quot;:29.74},{&quot;2026-06-21&quot;:29.74},{&quot;2026-06-22&quot;:30.16},{&quot;2026-06-23&quot;:30.16},{&quot;2026-06-24&quot;:29.97},{&quot;2026-06-25&quot;:29.73},{&quot;2026-06-26&quot;:29.72},{&quot;2026-06-27&quot;:28.68},{&quot;2026-06-28&quot;:28.56},{&quot;2026-06-29&quot;:28.49},{&quot;2026-06-30&quot;:28.38},{&quot;2026-07-01&quot;:28.14},{&quot;2026-07-02&quot;:27.87},{&quot;2026-07-03&quot;:28.12},{&quot;2026-07-04&quot;:28.01},{&quot;2026-07-05&quot;:27.91},{&quot;2026-07-06&quot;:27.91},{&quot;2026-07-07&quot;:27.71},{&quot;2026-07-08&quot;:28.48},{&quot;2026-07-09&quot;:28.82},{&quot;2026-07-10&quot;:28.85},{&quot;2026-07-11&quot;:28.71},{&quot;2026-07-12&quot;:29.05},{&quot;2026-07-13&quot;:29.01},{&quot;2026-07-14&quot;:29.01},{&quot;2026-07-15&quot;:29.0},{&quot;2026-07-16&quot;:28.96},{&quot;2026-07-17&quot;:29.2},{&quot;2026-07-18&quot;:29.07},{&quot;2026-07-19&quot;:29.07},{&quot;2026-07-20&quot;:29.01},{&quot;2026-07-21&quot;:28.94},{&quot;2026-07-22&quot;:28.65},{&quot;2026-07-23&quot;:27.95},{&quot;2026-07-24&quot;:27.95},{&quot;2026-07-25&quot;:27.85},{&quot;2026-07-26&quot;:27.66},{&quot;2026-07-27&quot;:27.61},{&quot;2026-07-28&quot;:27.48},{&quot;2026-07-29&quot;:27.48},{&quot;2026-07-30&quot;:27.42},{&quot;2026-07-31&quot;:27.42},{&quot;2026-08-01&quot;:27.66},{&quot;2026-08-02&quot;:27.66},{&quot;2026-08-03&quot;:27.66},{&quot;2026-08-04&quot;:27.66},{&quot;2026-08-05&quot;:27.66},{&quot;2026-08-07&quot;:28.19},{&quot;2026-08-08&quot;:28.42},{&quot;2026-08-09&quot;:28.54},{&quot;2026-08-10&quot;:28.41},{&quot;2026-08-11&quot;:28.45},{&quot;2026-08-12&quot;:28.45},{&quot;2026-08-13&quot;:28.14},{&quot;2026-08-14&quot;:28.03},{&quot;2026-08-15&quot;:27.42},{&quot;2026-08-16&quot;:27.35},{&quot;2026-08-17&quot;:26.49},{&quot;2026-08-18&quot;:26.41},{&quot;2026-08-19&quot;:26.41},{&quot;2026-08-20&quot;:26.41},{&quot;2026-08-21&quot;:25.52},{&quot;2026-08-22&quot;:25.32},{&quot;2026-08-23&quot;:25.39},{&quot;2026-08-24&quot;:25.39},{&quot;2026-08-25&quot;:25.35},{&quot;2026-08-26&quot;:25.11},{&quot;2026-08-27&quot;:25.11},{&quot;2026-08-28&quot;:24.98},{&quot;2026-08-29&quot;:24.98},{&quot;2026-08-30&quot;:24.92},{&quot;2026-08-31&quot;:25.05},{&quot;2026-09-01&quot;:25.1},{&quot;2026-09-02&quot;:25.04},{&quot;2026-09-03&quot;:25.54},{&quot;2026-09-04&quot;:25.5},{&quot;2026-09-05&quot;:25.5},{&quot;2026-09-06&quot;:25.5},{&quot;2026-09-07&quot;:25.38},{&quot;2026-09-08&quot;:25.34},{&quot;2026-09-09&quot;:25.45},{&quot;2026-09-10&quot;:25.71},{&quot;2026-09-11&quot;:26.06}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29358"
  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-j25 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">
            Scythecat Cub
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Cat
      </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">
            $25.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="Scythecat Cub" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/3/b3dd3c7d-4685-4579-b483-14ddaaaddf5b.jpg?1783908863" />

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scythecat Cub" src="https://cards.scryfall.io/large/front/b/3/b3dd3c7d-4685-4579-b483-14ddaaaddf5b.jpg?1783908863" />
    </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">
                $25.50
              </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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:30.59},{&quot;2026-06-10&quot;:30.83},{&quot;2026-06-11&quot;:30.76},{&quot;2026-06-12&quot;:30.52},{&quot;2026-06-13&quot;:29.99},{&quot;2026-06-14&quot;:29.54},{&quot;2026-06-15&quot;:29.09},{&quot;2026-06-16&quot;:28.49},{&quot;2026-06-17&quot;:28.04},{&quot;2026-06-18&quot;:27.9},{&quot;2026-06-19&quot;:27.73},{&quot;2026-06-20&quot;:27.53},{&quot;2026-06-21&quot;:27.24},{&quot;2026-06-22&quot;:27.31},{&quot;2026-06-24&quot;:27.45},{&quot;2026-06-25&quot;:27.4},{&quot;2026-06-26&quot;:26.15},{&quot;2026-06-27&quot;:26.84},{&quot;2026-06-28&quot;:26.75},{&quot;2026-06-29&quot;:26.2},{&quot;2026-06-30&quot;:25.99},{&quot;2026-07-01&quot;:26.0},{&quot;2026-07-02&quot;:25.88},{&quot;2026-07-03&quot;:25.8},{&quot;2026-07-04&quot;:26.25},{&quot;2026-07-05&quot;:26.07},{&quot;2026-07-06&quot;:25.64},{&quot;2026-07-07&quot;:25.16},{&quot;2026-07-08&quot;:25.25},{&quot;2026-07-09&quot;:25.07},{&quot;2026-07-10&quot;:25.08},{&quot;2026-07-11&quot;:24.58},{&quot;2026-07-12&quot;:24.42},{&quot;2026-07-13&quot;:24.16},{&quot;2026-07-14&quot;:23.82},{&quot;2026-07-15&quot;:23.59},{&quot;2026-07-16&quot;:22.68},{&quot;2026-07-17&quot;:22.87},{&quot;2026-07-18&quot;:22.29},{&quot;2026-07-19&quot;:22.64},{&quot;2026-07-20&quot;:23.42},{&quot;2026-07-21&quot;:23.97},{&quot;2026-07-23&quot;:23.45},{&quot;2026-07-25&quot;:23.94},{&quot;2026-07-26&quot;:24.28},{&quot;2026-07-27&quot;:24.16},{&quot;2026-07-29&quot;:24.71},{&quot;2026-07-30&quot;:24.57},{&quot;2026-07-31&quot;:24.51},{&quot;2026-08-01&quot;:24.52},{&quot;2026-08-02&quot;:24.33},{&quot;2026-08-03&quot;:24.36},{&quot;2026-08-04&quot;:24.76},{&quot;2026-08-05&quot;:24.7},{&quot;2026-08-07&quot;:25.18},{&quot;2026-08-08&quot;:25.4},{&quot;2026-08-09&quot;:25.07},{&quot;2026-08-10&quot;:25.05},{&quot;2026-08-11&quot;:24.64},{&quot;2026-08-12&quot;:24.74},{&quot;2026-08-13&quot;:25.05},{&quot;2026-08-14&quot;:25.46},{&quot;2026-08-15&quot;:25.8},{&quot;2026-08-16&quot;:25.94},{&quot;2026-08-17&quot;:25.98},{&quot;2026-08-18&quot;:26.06},{&quot;2026-08-19&quot;:25.61},{&quot;2026-08-20&quot;:25.61},{&quot;2026-08-21&quot;:26.08},{&quot;2026-08-22&quot;:26.3},{&quot;2026-08-23&quot;:25.96},{&quot;2026-08-24&quot;:25.87},{&quot;2026-08-25&quot;:25.87},{&quot;2026-08-26&quot;:25.34},{&quot;2026-08-27&quot;:25.21},{&quot;2026-08-28&quot;:25.07},{&quot;2026-08-29&quot;:25.07},{&quot;2026-08-30&quot;:24.95},{&quot;2026-08-31&quot;:25.03},{&quot;2026-09-01&quot;:25.03},{&quot;2026-09-02&quot;:25.1},{&quot;2026-09-03&quot;:25.06},{&quot;2026-09-04&quot;:25.02},{&quot;2026-09-05&quot;:25.32},{&quot;2026-09-06&quot;:25.21},{&quot;2026-09-07&quot;:25.17},{&quot;2026-09-08&quot;:25.62},{&quot;2026-09-09&quot;:25.63},{&quot;2026-09-10&quot;:25.47},{&quot;2026-09-11&quot;:25.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="97952"
  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-fic 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">
            Barret, Avalanche Leader
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Barret, Avalanche Leader" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/3/b39a7df7-12b8-4537-9f17-25dfc6d2a5c6.jpg?1782684318" />

        <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">
            Barret, Avalanche Leader
        </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 — Human Rebel</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Barret, Avalanche Leader" src="https://cards.scryfall.io/large/front/b/3/b39a7df7-12b8-4537-9f17-25dfc6d2a5c6.jpg?1782684318" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:24.35},{&quot;2026-06-14&quot;:24.36},{&quot;2026-06-15&quot;:24.27},{&quot;2026-06-16&quot;:24.27},{&quot;2026-06-17&quot;:24.27},{&quot;2026-06-18&quot;:25.05},{&quot;2026-06-19&quot;:25.73},{&quot;2026-06-20&quot;:26.39},{&quot;2026-06-21&quot;:26.86},{&quot;2026-06-22&quot;:27.14},{&quot;2026-06-23&quot;:27.72},{&quot;2026-06-24&quot;:27.72},{&quot;2026-06-25&quot;:27.62},{&quot;2026-06-26&quot;:28.33},{&quot;2026-06-27&quot;:29.04},{&quot;2026-06-28&quot;:29.04},{&quot;2026-06-29&quot;:28.94},{&quot;2026-06-30&quot;:28.97},{&quot;2026-07-01&quot;:28.9},{&quot;2026-07-02&quot;:28.6},{&quot;2026-07-03&quot;:28.64},{&quot;2026-07-04&quot;:28.21},{&quot;2026-07-05&quot;:27.82},{&quot;2026-07-06&quot;:27.82},{&quot;2026-07-07&quot;:27.68},{&quot;2026-07-08&quot;:27.68},{&quot;2026-07-09&quot;:26.86},{&quot;2026-07-10&quot;:25.91},{&quot;2026-07-11&quot;:25.45},{&quot;2026-07-12&quot;:25.45},{&quot;2026-07-13&quot;:25.45},{&quot;2026-07-14&quot;:25.45},{&quot;2026-07-15&quot;:25.41},{&quot;2026-07-16&quot;:25.41},{&quot;2026-07-17&quot;:25.11},{&quot;2026-07-18&quot;:25.0},{&quot;2026-07-19&quot;:25.03},{&quot;2026-07-20&quot;:24.82},{&quot;2026-07-21&quot;:24.82},{&quot;2026-07-22&quot;:24.69},{&quot;2026-07-23&quot;:24.65},{&quot;2026-07-24&quot;:24.65},{&quot;2026-07-25&quot;:24.65},{&quot;2026-07-26&quot;:24.64},{&quot;2026-07-27&quot;:24.76},{&quot;2026-07-28&quot;:24.83},{&quot;2026-07-29&quot;:24.76},{&quot;2026-07-30&quot;:24.71},{&quot;2026-07-31&quot;:25.13},{&quot;2026-08-01&quot;:25.13},{&quot;2026-08-02&quot;:25.17},{&quot;2026-08-03&quot;:25.17},{&quot;2026-08-04&quot;:25.17},{&quot;2026-08-05&quot;:25.17},{&quot;2026-08-07&quot;:25.05},{&quot;2026-08-08&quot;:25.05},{&quot;2026-08-09&quot;:25.09},{&quot;2026-08-10&quot;:25.06},{&quot;2026-08-11&quot;:24.84},{&quot;2026-08-12&quot;:24.84},{&quot;2026-08-13&quot;:24.83},{&quot;2026-08-14&quot;:24.72},{&quot;2026-08-15&quot;:24.82},{&quot;2026-08-16&quot;:25.07},{&quot;2026-08-17&quot;:25.07},{&quot;2026-08-18&quot;:25.16},{&quot;2026-08-19&quot;:25.12},{&quot;2026-08-20&quot;:24.84},{&quot;2026-08-21&quot;:25.14},{&quot;2026-08-22&quot;:25.31},{&quot;2026-08-23&quot;:25.51},{&quot;2026-08-24&quot;:25.73},{&quot;2026-08-25&quot;:25.35},{&quot;2026-08-26&quot;:25.27},{&quot;2026-08-27&quot;:25.27},{&quot;2026-08-28&quot;:25.21},{&quot;2026-08-29&quot;:25.21},{&quot;2026-08-30&quot;:25.15},{&quot;2026-08-31&quot;:25.14},{&quot;2026-09-01&quot;:25.15},{&quot;2026-09-02&quot;:25.26},{&quot;2026-09-03&quot;:25.26},{&quot;2026-09-04&quot;:25.26},{&quot;2026-09-05&quot;:25.14},{&quot;2026-09-06&quot;:25.32},{&quot;2026-09-07&quot;:25.32},{&quot;2026-09-08&quot;:25.0},{&quot;2026-09-09&quot;:24.93},{&quot;2026-09-10&quot;:24.78},{&quot;2026-09-11&quot;:24.8}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="99307"
  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-ecl 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">
            Hexing Squelcher
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $22.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="Hexing Squelcher" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/7/674960ce-ff33-4d5e-a24a-a4582b2e9809.jpg?1782684015" />

        <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">
            Hexing Squelcher
        </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 — Goblin Sorcerer</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hexing Squelcher" src="https://cards.scryfall.io/large/front/6/7/674960ce-ff33-4d5e-a24a-a4582b2e9809.jpg?1782684015" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:23.71},{&quot;2026-06-13&quot;:23.83},{&quot;2026-06-14&quot;:22.64},{&quot;2026-06-15&quot;:22.5},{&quot;2026-06-16&quot;:22.96},{&quot;2026-06-17&quot;:22.99},{&quot;2026-06-18&quot;:22.74},{&quot;2026-06-19&quot;:22.75},{&quot;2026-06-20&quot;:22.37},{&quot;2026-06-21&quot;:22.27},{&quot;2026-06-22&quot;:22.67},{&quot;2026-06-23&quot;:22.53},{&quot;2026-06-24&quot;:22.1},{&quot;2026-06-25&quot;:22.37},{&quot;2026-06-26&quot;:22.35},{&quot;2026-06-27&quot;:22.35},{&quot;2026-06-28&quot;:22.54},{&quot;2026-06-29&quot;:22.67},{&quot;2026-06-30&quot;:22.37},{&quot;2026-07-01&quot;:22.54},{&quot;2026-07-02&quot;:22.26},{&quot;2026-07-03&quot;:21.92},{&quot;2026-07-04&quot;:22.19},{&quot;2026-07-05&quot;:22.16},{&quot;2026-07-06&quot;:22.16},{&quot;2026-07-07&quot;:22.08},{&quot;2026-07-08&quot;:22.08},{&quot;2026-07-09&quot;:21.96},{&quot;2026-07-10&quot;:21.71},{&quot;2026-07-11&quot;:21.6},{&quot;2026-07-12&quot;:21.39},{&quot;2026-07-13&quot;:21.23},{&quot;2026-07-14&quot;:21.02},{&quot;2026-07-15&quot;:20.9},{&quot;2026-07-16&quot;:20.89},{&quot;2026-07-17&quot;:20.89},{&quot;2026-07-18&quot;:20.67},{&quot;2026-07-19&quot;:20.56},{&quot;2026-07-20&quot;:20.59},{&quot;2026-07-21&quot;:21.18},{&quot;2026-07-23&quot;:21.3},{&quot;2026-07-24&quot;:21.66},{&quot;2026-07-25&quot;:21.57},{&quot;2026-07-26&quot;:21.68},{&quot;2026-07-27&quot;:21.87},{&quot;2026-07-28&quot;:21.83},{&quot;2026-07-29&quot;:21.96},{&quot;2026-07-30&quot;:21.69},{&quot;2026-07-31&quot;:21.72},{&quot;2026-08-01&quot;:21.76},{&quot;2026-08-02&quot;:21.76},{&quot;2026-08-03&quot;:21.7},{&quot;2026-08-04&quot;:21.98},{&quot;2026-08-05&quot;:21.77},{&quot;2026-08-07&quot;:22.07},{&quot;2026-08-08&quot;:22.06},{&quot;2026-08-09&quot;:22.24},{&quot;2026-08-10&quot;:22.66},{&quot;2026-08-11&quot;:22.69},{&quot;2026-08-12&quot;:23.15},{&quot;2026-08-13&quot;:23.47},{&quot;2026-08-14&quot;:23.52},{&quot;2026-08-15&quot;:23.98},{&quot;2026-08-16&quot;:24.2},{&quot;2026-08-17&quot;:23.55},{&quot;2026-08-18&quot;:23.99},{&quot;2026-08-19&quot;:23.84},{&quot;2026-08-20&quot;:23.84},{&quot;2026-08-21&quot;:23.56},{&quot;2026-08-22&quot;:23.68},{&quot;2026-08-23&quot;:23.39},{&quot;2026-08-24&quot;:23.21},{&quot;2026-08-25&quot;:23.64},{&quot;2026-08-26&quot;:23.98},{&quot;2026-08-27&quot;:23.79},{&quot;2026-08-28&quot;:23.89},{&quot;2026-08-29&quot;:23.89},{&quot;2026-08-30&quot;:23.94},{&quot;2026-08-31&quot;:23.81},{&quot;2026-09-01&quot;:23.87},{&quot;2026-09-02&quot;:23.39},{&quot;2026-09-03&quot;:23.39},{&quot;2026-09-04&quot;:23.39},{&quot;2026-09-05&quot;:23.44},{&quot;2026-09-06&quot;:23.13},{&quot;2026-09-07&quot;:23.52},{&quot;2026-09-08&quot;:23.55},{&quot;2026-09-09&quot;:23.55},{&quot;2026-09-10&quot;:24.19},{&quot;2026-09-11&quot;:24.2}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:22.17},{&quot;2026-06-13&quot;:22.0},{&quot;2026-06-14&quot;:22.15},{&quot;2026-06-15&quot;:22.01},{&quot;2026-06-16&quot;:21.58},{&quot;2026-06-17&quot;:20.71},{&quot;2026-06-18&quot;:20.12},{&quot;2026-06-19&quot;:20.32},{&quot;2026-06-20&quot;:20.7},{&quot;2026-06-21&quot;:21.66},{&quot;2026-06-22&quot;:22.26},{&quot;2026-06-23&quot;:21.95},{&quot;2026-06-24&quot;:22.21},{&quot;2026-06-25&quot;:21.56},{&quot;2026-06-26&quot;:18.69},{&quot;2026-06-27&quot;:18.63},{&quot;2026-06-28&quot;:19.93},{&quot;2026-06-29&quot;:20.12},{&quot;2026-06-30&quot;:19.13},{&quot;2026-07-01&quot;:19.12},{&quot;2026-07-02&quot;:19.28},{&quot;2026-07-03&quot;:19.23},{&quot;2026-07-04&quot;:20.5},{&quot;2026-07-05&quot;:19.77},{&quot;2026-07-06&quot;:20.44},{&quot;2026-07-07&quot;:19.87},{&quot;2026-07-08&quot;:20.04},{&quot;2026-07-09&quot;:19.45},{&quot;2026-07-10&quot;:19.46},{&quot;2026-07-11&quot;:19.55},{&quot;2026-07-12&quot;:19.14},{&quot;2026-07-13&quot;:19.55},{&quot;2026-07-14&quot;:20.0},{&quot;2026-07-15&quot;:19.14},{&quot;2026-07-16&quot;:18.52},{&quot;2026-07-17&quot;:18.99},{&quot;2026-07-18&quot;:19.17},{&quot;2026-07-19&quot;:19.24},{&quot;2026-07-20&quot;:20.42},{&quot;2026-07-21&quot;:21.91},{&quot;2026-07-23&quot;:20.18},{&quot;2026-07-24&quot;:19.27},{&quot;2026-07-25&quot;:18.97},{&quot;2026-07-26&quot;:18.89},{&quot;2026-07-27&quot;:19.96},{&quot;2026-07-28&quot;:20.98},{&quot;2026-07-29&quot;:20.47},{&quot;2026-07-30&quot;:19.53},{&quot;2026-07-31&quot;:19.58},{&quot;2026-08-01&quot;:20.23},{&quot;2026-08-02&quot;:21.02},{&quot;2026-08-03&quot;:20.64},{&quot;2026-08-04&quot;:19.72},{&quot;2026-08-05&quot;:20.75},{&quot;2026-08-07&quot;:21.09},{&quot;2026-08-08&quot;:20.79},{&quot;2026-08-09&quot;:20.41},{&quot;2026-08-10&quot;:20.12},{&quot;2026-08-11&quot;:20.73},{&quot;2026-08-12&quot;:21.57},{&quot;2026-08-13&quot;:21.32},{&quot;2026-08-14&quot;:21.31},{&quot;2026-08-15&quot;:20.84},{&quot;2026-08-16&quot;:21.72},{&quot;2026-08-17&quot;:21.92},{&quot;2026-08-18&quot;:21.35},{&quot;2026-08-19&quot;:21.89},{&quot;2026-08-20&quot;:21.89},{&quot;2026-08-21&quot;:21.94},{&quot;2026-08-22&quot;:22.26},{&quot;2026-08-23&quot;:21.91},{&quot;2026-08-24&quot;:21.57},{&quot;2026-08-25&quot;:22.24},{&quot;2026-08-26&quot;:23.24},{&quot;2026-08-27&quot;:22.23},{&quot;2026-08-28&quot;:21.55},{&quot;2026-08-29&quot;:21.55},{&quot;2026-08-30&quot;:21.76},{&quot;2026-08-31&quot;:21.69},{&quot;2026-09-01&quot;:21.25},{&quot;2026-09-02&quot;:22.05},{&quot;2026-09-03&quot;:21.52},{&quot;2026-09-04&quot;:21.02},{&quot;2026-09-05&quot;:21.54},{&quot;2026-09-06&quot;:21.68},{&quot;2026-09-07&quot;:22.79},{&quot;2026-09-08&quot;:24.03},{&quot;2026-09-09&quot;:23.78},{&quot;2026-09-10&quot;:23.07},{&quot;2026-09-11&quot;:22.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="79987"
  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-bot 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">
            Starscream, Power Hungry 
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Starscream, Power Hungry // Starscream, Seeker Leader" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/0/90fa398b-f2f7-474f-a840-244238a67c31.jpg?1783919893" />

        <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">
            Starscream, Power Hungry 
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Artifact Creature — Robot</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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Starscream, Power Hungry // Starscream, Seeker Leader" src="https://cards.scryfall.io/large/front/9/0/90fa398b-f2f7-474f-a840-244238a67c31.jpg?1783919893" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Starscream, Power Hungry // Starscream, Seeker Leader" src="https://cards.scryfall.io/large/back/9/0/90fa398b-f2f7-474f-a840-244238a67c31.jpg?1783919893" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </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">
                $22.41
              </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">
                $469.99
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-05-15&quot;:276.18},{&quot;2026-05-16&quot;:276.18},{&quot;2026-05-17&quot;:276.18},{&quot;2026-05-18&quot;:276.18},{&quot;2026-05-19&quot;:276.18},{&quot;2026-05-21&quot;:276.18},{&quot;2026-05-23&quot;:276.18},{&quot;2026-05-24&quot;:276.18},{&quot;2026-05-25&quot;:276.18},{&quot;2026-05-26&quot;:276.18},{&quot;2026-05-27&quot;:276.18},{&quot;2026-05-28&quot;:276.18},{&quot;2026-05-29&quot;:352.49},{&quot;2026-05-30&quot;:352.49},{&quot;2026-05-31&quot;:352.49},{&quot;2026-06-01&quot;:352.49},{&quot;2026-06-02&quot;:352.49},{&quot;2026-06-03&quot;:352.49},{&quot;2026-06-04&quot;:352.49},{&quot;2026-06-05&quot;:352.49},{&quot;2026-06-30&quot;:469.99},{&quot;2026-07-01&quot;:469.99},{&quot;2026-07-02&quot;:469.99},{&quot;2026-07-03&quot;:469.99},{&quot;2026-07-04&quot;:469.99},{&quot;2026-07-05&quot;:469.99},{&quot;2026-07-06&quot;:469.99},{&quot;2026-07-07&quot;:469.99},{&quot;2026-07-08&quot;:469.99},{&quot;2026-07-09&quot;:469.99},{&quot;2026-07-10&quot;:469.99},{&quot;2026-07-11&quot;:469.99},{&quot;2026-07-12&quot;:469.99},{&quot;2026-07-13&quot;:469.99},{&quot;2026-07-14&quot;:469.99},{&quot;2026-07-15&quot;:469.99},{&quot;2026-07-16&quot;:469.99},{&quot;2026-07-17&quot;:469.99},{&quot;2026-07-18&quot;:469.99},{&quot;2026-07-19&quot;:469.99},{&quot;2026-07-20&quot;:469.99},{&quot;2026-07-21&quot;:469.99},{&quot;2026-07-23&quot;:469.99},{&quot;2026-07-25&quot;:469.99},{&quot;2026-07-26&quot;:469.99},{&quot;2026-07-27&quot;:469.99},{&quot;2026-07-29&quot;:469.99},{&quot;2026-07-30&quot;:469.99},{&quot;2026-07-31&quot;:469.99},{&quot;2026-08-01&quot;:469.99},{&quot;2026-08-02&quot;:469.99},{&quot;2026-08-03&quot;:469.99},{&quot;2026-08-04&quot;:469.99},{&quot;2026-08-05&quot;:469.99},{&quot;2026-08-07&quot;:469.99},{&quot;2026-08-08&quot;:469.99},{&quot;2026-08-09&quot;:469.99},{&quot;2026-08-10&quot;:469.99},{&quot;2026-08-11&quot;:469.99},{&quot;2026-08-12&quot;:469.99},{&quot;2026-08-13&quot;:469.99},{&quot;2026-08-14&quot;:469.99},{&quot;2026-08-15&quot;:469.99},{&quot;2026-08-16&quot;:469.99},{&quot;2026-08-17&quot;:469.99},{&quot;2026-08-18&quot;:469.99},{&quot;2026-08-19&quot;:469.99},{&quot;2026-08-20&quot;:469.99},{&quot;2026-08-21&quot;:469.99},{&quot;2026-08-22&quot;:469.99},{&quot;2026-08-23&quot;:469.99},{&quot;2026-08-24&quot;:469.99},{&quot;2026-08-25&quot;:469.99},{&quot;2026-08-26&quot;:469.99},{&quot;2026-08-27&quot;:469.99},{&quot;2026-08-28&quot;:469.99},{&quot;2026-08-29&quot;:469.99},{&quot;2026-08-30&quot;:469.99},{&quot;2026-08-31&quot;:469.99},{&quot;2026-09-01&quot;:469.99},{&quot;2026-09-02&quot;:469.99},{&quot;2026-09-03&quot;:469.99},{&quot;2026-09-04&quot;:469.99},{&quot;2026-09-05&quot;:469.99},{&quot;2026-09-06&quot;:469.99},{&quot;2026-09-07&quot;:469.99},{&quot;2026-09-08&quot;:469.99},{&quot;2026-09-09&quot;:469.99},{&quot;2026-09-10&quot;:469.99},{&quot;2026-09-11&quot;:469.99}],&quot;normal&quot;:[{&quot;2026-05-15&quot;:24.04},{&quot;2026-05-16&quot;:24.44},{&quot;2026-05-17&quot;:24.44},{&quot;2026-05-18&quot;:24.44},{&quot;2026-05-19&quot;:24.44},{&quot;2026-05-21&quot;:24.07},{&quot;2026-05-23&quot;:23.47},{&quot;2026-05-24&quot;:23.47},{&quot;2026-05-25&quot;:23.47},{&quot;2026-05-26&quot;:23.44},{&quot;2026-05-27&quot;:23.42},{&quot;2026-05-28&quot;:23.73},{&quot;2026-05-29&quot;:23.73},{&quot;2026-05-30&quot;:23.76},{&quot;2026-05-31&quot;:23.76},{&quot;2026-06-01&quot;:24.08},{&quot;2026-06-02&quot;:24.08},{&quot;2026-06-03&quot;:24.08},{&quot;2026-06-04&quot;:24.36},{&quot;2026-06-05&quot;:24.36},{&quot;2026-06-30&quot;:23.15},{&quot;2026-07-01&quot;:23.15},{&quot;2026-07-02&quot;:23.15},{&quot;2026-07-03&quot;:23.15},{&quot;2026-07-04&quot;:23.15},{&quot;2026-07-05&quot;:23.15},{&quot;2026-07-06&quot;:23.15},{&quot;2026-07-07&quot;:23.15},{&quot;2026-07-08&quot;:23.15},{&quot;2026-07-09&quot;:23.15},{&quot;2026-07-10&quot;:23.15},{&quot;2026-07-11&quot;:23.15},{&quot;2026-07-12&quot;:23.15},{&quot;2026-07-13&quot;:23.15},{&quot;2026-07-14&quot;:22.66},{&quot;2026-07-15&quot;:22.66},{&quot;2026-07-16&quot;:22.66},{&quot;2026-07-17&quot;:23.06},{&quot;2026-07-18&quot;:22.68},{&quot;2026-07-19&quot;:22.69},{&quot;2026-07-20&quot;:22.69},{&quot;2026-07-21&quot;:22.09},{&quot;2026-07-23&quot;:22.09},{&quot;2026-07-25&quot;:22.09},{&quot;2026-07-26&quot;:21.78},{&quot;2026-07-27&quot;:21.82},{&quot;2026-07-29&quot;:21.89},{&quot;2026-07-30&quot;:21.89},{&quot;2026-07-31&quot;:21.89},{&quot;2026-08-01&quot;:21.89},{&quot;2026-08-02&quot;:21.81},{&quot;2026-08-03&quot;:21.81},{&quot;2026-08-04&quot;:21.81},{&quot;2026-08-05&quot;:21.81},{&quot;2026-08-07&quot;:21.81},{&quot;2026-08-08&quot;:21.81},{&quot;2026-08-09&quot;:21.39},{&quot;2026-08-10&quot;:21.39},{&quot;2026-08-11&quot;:21.59},{&quot;2026-08-12&quot;:21.54},{&quot;2026-08-13&quot;:21.54},{&quot;2026-08-14&quot;:21.4},{&quot;2026-08-15&quot;:21.09},{&quot;2026-08-16&quot;:20.86},{&quot;2026-08-17&quot;:20.86},{&quot;2026-08-18&quot;:20.86},{&quot;2026-08-19&quot;:20.82},{&quot;2026-08-20&quot;:20.82},{&quot;2026-08-21&quot;:21.06},{&quot;2026-08-22&quot;:21.36},{&quot;2026-08-23&quot;:21.36},{&quot;2026-08-24&quot;:21.36},{&quot;2026-08-25&quot;:21.36},{&quot;2026-08-26&quot;:21.26},{&quot;2026-08-27&quot;:21.26},{&quot;2026-08-28&quot;:21.07},{&quot;2026-08-29&quot;:21.07},{&quot;2026-08-30&quot;:21.82},{&quot;2026-08-31&quot;:21.92},{&quot;2026-09-01&quot;:21.92},{&quot;2026-09-02&quot;:21.92},{&quot;2026-09-03&quot;:22.25},{&quot;2026-09-04&quot;:22.34},{&quot;2026-09-05&quot;:22.44},{&quot;2026-09-06&quot;:22.54},{&quot;2026-09-07&quot;:22.41},{&quot;2026-09-08&quot;:22.41},{&quot;2026-09-09&quot;:22.41},{&quot;2026-09-10&quot;:22.41},{&quot;2026-09-11&quot;:22.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29424"
  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-j25 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">
            Rev, Tithe Extractor
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $21.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="Rev, Tithe Extractor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/b/8bf88010-799d-4217-8e79-308bec7ad2ff.jpg?1783908857" />

        <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">
            Rev, Tithe Extractor
        </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 — Human Rogue</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </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="Rev, Tithe Extractor" src="https://cards.scryfall.io/large/front/8/b/8bf88010-799d-4217-8e79-308bec7ad2ff.jpg?1783908857" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:26.78},{&quot;2026-06-12&quot;:26.08},{&quot;2026-06-13&quot;:25.91},{&quot;2026-06-14&quot;:25.75},{&quot;2026-06-15&quot;:25.56},{&quot;2026-06-16&quot;:25.58},{&quot;2026-06-17&quot;:25.43},{&quot;2026-06-18&quot;:25.43},{&quot;2026-06-19&quot;:25.39},{&quot;2026-06-20&quot;:25.36},{&quot;2026-06-21&quot;:25.28},{&quot;2026-06-22&quot;:25.1},{&quot;2026-06-23&quot;:25.02},{&quot;2026-06-24&quot;:25.41},{&quot;2026-06-25&quot;:24.68},{&quot;2026-06-26&quot;:24.57},{&quot;2026-06-27&quot;:24.09},{&quot;2026-06-28&quot;:22.5},{&quot;2026-06-29&quot;:22.84},{&quot;2026-06-30&quot;:22.2},{&quot;2026-07-01&quot;:21.76},{&quot;2026-07-02&quot;:21.56},{&quot;2026-07-03&quot;:21.25},{&quot;2026-07-04&quot;:21.3},{&quot;2026-07-05&quot;:21.25},{&quot;2026-07-06&quot;:21.27},{&quot;2026-07-07&quot;:21.25},{&quot;2026-07-08&quot;:21.4},{&quot;2026-07-09&quot;:21.53},{&quot;2026-07-10&quot;:21.54},{&quot;2026-07-11&quot;:21.4},{&quot;2026-07-12&quot;:21.45},{&quot;2026-07-13&quot;:21.56},{&quot;2026-07-14&quot;:21.49},{&quot;2026-07-15&quot;:21.51},{&quot;2026-07-16&quot;:21.3},{&quot;2026-07-17&quot;:21.36},{&quot;2026-07-18&quot;:21.3},{&quot;2026-07-19&quot;:20.98},{&quot;2026-07-20&quot;:20.84},{&quot;2026-07-21&quot;:20.65},{&quot;2026-07-23&quot;:20.6},{&quot;2026-07-25&quot;:20.86},{&quot;2026-07-26&quot;:20.78},{&quot;2026-07-27&quot;:21.01},{&quot;2026-07-28&quot;:21.05},{&quot;2026-07-29&quot;:20.94},{&quot;2026-07-30&quot;:21.03},{&quot;2026-07-31&quot;:20.75},{&quot;2026-08-01&quot;:20.9},{&quot;2026-08-02&quot;:21.12},{&quot;2026-08-03&quot;:21.14},{&quot;2026-08-04&quot;:21.4},{&quot;2026-08-05&quot;:21.26},{&quot;2026-08-07&quot;:20.94},{&quot;2026-08-08&quot;:20.91},{&quot;2026-08-09&quot;:20.73},{&quot;2026-08-10&quot;:20.8},{&quot;2026-08-11&quot;:21.05},{&quot;2026-08-12&quot;:21.19},{&quot;2026-08-13&quot;:21.5},{&quot;2026-08-14&quot;:21.46},{&quot;2026-08-15&quot;:21.45},{&quot;2026-08-16&quot;:21.49},{&quot;2026-08-17&quot;:21.15},{&quot;2026-08-18&quot;:21.18},{&quot;2026-08-19&quot;:21.18},{&quot;2026-08-20&quot;:21.18},{&quot;2026-08-21&quot;:21.06},{&quot;2026-08-22&quot;:20.94},{&quot;2026-08-23&quot;:20.8},{&quot;2026-08-24&quot;:21.02},{&quot;2026-08-25&quot;:20.92},{&quot;2026-08-26&quot;:20.9},{&quot;2026-08-27&quot;:20.99},{&quot;2026-08-28&quot;:20.97},{&quot;2026-08-29&quot;:20.97},{&quot;2026-08-30&quot;:21.41},{&quot;2026-08-31&quot;:21.52},{&quot;2026-09-01&quot;:21.36},{&quot;2026-09-02&quot;:20.69},{&quot;2026-09-03&quot;:20.95},{&quot;2026-09-04&quot;:21.19},{&quot;2026-09-05&quot;:21.3},{&quot;2026-09-06&quot;:21.39},{&quot;2026-09-07&quot;:21.56},{&quot;2026-09-08&quot;:21.62},{&quot;2026-09-09&quot;:22.0},{&quot;2026-09-10&quot;:21.77},{&quot;2026-09-11&quot;:21.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="20288"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-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">
            Damnation
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Damnation" src="https://cards.scryfall.io/large/front/d/3/d3c0aac5-b9f1-4446-bfea-3e1dd1cf1f2f.jpg?1783921909" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:23.56},{&quot;2026-06-11&quot;:23.56},{&quot;2026-06-12&quot;:23.56},{&quot;2026-06-13&quot;:23.56},{&quot;2026-06-14&quot;:23.56},{&quot;2026-06-15&quot;:23.56},{&quot;2026-06-16&quot;:23.56},{&quot;2026-06-17&quot;:23.56},{&quot;2026-06-18&quot;:23.52},{&quot;2026-06-19&quot;:23.52},{&quot;2026-06-20&quot;:23.52},{&quot;2026-06-21&quot;:23.52},{&quot;2026-06-22&quot;:23.52},{&quot;2026-06-23&quot;:23.52},{&quot;2026-06-24&quot;:23.52},{&quot;2026-06-25&quot;:23.52},{&quot;2026-06-26&quot;:23.52},{&quot;2026-06-27&quot;:23.52},{&quot;2026-06-28&quot;:23.52},{&quot;2026-06-29&quot;:23.45},{&quot;2026-06-30&quot;:23.45},{&quot;2026-07-01&quot;:23.45},{&quot;2026-07-02&quot;:23.76},{&quot;2026-07-03&quot;:23.76},{&quot;2026-07-04&quot;:23.76},{&quot;2026-07-05&quot;:23.76},{&quot;2026-07-06&quot;:23.76},{&quot;2026-07-07&quot;:23.76},{&quot;2026-07-08&quot;:23.76},{&quot;2026-07-09&quot;:23.76},{&quot;2026-07-10&quot;:23.76},{&quot;2026-07-11&quot;:23.53},{&quot;2026-07-12&quot;:23.53},{&quot;2026-07-13&quot;:23.53},{&quot;2026-07-14&quot;:23.53},{&quot;2026-07-15&quot;:23.53},{&quot;2026-07-16&quot;:23.53},{&quot;2026-07-17&quot;:23.73},{&quot;2026-07-18&quot;:23.73},{&quot;2026-07-19&quot;:23.73},{&quot;2026-07-20&quot;:23.73},{&quot;2026-07-21&quot;:23.73},{&quot;2026-07-23&quot;:23.64},{&quot;2026-07-25&quot;:23.64},{&quot;2026-07-26&quot;:23.64},{&quot;2026-07-27&quot;:23.05},{&quot;2026-07-29&quot;:23.05},{&quot;2026-07-30&quot;:23.05},{&quot;2026-07-31&quot;:23.05},{&quot;2026-08-01&quot;:23.09},{&quot;2026-08-02&quot;:23.09},{&quot;2026-08-03&quot;:23.09},{&quot;2026-08-04&quot;:23.09},{&quot;2026-08-05&quot;:23.09},{&quot;2026-08-07&quot;:23.09},{&quot;2026-08-08&quot;:23.09},{&quot;2026-08-09&quot;:23.09},{&quot;2026-08-10&quot;:23.09},{&quot;2026-08-11&quot;:23.09},{&quot;2026-08-12&quot;:23.09},{&quot;2026-08-13&quot;:23.09},{&quot;2026-08-14&quot;:23.09},{&quot;2026-08-15&quot;:23.02},{&quot;2026-08-16&quot;:23.02},{&quot;2026-08-17&quot;:23.44},{&quot;2026-08-18&quot;:23.44},{&quot;2026-08-19&quot;:23.44},{&quot;2026-08-20&quot;:23.44},{&quot;2026-08-21&quot;:23.95},{&quot;2026-08-22&quot;:23.95},{&quot;2026-08-23&quot;:24.56},{&quot;2026-08-24&quot;:24.56},{&quot;2026-08-25&quot;:24.56},{&quot;2026-08-26&quot;:24.49},{&quot;2026-08-27&quot;:24.49},{&quot;2026-08-28&quot;:24.33},{&quot;2026-08-29&quot;:24.33},{&quot;2026-08-30&quot;:24.33},{&quot;2026-08-31&quot;:24.33},{&quot;2026-09-01&quot;:24.33},{&quot;2026-09-02&quot;:24.33},{&quot;2026-09-03&quot;:24.33},{&quot;2026-09-04&quot;:24.33},{&quot;2026-09-05&quot;:24.44},{&quot;2026-09-06&quot;:24.44},{&quot;2026-09-07&quot;:24.44},{&quot;2026-09-08&quot;:24.44},{&quot;2026-09-09&quot;:24.44},{&quot;2026-09-10&quot;:24.51},{&quot;2026-09-11&quot;:24.51}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:20.53},{&quot;2026-06-11&quot;:20.27},{&quot;2026-06-12&quot;:20.27},{&quot;2026-06-13&quot;:20.27},{&quot;2026-06-14&quot;:20.57},{&quot;2026-06-15&quot;:20.57},{&quot;2026-06-16&quot;:21.09},{&quot;2026-06-17&quot;:21.09},{&quot;2026-06-18&quot;:21.09},{&quot;2026-06-19&quot;:21.05},{&quot;2026-06-20&quot;:21.16},{&quot;2026-06-21&quot;:21.16},{&quot;2026-06-22&quot;:21.41},{&quot;2026-06-23&quot;:21.53},{&quot;2026-06-24&quot;:21.59},{&quot;2026-06-25&quot;:21.89},{&quot;2026-06-26&quot;:21.83},{&quot;2026-06-27&quot;:21.88},{&quot;2026-06-28&quot;:21.73},{&quot;2026-06-29&quot;:21.73},{&quot;2026-06-30&quot;:21.73},{&quot;2026-07-01&quot;:21.89},{&quot;2026-07-02&quot;:21.89},{&quot;2026-07-03&quot;:21.62},{&quot;2026-07-04&quot;:21.62},{&quot;2026-07-05&quot;:21.62},{&quot;2026-07-06&quot;:21.52},{&quot;2026-07-07&quot;:21.05},{&quot;2026-07-08&quot;:21.05},{&quot;2026-07-09&quot;:20.72},{&quot;2026-07-10&quot;:20.72},{&quot;2026-07-11&quot;:20.72},{&quot;2026-07-12&quot;:21.2},{&quot;2026-07-13&quot;:21.1},{&quot;2026-07-14&quot;:20.68},{&quot;2026-07-15&quot;:20.55},{&quot;2026-07-16&quot;:20.55},{&quot;2026-07-17&quot;:20.55},{&quot;2026-07-18&quot;:20.41},{&quot;2026-07-19&quot;:20.36},{&quot;2026-07-20&quot;:20.56},{&quot;2026-07-21&quot;:20.48},{&quot;2026-07-23&quot;:20.48},{&quot;2026-07-25&quot;:20.48},{&quot;2026-07-26&quot;:20.48},{&quot;2026-07-27&quot;:20.33},{&quot;2026-07-29&quot;:20.2},{&quot;2026-07-30&quot;:20.2},{&quot;2026-07-31&quot;:20.6},{&quot;2026-08-01&quot;:21.07},{&quot;2026-08-02&quot;:21.24},{&quot;2026-08-03&quot;:21.22},{&quot;2026-08-04&quot;:20.88},{&quot;2026-08-05&quot;:20.88},{&quot;2026-08-07&quot;:20.75},{&quot;2026-08-08&quot;:20.9},{&quot;2026-08-09&quot;:21.18},{&quot;2026-08-10&quot;:21.18},{&quot;2026-08-11&quot;:21.18},{&quot;2026-08-12&quot;:21.23},{&quot;2026-08-13&quot;:21.23},{&quot;2026-08-14&quot;:21.27},{&quot;2026-08-15&quot;:21.35},{&quot;2026-08-16&quot;:21.27},{&quot;2026-08-17&quot;:21.2},{&quot;2026-08-18&quot;:21.29},{&quot;2026-08-19&quot;:21.29},{&quot;2026-08-20&quot;:21.29},{&quot;2026-08-21&quot;:21.29},{&quot;2026-08-22&quot;:21.29},{&quot;2026-08-23&quot;:21.21},{&quot;2026-08-24&quot;:20.8},{&quot;2026-08-25&quot;:20.8},{&quot;2026-08-26&quot;:20.48},{&quot;2026-08-27&quot;:20.48},{&quot;2026-08-28&quot;:20.75},{&quot;2026-08-29&quot;:20.75},{&quot;2026-08-30&quot;:21.56},{&quot;2026-08-31&quot;:21.71},{&quot;2026-09-01&quot;:21.71},{&quot;2026-09-02&quot;:21.14},{&quot;2026-09-03&quot;:20.93},{&quot;2026-09-04&quot;:20.84},{&quot;2026-09-05&quot;:21.32},{&quot;2026-09-06&quot;:21.32},{&quot;2026-09-07&quot;:21.05},{&quot;2026-09-08&quot;:21.39},{&quot;2026-09-09&quot;:21.43},{&quot;2026-09-10&quot;:21.36},{&quot;2026-09-11&quot;:21.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Reiterate
        </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reiterate" src="https://cards.scryfall.io/large/front/9/9/99302c41-434f-41ff-a61a-2c3681a0c135.jpg?1783927791" />
    </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">
                $19.65
              </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">
                $31.99
              </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">$13.00</span>
              <span class="text-xs text-grey-text">Credit: $16.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:30.18},{&quot;2026-06-11&quot;:30.18},{&quot;2026-06-12&quot;:30.28},{&quot;2026-06-13&quot;:30.28},{&quot;2026-06-14&quot;:30.88},{&quot;2026-06-15&quot;:30.07},{&quot;2026-06-16&quot;:30.07},{&quot;2026-06-17&quot;:30.02},{&quot;2026-06-18&quot;:30.02},{&quot;2026-06-19&quot;:29.41},{&quot;2026-06-20&quot;:29.96},{&quot;2026-06-21&quot;:29.96},{&quot;2026-06-22&quot;:29.96},{&quot;2026-06-23&quot;:29.96},{&quot;2026-06-24&quot;:30.0},{&quot;2026-06-25&quot;:30.0},{&quot;2026-06-26&quot;:30.0},{&quot;2026-06-27&quot;:30.0},{&quot;2026-06-28&quot;:30.0},{&quot;2026-06-29&quot;:30.0},{&quot;2026-06-30&quot;:30.0},{&quot;2026-07-01&quot;:30.0},{&quot;2026-07-02&quot;:30.0},{&quot;2026-07-03&quot;:28.67},{&quot;2026-07-04&quot;:28.67},{&quot;2026-07-05&quot;:28.67},{&quot;2026-07-06&quot;:28.67},{&quot;2026-07-07&quot;:28.67},{&quot;2026-07-08&quot;:28.67},{&quot;2026-07-09&quot;:28.67},{&quot;2026-07-10&quot;:28.67},{&quot;2026-07-11&quot;:28.67},{&quot;2026-07-12&quot;:28.67},{&quot;2026-07-13&quot;:28.67},{&quot;2026-07-14&quot;:28.67},{&quot;2026-07-15&quot;:28.67},{&quot;2026-07-16&quot;:28.67},{&quot;2026-07-17&quot;:28.67},{&quot;2026-07-18&quot;:28.67},{&quot;2026-07-19&quot;:28.67},{&quot;2026-07-20&quot;:28.67},{&quot;2026-07-21&quot;:28.67},{&quot;2026-07-23&quot;:28.86},{&quot;2026-07-25&quot;:28.86},{&quot;2026-07-26&quot;:28.86},{&quot;2026-07-27&quot;:28.86},{&quot;2026-07-29&quot;:28.86},{&quot;2026-07-30&quot;:28.86},{&quot;2026-07-31&quot;:28.86},{&quot;2026-08-01&quot;:28.86},{&quot;2026-08-02&quot;:28.86},{&quot;2026-08-03&quot;:29.12},{&quot;2026-08-04&quot;:29.16},{&quot;2026-08-05&quot;:29.16},{&quot;2026-08-07&quot;:29.16},{&quot;2026-08-08&quot;:29.16},{&quot;2026-08-09&quot;:29.16},{&quot;2026-08-10&quot;:29.16},{&quot;2026-08-11&quot;:29.62},{&quot;2026-08-12&quot;:29.62},{&quot;2026-08-13&quot;:30.24},{&quot;2026-08-14&quot;:30.98},{&quot;2026-08-15&quot;:30.98},{&quot;2026-08-16&quot;:30.98},{&quot;2026-08-17&quot;:30.98},{&quot;2026-08-18&quot;:30.98},{&quot;2026-08-19&quot;:30.98},{&quot;2026-08-20&quot;:30.98},{&quot;2026-08-21&quot;:30.6},{&quot;2026-08-22&quot;:30.97},{&quot;2026-08-23&quot;:30.97},{&quot;2026-08-24&quot;:30.97},{&quot;2026-08-25&quot;:30.97},{&quot;2026-08-26&quot;:30.97},{&quot;2026-08-27&quot;:30.97},{&quot;2026-08-28&quot;:30.97},{&quot;2026-08-29&quot;:30.97},{&quot;2026-08-30&quot;:31.18},{&quot;2026-08-31&quot;:31.18},{&quot;2026-09-01&quot;:31.18},{&quot;2026-09-02&quot;:31.33},{&quot;2026-09-03&quot;:31.57},{&quot;2026-09-04&quot;:31.57},{&quot;2026-09-05&quot;:31.57},{&quot;2026-09-06&quot;:31.57},{&quot;2026-09-07&quot;:31.57},{&quot;2026-09-08&quot;:31.57},{&quot;2026-09-09&quot;:31.99},{&quot;2026-09-10&quot;:31.99},{&quot;2026-09-11&quot;:31.99}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:19.27},{&quot;2026-06-11&quot;:19.26},{&quot;2026-06-12&quot;:19.15},{&quot;2026-06-13&quot;:19.23},{&quot;2026-06-14&quot;:19.07},{&quot;2026-06-15&quot;:19.05},{&quot;2026-06-16&quot;:18.72},{&quot;2026-06-17&quot;:18.58},{&quot;2026-06-18&quot;:18.37},{&quot;2026-06-19&quot;:18.35},{&quot;2026-06-20&quot;:18.62},{&quot;2026-06-21&quot;:18.61},{&quot;2026-06-22&quot;:18.62},{&quot;2026-06-23&quot;:18.79},{&quot;2026-06-24&quot;:18.8},{&quot;2026-06-25&quot;:18.98},{&quot;2026-06-26&quot;:18.89},{&quot;2026-06-27&quot;:19.21},{&quot;2026-06-28&quot;:19.21},{&quot;2026-06-29&quot;:19.34},{&quot;2026-06-30&quot;:19.26},{&quot;2026-07-01&quot;:19.56},{&quot;2026-07-02&quot;:19.36},{&quot;2026-07-03&quot;:19.12},{&quot;2026-07-04&quot;:18.91},{&quot;2026-07-05&quot;:18.9},{&quot;2026-07-06&quot;:18.85},{&quot;2026-07-07&quot;:18.85},{&quot;2026-07-08&quot;:19.2},{&quot;2026-07-09&quot;:19.6},{&quot;2026-07-10&quot;:20.08},{&quot;2026-07-11&quot;:20.0},{&quot;2026-07-12&quot;:19.7},{&quot;2026-07-13&quot;:19.65},{&quot;2026-07-14&quot;:19.56},{&quot;2026-07-15&quot;:19.42},{&quot;2026-07-16&quot;:19.41},{&quot;2026-07-17&quot;:19.41},{&quot;2026-07-18&quot;:19.48},{&quot;2026-07-19&quot;:19.49},{&quot;2026-07-20&quot;:18.99},{&quot;2026-07-21&quot;:19.44},{&quot;2026-07-23&quot;:19.29},{&quot;2026-07-25&quot;:19.37},{&quot;2026-07-26&quot;:19.35},{&quot;2026-07-27&quot;:19.36},{&quot;2026-07-29&quot;:19.15},{&quot;2026-07-30&quot;:19.49},{&quot;2026-07-31&quot;:19.05},{&quot;2026-08-01&quot;:19.05},{&quot;2026-08-02&quot;:18.87},{&quot;2026-08-03&quot;:18.88},{&quot;2026-08-04&quot;:18.85},{&quot;2026-08-05&quot;:18.64},{&quot;2026-08-07&quot;:19.38},{&quot;2026-08-08&quot;:19.34},{&quot;2026-08-09&quot;:19.18},{&quot;2026-08-10&quot;:19.18},{&quot;2026-08-11&quot;:19.03},{&quot;2026-08-12&quot;:18.88},{&quot;2026-08-13&quot;:18.82},{&quot;2026-08-14&quot;:18.81},{&quot;2026-08-15&quot;:18.89},{&quot;2026-08-16&quot;:19.02},{&quot;2026-08-17&quot;:19.02},{&quot;2026-08-18&quot;:18.98},{&quot;2026-08-19&quot;:18.83},{&quot;2026-08-20&quot;:18.83},{&quot;2026-08-21&quot;:18.92},{&quot;2026-08-22&quot;:19.06},{&quot;2026-08-23&quot;:19.05},{&quot;2026-08-24&quot;:18.98},{&quot;2026-08-25&quot;:18.98},{&quot;2026-08-26&quot;:18.95},{&quot;2026-08-27&quot;:18.97},{&quot;2026-08-28&quot;:18.76},{&quot;2026-08-29&quot;:18.76},{&quot;2026-08-30&quot;:19.07},{&quot;2026-08-31&quot;:19.05},{&quot;2026-09-01&quot;:19.05},{&quot;2026-09-02&quot;:19.36},{&quot;2026-09-03&quot;:18.86},{&quot;2026-09-04&quot;:18.9},{&quot;2026-09-05&quot;:19.04},{&quot;2026-09-06&quot;:18.92},{&quot;2026-09-07&quot;:18.77},{&quot;2026-09-08&quot;:18.99},{&quot;2026-09-09&quot;:18.93},{&quot;2026-09-10&quot;:19.11},{&quot;2026-09-11&quot;:19.65}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $19.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="Grand Arbiter Augustin IV" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/4/f43748ea-1d65-4ee8-9c66-221412a284c0.jpg?1783921832" />

        <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">
            Grand Arbiter Augustin IV
        </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 — Human Advisor</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Grand Arbiter Augustin IV" src="https://cards.scryfall.io/large/front/f/4/f43748ea-1d65-4ee8-9c66-221412a284c0.jpg?1783921832" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:18.07},{&quot;2026-06-11&quot;:18.07},{&quot;2026-06-12&quot;:18.07},{&quot;2026-06-13&quot;:18.07},{&quot;2026-06-14&quot;:17.91},{&quot;2026-06-15&quot;:17.91},{&quot;2026-06-16&quot;:17.94},{&quot;2026-06-17&quot;:17.9},{&quot;2026-06-18&quot;:17.9},{&quot;2026-06-19&quot;:17.9},{&quot;2026-06-20&quot;:17.9},{&quot;2026-06-21&quot;:17.9},{&quot;2026-06-22&quot;:17.9},{&quot;2026-06-23&quot;:17.9},{&quot;2026-06-24&quot;:17.9},{&quot;2026-06-25&quot;:17.9},{&quot;2026-06-26&quot;:17.9},{&quot;2026-06-27&quot;:17.75},{&quot;2026-06-28&quot;:17.75},{&quot;2026-06-29&quot;:17.75},{&quot;2026-06-30&quot;:17.84},{&quot;2026-07-01&quot;:17.84},{&quot;2026-07-02&quot;:17.84},{&quot;2026-07-03&quot;:18.12},{&quot;2026-07-04&quot;:18.12},{&quot;2026-07-05&quot;:18.12},{&quot;2026-07-06&quot;:18.07},{&quot;2026-07-07&quot;:18.07},{&quot;2026-07-08&quot;:18.11},{&quot;2026-07-09&quot;:18.11},{&quot;2026-07-10&quot;:18.32},{&quot;2026-07-11&quot;:18.32},{&quot;2026-07-12&quot;:18.32},{&quot;2026-07-13&quot;:18.37},{&quot;2026-07-14&quot;:18.37},{&quot;2026-07-15&quot;:18.37},{&quot;2026-07-16&quot;:18.37},{&quot;2026-07-17&quot;:18.37},{&quot;2026-07-18&quot;:18.37},{&quot;2026-07-19&quot;:18.37},{&quot;2026-07-20&quot;:18.37},{&quot;2026-07-21&quot;:18.37},{&quot;2026-07-23&quot;:18.37},{&quot;2026-07-25&quot;:18.37},{&quot;2026-07-26&quot;:18.37},{&quot;2026-07-27&quot;:18.37},{&quot;2026-07-29&quot;:18.37},{&quot;2026-07-30&quot;:18.37},{&quot;2026-07-31&quot;:18.37},{&quot;2026-08-01&quot;:18.37},{&quot;2026-08-02&quot;:18.37},{&quot;2026-08-03&quot;:18.37},{&quot;2026-08-04&quot;:18.37},{&quot;2026-08-05&quot;:18.37},{&quot;2026-08-07&quot;:18.37},{&quot;2026-08-08&quot;:18.37},{&quot;2026-08-09&quot;:18.37},{&quot;2026-08-10&quot;:18.37},{&quot;2026-08-11&quot;:18.37},{&quot;2026-08-12&quot;:18.37},{&quot;2026-08-13&quot;:18.37},{&quot;2026-08-14&quot;:18.37},{&quot;2026-08-15&quot;:18.76},{&quot;2026-08-16&quot;:18.83},{&quot;2026-08-17&quot;:19.09},{&quot;2026-08-18&quot;:19.35},{&quot;2026-08-19&quot;:19.35},{&quot;2026-08-20&quot;:19.35},{&quot;2026-08-21&quot;:19.35},{&quot;2026-08-22&quot;:19.35},{&quot;2026-08-23&quot;:19.35},{&quot;2026-08-24&quot;:19.35},{&quot;2026-08-25&quot;:19.35},{&quot;2026-08-26&quot;:19.15},{&quot;2026-08-27&quot;:19.15},{&quot;2026-08-28&quot;:19.15},{&quot;2026-08-29&quot;:19.15},{&quot;2026-08-30&quot;:18.8},{&quot;2026-08-31&quot;:18.94},{&quot;2026-09-01&quot;:18.94},{&quot;2026-09-02&quot;:19.23},{&quot;2026-09-03&quot;:19.23},{&quot;2026-09-04&quot;:19.23},{&quot;2026-09-05&quot;:19.23},{&quot;2026-09-06&quot;:19.23},{&quot;2026-09-07&quot;:19.23},{&quot;2026-09-08&quot;:19.26},{&quot;2026-09-09&quot;:19.26},{&quot;2026-09-10&quot;:19.26},{&quot;2026-09-11&quot;:19.26}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:17.03},{&quot;2026-06-11&quot;:16.97},{&quot;2026-06-12&quot;:17.25},{&quot;2026-06-13&quot;:17.37},{&quot;2026-06-14&quot;:17.12},{&quot;2026-06-15&quot;:17.12},{&quot;2026-06-16&quot;:16.91},{&quot;2026-06-17&quot;:16.71},{&quot;2026-06-18&quot;:16.78},{&quot;2026-06-19&quot;:16.5},{&quot;2026-06-20&quot;:16.66},{&quot;2026-06-21&quot;:16.66},{&quot;2026-06-22&quot;:16.67},{&quot;2026-06-23&quot;:16.85},{&quot;2026-06-24&quot;:17.28},{&quot;2026-06-25&quot;:17.51},{&quot;2026-06-26&quot;:17.38},{&quot;2026-06-27&quot;:17.08},{&quot;2026-06-28&quot;:17.69},{&quot;2026-06-29&quot;:17.85},{&quot;2026-06-30&quot;:18.0},{&quot;2026-07-01&quot;:17.82},{&quot;2026-07-02&quot;:18.1},{&quot;2026-07-03&quot;:18.02},{&quot;2026-07-04&quot;:18.02},{&quot;2026-07-05&quot;:18.03},{&quot;2026-07-06&quot;:17.37},{&quot;2026-07-07&quot;:16.82},{&quot;2026-07-08&quot;:16.48},{&quot;2026-07-09&quot;:16.33},{&quot;2026-07-10&quot;:16.42},{&quot;2026-07-11&quot;:16.73},{&quot;2026-07-12&quot;:16.72},{&quot;2026-07-13&quot;:17.47},{&quot;2026-07-14&quot;:17.33},{&quot;2026-07-15&quot;:17.84},{&quot;2026-07-16&quot;:17.63},{&quot;2026-07-17&quot;:17.82},{&quot;2026-07-18&quot;:17.64},{&quot;2026-07-19&quot;:18.04},{&quot;2026-07-20&quot;:18.46},{&quot;2026-07-21&quot;:18.47},{&quot;2026-07-23&quot;:18.4},{&quot;2026-07-25&quot;:18.26},{&quot;2026-07-26&quot;:18.13},{&quot;2026-07-27&quot;:18.13},{&quot;2026-07-29&quot;:18.34},{&quot;2026-07-30&quot;:18.69},{&quot;2026-07-31&quot;:18.58},{&quot;2026-08-01&quot;:18.35},{&quot;2026-08-02&quot;:17.85},{&quot;2026-08-03&quot;:17.82},{&quot;2026-08-04&quot;:18.32},{&quot;2026-08-05&quot;:18.08},{&quot;2026-08-07&quot;:18.25},{&quot;2026-08-08&quot;:18.25},{&quot;2026-08-09&quot;:18.48},{&quot;2026-08-10&quot;:18.69},{&quot;2026-08-11&quot;:18.68},{&quot;2026-08-12&quot;:19.0},{&quot;2026-08-13&quot;:19.05},{&quot;2026-08-14&quot;:18.76},{&quot;2026-08-15&quot;:18.85},{&quot;2026-08-16&quot;:18.57},{&quot;2026-08-17&quot;:18.57},{&quot;2026-08-18&quot;:18.3},{&quot;2026-08-19&quot;:18.12},{&quot;2026-08-20&quot;:18.12},{&quot;2026-08-21&quot;:18.97},{&quot;2026-08-22&quot;:18.97},{&quot;2026-08-23&quot;:19.04},{&quot;2026-08-24&quot;:18.9},{&quot;2026-08-25&quot;:18.9},{&quot;2026-08-26&quot;:18.94},{&quot;2026-08-27&quot;:19.06},{&quot;2026-08-28&quot;:18.8},{&quot;2026-08-29&quot;:18.8},{&quot;2026-08-30&quot;:18.72},{&quot;2026-08-31&quot;:18.72},{&quot;2026-09-01&quot;:18.72},{&quot;2026-09-02&quot;:18.92},{&quot;2026-09-03&quot;:18.93},{&quot;2026-09-04&quot;:19.22},{&quot;2026-09-05&quot;:18.98},{&quot;2026-09-06&quot;:18.82},{&quot;2026-09-07&quot;:19.07},{&quot;2026-09-08&quot;:19.46},{&quot;2026-09-09&quot;:19.5},{&quot;2026-09-10&quot;:19.5},{&quot;2026-09-11&quot;:19.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="92979"
  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-tdm 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">
            Voice of Victory
        </span>


      </div>

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

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

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

        <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">
            Voice of Victory
        </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 Bard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Voice of Victory" src="https://cards.scryfall.io/large/front/e/c/ec3de5f4-bb55-4ab9-995f-f3e0dc22c1bb.jpg?1758215927" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $18.77
              </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">
                $20.61
              </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">$20.50</span>
              <span class="text-xs text-grey-text">Credit: $26.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-11&quot;:21.96},{&quot;2026-06-12&quot;:21.96},{&quot;2026-06-13&quot;:22.06},{&quot;2026-06-14&quot;:22.18},{&quot;2026-06-15&quot;:22.3},{&quot;2026-06-16&quot;:22.31},{&quot;2026-06-17&quot;:22.5},{&quot;2026-06-18&quot;:22.39},{&quot;2026-06-19&quot;:22.39},{&quot;2026-06-20&quot;:22.45},{&quot;2026-06-21&quot;:22.45},{&quot;2026-06-22&quot;:22.45},{&quot;2026-06-23&quot;:22.45},{&quot;2026-06-24&quot;:22.45},{&quot;2026-06-25&quot;:22.45},{&quot;2026-06-26&quot;:22.24},{&quot;2026-06-27&quot;:22.24},{&quot;2026-06-28&quot;:22.24},{&quot;2026-06-29&quot;:22.24},{&quot;2026-06-30&quot;:22.24},{&quot;2026-07-01&quot;:22.01},{&quot;2026-07-02&quot;:21.95},{&quot;2026-07-03&quot;:21.95},{&quot;2026-07-04&quot;:21.95},{&quot;2026-07-05&quot;:22.14},{&quot;2026-07-06&quot;:21.78},{&quot;2026-07-07&quot;:21.78},{&quot;2026-07-08&quot;:21.67},{&quot;2026-07-09&quot;:20.95},{&quot;2026-07-10&quot;:20.45},{&quot;2026-07-11&quot;:19.66},{&quot;2026-07-12&quot;:19.62},{&quot;2026-07-13&quot;:19.41},{&quot;2026-07-14&quot;:18.96},{&quot;2026-07-15&quot;:18.74},{&quot;2026-07-16&quot;:18.72},{&quot;2026-07-17&quot;:18.64},{&quot;2026-07-18&quot;:18.4},{&quot;2026-07-19&quot;:18.4},{&quot;2026-07-20&quot;:18.41},{&quot;2026-07-21&quot;:18.58},{&quot;2026-07-23&quot;:18.6},{&quot;2026-07-25&quot;:18.58},{&quot;2026-07-26&quot;:18.66},{&quot;2026-07-27&quot;:18.57},{&quot;2026-07-28&quot;:18.66},{&quot;2026-07-29&quot;:18.57},{&quot;2026-07-30&quot;:18.47},{&quot;2026-07-31&quot;:18.82},{&quot;2026-08-01&quot;:19.03},{&quot;2026-08-02&quot;:19.03},{&quot;2026-08-03&quot;:19.09},{&quot;2026-08-04&quot;:19.02},{&quot;2026-08-05&quot;:19.1},{&quot;2026-08-07&quot;:19.31},{&quot;2026-08-08&quot;:19.31},{&quot;2026-08-09&quot;:19.65},{&quot;2026-08-10&quot;:19.61},{&quot;2026-08-11&quot;:20.38},{&quot;2026-08-12&quot;:20.38},{&quot;2026-08-13&quot;:20.28},{&quot;2026-08-14&quot;:19.96},{&quot;2026-08-15&quot;:19.76},{&quot;2026-08-16&quot;:19.76},{&quot;2026-08-17&quot;:19.69},{&quot;2026-08-18&quot;:19.83},{&quot;2026-08-19&quot;:20.02},{&quot;2026-08-20&quot;:20.02},{&quot;2026-08-21&quot;:19.71},{&quot;2026-08-22&quot;:19.71},{&quot;2026-08-23&quot;:19.67},{&quot;2026-08-24&quot;:19.67},{&quot;2026-08-25&quot;:19.67},{&quot;2026-08-26&quot;:18.85},{&quot;2026-08-27&quot;:18.94},{&quot;2026-08-28&quot;:18.94},{&quot;2026-08-29&quot;:18.94},{&quot;2026-08-30&quot;:18.86},{&quot;2026-08-31&quot;:19.51},{&quot;2026-09-01&quot;:19.51},{&quot;2026-09-02&quot;:19.82},{&quot;2026-09-03&quot;:19.73},{&quot;2026-09-04&quot;:19.73},{&quot;2026-09-05&quot;:20.29},{&quot;2026-09-06&quot;:20.4},{&quot;2026-09-07&quot;:20.4},{&quot;2026-09-08&quot;:20.53},{&quot;2026-09-09&quot;:20.53},{&quot;2026-09-10&quot;:20.53},{&quot;2026-09-11&quot;:20.61}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:20.62},{&quot;2026-06-12&quot;:19.54},{&quot;2026-06-13&quot;:19.1},{&quot;2026-06-14&quot;:19.14},{&quot;2026-06-15&quot;:18.57},{&quot;2026-06-16&quot;:18.56},{&quot;2026-06-17&quot;:18.72},{&quot;2026-06-18&quot;:18.9},{&quot;2026-06-19&quot;:18.83},{&quot;2026-06-20&quot;:18.93},{&quot;2026-06-21&quot;:18.72},{&quot;2026-06-22&quot;:18.42},{&quot;2026-06-23&quot;:18.12},{&quot;2026-06-24&quot;:18.23},{&quot;2026-06-25&quot;:18.61},{&quot;2026-06-26&quot;:18.58},{&quot;2026-06-27&quot;:19.02},{&quot;2026-06-28&quot;:18.76},{&quot;2026-06-29&quot;:18.61},{&quot;2026-06-30&quot;:18.41},{&quot;2026-07-01&quot;:18.97},{&quot;2026-07-02&quot;:18.4},{&quot;2026-07-03&quot;:18.55},{&quot;2026-07-04&quot;:17.84},{&quot;2026-07-05&quot;:18.03},{&quot;2026-07-06&quot;:17.96},{&quot;2026-07-07&quot;:17.74},{&quot;2026-07-08&quot;:17.69},{&quot;2026-07-09&quot;:18.05},{&quot;2026-07-10&quot;:19.1},{&quot;2026-07-11&quot;:18.93},{&quot;2026-07-12&quot;:18.91},{&quot;2026-07-13&quot;:17.96},{&quot;2026-07-14&quot;:17.49},{&quot;2026-07-15&quot;:17.54},{&quot;2026-07-16&quot;:17.42},{&quot;2026-07-17&quot;:16.87},{&quot;2026-07-18&quot;:16.82},{&quot;2026-07-19&quot;:16.67},{&quot;2026-07-20&quot;:16.98},{&quot;2026-07-21&quot;:17.38},{&quot;2026-07-23&quot;:17.73},{&quot;2026-07-25&quot;:18.71},{&quot;2026-07-26&quot;:18.25},{&quot;2026-07-27&quot;:18.03},{&quot;2026-07-28&quot;:17.44},{&quot;2026-07-29&quot;:16.92},{&quot;2026-07-30&quot;:16.72},{&quot;2026-07-31&quot;:17.74},{&quot;2026-08-01&quot;:17.75},{&quot;2026-08-02&quot;:17.68},{&quot;2026-08-03&quot;:17.41},{&quot;2026-08-04&quot;:18.17},{&quot;2026-08-05&quot;:18.84},{&quot;2026-08-07&quot;:17.26},{&quot;2026-08-08&quot;:16.83},{&quot;2026-08-09&quot;:16.84},{&quot;2026-08-10&quot;:16.98},{&quot;2026-08-11&quot;:17.35},{&quot;2026-08-12&quot;:18.1},{&quot;2026-08-13&quot;:18.04},{&quot;2026-08-14&quot;:18.23},{&quot;2026-08-15&quot;:17.77},{&quot;2026-08-16&quot;:17.43},{&quot;2026-08-17&quot;:17.52},{&quot;2026-08-18&quot;:17.99},{&quot;2026-08-19&quot;:18.62},{&quot;2026-08-20&quot;:18.62},{&quot;2026-08-21&quot;:18.1},{&quot;2026-08-22&quot;:17.64},{&quot;2026-08-23&quot;:17.15},{&quot;2026-08-24&quot;:17.26},{&quot;2026-08-25&quot;:17.26},{&quot;2026-08-26&quot;:17.26},{&quot;2026-08-27&quot;:17.16},{&quot;2026-08-28&quot;:17.53},{&quot;2026-08-29&quot;:17.53},{&quot;2026-08-30&quot;:17.62},{&quot;2026-08-31&quot;:18.86},{&quot;2026-09-01&quot;:18.86},{&quot;2026-09-02&quot;:19.74},{&quot;2026-09-03&quot;:19.51},{&quot;2026-09-04&quot;:19.1},{&quot;2026-09-05&quot;:18.66},{&quot;2026-09-06&quot;:19.07},{&quot;2026-09-07&quot;:19.19},{&quot;2026-09-08&quot;:19.08},{&quot;2026-09-09&quot;:18.99},{&quot;2026-09-10&quot;:18.8},{&quot;2026-09-11&quot;:18.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant — Lesson
      </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">
            $18.56
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Redirect Lightning
        </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 — Lesson</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Redirect Lightning" src="https://cards.scryfall.io/large/front/2/c/2c1c0fb2-cb74-46a1-9ce4-5274feab1146.jpg?1783904884" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $18.56
              </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">
                $25.64
              </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">$15.50</span>
              <span class="text-xs text-grey-text">Credit: $20.15</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;:24.53},{&quot;2026-06-11&quot;:24.58},{&quot;2026-06-12&quot;:24.98},{&quot;2026-06-13&quot;:25.07},{&quot;2026-06-14&quot;:25.08},{&quot;2026-06-15&quot;:25.12},{&quot;2026-06-16&quot;:25.08},{&quot;2026-06-17&quot;:25.12},{&quot;2026-06-18&quot;:25.53},{&quot;2026-06-19&quot;:25.46},{&quot;2026-06-20&quot;:25.47},{&quot;2026-06-21&quot;:25.38},{&quot;2026-06-22&quot;:25.02},{&quot;2026-06-23&quot;:24.95},{&quot;2026-06-24&quot;:24.66},{&quot;2026-06-25&quot;:24.6},{&quot;2026-06-26&quot;:24.59},{&quot;2026-06-27&quot;:24.42},{&quot;2026-06-28&quot;:24.28},{&quot;2026-06-29&quot;:24.28},{&quot;2026-06-30&quot;:24.29},{&quot;2026-07-01&quot;:24.22},{&quot;2026-07-02&quot;:24.12},{&quot;2026-07-03&quot;:23.85},{&quot;2026-07-04&quot;:23.6},{&quot;2026-07-05&quot;:23.34},{&quot;2026-07-06&quot;:23.19},{&quot;2026-07-07&quot;:22.97},{&quot;2026-07-08&quot;:22.77},{&quot;2026-07-09&quot;:22.57},{&quot;2026-07-10&quot;:22.58},{&quot;2026-07-11&quot;:22.32},{&quot;2026-07-12&quot;:22.12},{&quot;2026-07-13&quot;:22.07},{&quot;2026-07-14&quot;:22.17},{&quot;2026-07-15&quot;:21.99},{&quot;2026-07-16&quot;:22.51},{&quot;2026-07-17&quot;:22.52},{&quot;2026-07-18&quot;:23.11},{&quot;2026-07-19&quot;:23.11},{&quot;2026-07-20&quot;:23.04},{&quot;2026-07-21&quot;:23.21},{&quot;2026-07-23&quot;:23.36},{&quot;2026-07-25&quot;:24.39},{&quot;2026-07-26&quot;:24.33},{&quot;2026-07-27&quot;:24.15},{&quot;2026-07-29&quot;:24.66},{&quot;2026-07-30&quot;:24.66},{&quot;2026-07-31&quot;:24.85},{&quot;2026-08-01&quot;:24.66},{&quot;2026-08-02&quot;:24.76},{&quot;2026-08-03&quot;:25.04},{&quot;2026-08-04&quot;:24.79},{&quot;2026-08-05&quot;:24.86},{&quot;2026-08-07&quot;:24.87},{&quot;2026-08-08&quot;:24.84},{&quot;2026-08-09&quot;:24.86},{&quot;2026-08-10&quot;:24.94},{&quot;2026-08-11&quot;:25.17},{&quot;2026-08-12&quot;:25.02},{&quot;2026-08-13&quot;:25.15},{&quot;2026-08-14&quot;:25.15},{&quot;2026-08-15&quot;:25.17},{&quot;2026-08-16&quot;:25.17},{&quot;2026-08-17&quot;:24.31},{&quot;2026-08-18&quot;:24.43},{&quot;2026-08-19&quot;:24.58},{&quot;2026-08-20&quot;:24.58},{&quot;2026-08-21&quot;:24.67},{&quot;2026-08-22&quot;:24.69},{&quot;2026-08-23&quot;:24.6},{&quot;2026-08-24&quot;:24.64},{&quot;2026-08-25&quot;:24.64},{&quot;2026-08-26&quot;:24.82},{&quot;2026-08-27&quot;:24.96},{&quot;2026-08-28&quot;:25.05},{&quot;2026-08-29&quot;:25.05},{&quot;2026-08-30&quot;:25.18},{&quot;2026-08-31&quot;:25.17},{&quot;2026-09-01&quot;:25.17},{&quot;2026-09-02&quot;:24.97},{&quot;2026-09-03&quot;:25.04},{&quot;2026-09-04&quot;:25.08},{&quot;2026-09-05&quot;:25.47},{&quot;2026-09-06&quot;:25.42},{&quot;2026-09-07&quot;:25.28},{&quot;2026-09-08&quot;:25.3},{&quot;2026-09-09&quot;:25.48},{&quot;2026-09-10&quot;:25.43},{&quot;2026-09-11&quot;:25.64}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:19.16},{&quot;2026-06-11&quot;:18.37},{&quot;2026-06-12&quot;:18.27},{&quot;2026-06-13&quot;:18.46},{&quot;2026-06-14&quot;:17.82},{&quot;2026-06-15&quot;:17.4},{&quot;2026-06-16&quot;:17.4},{&quot;2026-06-17&quot;:17.45},{&quot;2026-06-18&quot;:17.86},{&quot;2026-06-19&quot;:17.41},{&quot;2026-06-20&quot;:16.6},{&quot;2026-06-21&quot;:16.41},{&quot;2026-06-22&quot;:16.41},{&quot;2026-06-23&quot;:16.36},{&quot;2026-06-24&quot;:16.32},{&quot;2026-06-25&quot;:16.29},{&quot;2026-06-26&quot;:16.72},{&quot;2026-06-27&quot;:16.52},{&quot;2026-06-28&quot;:16.36},{&quot;2026-06-29&quot;:16.36},{&quot;2026-06-30&quot;:16.43},{&quot;2026-07-01&quot;:16.39},{&quot;2026-07-02&quot;:16.43},{&quot;2026-07-03&quot;:16.57},{&quot;2026-07-04&quot;:16.35},{&quot;2026-07-05&quot;:16.02},{&quot;2026-07-06&quot;:17.06},{&quot;2026-07-07&quot;:17.29},{&quot;2026-07-08&quot;:17.36},{&quot;2026-07-09&quot;:17.3},{&quot;2026-07-10&quot;:17.59},{&quot;2026-07-11&quot;:17.91},{&quot;2026-07-12&quot;:18.04},{&quot;2026-07-13&quot;:17.05},{&quot;2026-07-14&quot;:16.8},{&quot;2026-07-15&quot;:16.86},{&quot;2026-07-16&quot;:17.04},{&quot;2026-07-17&quot;:17.0},{&quot;2026-07-18&quot;:17.22},{&quot;2026-07-19&quot;:17.64},{&quot;2026-07-20&quot;:18.06},{&quot;2026-07-21&quot;:17.99},{&quot;2026-07-23&quot;:17.9},{&quot;2026-07-25&quot;:17.65},{&quot;2026-07-26&quot;:17.73},{&quot;2026-07-27&quot;:17.72},{&quot;2026-07-29&quot;:17.96},{&quot;2026-07-30&quot;:17.73},{&quot;2026-07-31&quot;:17.75},{&quot;2026-08-01&quot;:17.69},{&quot;2026-08-02&quot;:17.57},{&quot;2026-08-03&quot;:17.02},{&quot;2026-08-04&quot;:16.57},{&quot;2026-08-05&quot;:16.26},{&quot;2026-08-07&quot;:16.34},{&quot;2026-08-08&quot;:16.15},{&quot;2026-08-09&quot;:17.09},{&quot;2026-08-10&quot;:17.58},{&quot;2026-08-11&quot;:17.83},{&quot;2026-08-12&quot;:17.55},{&quot;2026-08-13&quot;:17.33},{&quot;2026-08-14&quot;:17.03},{&quot;2026-08-15&quot;:17.19},{&quot;2026-08-16&quot;:17.31},{&quot;2026-08-17&quot;:16.32},{&quot;2026-08-18&quot;:16.69},{&quot;2026-08-19&quot;:16.52},{&quot;2026-08-20&quot;:16.52},{&quot;2026-08-21&quot;:17.23},{&quot;2026-08-22&quot;:17.3},{&quot;2026-08-23&quot;:17.4},{&quot;2026-08-24&quot;:17.81},{&quot;2026-08-25&quot;:17.81},{&quot;2026-08-26&quot;:18.88},{&quot;2026-08-27&quot;:18.86},{&quot;2026-08-28&quot;:18.98},{&quot;2026-08-29&quot;:18.98},{&quot;2026-08-30&quot;:18.67},{&quot;2026-08-31&quot;:18.75},{&quot;2026-09-01&quot;:18.75},{&quot;2026-09-02&quot;:18.72},{&quot;2026-09-03&quot;:18.9},{&quot;2026-09-04&quot;:18.37},{&quot;2026-09-05&quot;:18.45},{&quot;2026-09-06&quot;:18.63},{&quot;2026-09-07&quot;:18.65},{&quot;2026-09-08&quot;:18.79},{&quot;2026-09-09&quot;:18.86},{&quot;2026-09-10&quot;:18.54},{&quot;2026-09-11&quot;:18.56}]}"
        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="18137"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mystical Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/6/36fa9a0b-b0c9-43ea-ba11-99d7982f974e.jpg?1783918491" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystical Tutor" src="https://cards.scryfall.io/large/front/3/6/36fa9a0b-b0c9-43ea-ba11-99d7982f974e.jpg?1783918491" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:18.17},{&quot;2026-06-13&quot;:18.21},{&quot;2026-06-14&quot;:18.15},{&quot;2026-06-15&quot;:18.15},{&quot;2026-06-16&quot;:18.15},{&quot;2026-06-17&quot;:18.15},{&quot;2026-06-18&quot;:17.91},{&quot;2026-06-19&quot;:17.91},{&quot;2026-06-20&quot;:17.91},{&quot;2026-06-21&quot;:17.91},{&quot;2026-06-22&quot;:17.91},{&quot;2026-06-23&quot;:17.74},{&quot;2026-06-24&quot;:17.74},{&quot;2026-06-25&quot;:17.74},{&quot;2026-06-26&quot;:17.8},{&quot;2026-06-27&quot;:17.8},{&quot;2026-06-28&quot;:17.7},{&quot;2026-06-29&quot;:17.7},{&quot;2026-06-30&quot;:17.7},{&quot;2026-07-01&quot;:17.7},{&quot;2026-07-02&quot;:17.7},{&quot;2026-07-03&quot;:17.7},{&quot;2026-07-04&quot;:17.62},{&quot;2026-07-05&quot;:17.28},{&quot;2026-07-06&quot;:17.15},{&quot;2026-07-07&quot;:16.81},{&quot;2026-07-08&quot;:16.84},{&quot;2026-07-09&quot;:16.7},{&quot;2026-07-10&quot;:17.0},{&quot;2026-07-11&quot;:16.98},{&quot;2026-07-12&quot;:16.98},{&quot;2026-07-13&quot;:16.98},{&quot;2026-07-14&quot;:16.98},{&quot;2026-07-15&quot;:17.03},{&quot;2026-07-16&quot;:17.03},{&quot;2026-07-17&quot;:17.14},{&quot;2026-07-18&quot;:17.14},{&quot;2026-07-19&quot;:17.14},{&quot;2026-07-20&quot;:17.14},{&quot;2026-07-21&quot;:17.14},{&quot;2026-07-23&quot;:16.99},{&quot;2026-07-24&quot;:16.99},{&quot;2026-07-25&quot;:17.07},{&quot;2026-07-26&quot;:17.01},{&quot;2026-07-27&quot;:17.01},{&quot;2026-07-28&quot;:17.01},{&quot;2026-07-29&quot;:16.92},{&quot;2026-07-30&quot;:16.83},{&quot;2026-07-31&quot;:16.82},{&quot;2026-08-01&quot;:16.82},{&quot;2026-08-02&quot;:16.89},{&quot;2026-08-03&quot;:16.88},{&quot;2026-08-04&quot;:16.85},{&quot;2026-08-05&quot;:16.85},{&quot;2026-08-07&quot;:16.94},{&quot;2026-08-08&quot;:16.9},{&quot;2026-08-09&quot;:16.9},{&quot;2026-08-10&quot;:16.9},{&quot;2026-08-11&quot;:16.87},{&quot;2026-08-12&quot;:16.87},{&quot;2026-08-13&quot;:16.86},{&quot;2026-08-14&quot;:16.85},{&quot;2026-08-15&quot;:16.84},{&quot;2026-08-16&quot;:16.85},{&quot;2026-08-17&quot;:16.85},{&quot;2026-08-18&quot;:16.85},{&quot;2026-08-19&quot;:16.82},{&quot;2026-08-20&quot;:16.82},{&quot;2026-08-21&quot;:16.89},{&quot;2026-08-22&quot;:16.89},{&quot;2026-08-23&quot;:16.83},{&quot;2026-08-24&quot;:16.73},{&quot;2026-08-25&quot;:16.89},{&quot;2026-08-26&quot;:16.83},{&quot;2026-08-27&quot;:16.86},{&quot;2026-08-28&quot;:16.91},{&quot;2026-08-29&quot;:16.91},{&quot;2026-08-30&quot;:17.1},{&quot;2026-08-31&quot;:17.1},{&quot;2026-09-01&quot;:17.16},{&quot;2026-09-02&quot;:17.19},{&quot;2026-09-03&quot;:17.37},{&quot;2026-09-04&quot;:17.39},{&quot;2026-09-05&quot;:17.15},{&quot;2026-09-06&quot;:17.11},{&quot;2026-09-07&quot;:17.2},{&quot;2026-09-08&quot;:17.43},{&quot;2026-09-09&quot;:17.43},{&quot;2026-09-10&quot;:17.69},{&quot;2026-09-11&quot;:17.69}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:19.47},{&quot;2026-06-13&quot;:19.34},{&quot;2026-06-14&quot;:18.98},{&quot;2026-06-15&quot;:18.61},{&quot;2026-06-16&quot;:18.69},{&quot;2026-06-17&quot;:18.7},{&quot;2026-06-18&quot;:18.38},{&quot;2026-06-19&quot;:18.11},{&quot;2026-06-20&quot;:17.56},{&quot;2026-06-21&quot;:17.53},{&quot;2026-06-22&quot;:17.53},{&quot;2026-06-23&quot;:17.43},{&quot;2026-06-24&quot;:16.94},{&quot;2026-06-25&quot;:16.94},{&quot;2026-06-26&quot;:16.69},{&quot;2026-06-27&quot;:16.8},{&quot;2026-06-28&quot;:16.49},{&quot;2026-06-29&quot;:16.59},{&quot;2026-06-30&quot;:16.53},{&quot;2026-07-01&quot;:16.69},{&quot;2026-07-02&quot;:16.93},{&quot;2026-07-03&quot;:16.91},{&quot;2026-07-04&quot;:16.77},{&quot;2026-07-05&quot;:16.77},{&quot;2026-07-06&quot;:16.78},{&quot;2026-07-07&quot;:16.76},{&quot;2026-07-08&quot;:16.76},{&quot;2026-07-09&quot;:16.95},{&quot;2026-07-10&quot;:16.95},{&quot;2026-07-11&quot;:16.95},{&quot;2026-07-12&quot;:17.09},{&quot;2026-07-13&quot;:17.0},{&quot;2026-07-14&quot;:16.75},{&quot;2026-07-15&quot;:16.65},{&quot;2026-07-16&quot;:16.43},{&quot;2026-07-17&quot;:16.61},{&quot;2026-07-18&quot;:16.55},{&quot;2026-07-19&quot;:16.53},{&quot;2026-07-20&quot;:16.53},{&quot;2026-07-21&quot;:16.49},{&quot;2026-07-23&quot;:16.52},{&quot;2026-07-24&quot;:16.32},{&quot;2026-07-25&quot;:16.23},{&quot;2026-07-26&quot;:16.22},{&quot;2026-07-27&quot;:16.3},{&quot;2026-07-28&quot;:16.28},{&quot;2026-07-29&quot;:16.18},{&quot;2026-07-30&quot;:16.23},{&quot;2026-07-31&quot;:15.79},{&quot;2026-08-01&quot;:15.76},{&quot;2026-08-02&quot;:15.5},{&quot;2026-08-03&quot;:15.47},{&quot;2026-08-04&quot;:15.44},{&quot;2026-08-05&quot;:15.42},{&quot;2026-08-07&quot;:15.89},{&quot;2026-08-08&quot;:15.88},{&quot;2026-08-09&quot;:15.89},{&quot;2026-08-10&quot;:15.82},{&quot;2026-08-11&quot;:15.94},{&quot;2026-08-12&quot;:16.16},{&quot;2026-08-13&quot;:16.24},{&quot;2026-08-14&quot;:16.21},{&quot;2026-08-15&quot;:16.23},{&quot;2026-08-16&quot;:16.23},{&quot;2026-08-17&quot;:16.2},{&quot;2026-08-18&quot;:16.16},{&quot;2026-08-19&quot;:16.18},{&quot;2026-08-20&quot;:16.18},{&quot;2026-08-21&quot;:16.06},{&quot;2026-08-22&quot;:16.08},{&quot;2026-08-23&quot;:16.12},{&quot;2026-08-24&quot;:16.2},{&quot;2026-08-25&quot;:16.42},{&quot;2026-08-26&quot;:16.59},{&quot;2026-08-27&quot;:16.72},{&quot;2026-08-28&quot;:16.59},{&quot;2026-08-29&quot;:16.59},{&quot;2026-08-30&quot;:16.89},{&quot;2026-08-31&quot;:17.09},{&quot;2026-09-01&quot;:17.58},{&quot;2026-09-02&quot;:18.13},{&quot;2026-09-03&quot;:18.13},{&quot;2026-09-04&quot;:18.25},{&quot;2026-09-05&quot;:18.66},{&quot;2026-09-06&quot;:18.82},{&quot;2026-09-07&quot;:18.55},{&quot;2026-09-08&quot;:18.62},{&quot;2026-09-09&quot;:18.85},{&quot;2026-09-10&quot;:19.05},{&quot;2026-09-11&quot;:18.52}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="24095"
  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-dsk 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">
            Enduring Vitality
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment Creature — Elk Glimmer
      </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">
            $18.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="Enduring Vitality" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/d/9d76a30c-0431-4334-892a-9822dda9671a.jpg?1783909457" />

        <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">
            Enduring Vitality
        </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 — Elk Glimmer</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Enduring Vitality" src="https://cards.scryfall.io/large/front/9/d/9d76a30c-0431-4334-892a-9822dda9671a.jpg?1783909457" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:9.92},{&quot;2026-06-11&quot;:9.98},{&quot;2026-06-12&quot;:9.99},{&quot;2026-06-13&quot;:9.92},{&quot;2026-06-14&quot;:9.92},{&quot;2026-06-15&quot;:10.1},{&quot;2026-06-16&quot;:10.2},{&quot;2026-06-17&quot;:10.2},{&quot;2026-06-18&quot;:9.99},{&quot;2026-06-19&quot;:10.07},{&quot;2026-06-20&quot;:10.21},{&quot;2026-06-21&quot;:10.12},{&quot;2026-06-22&quot;:10.17},{&quot;2026-06-23&quot;:10.44},{&quot;2026-06-24&quot;:10.59},{&quot;2026-06-25&quot;:10.6},{&quot;2026-06-26&quot;:10.64},{&quot;2026-06-27&quot;:10.61},{&quot;2026-06-28&quot;:10.93},{&quot;2026-06-29&quot;:10.96},{&quot;2026-06-30&quot;:11.04},{&quot;2026-07-01&quot;:11.2},{&quot;2026-07-02&quot;:11.21},{&quot;2026-07-03&quot;:11.33},{&quot;2026-07-04&quot;:11.59},{&quot;2026-07-05&quot;:11.53},{&quot;2026-07-06&quot;:11.62},{&quot;2026-07-07&quot;:11.82},{&quot;2026-07-08&quot;:12.25},{&quot;2026-07-09&quot;:12.23},{&quot;2026-07-10&quot;:12.61},{&quot;2026-07-11&quot;:13.04},{&quot;2026-07-12&quot;:13.45},{&quot;2026-07-13&quot;:13.79},{&quot;2026-07-14&quot;:13.79},{&quot;2026-07-15&quot;:13.88},{&quot;2026-07-16&quot;:13.98},{&quot;2026-07-17&quot;:14.2},{&quot;2026-07-18&quot;:13.91},{&quot;2026-07-19&quot;:13.98},{&quot;2026-07-20&quot;:14.19},{&quot;2026-07-21&quot;:14.19},{&quot;2026-07-23&quot;:14.6},{&quot;2026-07-25&quot;:15.08},{&quot;2026-07-26&quot;:15.08},{&quot;2026-07-27&quot;:15.08},{&quot;2026-07-29&quot;:15.38},{&quot;2026-07-30&quot;:15.73},{&quot;2026-07-31&quot;:15.96},{&quot;2026-08-01&quot;:16.08},{&quot;2026-08-02&quot;:16.8},{&quot;2026-08-03&quot;:16.8},{&quot;2026-08-04&quot;:18.03},{&quot;2026-08-05&quot;:18.15},{&quot;2026-08-07&quot;:18.32},{&quot;2026-08-08&quot;:18.45},{&quot;2026-08-09&quot;:18.62},{&quot;2026-08-10&quot;:18.62},{&quot;2026-08-11&quot;:18.62},{&quot;2026-08-12&quot;:18.32},{&quot;2026-08-13&quot;:18.32},{&quot;2026-08-14&quot;:18.44},{&quot;2026-08-15&quot;:18.44},{&quot;2026-08-16&quot;:19.09},{&quot;2026-08-17&quot;:19.17},{&quot;2026-08-18&quot;:19.17},{&quot;2026-08-19&quot;:19.21},{&quot;2026-08-20&quot;:19.21},{&quot;2026-08-21&quot;:19.49},{&quot;2026-08-22&quot;:19.49},{&quot;2026-08-23&quot;:19.49},{&quot;2026-08-24&quot;:19.42},{&quot;2026-08-25&quot;:19.42},{&quot;2026-08-26&quot;:19.73},{&quot;2026-08-27&quot;:19.77},{&quot;2026-08-28&quot;:19.42},{&quot;2026-08-29&quot;:19.42},{&quot;2026-08-30&quot;:19.34},{&quot;2026-08-31&quot;:19.34},{&quot;2026-09-01&quot;:19.34},{&quot;2026-09-02&quot;:19.34},{&quot;2026-09-03&quot;:19.55},{&quot;2026-09-04&quot;:19.58},{&quot;2026-09-05&quot;:19.61},{&quot;2026-09-06&quot;:19.52},{&quot;2026-09-07&quot;:19.52},{&quot;2026-09-08&quot;:19.52},{&quot;2026-09-09&quot;:19.54},{&quot;2026-09-10&quot;:19.54},{&quot;2026-09-11&quot;:19.64}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.48},{&quot;2026-06-11&quot;:9.41},{&quot;2026-06-12&quot;:9.69},{&quot;2026-06-13&quot;:9.66},{&quot;2026-06-14&quot;:9.85},{&quot;2026-06-15&quot;:10.02},{&quot;2026-06-16&quot;:9.67},{&quot;2026-06-17&quot;:9.62},{&quot;2026-06-18&quot;:9.55},{&quot;2026-06-19&quot;:9.61},{&quot;2026-06-20&quot;:9.58},{&quot;2026-06-21&quot;:9.71},{&quot;2026-06-22&quot;:9.94},{&quot;2026-06-23&quot;:9.99},{&quot;2026-06-24&quot;:10.26},{&quot;2026-06-25&quot;:11.07},{&quot;2026-06-26&quot;:10.43},{&quot;2026-06-27&quot;:10.92},{&quot;2026-06-28&quot;:11.44},{&quot;2026-06-29&quot;:10.99},{&quot;2026-06-30&quot;:11.4},{&quot;2026-07-01&quot;:11.83},{&quot;2026-07-02&quot;:11.24},{&quot;2026-07-03&quot;:11.85},{&quot;2026-07-04&quot;:12.38},{&quot;2026-07-05&quot;:11.9},{&quot;2026-07-06&quot;:12.11},{&quot;2026-07-07&quot;:12.12},{&quot;2026-07-08&quot;:12.75},{&quot;2026-07-09&quot;:12.99},{&quot;2026-07-10&quot;:12.33},{&quot;2026-07-11&quot;:12.44},{&quot;2026-07-12&quot;:13.94},{&quot;2026-07-13&quot;:13.45},{&quot;2026-07-14&quot;:14.47},{&quot;2026-07-15&quot;:14.56},{&quot;2026-07-16&quot;:14.73},{&quot;2026-07-17&quot;:14.53},{&quot;2026-07-18&quot;:14.8},{&quot;2026-07-19&quot;:15.54},{&quot;2026-07-20&quot;:15.42},{&quot;2026-07-21&quot;:15.85},{&quot;2026-07-23&quot;:15.56},{&quot;2026-07-25&quot;:16.29},{&quot;2026-07-26&quot;:16.5},{&quot;2026-07-27&quot;:17.21},{&quot;2026-07-29&quot;:16.95},{&quot;2026-07-30&quot;:17.0},{&quot;2026-07-31&quot;:18.0},{&quot;2026-08-01&quot;:17.97},{&quot;2026-08-02&quot;:19.02},{&quot;2026-08-03&quot;:18.84},{&quot;2026-08-04&quot;:18.64},{&quot;2026-08-05&quot;:18.07},{&quot;2026-08-07&quot;:18.07},{&quot;2026-08-08&quot;:17.85},{&quot;2026-08-09&quot;:18.1},{&quot;2026-08-10&quot;:19.36},{&quot;2026-08-11&quot;:19.29},{&quot;2026-08-12&quot;:19.94},{&quot;2026-08-13&quot;:19.16},{&quot;2026-08-14&quot;:18.5},{&quot;2026-08-15&quot;:18.32},{&quot;2026-08-16&quot;:17.02},{&quot;2026-08-17&quot;:17.31},{&quot;2026-08-18&quot;:17.47},{&quot;2026-08-19&quot;:17.37},{&quot;2026-08-20&quot;:17.37},{&quot;2026-08-21&quot;:17.43},{&quot;2026-08-22&quot;:17.16},{&quot;2026-08-23&quot;:17.21},{&quot;2026-08-24&quot;:17.26},{&quot;2026-08-25&quot;:17.26},{&quot;2026-08-26&quot;:17.17},{&quot;2026-08-27&quot;:17.27},{&quot;2026-08-28&quot;:17.28},{&quot;2026-08-29&quot;:17.28},{&quot;2026-08-30&quot;:17.42},{&quot;2026-08-31&quot;:17.99},{&quot;2026-09-01&quot;:17.99},{&quot;2026-09-02&quot;:15.37},{&quot;2026-09-03&quot;:17.07},{&quot;2026-09-04&quot;:17.12},{&quot;2026-09-05&quot;:16.88},{&quot;2026-09-06&quot;:17.22},{&quot;2026-09-07&quot;:17.39},{&quot;2026-09-08&quot;:17.55},{&quot;2026-09-09&quot;:17.99},{&quot;2026-09-10&quot;:17.97},{&quot;2026-09-11&quot;:18.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="53185"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-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">
            Pact of Negation
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $18.23
          </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="Pact of Negation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/b/cb91055f-215a-4243-835b-35de515a2ba5.jpg?1783910568" />

        <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">
            Pact of Negation
        </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-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="Pact of Negation" src="https://cards.scryfall.io/large/front/c/b/cb91055f-215a-4243-835b-35de515a2ba5.jpg?1783910568" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:108.68},{&quot;2026-06-14&quot;:108.68},{&quot;2026-06-15&quot;:108.68},{&quot;2026-06-16&quot;:108.68},{&quot;2026-06-17&quot;:108.68},{&quot;2026-06-18&quot;:108.68},{&quot;2026-06-19&quot;:109.94},{&quot;2026-06-20&quot;:109.94},{&quot;2026-06-21&quot;:109.94},{&quot;2026-06-22&quot;:109.94},{&quot;2026-06-23&quot;:111.06},{&quot;2026-06-24&quot;:111.06},{&quot;2026-06-25&quot;:111.06},{&quot;2026-06-26&quot;:111.06},{&quot;2026-06-27&quot;:111.06},{&quot;2026-06-28&quot;:111.06},{&quot;2026-06-29&quot;:111.06},{&quot;2026-06-30&quot;:111.06},{&quot;2026-07-01&quot;:111.06},{&quot;2026-07-02&quot;:111.06},{&quot;2026-07-03&quot;:112.75},{&quot;2026-07-04&quot;:113.65},{&quot;2026-07-05&quot;:113.65},{&quot;2026-07-06&quot;:113.65},{&quot;2026-07-07&quot;:113.65},{&quot;2026-07-08&quot;:113.65},{&quot;2026-07-09&quot;:113.65},{&quot;2026-07-10&quot;:113.65},{&quot;2026-07-11&quot;:113.65},{&quot;2026-07-12&quot;:112.41},{&quot;2026-07-13&quot;:113.1},{&quot;2026-07-14&quot;:114.15},{&quot;2026-07-15&quot;:114.15},{&quot;2026-07-16&quot;:114.15},{&quot;2026-07-17&quot;:114.15},{&quot;2026-07-18&quot;:114.15},{&quot;2026-07-19&quot;:115.14},{&quot;2026-07-20&quot;:115.76},{&quot;2026-07-21&quot;:115.7},{&quot;2026-07-22&quot;:115.7},{&quot;2026-07-23&quot;:115.7},{&quot;2026-07-24&quot;:116.54},{&quot;2026-07-25&quot;:117.73},{&quot;2026-07-26&quot;:117.73},{&quot;2026-07-27&quot;:117.73},{&quot;2026-07-28&quot;:117.73},{&quot;2026-07-29&quot;:117.73},{&quot;2026-07-30&quot;:117.73},{&quot;2026-07-31&quot;:117.73},{&quot;2026-08-01&quot;:117.73},{&quot;2026-08-02&quot;:117.73},{&quot;2026-08-03&quot;:117.73},{&quot;2026-08-04&quot;:117.73},{&quot;2026-08-05&quot;:117.73},{&quot;2026-08-07&quot;:117.73},{&quot;2026-08-08&quot;:117.73},{&quot;2026-08-09&quot;:117.73},{&quot;2026-08-10&quot;:117.73},{&quot;2026-08-11&quot;:117.73},{&quot;2026-08-12&quot;:117.73},{&quot;2026-08-13&quot;:117.73},{&quot;2026-08-14&quot;:117.73},{&quot;2026-08-15&quot;:117.73},{&quot;2026-08-16&quot;:118.05},{&quot;2026-08-17&quot;:118.05},{&quot;2026-08-18&quot;:118.05},{&quot;2026-08-19&quot;:118.05},{&quot;2026-08-20&quot;:118.05},{&quot;2026-08-21&quot;:118.05},{&quot;2026-08-22&quot;:118.05},{&quot;2026-08-23&quot;:118.05},{&quot;2026-08-24&quot;:118.04},{&quot;2026-08-25&quot;:118.04},{&quot;2026-08-26&quot;:118.04},{&quot;2026-08-27&quot;:115.82},{&quot;2026-08-28&quot;:115.82},{&quot;2026-08-29&quot;:115.82},{&quot;2026-08-30&quot;:115.82},{&quot;2026-08-31&quot;:115.82},{&quot;2026-09-01&quot;:115.82},{&quot;2026-09-02&quot;:115.82},{&quot;2026-09-03&quot;:115.82},{&quot;2026-09-04&quot;:115.82},{&quot;2026-09-05&quot;:115.82},{&quot;2026-09-06&quot;:115.82},{&quot;2026-09-07&quot;:115.82},{&quot;2026-09-08&quot;:115.82},{&quot;2026-09-09&quot;:115.82},{&quot;2026-09-10&quot;:115.82},{&quot;2026-09-11&quot;:115.82}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:16.84},{&quot;2026-06-14&quot;:16.63},{&quot;2026-06-15&quot;:16.8},{&quot;2026-06-16&quot;:17.0},{&quot;2026-06-17&quot;:17.26},{&quot;2026-06-18&quot;:17.36},{&quot;2026-06-19&quot;:17.52},{&quot;2026-06-20&quot;:17.52},{&quot;2026-06-21&quot;:17.45},{&quot;2026-06-22&quot;:17.4},{&quot;2026-06-23&quot;:17.41},{&quot;2026-06-24&quot;:17.6},{&quot;2026-06-25&quot;:17.63},{&quot;2026-06-26&quot;:17.66},{&quot;2026-06-27&quot;:17.77},{&quot;2026-06-28&quot;:17.87},{&quot;2026-06-29&quot;:17.88},{&quot;2026-06-30&quot;:17.91},{&quot;2026-07-01&quot;:17.92},{&quot;2026-07-02&quot;:17.9},{&quot;2026-07-03&quot;:17.9},{&quot;2026-07-04&quot;:18.09},{&quot;2026-07-05&quot;:18.13},{&quot;2026-07-06&quot;:18.13},{&quot;2026-07-07&quot;:18.23},{&quot;2026-07-08&quot;:18.23},{&quot;2026-07-09&quot;:18.56},{&quot;2026-07-10&quot;:18.56},{&quot;2026-07-11&quot;:18.56},{&quot;2026-07-12&quot;:18.78},{&quot;2026-07-13&quot;:18.78},{&quot;2026-07-14&quot;:18.77},{&quot;2026-07-15&quot;:18.76},{&quot;2026-07-16&quot;:18.76},{&quot;2026-07-17&quot;:18.67},{&quot;2026-07-18&quot;:18.67},{&quot;2026-07-19&quot;:18.75},{&quot;2026-07-20&quot;:18.63},{&quot;2026-07-21&quot;:18.63},{&quot;2026-07-22&quot;:18.63},{&quot;2026-07-23&quot;:18.7},{&quot;2026-07-24&quot;:18.56},{&quot;2026-07-25&quot;:18.52},{&quot;2026-07-26&quot;:18.5},{&quot;2026-07-27&quot;:18.09},{&quot;2026-07-28&quot;:17.9},{&quot;2026-07-29&quot;:17.88},{&quot;2026-07-30&quot;:17.72},{&quot;2026-07-31&quot;:17.55},{&quot;2026-08-01&quot;:17.36},{&quot;2026-08-02&quot;:17.41},{&quot;2026-08-03&quot;:17.37},{&quot;2026-08-04&quot;:17.28},{&quot;2026-08-05&quot;:17.23},{&quot;2026-08-07&quot;:17.32},{&quot;2026-08-08&quot;:17.44},{&quot;2026-08-09&quot;:17.5},{&quot;2026-08-10&quot;:17.64},{&quot;2026-08-11&quot;:17.43},{&quot;2026-08-12&quot;:17.59},{&quot;2026-08-13&quot;:17.59},{&quot;2026-08-14&quot;:17.59},{&quot;2026-08-15&quot;:17.51},{&quot;2026-08-16&quot;:17.07},{&quot;2026-08-17&quot;:16.83},{&quot;2026-08-18&quot;:16.71},{&quot;2026-08-19&quot;:16.72},{&quot;2026-08-20&quot;:16.37},{&quot;2026-08-21&quot;:16.32},{&quot;2026-08-22&quot;:16.8},{&quot;2026-08-23&quot;:16.84},{&quot;2026-08-24&quot;:17.02},{&quot;2026-08-25&quot;:17.07},{&quot;2026-08-26&quot;:17.09},{&quot;2026-08-27&quot;:17.26},{&quot;2026-08-28&quot;:17.48},{&quot;2026-08-29&quot;:17.48},{&quot;2026-08-30&quot;:17.47},{&quot;2026-08-31&quot;:17.41},{&quot;2026-09-01&quot;:17.34},{&quot;2026-09-02&quot;:17.45},{&quot;2026-09-03&quot;:17.67},{&quot;2026-09-04&quot;:18.12},{&quot;2026-09-05&quot;:18.36},{&quot;2026-09-06&quot;:18.36},{&quot;2026-09-07&quot;:18.36},{&quot;2026-09-08&quot;:18.29},{&quot;2026-09-09&quot;:18.21},{&quot;2026-09-10&quot;:18.21},{&quot;2026-09-11&quot;:18.23}]}"
        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="19240"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mystical Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/0/000a5154-90ba-459e-b122-d6893dfdb56f.jpg?1783918333" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystical Tutor" src="https://cards.scryfall.io/large/front/0/0/000a5154-90ba-459e-b122-d6893dfdb56f.jpg?1783918333" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:25.76},{&quot;2026-06-14&quot;:25.76},{&quot;2026-06-15&quot;:26.16},{&quot;2026-06-16&quot;:26.16},{&quot;2026-06-17&quot;:26.16},{&quot;2026-06-18&quot;:26.16},{&quot;2026-06-19&quot;:26.16},{&quot;2026-06-20&quot;:26.59},{&quot;2026-06-21&quot;:26.59},{&quot;2026-06-22&quot;:26.59},{&quot;2026-06-23&quot;:27.18},{&quot;2026-06-24&quot;:27.04},{&quot;2026-06-25&quot;:27.04},{&quot;2026-06-26&quot;:27.04},{&quot;2026-06-27&quot;:26.91},{&quot;2026-06-28&quot;:26.62},{&quot;2026-06-29&quot;:26.62},{&quot;2026-06-30&quot;:26.62},{&quot;2026-07-01&quot;:26.62},{&quot;2026-07-02&quot;:26.62},{&quot;2026-07-03&quot;:26.62},{&quot;2026-07-04&quot;:26.47},{&quot;2026-07-05&quot;:26.47},{&quot;2026-07-06&quot;:26.42},{&quot;2026-07-07&quot;:26.42},{&quot;2026-07-08&quot;:26.4},{&quot;2026-07-09&quot;:26.31},{&quot;2026-07-10&quot;:26.31},{&quot;2026-07-11&quot;:26.29},{&quot;2026-07-12&quot;:26.29},{&quot;2026-07-13&quot;:26.06},{&quot;2026-07-14&quot;:26.06},{&quot;2026-07-15&quot;:26.06},{&quot;2026-07-16&quot;:26.06},{&quot;2026-07-17&quot;:26.06},{&quot;2026-07-18&quot;:26.06},{&quot;2026-07-19&quot;:26.06},{&quot;2026-07-20&quot;:26.33},{&quot;2026-07-21&quot;:26.62},{&quot;2026-07-22&quot;:26.62},{&quot;2026-07-23&quot;:26.62},{&quot;2026-07-24&quot;:26.62},{&quot;2026-07-25&quot;:26.62},{&quot;2026-07-26&quot;:26.62},{&quot;2026-07-27&quot;:26.62},{&quot;2026-07-28&quot;:26.62},{&quot;2026-07-29&quot;:26.62},{&quot;2026-07-30&quot;:26.62},{&quot;2026-07-31&quot;:26.68},{&quot;2026-08-01&quot;:26.62},{&quot;2026-08-02&quot;:26.62},{&quot;2026-08-03&quot;:26.62},{&quot;2026-08-04&quot;:26.62},{&quot;2026-08-05&quot;:26.62},{&quot;2026-08-07&quot;:26.57},{&quot;2026-08-08&quot;:26.57},{&quot;2026-08-09&quot;:26.27},{&quot;2026-08-10&quot;:25.97},{&quot;2026-08-11&quot;:25.73},{&quot;2026-08-12&quot;:25.72},{&quot;2026-08-13&quot;:25.82},{&quot;2026-08-14&quot;:25.62},{&quot;2026-08-15&quot;:25.62},{&quot;2026-08-16&quot;:25.38},{&quot;2026-08-17&quot;:24.77},{&quot;2026-08-18&quot;:24.5},{&quot;2026-08-19&quot;:24.5},{&quot;2026-08-20&quot;:24.67},{&quot;2026-08-21&quot;:24.84},{&quot;2026-08-22&quot;:24.84},{&quot;2026-08-23&quot;:25.08},{&quot;2026-08-24&quot;:25.02},{&quot;2026-08-25&quot;:25.12},{&quot;2026-08-26&quot;:25.23},{&quot;2026-08-27&quot;:25.23},{&quot;2026-08-28&quot;:25.35},{&quot;2026-08-29&quot;:25.35},{&quot;2026-08-30&quot;:25.02},{&quot;2026-08-31&quot;:24.92},{&quot;2026-09-01&quot;:25.14},{&quot;2026-09-02&quot;:25.44},{&quot;2026-09-03&quot;:25.44},{&quot;2026-09-04&quot;:25.44},{&quot;2026-09-05&quot;:25.44},{&quot;2026-09-06&quot;:25.46},{&quot;2026-09-07&quot;:25.55},{&quot;2026-09-08&quot;:25.55},{&quot;2026-09-09&quot;:25.55},{&quot;2026-09-10&quot;:25.55},{&quot;2026-09-11&quot;:25.57}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:16.9},{&quot;2026-06-14&quot;:17.03},{&quot;2026-06-15&quot;:16.75},{&quot;2026-06-16&quot;:16.48},{&quot;2026-06-17&quot;:16.49},{&quot;2026-06-18&quot;:16.37},{&quot;2026-06-19&quot;:16.37},{&quot;2026-06-20&quot;:16.01},{&quot;2026-06-21&quot;:16.15},{&quot;2026-06-22&quot;:16.34},{&quot;2026-06-23&quot;:16.46},{&quot;2026-06-24&quot;:16.46},{&quot;2026-06-25&quot;:16.34},{&quot;2026-06-26&quot;:16.39},{&quot;2026-06-27&quot;:16.52},{&quot;2026-06-28&quot;:16.56},{&quot;2026-06-29&quot;:17.08},{&quot;2026-06-30&quot;:17.08},{&quot;2026-07-01&quot;:16.85},{&quot;2026-07-02&quot;:16.81},{&quot;2026-07-03&quot;:16.81},{&quot;2026-07-04&quot;:16.85},{&quot;2026-07-05&quot;:16.85},{&quot;2026-07-06&quot;:16.63},{&quot;2026-07-07&quot;:16.5},{&quot;2026-07-08&quot;:16.59},{&quot;2026-07-09&quot;:16.66},{&quot;2026-07-10&quot;:16.65},{&quot;2026-07-11&quot;:16.77},{&quot;2026-07-12&quot;:16.79},{&quot;2026-07-13&quot;:16.75},{&quot;2026-07-14&quot;:16.8},{&quot;2026-07-15&quot;:16.68},{&quot;2026-07-16&quot;:16.72},{&quot;2026-07-17&quot;:16.82},{&quot;2026-07-18&quot;:16.95},{&quot;2026-07-19&quot;:16.95},{&quot;2026-07-20&quot;:16.6},{&quot;2026-07-21&quot;:16.74},{&quot;2026-07-22&quot;:16.48},{&quot;2026-07-23&quot;:16.56},{&quot;2026-07-24&quot;:16.34},{&quot;2026-07-25&quot;:16.38},{&quot;2026-07-26&quot;:16.18},{&quot;2026-07-27&quot;:16.68},{&quot;2026-07-28&quot;:16.93},{&quot;2026-07-29&quot;:16.72},{&quot;2026-07-30&quot;:16.51},{&quot;2026-07-31&quot;:16.65},{&quot;2026-08-01&quot;:16.63},{&quot;2026-08-02&quot;:16.83},{&quot;2026-08-03&quot;:16.89},{&quot;2026-08-04&quot;:17.02},{&quot;2026-08-05&quot;:17.09},{&quot;2026-08-07&quot;:17.14},{&quot;2026-08-08&quot;:17.1},{&quot;2026-08-09&quot;:16.89},{&quot;2026-08-10&quot;:17.44},{&quot;2026-08-11&quot;:17.51},{&quot;2026-08-12&quot;:17.71},{&quot;2026-08-13&quot;:17.57},{&quot;2026-08-14&quot;:17.59},{&quot;2026-08-15&quot;:17.85},{&quot;2026-08-16&quot;:18.23},{&quot;2026-08-17&quot;:18.27},{&quot;2026-08-18&quot;:18.26},{&quot;2026-08-19&quot;:17.9},{&quot;2026-08-20&quot;:18.39},{&quot;2026-08-21&quot;:18.25},{&quot;2026-08-22&quot;:18.33},{&quot;2026-08-23&quot;:18.34},{&quot;2026-08-24&quot;:18.34},{&quot;2026-08-25&quot;:18.13},{&quot;2026-08-26&quot;:18.02},{&quot;2026-08-27&quot;:17.91},{&quot;2026-08-28&quot;:17.58},{&quot;2026-08-29&quot;:17.58},{&quot;2026-08-30&quot;:17.56},{&quot;2026-08-31&quot;:17.66},{&quot;2026-09-01&quot;:17.28},{&quot;2026-09-02&quot;:17.15},{&quot;2026-09-03&quot;:16.8},{&quot;2026-09-04&quot;:17.01},{&quot;2026-09-05&quot;:16.75},{&quot;2026-09-06&quot;:17.16},{&quot;2026-09-07&quot;:17.39},{&quot;2026-09-08&quot;:17.67},{&quot;2026-09-09&quot;:17.6},{&quot;2026-09-10&quot;:17.6},{&quot;2026-09-11&quot;:18.22}]}"
        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="78900"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $17.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="Pact of Negation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1ed4c0bb-b710-44a1-b8bc-6bd11c27b8b8.jpg?1783927843" />

        <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">
            Pact of Negation
        </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-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="Pact of Negation" src="https://cards.scryfall.io/large/front/1/e/1ed4c0bb-b710-44a1-b8bc-6bd11c27b8b8.jpg?1783927843" />
    </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.90
              </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">
                $44.89
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:38.85},{&quot;2026-06-14&quot;:38.83},{&quot;2026-06-15&quot;:39.23},{&quot;2026-06-16&quot;:39.23},{&quot;2026-06-17&quot;:39.89},{&quot;2026-06-18&quot;:39.89},{&quot;2026-06-19&quot;:40.56},{&quot;2026-06-20&quot;:40.56},{&quot;2026-06-21&quot;:40.56},{&quot;2026-06-22&quot;:40.56},{&quot;2026-06-23&quot;:40.56},{&quot;2026-06-24&quot;:40.56},{&quot;2026-06-25&quot;:40.56},{&quot;2026-06-26&quot;:40.56},{&quot;2026-06-27&quot;:40.56},{&quot;2026-06-28&quot;:40.56},{&quot;2026-06-29&quot;:40.56},{&quot;2026-06-30&quot;:40.56},{&quot;2026-07-01&quot;:42.0},{&quot;2026-07-02&quot;:42.0},{&quot;2026-07-03&quot;:42.0},{&quot;2026-07-04&quot;:41.64},{&quot;2026-07-05&quot;:41.64},{&quot;2026-07-06&quot;:41.64},{&quot;2026-07-07&quot;:42.03},{&quot;2026-07-08&quot;:42.03},{&quot;2026-07-09&quot;:42.03},{&quot;2026-07-10&quot;:42.03},{&quot;2026-07-11&quot;:42.03},{&quot;2026-07-12&quot;:42.03},{&quot;2026-07-13&quot;:42.03},{&quot;2026-07-14&quot;:42.03},{&quot;2026-07-15&quot;:42.03},{&quot;2026-07-16&quot;:42.03},{&quot;2026-07-17&quot;:42.11},{&quot;2026-07-18&quot;:42.11},{&quot;2026-07-19&quot;:42.11},{&quot;2026-07-20&quot;:42.11},{&quot;2026-07-21&quot;:42.11},{&quot;2026-07-22&quot;:42.11},{&quot;2026-07-23&quot;:42.11},{&quot;2026-07-24&quot;:42.11},{&quot;2026-07-25&quot;:42.11},{&quot;2026-07-26&quot;:42.9},{&quot;2026-07-27&quot;:42.9},{&quot;2026-07-28&quot;:42.9},{&quot;2026-07-29&quot;:42.9},{&quot;2026-07-30&quot;:42.9},{&quot;2026-07-31&quot;:42.9},{&quot;2026-08-01&quot;:42.9},{&quot;2026-08-02&quot;:42.9},{&quot;2026-08-03&quot;:42.9},{&quot;2026-08-04&quot;:42.9},{&quot;2026-08-05&quot;:42.9},{&quot;2026-08-07&quot;:43.52},{&quot;2026-08-08&quot;:43.52},{&quot;2026-08-09&quot;:43.52},{&quot;2026-08-10&quot;:43.52},{&quot;2026-08-11&quot;:43.52},{&quot;2026-08-12&quot;:43.52},{&quot;2026-08-13&quot;:43.52},{&quot;2026-08-14&quot;:44.43},{&quot;2026-08-15&quot;:44.43},{&quot;2026-08-16&quot;:44.43},{&quot;2026-08-17&quot;:44.43},{&quot;2026-08-18&quot;:44.43},{&quot;2026-08-19&quot;:44.43},{&quot;2026-08-20&quot;:44.43},{&quot;2026-08-21&quot;:44.43},{&quot;2026-08-22&quot;:44.43},{&quot;2026-08-23&quot;:44.81},{&quot;2026-08-24&quot;:44.95},{&quot;2026-08-25&quot;:44.95},{&quot;2026-08-26&quot;:44.95},{&quot;2026-08-27&quot;:44.95},{&quot;2026-08-28&quot;:44.95},{&quot;2026-08-29&quot;:44.95},{&quot;2026-08-30&quot;:44.95},{&quot;2026-08-31&quot;:44.95},{&quot;2026-09-01&quot;:44.89},{&quot;2026-09-02&quot;:44.89},{&quot;2026-09-03&quot;:44.89},{&quot;2026-09-04&quot;:44.89},{&quot;2026-09-05&quot;:44.89},{&quot;2026-09-06&quot;:44.89},{&quot;2026-09-07&quot;:44.89},{&quot;2026-09-08&quot;:44.89},{&quot;2026-09-09&quot;:44.89},{&quot;2026-09-10&quot;:44.89},{&quot;2026-09-11&quot;:44.89}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:18.48},{&quot;2026-06-14&quot;:18.41},{&quot;2026-06-15&quot;:18.37},{&quot;2026-06-16&quot;:18.37},{&quot;2026-06-17&quot;:18.27},{&quot;2026-06-18&quot;:18.24},{&quot;2026-06-19&quot;:18.23},{&quot;2026-06-20&quot;:18.23},{&quot;2026-06-21&quot;:18.32},{&quot;2026-06-22&quot;:18.59},{&quot;2026-06-23&quot;:18.61},{&quot;2026-06-24&quot;:18.63},{&quot;2026-06-25&quot;:18.56},{&quot;2026-06-26&quot;:18.7},{&quot;2026-06-27&quot;:19.12},{&quot;2026-06-28&quot;:19.14},{&quot;2026-06-29&quot;:19.06},{&quot;2026-06-30&quot;:18.93},{&quot;2026-07-01&quot;:19.1},{&quot;2026-07-02&quot;:19.05},{&quot;2026-07-03&quot;:18.91},{&quot;2026-07-04&quot;:18.73},{&quot;2026-07-05&quot;:18.77},{&quot;2026-07-06&quot;:18.52},{&quot;2026-07-07&quot;:18.19},{&quot;2026-07-08&quot;:18.44},{&quot;2026-07-09&quot;:18.37},{&quot;2026-07-10&quot;:18.18},{&quot;2026-07-11&quot;:17.78},{&quot;2026-07-12&quot;:17.98},{&quot;2026-07-13&quot;:18.08},{&quot;2026-07-14&quot;:17.36},{&quot;2026-07-15&quot;:17.35},{&quot;2026-07-16&quot;:17.46},{&quot;2026-07-17&quot;:17.28},{&quot;2026-07-18&quot;:17.16},{&quot;2026-07-19&quot;:17.29},{&quot;2026-07-20&quot;:17.24},{&quot;2026-07-21&quot;:17.24},{&quot;2026-07-22&quot;:17.14},{&quot;2026-07-23&quot;:17.2},{&quot;2026-07-24&quot;:17.52},{&quot;2026-07-25&quot;:17.52},{&quot;2026-07-26&quot;:17.52},{&quot;2026-07-27&quot;:17.76},{&quot;2026-07-28&quot;:17.83},{&quot;2026-07-29&quot;:17.81},{&quot;2026-07-30&quot;:17.83},{&quot;2026-07-31&quot;:17.84},{&quot;2026-08-01&quot;:17.7},{&quot;2026-08-02&quot;:17.73},{&quot;2026-08-03&quot;:17.68},{&quot;2026-08-04&quot;:17.73},{&quot;2026-08-05&quot;:17.7},{&quot;2026-08-07&quot;:17.5},{&quot;2026-08-08&quot;:17.57},{&quot;2026-08-09&quot;:17.61},{&quot;2026-08-10&quot;:17.59},{&quot;2026-08-11&quot;:17.87},{&quot;2026-08-12&quot;:17.86},{&quot;2026-08-13&quot;:17.98},{&quot;2026-08-14&quot;:17.99},{&quot;2026-08-15&quot;:17.95},{&quot;2026-08-16&quot;:18.01},{&quot;2026-08-17&quot;:17.88},{&quot;2026-08-18&quot;:18.05},{&quot;2026-08-19&quot;:18.09},{&quot;2026-08-20&quot;:17.96},{&quot;2026-08-21&quot;:18.13},{&quot;2026-08-22&quot;:18.06},{&quot;2026-08-23&quot;:18.09},{&quot;2026-08-24&quot;:18.0},{&quot;2026-08-25&quot;:18.0},{&quot;2026-08-26&quot;:18.09},{&quot;2026-08-27&quot;:17.95},{&quot;2026-08-28&quot;:18.21},{&quot;2026-08-29&quot;:18.21},{&quot;2026-08-30&quot;:17.92},{&quot;2026-08-31&quot;:17.96},{&quot;2026-09-01&quot;:17.56},{&quot;2026-09-02&quot;:17.54},{&quot;2026-09-03&quot;:17.6},{&quot;2026-09-04&quot;:17.65},{&quot;2026-09-05&quot;:17.61},{&quot;2026-09-06&quot;:17.46},{&quot;2026-09-07&quot;:17.54},{&quot;2026-09-08&quot;:17.95},{&quot;2026-09-09&quot;:17.94},{&quot;2026-09-10&quot;:17.96},{&quot;2026-09-11&quot;:17.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="79059"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Nether Traitor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/f/8f3482ec-8466-4680-bfdc-e1029c0fbe89.jpg?1783927816" />

        <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">
            Nether Traitor
        </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 — Spirit</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="Nether Traitor" src="https://cards.scryfall.io/large/front/8/f/8f3482ec-8466-4680-bfdc-e1029c0fbe89.jpg?1783927816" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:18.47},{&quot;2026-06-14&quot;:18.39},{&quot;2026-06-15&quot;:18.17},{&quot;2026-06-16&quot;:18.17},{&quot;2026-06-17&quot;:18.17},{&quot;2026-06-18&quot;:18.17},{&quot;2026-06-19&quot;:18.17},{&quot;2026-06-20&quot;:18.17},{&quot;2026-06-21&quot;:18.53},{&quot;2026-06-22&quot;:18.53},{&quot;2026-06-23&quot;:18.53},{&quot;2026-06-24&quot;:18.53},{&quot;2026-06-25&quot;:18.53},{&quot;2026-06-26&quot;:18.58},{&quot;2026-06-27&quot;:18.58},{&quot;2026-06-28&quot;:18.58},{&quot;2026-06-29&quot;:18.58},{&quot;2026-06-30&quot;:18.58},{&quot;2026-07-01&quot;:18.58},{&quot;2026-07-02&quot;:18.58},{&quot;2026-07-03&quot;:18.58},{&quot;2026-07-04&quot;:18.58},{&quot;2026-07-05&quot;:18.58},{&quot;2026-07-06&quot;:18.52},{&quot;2026-07-07&quot;:18.52},{&quot;2026-07-08&quot;:18.52},{&quot;2026-07-09&quot;:18.52},{&quot;2026-07-10&quot;:18.44},{&quot;2026-07-11&quot;:18.44},{&quot;2026-07-12&quot;:18.44},{&quot;2026-07-13&quot;:18.44},{&quot;2026-07-14&quot;:18.44},{&quot;2026-07-15&quot;:18.44},{&quot;2026-07-16&quot;:18.44},{&quot;2026-07-17&quot;:18.44},{&quot;2026-07-18&quot;:18.42},{&quot;2026-07-19&quot;:18.42},{&quot;2026-07-20&quot;:18.42},{&quot;2026-07-21&quot;:18.42},{&quot;2026-07-22&quot;:18.42},{&quot;2026-07-23&quot;:18.42},{&quot;2026-07-24&quot;:18.42},{&quot;2026-07-25&quot;:18.42},{&quot;2026-07-26&quot;:18.42},{&quot;2026-07-27&quot;:18.42},{&quot;2026-07-28&quot;:18.42},{&quot;2026-07-29&quot;:18.42},{&quot;2026-07-30&quot;:18.42},{&quot;2026-07-31&quot;:18.42},{&quot;2026-08-01&quot;:18.42},{&quot;2026-08-02&quot;:18.42},{&quot;2026-08-03&quot;:18.42},{&quot;2026-08-04&quot;:18.42},{&quot;2026-08-05&quot;:18.42},{&quot;2026-08-07&quot;:18.42},{&quot;2026-08-08&quot;:18.42},{&quot;2026-08-09&quot;:18.42},{&quot;2026-08-10&quot;:18.42},{&quot;2026-08-11&quot;:18.42},{&quot;2026-08-12&quot;:18.42},{&quot;2026-08-13&quot;:18.42},{&quot;2026-08-14&quot;:18.42},{&quot;2026-08-15&quot;:18.42},{&quot;2026-08-16&quot;:18.38},{&quot;2026-08-17&quot;:18.19},{&quot;2026-08-18&quot;:18.19},{&quot;2026-08-19&quot;:18.19},{&quot;2026-08-20&quot;:18.19},{&quot;2026-08-21&quot;:18.07},{&quot;2026-08-22&quot;:17.98},{&quot;2026-08-23&quot;:17.98},{&quot;2026-08-24&quot;:17.98},{&quot;2026-08-25&quot;:17.98},{&quot;2026-08-26&quot;:17.98},{&quot;2026-08-27&quot;:17.98},{&quot;2026-08-28&quot;:17.98},{&quot;2026-08-29&quot;:17.98},{&quot;2026-08-30&quot;:17.98},{&quot;2026-08-31&quot;:17.98},{&quot;2026-09-01&quot;:17.98},{&quot;2026-09-02&quot;:17.98},{&quot;2026-09-03&quot;:17.88},{&quot;2026-09-04&quot;:17.8},{&quot;2026-09-05&quot;:17.8},{&quot;2026-09-06&quot;:17.8},{&quot;2026-09-07&quot;:17.8},{&quot;2026-09-08&quot;:17.8},{&quot;2026-09-09&quot;:17.8},{&quot;2026-09-10&quot;:17.68},{&quot;2026-09-11&quot;:17.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.1},{&quot;2026-06-14&quot;:5.02},{&quot;2026-06-15&quot;:5.07},{&quot;2026-06-16&quot;:5.04},{&quot;2026-06-17&quot;:5.04},{&quot;2026-06-18&quot;:5.04},{&quot;2026-06-19&quot;:5.06},{&quot;2026-06-20&quot;:4.89},{&quot;2026-06-21&quot;:4.73},{&quot;2026-06-22&quot;:4.73},{&quot;2026-06-23&quot;:4.67},{&quot;2026-06-24&quot;:4.58},{&quot;2026-06-25&quot;:4.58},{&quot;2026-06-26&quot;:4.58},{&quot;2026-06-27&quot;:4.59},{&quot;2026-06-28&quot;:4.51},{&quot;2026-06-29&quot;:4.51},{&quot;2026-06-30&quot;:4.51},{&quot;2026-07-01&quot;:4.51},{&quot;2026-07-02&quot;:4.36},{&quot;2026-07-03&quot;:4.36},{&quot;2026-07-04&quot;:4.36},{&quot;2026-07-05&quot;:4.36},{&quot;2026-07-06&quot;:4.16},{&quot;2026-07-07&quot;:3.8},{&quot;2026-07-08&quot;:3.66},{&quot;2026-07-09&quot;:3.6},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.24},{&quot;2026-07-12&quot;:3.23},{&quot;2026-07-13&quot;:3.19},{&quot;2026-07-14&quot;:3.27},{&quot;2026-07-15&quot;:3.21},{&quot;2026-07-16&quot;:3.21},{&quot;2026-07-17&quot;:3.21},{&quot;2026-07-18&quot;:3.21},{&quot;2026-07-19&quot;:3.18},{&quot;2026-07-20&quot;:3.21},{&quot;2026-07-21&quot;:3.36},{&quot;2026-07-22&quot;:3.36},{&quot;2026-07-23&quot;:3.36},{&quot;2026-07-24&quot;:3.36},{&quot;2026-07-25&quot;:3.36},{&quot;2026-07-26&quot;:3.36},{&quot;2026-07-27&quot;:3.43},{&quot;2026-07-28&quot;:3.5},{&quot;2026-07-29&quot;:3.53},{&quot;2026-07-30&quot;:3.53},{&quot;2026-07-31&quot;:3.53},{&quot;2026-08-01&quot;:3.52},{&quot;2026-08-02&quot;:3.52},{&quot;2026-08-03&quot;:3.43},{&quot;2026-08-04&quot;:3.43},{&quot;2026-08-05&quot;:3.55},{&quot;2026-08-07&quot;:3.55},{&quot;2026-08-08&quot;:3.55},{&quot;2026-08-09&quot;:3.55},{&quot;2026-08-10&quot;:3.57},{&quot;2026-08-11&quot;:3.57},{&quot;2026-08-12&quot;:3.55},{&quot;2026-08-13&quot;:3.45},{&quot;2026-08-14&quot;:3.45},{&quot;2026-08-15&quot;:3.45},{&quot;2026-08-16&quot;:3.45},{&quot;2026-08-17&quot;:3.44},{&quot;2026-08-18&quot;:3.26},{&quot;2026-08-19&quot;:3.21},{&quot;2026-08-20&quot;:3.21},{&quot;2026-08-21&quot;:3.0},{&quot;2026-08-22&quot;:3.0},{&quot;2026-08-23&quot;:2.96},{&quot;2026-08-24&quot;:2.87},{&quot;2026-08-25&quot;:2.85},{&quot;2026-08-26&quot;:2.86},{&quot;2026-08-27&quot;:2.95},{&quot;2026-08-28&quot;:2.93},{&quot;2026-08-29&quot;:2.93},{&quot;2026-08-30&quot;:2.89},{&quot;2026-08-31&quot;:3.06},{&quot;2026-09-01&quot;:3.22},{&quot;2026-09-02&quot;:3.22},{&quot;2026-09-03&quot;:3.23},{&quot;2026-09-04&quot;:3.23},{&quot;2026-09-05&quot;:3.3},{&quot;2026-09-06&quot;:3.3},{&quot;2026-09-07&quot;:3.3},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.56},{&quot;2026-09-10&quot;:3.34},{&quot;2026-09-11&quot;:3.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Diabolic Intent" src="https://cards.scryfall.io/large/front/d/7/d72ab698-de67-4ca8-8e42-b05346bf52fa.jpg?1783920094" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:16.89},{&quot;2026-06-13&quot;:16.86},{&quot;2026-06-14&quot;:16.86},{&quot;2026-06-15&quot;:16.86},{&quot;2026-06-16&quot;:16.86},{&quot;2026-06-17&quot;:17.04},{&quot;2026-06-18&quot;:17.04},{&quot;2026-06-19&quot;:17.01},{&quot;2026-06-20&quot;:17.01},{&quot;2026-06-21&quot;:17.29},{&quot;2026-06-22&quot;:17.45},{&quot;2026-06-23&quot;:17.45},{&quot;2026-06-24&quot;:17.48},{&quot;2026-06-25&quot;:17.48},{&quot;2026-06-26&quot;:17.48},{&quot;2026-06-27&quot;:17.48},{&quot;2026-06-28&quot;:17.49},{&quot;2026-06-29&quot;:17.49},{&quot;2026-06-30&quot;:17.49},{&quot;2026-07-01&quot;:17.61},{&quot;2026-07-02&quot;:17.61},{&quot;2026-07-03&quot;:17.61},{&quot;2026-07-04&quot;:17.5},{&quot;2026-07-05&quot;:17.5},{&quot;2026-07-06&quot;:17.5},{&quot;2026-07-07&quot;:17.57},{&quot;2026-07-08&quot;:17.57},{&quot;2026-07-09&quot;:17.57},{&quot;2026-07-10&quot;:17.57},{&quot;2026-07-11&quot;:17.85},{&quot;2026-07-12&quot;:17.8},{&quot;2026-07-13&quot;:17.85},{&quot;2026-07-14&quot;:17.72},{&quot;2026-07-15&quot;:17.72},{&quot;2026-07-16&quot;:17.72},{&quot;2026-07-17&quot;:17.61},{&quot;2026-07-18&quot;:17.61},{&quot;2026-07-19&quot;:17.61},{&quot;2026-07-20&quot;:17.65},{&quot;2026-07-21&quot;:17.65},{&quot;2026-07-23&quot;:17.65},{&quot;2026-07-24&quot;:17.65},{&quot;2026-07-25&quot;:17.65},{&quot;2026-07-26&quot;:17.62},{&quot;2026-07-27&quot;:17.4},{&quot;2026-07-28&quot;:17.4},{&quot;2026-07-29&quot;:17.47},{&quot;2026-07-30&quot;:17.36},{&quot;2026-07-31&quot;:17.35},{&quot;2026-08-01&quot;:17.35},{&quot;2026-08-02&quot;:17.15},{&quot;2026-08-03&quot;:16.92},{&quot;2026-08-04&quot;:16.92},{&quot;2026-08-05&quot;:16.91},{&quot;2026-08-07&quot;:16.85},{&quot;2026-08-08&quot;:16.91},{&quot;2026-08-09&quot;:16.91},{&quot;2026-08-10&quot;:16.91},{&quot;2026-08-11&quot;:16.96},{&quot;2026-08-12&quot;:16.96},{&quot;2026-08-13&quot;:16.96},{&quot;2026-08-14&quot;:16.95},{&quot;2026-08-15&quot;:16.95},{&quot;2026-08-16&quot;:16.92},{&quot;2026-08-17&quot;:16.92},{&quot;2026-08-18&quot;:16.92},{&quot;2026-08-19&quot;:16.93},{&quot;2026-08-20&quot;:16.93},{&quot;2026-08-21&quot;:16.84},{&quot;2026-08-22&quot;:16.84},{&quot;2026-08-23&quot;:16.84},{&quot;2026-08-24&quot;:16.78},{&quot;2026-08-25&quot;:16.73},{&quot;2026-08-26&quot;:16.73},{&quot;2026-08-27&quot;:16.88},{&quot;2026-08-28&quot;:16.83},{&quot;2026-08-29&quot;:16.83},{&quot;2026-08-30&quot;:16.75},{&quot;2026-08-31&quot;:16.55},{&quot;2026-09-01&quot;:16.55},{&quot;2026-09-02&quot;:16.58},{&quot;2026-09-03&quot;:16.58},{&quot;2026-09-04&quot;:16.81},{&quot;2026-09-05&quot;:16.91},{&quot;2026-09-06&quot;:16.91},{&quot;2026-09-07&quot;:16.84},{&quot;2026-09-08&quot;:16.91},{&quot;2026-09-09&quot;:17.21},{&quot;2026-09-10&quot;:17.21},{&quot;2026-09-11&quot;:17.33}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:17.52},{&quot;2026-06-13&quot;:17.52},{&quot;2026-06-14&quot;:17.7},{&quot;2026-06-15&quot;:17.73},{&quot;2026-06-16&quot;:17.91},{&quot;2026-06-17&quot;:17.87},{&quot;2026-06-18&quot;:17.77},{&quot;2026-06-19&quot;:17.04},{&quot;2026-06-20&quot;:16.87},{&quot;2026-06-21&quot;:16.67},{&quot;2026-06-22&quot;:16.98},{&quot;2026-06-23&quot;:17.0},{&quot;2026-06-24&quot;:17.26},{&quot;2026-06-25&quot;:17.43},{&quot;2026-06-26&quot;:17.58},{&quot;2026-06-27&quot;:17.26},{&quot;2026-06-28&quot;:17.4},{&quot;2026-06-29&quot;:17.41},{&quot;2026-06-30&quot;:17.41},{&quot;2026-07-01&quot;:17.39},{&quot;2026-07-02&quot;:17.36},{&quot;2026-07-03&quot;:17.46},{&quot;2026-07-04&quot;:17.57},{&quot;2026-07-05&quot;:17.57},{&quot;2026-07-06&quot;:17.7},{&quot;2026-07-07&quot;:17.78},{&quot;2026-07-08&quot;:17.5},{&quot;2026-07-09&quot;:17.7},{&quot;2026-07-10&quot;:17.94},{&quot;2026-07-11&quot;:17.75},{&quot;2026-07-12&quot;:17.75},{&quot;2026-07-13&quot;:17.74},{&quot;2026-07-14&quot;:17.84},{&quot;2026-07-15&quot;:18.18},{&quot;2026-07-16&quot;:18.3},{&quot;2026-07-17&quot;:18.01},{&quot;2026-07-18&quot;:18.22},{&quot;2026-07-19&quot;:18.34},{&quot;2026-07-20&quot;:18.37},{&quot;2026-07-21&quot;:17.95},{&quot;2026-07-23&quot;:17.38},{&quot;2026-07-24&quot;:17.81},{&quot;2026-07-25&quot;:17.2},{&quot;2026-07-26&quot;:17.27},{&quot;2026-07-27&quot;:17.17},{&quot;2026-07-28&quot;:17.33},{&quot;2026-07-29&quot;:17.34},{&quot;2026-07-30&quot;:17.31},{&quot;2026-07-31&quot;:17.55},{&quot;2026-08-01&quot;:17.75},{&quot;2026-08-02&quot;:17.83},{&quot;2026-08-03&quot;:18.04},{&quot;2026-08-04&quot;:17.76},{&quot;2026-08-05&quot;:17.55},{&quot;2026-08-07&quot;:17.42},{&quot;2026-08-08&quot;:17.38},{&quot;2026-08-09&quot;:17.35},{&quot;2026-08-10&quot;:17.2},{&quot;2026-08-11&quot;:17.16},{&quot;2026-08-12&quot;:17.12},{&quot;2026-08-13&quot;:17.33},{&quot;2026-08-14&quot;:17.33},{&quot;2026-08-15&quot;:17.01},{&quot;2026-08-16&quot;:16.77},{&quot;2026-08-17&quot;:16.03},{&quot;2026-08-18&quot;:15.92},{&quot;2026-08-19&quot;:15.87},{&quot;2026-08-20&quot;:15.87},{&quot;2026-08-21&quot;:16.03},{&quot;2026-08-22&quot;:15.88},{&quot;2026-08-23&quot;:16.49},{&quot;2026-08-24&quot;:16.39},{&quot;2026-08-25&quot;:16.42},{&quot;2026-08-26&quot;:16.63},{&quot;2026-08-27&quot;:16.88},{&quot;2026-08-28&quot;:16.41},{&quot;2026-08-29&quot;:16.41},{&quot;2026-08-30&quot;:15.87},{&quot;2026-08-31&quot;:15.87},{&quot;2026-09-01&quot;:16.74},{&quot;2026-09-02&quot;:16.79},{&quot;2026-09-03&quot;:16.79},{&quot;2026-09-04&quot;:16.83},{&quot;2026-09-05&quot;:16.89},{&quot;2026-09-06&quot;:16.92},{&quot;2026-09-07&quot;:17.31},{&quot;2026-09-08&quot;:17.54},{&quot;2026-09-09&quot;:17.5},{&quot;2026-09-10&quot;:17.42},{&quot;2026-09-11&quot;:17.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="97963"
  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-fic 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">
            Birds of Paradise
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $17.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="Birds of Paradise" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/f/9f8b95bd-c709-4259-b3fe-92119b92acae.jpg?1782684310" />

        <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">
            Birds of Paradise
        </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 — Bird</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Birds of Paradise" src="https://cards.scryfall.io/large/front/9/f/9f8b95bd-c709-4259-b3fe-92119b92acae.jpg?1782684310" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$13.50</span>
              <span class="text-xs text-grey-text">Credit: $17.55</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;:17.72},{&quot;2026-06-10&quot;:17.43},{&quot;2026-06-11&quot;:16.95},{&quot;2026-06-12&quot;:17.21},{&quot;2026-06-13&quot;:16.89},{&quot;2026-06-14&quot;:16.29},{&quot;2026-06-15&quot;:16.07},{&quot;2026-06-16&quot;:16.76},{&quot;2026-06-17&quot;:16.93},{&quot;2026-06-18&quot;:17.04},{&quot;2026-06-19&quot;:17.13},{&quot;2026-06-20&quot;:16.79},{&quot;2026-06-21&quot;:16.77},{&quot;2026-06-22&quot;:16.74},{&quot;2026-06-24&quot;:16.42},{&quot;2026-06-25&quot;:16.9},{&quot;2026-06-26&quot;:16.83},{&quot;2026-06-27&quot;:16.69},{&quot;2026-06-28&quot;:16.79},{&quot;2026-06-29&quot;:16.84},{&quot;2026-06-30&quot;:17.02},{&quot;2026-07-01&quot;:17.37},{&quot;2026-07-02&quot;:17.35},{&quot;2026-07-03&quot;:17.24},{&quot;2026-07-04&quot;:17.83},{&quot;2026-07-05&quot;:18.07},{&quot;2026-07-06&quot;:18.49},{&quot;2026-07-07&quot;:18.27},{&quot;2026-07-08&quot;:17.25},{&quot;2026-07-09&quot;:16.27},{&quot;2026-07-10&quot;:15.68},{&quot;2026-07-11&quot;:15.48},{&quot;2026-07-12&quot;:15.16},{&quot;2026-07-13&quot;:15.28},{&quot;2026-07-14&quot;:15.24},{&quot;2026-07-15&quot;:15.71},{&quot;2026-07-16&quot;:16.0},{&quot;2026-07-17&quot;:16.09},{&quot;2026-07-18&quot;:16.27},{&quot;2026-07-19&quot;:16.34},{&quot;2026-07-20&quot;:16.29},{&quot;2026-07-21&quot;:16.4},{&quot;2026-07-23&quot;:16.75},{&quot;2026-07-25&quot;:16.89},{&quot;2026-07-26&quot;:16.71},{&quot;2026-07-27&quot;:17.19},{&quot;2026-07-29&quot;:16.54},{&quot;2026-07-30&quot;:15.86},{&quot;2026-07-31&quot;:15.56},{&quot;2026-08-01&quot;:15.59},{&quot;2026-08-02&quot;:16.14},{&quot;2026-08-03&quot;:16.65},{&quot;2026-08-04&quot;:16.43},{&quot;2026-08-05&quot;:16.48},{&quot;2026-08-07&quot;:16.94},{&quot;2026-08-08&quot;:16.83},{&quot;2026-08-09&quot;:16.64},{&quot;2026-08-10&quot;:16.54},{&quot;2026-08-11&quot;:16.11},{&quot;2026-08-12&quot;:16.08},{&quot;2026-08-13&quot;:15.79},{&quot;2026-08-14&quot;:16.3},{&quot;2026-08-15&quot;:16.27},{&quot;2026-08-16&quot;:17.33},{&quot;2026-08-17&quot;:17.26},{&quot;2026-08-18&quot;:17.56},{&quot;2026-08-19&quot;:17.44},{&quot;2026-08-20&quot;:17.44},{&quot;2026-08-21&quot;:17.66},{&quot;2026-08-22&quot;:17.55},{&quot;2026-08-23&quot;:16.87},{&quot;2026-08-24&quot;:16.55},{&quot;2026-08-25&quot;:16.55},{&quot;2026-08-26&quot;:17.27},{&quot;2026-08-27&quot;:17.34},{&quot;2026-08-28&quot;:17.9},{&quot;2026-08-29&quot;:17.9},{&quot;2026-08-30&quot;:17.67},{&quot;2026-08-31&quot;:17.07},{&quot;2026-09-01&quot;:17.07},{&quot;2026-09-02&quot;:17.36},{&quot;2026-09-03&quot;:17.49},{&quot;2026-09-04&quot;:17.38},{&quot;2026-09-05&quot;:17.58},{&quot;2026-09-06&quot;:17.54},{&quot;2026-09-07&quot;:17.14},{&quot;2026-09-08&quot;:17.0},{&quot;2026-09-09&quot;:16.95},{&quot;2026-09-10&quot;:17.26},{&quot;2026-09-11&quot;:17.29}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment — Class
      </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">
            $16.76
          </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="Artificer Class" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/f/cf4e9335-06e3-4b27-8fd8-3e44ece89a36.jpg?1783922510" />

        <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">
            Artificer Class
        </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 — Class</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="Artificer Class" src="https://cards.scryfall.io/large/front/c/f/cf4e9335-06e3-4b27-8fd8-3e44ece89a36.jpg?1783922510" />
    </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">
                $16.76
              </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">$11.50</span>
              <span class="text-xs text-grey-text">Credit: $14.95</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:13.69},{&quot;2026-06-11&quot;:13.93},{&quot;2026-06-12&quot;:13.93},{&quot;2026-06-13&quot;:13.97},{&quot;2026-06-14&quot;:14.19},{&quot;2026-06-15&quot;:14.42},{&quot;2026-06-16&quot;:14.52},{&quot;2026-06-17&quot;:14.67},{&quot;2026-06-18&quot;:14.75},{&quot;2026-06-19&quot;:15.04},{&quot;2026-06-20&quot;:15.11},{&quot;2026-06-21&quot;:15.33},{&quot;2026-06-22&quot;:15.53},{&quot;2026-06-23&quot;:15.38},{&quot;2026-06-24&quot;:15.33},{&quot;2026-06-25&quot;:15.33},{&quot;2026-06-26&quot;:15.17},{&quot;2026-06-27&quot;:15.28},{&quot;2026-06-28&quot;:15.25},{&quot;2026-06-29&quot;:15.04},{&quot;2026-06-30&quot;:15.4},{&quot;2026-07-01&quot;:15.34},{&quot;2026-07-02&quot;:15.42},{&quot;2026-07-03&quot;:15.69},{&quot;2026-07-04&quot;:15.41},{&quot;2026-07-05&quot;:15.47},{&quot;2026-07-06&quot;:15.37},{&quot;2026-07-07&quot;:15.22},{&quot;2026-07-08&quot;:15.05},{&quot;2026-07-09&quot;:14.9},{&quot;2026-07-10&quot;:14.9},{&quot;2026-07-11&quot;:14.87},{&quot;2026-07-12&quot;:14.75},{&quot;2026-07-13&quot;:14.71},{&quot;2026-07-14&quot;:14.45},{&quot;2026-07-15&quot;:15.09},{&quot;2026-07-16&quot;:15.16},{&quot;2026-07-17&quot;:15.06},{&quot;2026-07-18&quot;:15.21},{&quot;2026-07-19&quot;:15.64},{&quot;2026-07-20&quot;:15.98},{&quot;2026-07-21&quot;:15.92},{&quot;2026-07-23&quot;:16.03},{&quot;2026-07-25&quot;:16.15},{&quot;2026-07-26&quot;:16.12},{&quot;2026-07-27&quot;:16.12},{&quot;2026-07-29&quot;:16.53},{&quot;2026-07-30&quot;:16.69},{&quot;2026-07-31&quot;:16.84},{&quot;2026-08-01&quot;:16.76},{&quot;2026-08-02&quot;:16.71},{&quot;2026-08-03&quot;:16.73},{&quot;2026-08-04&quot;:16.79},{&quot;2026-08-05&quot;:16.91},{&quot;2026-08-07&quot;:16.77},{&quot;2026-08-08&quot;:16.77},{&quot;2026-08-09&quot;:16.82},{&quot;2026-08-10&quot;:16.47},{&quot;2026-08-11&quot;:16.27},{&quot;2026-08-12&quot;:16.34},{&quot;2026-08-13&quot;:16.34},{&quot;2026-08-14&quot;:16.39},{&quot;2026-08-15&quot;:16.39},{&quot;2026-08-16&quot;:16.32},{&quot;2026-08-17&quot;:16.09},{&quot;2026-08-18&quot;:16.04},{&quot;2026-08-19&quot;:15.98},{&quot;2026-08-20&quot;:15.98},{&quot;2026-08-21&quot;:15.97},{&quot;2026-08-22&quot;:16.12},{&quot;2026-08-23&quot;:16.05},{&quot;2026-08-24&quot;:16.07},{&quot;2026-08-25&quot;:16.07},{&quot;2026-08-26&quot;:16.09},{&quot;2026-08-27&quot;:16.06},{&quot;2026-08-28&quot;:16.0},{&quot;2026-08-29&quot;:16.0},{&quot;2026-08-30&quot;:15.86},{&quot;2026-08-31&quot;:15.86},{&quot;2026-09-01&quot;:15.86},{&quot;2026-09-02&quot;:15.77},{&quot;2026-09-03&quot;:15.77},{&quot;2026-09-04&quot;:16.1},{&quot;2026-09-05&quot;:16.25},{&quot;2026-09-06&quot;:16.17},{&quot;2026-09-07&quot;:16.17},{&quot;2026-09-08&quot;:16.5},{&quot;2026-09-09&quot;:16.8},{&quot;2026-09-10&quot;:16.8},{&quot;2026-09-11&quot;:16.76}]}"
        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="74795"
  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">
            Beacon of Immortality
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Beacon of Immortality" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/8/58bbe5a2-a77f-49be-a2c8-2325b299813f.jpg?1783932384" />

        <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">
            Beacon of Immortality
        </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-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Beacon of Immortality" src="https://cards.scryfall.io/large/front/5/8/58bbe5a2-a77f-49be-a2c8-2325b299813f.jpg?1783932384" />
    </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">
                $16.71
              </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">$8.50</span>
              <span class="text-xs text-grey-text">Credit: $11.05</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:15.92},{&quot;2026-06-12&quot;:15.92},{&quot;2026-06-13&quot;:15.92},{&quot;2026-06-14&quot;:15.98},{&quot;2026-06-15&quot;:16.02},{&quot;2026-06-16&quot;:16.08},{&quot;2026-06-17&quot;:16.17},{&quot;2026-06-18&quot;:16.34},{&quot;2026-06-19&quot;:16.34},{&quot;2026-06-20&quot;:16.26},{&quot;2026-06-21&quot;:16.26},{&quot;2026-06-22&quot;:16.26},{&quot;2026-06-23&quot;:16.35},{&quot;2026-06-24&quot;:16.2},{&quot;2026-06-25&quot;:16.2},{&quot;2026-06-26&quot;:16.2},{&quot;2026-06-27&quot;:16.2},{&quot;2026-06-28&quot;:16.23},{&quot;2026-06-29&quot;:16.23},{&quot;2026-06-30&quot;:16.23},{&quot;2026-07-01&quot;:16.23},{&quot;2026-07-02&quot;:16.23},{&quot;2026-07-03&quot;:16.2},{&quot;2026-07-04&quot;:16.59},{&quot;2026-07-05&quot;:16.58},{&quot;2026-07-06&quot;:16.54},{&quot;2026-07-07&quot;:16.37},{&quot;2026-07-08&quot;:16.37},{&quot;2026-07-09&quot;:16.31},{&quot;2026-07-10&quot;:16.31},{&quot;2026-07-11&quot;:16.36},{&quot;2026-07-12&quot;:16.36},{&quot;2026-07-13&quot;:16.59},{&quot;2026-07-14&quot;:16.31},{&quot;2026-07-15&quot;:16.31},{&quot;2026-07-16&quot;:16.16},{&quot;2026-07-17&quot;:15.97},{&quot;2026-07-18&quot;:16.08},{&quot;2026-07-19&quot;:16.08},{&quot;2026-07-20&quot;:15.84},{&quot;2026-07-21&quot;:15.88},{&quot;2026-07-23&quot;:16.04},{&quot;2026-07-25&quot;:16.01},{&quot;2026-07-26&quot;:15.93},{&quot;2026-07-27&quot;:15.93},{&quot;2026-07-28&quot;:16.09},{&quot;2026-07-29&quot;:15.64},{&quot;2026-07-30&quot;:15.49},{&quot;2026-07-31&quot;:15.5},{&quot;2026-08-01&quot;:15.5},{&quot;2026-08-02&quot;:15.25},{&quot;2026-08-03&quot;:15.61},{&quot;2026-08-04&quot;:15.61},{&quot;2026-08-05&quot;:15.74},{&quot;2026-08-07&quot;:15.45},{&quot;2026-08-08&quot;:15.45},{&quot;2026-08-09&quot;:15.24},{&quot;2026-08-10&quot;:15.24},{&quot;2026-08-11&quot;:14.91},{&quot;2026-08-12&quot;:14.91},{&quot;2026-08-13&quot;:14.91},{&quot;2026-08-14&quot;:14.91},{&quot;2026-08-15&quot;:14.91},{&quot;2026-08-16&quot;:15.03},{&quot;2026-08-17&quot;:15.28},{&quot;2026-08-18&quot;:15.1},{&quot;2026-08-19&quot;:15.1},{&quot;2026-08-20&quot;:15.1},{&quot;2026-08-21&quot;:15.28},{&quot;2026-08-22&quot;:15.52},{&quot;2026-08-23&quot;:15.52},{&quot;2026-08-24&quot;:15.88},{&quot;2026-08-25&quot;:15.88},{&quot;2026-08-26&quot;:16.1},{&quot;2026-08-27&quot;:16.12},{&quot;2026-08-28&quot;:16.22},{&quot;2026-08-29&quot;:16.22},{&quot;2026-08-30&quot;:16.44},{&quot;2026-08-31&quot;:16.42},{&quot;2026-09-01&quot;:16.42},{&quot;2026-09-02&quot;:16.65},{&quot;2026-09-03&quot;:16.67},{&quot;2026-09-04&quot;:16.67},{&quot;2026-09-05&quot;:16.83},{&quot;2026-09-06&quot;:16.71},{&quot;2026-09-07&quot;:16.71},{&quot;2026-09-08&quot;:16.71},{&quot;2026-09-09&quot;:16.71},{&quot;2026-09-10&quot;:16.71},{&quot;2026-09-11&quot;:16.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $16.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="Kiki-Jiki, Mirror Breaker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/a/8a30fe7c-3c6b-4d05-adb7-9f87df29cd3b.jpg?1783927723" />

        <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">
            Kiki-Jiki, Mirror Breaker
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Kiki-Jiki, Mirror Breaker" src="https://cards.scryfall.io/large/front/8/a/8a30fe7c-3c6b-4d05-adb7-9f87df29cd3b.jpg?1783927723" />
    </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">
                $16.12
              </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">
                $66.64
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$8.00</span>
              <span class="text-xs text-grey-text">Credit: $10.40</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;:62.9},{&quot;2026-06-14&quot;:63.46},{&quot;2026-06-15&quot;:63.46},{&quot;2026-06-16&quot;:63.46},{&quot;2026-06-17&quot;:63.46},{&quot;2026-06-18&quot;:63.46},{&quot;2026-06-19&quot;:63.46},{&quot;2026-06-20&quot;:63.46},{&quot;2026-06-21&quot;:63.46},{&quot;2026-06-22&quot;:63.66},{&quot;2026-06-23&quot;:63.66},{&quot;2026-06-24&quot;:63.66},{&quot;2026-06-25&quot;:63.66},{&quot;2026-06-26&quot;:63.66},{&quot;2026-06-27&quot;:63.84},{&quot;2026-06-28&quot;:63.84},{&quot;2026-06-29&quot;:63.84},{&quot;2026-06-30&quot;:64.0},{&quot;2026-07-01&quot;:64.0},{&quot;2026-07-02&quot;:64.0},{&quot;2026-07-03&quot;:64.0},{&quot;2026-07-04&quot;:64.0},{&quot;2026-07-05&quot;:64.0},{&quot;2026-07-06&quot;:64.0},{&quot;2026-07-07&quot;:64.0},{&quot;2026-07-08&quot;:64.31},{&quot;2026-07-09&quot;:64.65},{&quot;2026-07-10&quot;:64.65},{&quot;2026-07-11&quot;:64.65},{&quot;2026-07-12&quot;:64.65},{&quot;2026-07-13&quot;:64.76},{&quot;2026-07-14&quot;:64.76},{&quot;2026-07-15&quot;:64.76},{&quot;2026-07-16&quot;:64.76},{&quot;2026-07-17&quot;:64.76},{&quot;2026-07-18&quot;:64.76},{&quot;2026-07-19&quot;:64.76},{&quot;2026-07-20&quot;:64.76},{&quot;2026-07-21&quot;:64.9},{&quot;2026-07-22&quot;:64.9},{&quot;2026-07-23&quot;:64.9},{&quot;2026-07-24&quot;:64.9},{&quot;2026-07-25&quot;:65.02},{&quot;2026-07-26&quot;:65.02},{&quot;2026-07-27&quot;:65.02},{&quot;2026-07-28&quot;:65.02},{&quot;2026-07-29&quot;:65.02},{&quot;2026-07-30&quot;:65.02},{&quot;2026-07-31&quot;:65.02},{&quot;2026-08-01&quot;:65.02},{&quot;2026-08-02&quot;:65.02},{&quot;2026-08-03&quot;:65.02},{&quot;2026-08-04&quot;:65.17},{&quot;2026-08-05&quot;:65.17},{&quot;2026-08-07&quot;:65.17},{&quot;2026-08-08&quot;:65.17},{&quot;2026-08-09&quot;:65.17},{&quot;2026-08-10&quot;:65.17},{&quot;2026-08-11&quot;:65.17},{&quot;2026-08-12&quot;:65.17},{&quot;2026-08-13&quot;:65.11},{&quot;2026-08-14&quot;:65.11},{&quot;2026-08-15&quot;:65.11},{&quot;2026-08-16&quot;:65.11},{&quot;2026-08-17&quot;:65.11},{&quot;2026-08-18&quot;:65.11},{&quot;2026-08-19&quot;:65.56},{&quot;2026-08-20&quot;:65.56},{&quot;2026-08-21&quot;:65.78},{&quot;2026-08-22&quot;:65.78},{&quot;2026-08-23&quot;:65.78},{&quot;2026-08-24&quot;:65.78},{&quot;2026-08-25&quot;:65.78},{&quot;2026-08-26&quot;:65.78},{&quot;2026-08-27&quot;:65.78},{&quot;2026-08-28&quot;:65.78},{&quot;2026-08-29&quot;:65.78},{&quot;2026-08-30&quot;:65.72},{&quot;2026-08-31&quot;:65.72},{&quot;2026-09-01&quot;:65.72},{&quot;2026-09-02&quot;:65.72},{&quot;2026-09-03&quot;:65.72},{&quot;2026-09-04&quot;:65.72},{&quot;2026-09-05&quot;:66.64},{&quot;2026-09-06&quot;:66.64},{&quot;2026-09-07&quot;:66.64},{&quot;2026-09-08&quot;:66.64},{&quot;2026-09-09&quot;:66.64},{&quot;2026-09-10&quot;:66.64},{&quot;2026-09-11&quot;:66.64}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:13.7},{&quot;2026-06-14&quot;:13.7},{&quot;2026-06-15&quot;:13.74},{&quot;2026-06-16&quot;:13.67},{&quot;2026-06-17&quot;:13.5},{&quot;2026-06-18&quot;:13.5},{&quot;2026-06-19&quot;:13.74},{&quot;2026-06-20&quot;:13.35},{&quot;2026-06-21&quot;:13.35},{&quot;2026-06-22&quot;:13.3},{&quot;2026-06-23&quot;:13.12},{&quot;2026-06-24&quot;:13.12},{&quot;2026-06-25&quot;:14.98},{&quot;2026-06-26&quot;:15.26},{&quot;2026-06-27&quot;:15.85},{&quot;2026-06-28&quot;:15.85},{&quot;2026-06-29&quot;:16.14},{&quot;2026-06-30&quot;:16.14},{&quot;2026-07-01&quot;:15.96},{&quot;2026-07-02&quot;:15.71},{&quot;2026-07-03&quot;:15.88},{&quot;2026-07-04&quot;:15.66},{&quot;2026-07-05&quot;:15.73},{&quot;2026-07-06&quot;:15.73},{&quot;2026-07-07&quot;:15.78},{&quot;2026-07-08&quot;:15.84},{&quot;2026-07-09&quot;:15.8},{&quot;2026-07-10&quot;:15.97},{&quot;2026-07-11&quot;:15.85},{&quot;2026-07-12&quot;:16.09},{&quot;2026-07-13&quot;:16.09},{&quot;2026-07-14&quot;:16.09},{&quot;2026-07-15&quot;:16.03},{&quot;2026-07-16&quot;:16.03},{&quot;2026-07-17&quot;:15.87},{&quot;2026-07-18&quot;:15.87},{&quot;2026-07-19&quot;:15.72},{&quot;2026-07-20&quot;:15.87},{&quot;2026-07-21&quot;:15.87},{&quot;2026-07-22&quot;:15.87},{&quot;2026-07-23&quot;:15.87},{&quot;2026-07-24&quot;:15.89},{&quot;2026-07-25&quot;:16.02},{&quot;2026-07-26&quot;:15.91},{&quot;2026-07-27&quot;:16.06},{&quot;2026-07-28&quot;:16.04},{&quot;2026-07-29&quot;:16.02},{&quot;2026-07-30&quot;:16.0},{&quot;2026-07-31&quot;:15.84},{&quot;2026-08-01&quot;:15.84},{&quot;2026-08-02&quot;:15.88},{&quot;2026-08-03&quot;:16.01},{&quot;2026-08-04&quot;:15.85},{&quot;2026-08-05&quot;:15.78},{&quot;2026-08-07&quot;:15.68},{&quot;2026-08-08&quot;:15.68},{&quot;2026-08-09&quot;:15.68},{&quot;2026-08-10&quot;:15.69},{&quot;2026-08-11&quot;:15.68},{&quot;2026-08-12&quot;:15.68},{&quot;2026-08-13&quot;:15.61},{&quot;2026-08-14&quot;:15.6},{&quot;2026-08-15&quot;:15.65},{&quot;2026-08-16&quot;:15.65},{&quot;2026-08-17&quot;:15.66},{&quot;2026-08-18&quot;:15.62},{&quot;2026-08-19&quot;:15.62},{&quot;2026-08-20&quot;:15.56},{&quot;2026-08-21&quot;:15.59},{&quot;2026-08-22&quot;:15.72},{&quot;2026-08-23&quot;:15.72},{&quot;2026-08-24&quot;:15.75},{&quot;2026-08-25&quot;:15.64},{&quot;2026-08-26&quot;:15.64},{&quot;2026-08-27&quot;:15.64},{&quot;2026-08-28&quot;:15.62},{&quot;2026-08-29&quot;:15.62},{&quot;2026-08-30&quot;:15.86},{&quot;2026-08-31&quot;:15.84},{&quot;2026-09-01&quot;:15.73},{&quot;2026-09-02&quot;:15.6},{&quot;2026-09-03&quot;:15.45},{&quot;2026-09-04&quot;:15.45},{&quot;2026-09-05&quot;:15.68},{&quot;2026-09-06&quot;:15.68},{&quot;2026-09-07&quot;:15.68},{&quot;2026-09-08&quot;:15.68},{&quot;2026-09-09&quot;:15.75},{&quot;2026-09-10&quot;:15.8},{&quot;2026-09-11&quot;:16.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="80325"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-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">
            Goryo&#39;s Vengeance
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $15.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="Goryo&#39;s Vengeance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/2/6261205d-3506-4f0a-98ce-690f40df7a5a.jpg?1783933822" />

        <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">
            Goryo&#39;s Vengeance
        </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 — Arcane</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Goryo&#39;s Vengeance" src="https://cards.scryfall.io/large/front/6/2/6261205d-3506-4f0a-98ce-690f40df7a5a.jpg?1783933822" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $15.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">
                $13.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">$12.50</span>
              <span class="text-xs text-grey-text">Credit: $16.25</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:11.53},{&quot;2026-06-13&quot;:11.06},{&quot;2026-06-14&quot;:11.06},{&quot;2026-06-15&quot;:11.06},{&quot;2026-06-16&quot;:11.06},{&quot;2026-06-17&quot;:11.06},{&quot;2026-06-18&quot;:11.06},{&quot;2026-06-19&quot;:11.06},{&quot;2026-06-20&quot;:11.06},{&quot;2026-06-21&quot;:11.06},{&quot;2026-06-22&quot;:11.06},{&quot;2026-06-23&quot;:11.06},{&quot;2026-06-24&quot;:11.06},{&quot;2026-06-25&quot;:11.06},{&quot;2026-06-26&quot;:11.04},{&quot;2026-06-27&quot;:11.04},{&quot;2026-06-28&quot;:11.04},{&quot;2026-06-29&quot;:11.09},{&quot;2026-06-30&quot;:11.09},{&quot;2026-07-01&quot;:11.09},{&quot;2026-07-02&quot;:11.09},{&quot;2026-07-03&quot;:11.09},{&quot;2026-07-04&quot;:11.1},{&quot;2026-07-05&quot;:11.1},{&quot;2026-07-06&quot;:11.1},{&quot;2026-07-07&quot;:11.1},{&quot;2026-07-08&quot;:11.1},{&quot;2026-07-09&quot;:11.1},{&quot;2026-07-10&quot;:11.1},{&quot;2026-07-11&quot;:11.1},{&quot;2026-07-12&quot;:11.1},{&quot;2026-07-13&quot;:11.1},{&quot;2026-07-14&quot;:11.1},{&quot;2026-07-15&quot;:11.1},{&quot;2026-07-16&quot;:11.14},{&quot;2026-07-17&quot;:11.14},{&quot;2026-07-18&quot;:11.14},{&quot;2026-07-19&quot;:11.14},{&quot;2026-07-20&quot;:11.14},{&quot;2026-07-21&quot;:11.14},{&quot;2026-07-23&quot;:11.27},{&quot;2026-07-24&quot;:11.27},{&quot;2026-07-25&quot;:11.4},{&quot;2026-07-26&quot;:11.4},{&quot;2026-07-27&quot;:11.4},{&quot;2026-07-28&quot;:11.68},{&quot;2026-07-29&quot;:11.68},{&quot;2026-07-30&quot;:11.68},{&quot;2026-07-31&quot;:11.68},{&quot;2026-08-01&quot;:11.68},{&quot;2026-08-02&quot;:11.68},{&quot;2026-08-03&quot;:11.68},{&quot;2026-08-04&quot;:11.68},{&quot;2026-08-05&quot;:11.68},{&quot;2026-08-07&quot;:11.68},{&quot;2026-08-08&quot;:11.68},{&quot;2026-08-09&quot;:11.68},{&quot;2026-08-10&quot;:11.68},{&quot;2026-08-11&quot;:11.68},{&quot;2026-08-12&quot;:11.76},{&quot;2026-08-13&quot;:11.76},{&quot;2026-08-14&quot;:12.31},{&quot;2026-08-15&quot;:12.96},{&quot;2026-08-16&quot;:12.96},{&quot;2026-08-17&quot;:12.96},{&quot;2026-08-18&quot;:12.96},{&quot;2026-08-19&quot;:12.96},{&quot;2026-08-20&quot;:12.96},{&quot;2026-08-21&quot;:12.96},{&quot;2026-08-22&quot;:12.96},{&quot;2026-08-23&quot;:12.96},{&quot;2026-08-24&quot;:12.96},{&quot;2026-08-25&quot;:12.96},{&quot;2026-08-26&quot;:12.96},{&quot;2026-08-27&quot;:12.96},{&quot;2026-08-28&quot;:12.96},{&quot;2026-08-29&quot;:12.96},{&quot;2026-08-30&quot;:12.96},{&quot;2026-08-31&quot;:13.11},{&quot;2026-09-01&quot;:13.11},{&quot;2026-09-02&quot;:13.11},{&quot;2026-09-03&quot;:13.11},{&quot;2026-09-04&quot;:13.11},{&quot;2026-09-05&quot;:13.11},{&quot;2026-09-06&quot;:13.11},{&quot;2026-09-07&quot;:13.11},{&quot;2026-09-08&quot;:13.11},{&quot;2026-09-09&quot;:13.11},{&quot;2026-09-10&quot;:13.11},{&quot;2026-09-11&quot;:13.11}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:9.56},{&quot;2026-06-13&quot;:9.45},{&quot;2026-06-14&quot;:9.51},{&quot;2026-06-15&quot;:9.66},{&quot;2026-06-16&quot;:9.77},{&quot;2026-06-17&quot;:9.85},{&quot;2026-06-18&quot;:10.27},{&quot;2026-06-19&quot;:10.2},{&quot;2026-06-20&quot;:10.17},{&quot;2026-06-21&quot;:10.1},{&quot;2026-06-22&quot;:10.1},{&quot;2026-06-23&quot;:10.26},{&quot;2026-06-24&quot;:10.63},{&quot;2026-06-25&quot;:10.59},{&quot;2026-06-26&quot;:10.76},{&quot;2026-06-27&quot;:10.95},{&quot;2026-06-28&quot;:10.95},{&quot;2026-06-29&quot;:10.97},{&quot;2026-06-30&quot;:11.07},{&quot;2026-07-01&quot;:11.0},{&quot;2026-07-02&quot;:11.0},{&quot;2026-07-03&quot;:11.13},{&quot;2026-07-04&quot;:11.28},{&quot;2026-07-05&quot;:11.26},{&quot;2026-07-06&quot;:11.33},{&quot;2026-07-07&quot;:11.54},{&quot;2026-07-08&quot;:11.54},{&quot;2026-07-09&quot;:11.28},{&quot;2026-07-10&quot;:11.4},{&quot;2026-07-11&quot;:11.27},{&quot;2026-07-12&quot;:11.41},{&quot;2026-07-13&quot;:11.48},{&quot;2026-07-14&quot;:11.42},{&quot;2026-07-15&quot;:11.57},{&quot;2026-07-16&quot;:11.68},{&quot;2026-07-17&quot;:11.68},{&quot;2026-07-18&quot;:11.62},{&quot;2026-07-19&quot;:11.62},{&quot;2026-07-20&quot;:12.04},{&quot;2026-07-21&quot;:12.04},{&quot;2026-07-23&quot;:12.27},{&quot;2026-07-24&quot;:12.27},{&quot;2026-07-25&quot;:12.38},{&quot;2026-07-26&quot;:12.47},{&quot;2026-07-27&quot;:12.75},{&quot;2026-07-28&quot;:12.81},{&quot;2026-07-29&quot;:12.93},{&quot;2026-07-30&quot;:12.97},{&quot;2026-07-31&quot;:13.25},{&quot;2026-08-01&quot;:13.48},{&quot;2026-08-02&quot;:13.48},{&quot;2026-08-03&quot;:13.48},{&quot;2026-08-04&quot;:14.04},{&quot;2026-08-05&quot;:14.04},{&quot;2026-08-07&quot;:14.04},{&quot;2026-08-08&quot;:14.04},{&quot;2026-08-09&quot;:14.28},{&quot;2026-08-10&quot;:14.28},{&quot;2026-08-11&quot;:14.28},{&quot;2026-08-12&quot;:14.29},{&quot;2026-08-13&quot;:14.69},{&quot;2026-08-14&quot;:14.89},{&quot;2026-08-15&quot;:14.88},{&quot;2026-08-16&quot;:14.87},{&quot;2026-08-17&quot;:14.87},{&quot;2026-08-18&quot;:14.94},{&quot;2026-08-19&quot;:15.17},{&quot;2026-08-20&quot;:15.17},{&quot;2026-08-21&quot;:15.06},{&quot;2026-08-22&quot;:15.71},{&quot;2026-08-23&quot;:15.71},{&quot;2026-08-24&quot;:15.71},{&quot;2026-08-25&quot;:15.92},{&quot;2026-08-26&quot;:15.92},{&quot;2026-08-27&quot;:15.8},{&quot;2026-08-28&quot;:15.81},{&quot;2026-08-29&quot;:15.81},{&quot;2026-08-30&quot;:15.79},{&quot;2026-08-31&quot;:15.76},{&quot;2026-09-01&quot;:15.76},{&quot;2026-09-02&quot;:15.76},{&quot;2026-09-03&quot;:15.76},{&quot;2026-09-04&quot;:15.76},{&quot;2026-09-05&quot;:15.76},{&quot;2026-09-06&quot;:15.76},{&quot;2026-09-07&quot;:15.46},{&quot;2026-09-08&quot;:15.46},{&quot;2026-09-09&quot;:15.44},{&quot;2026-09-10&quot;:15.44},{&quot;2026-09-11&quot;:15.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="57337"
  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-onc 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">
            Contaminant Grafter
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Contaminant Grafter
        </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 — Phyrexian Druid</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </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="Contaminant Grafter" src="https://cards.scryfall.io/large/front/d/d/dd899d93-15f9-4297-8da0-e20e21ec01ce.jpg?1783918142" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:11.28},{&quot;2026-06-11&quot;:11.28},{&quot;2026-06-12&quot;:11.28},{&quot;2026-06-13&quot;:11.28},{&quot;2026-06-14&quot;:11.3},{&quot;2026-06-15&quot;:11.58},{&quot;2026-06-16&quot;:11.71},{&quot;2026-06-17&quot;:11.87},{&quot;2026-06-18&quot;:11.87},{&quot;2026-06-19&quot;:11.87},{&quot;2026-06-20&quot;:11.86},{&quot;2026-06-21&quot;:11.95},{&quot;2026-06-22&quot;:12.01},{&quot;2026-06-23&quot;:11.89},{&quot;2026-06-24&quot;:11.91},{&quot;2026-06-25&quot;:11.78},{&quot;2026-06-26&quot;:10.97},{&quot;2026-06-27&quot;:11.53},{&quot;2026-06-28&quot;:11.53},{&quot;2026-06-29&quot;:11.81},{&quot;2026-06-30&quot;:11.77},{&quot;2026-07-01&quot;:11.6},{&quot;2026-07-02&quot;:11.6},{&quot;2026-07-03&quot;:11.6},{&quot;2026-07-04&quot;:11.87},{&quot;2026-07-05&quot;:11.64},{&quot;2026-07-06&quot;:11.64},{&quot;2026-07-07&quot;:11.5},{&quot;2026-07-08&quot;:11.26},{&quot;2026-07-09&quot;:11.42},{&quot;2026-07-10&quot;:11.38},{&quot;2026-07-11&quot;:11.38},{&quot;2026-07-12&quot;:11.2},{&quot;2026-07-13&quot;:11.2},{&quot;2026-07-14&quot;:11.46},{&quot;2026-07-15&quot;:11.39},{&quot;2026-07-16&quot;:11.5},{&quot;2026-07-17&quot;:11.03},{&quot;2026-07-18&quot;:11.11},{&quot;2026-07-19&quot;:11.05},{&quot;2026-07-20&quot;:11.13},{&quot;2026-07-21&quot;:11.34},{&quot;2026-07-23&quot;:11.61},{&quot;2026-07-25&quot;:11.7},{&quot;2026-07-26&quot;:12.31},{&quot;2026-07-27&quot;:12.06},{&quot;2026-07-29&quot;:12.31},{&quot;2026-07-30&quot;:12.57},{&quot;2026-07-31&quot;:13.16},{&quot;2026-08-01&quot;:13.07},{&quot;2026-08-02&quot;:13.09},{&quot;2026-08-03&quot;:13.13},{&quot;2026-08-04&quot;:12.71},{&quot;2026-08-05&quot;:12.84},{&quot;2026-08-07&quot;:13.17},{&quot;2026-08-08&quot;:13.24},{&quot;2026-08-09&quot;:13.0},{&quot;2026-08-10&quot;:13.07},{&quot;2026-08-11&quot;:12.58},{&quot;2026-08-12&quot;:12.64},{&quot;2026-08-13&quot;:12.79},{&quot;2026-08-14&quot;:12.93},{&quot;2026-08-15&quot;:12.8},{&quot;2026-08-16&quot;:12.67},{&quot;2026-08-17&quot;:12.89},{&quot;2026-08-18&quot;:13.18},{&quot;2026-08-19&quot;:13.18},{&quot;2026-08-20&quot;:13.18},{&quot;2026-08-21&quot;:13.18},{&quot;2026-08-22&quot;:13.18},{&quot;2026-08-23&quot;:13.18},{&quot;2026-08-24&quot;:13.18},{&quot;2026-08-25&quot;:13.18},{&quot;2026-08-26&quot;:14.36},{&quot;2026-08-27&quot;:14.36},{&quot;2026-08-28&quot;:14.24},{&quot;2026-08-29&quot;:14.24},{&quot;2026-08-30&quot;:14.74},{&quot;2026-08-31&quot;:14.78},{&quot;2026-09-01&quot;:14.78},{&quot;2026-09-02&quot;:14.88},{&quot;2026-09-03&quot;:14.88},{&quot;2026-09-04&quot;:14.88},{&quot;2026-09-05&quot;:15.07},{&quot;2026-09-06&quot;:15.37},{&quot;2026-09-07&quot;:15.37},{&quot;2026-09-08&quot;:15.37},{&quot;2026-09-09&quot;:15.37},{&quot;2026-09-10&quot;:15.54},{&quot;2026-09-11&quot;:15.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="112372"
  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-pmei 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">
            Six
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $15.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="Six" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/6/36b1481a-16b2-4a10-9db0-0f078e07d5cc.jpg?1782736654" />

        <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">
            Six
        </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 — Treefolk</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Six" src="https://cards.scryfall.io/large/front/3/6/36b1481a-16b2-4a10-9db0-0f078e07d5cc.jpg?1782736654" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $15.34
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$9.50</span>
              <span class="text-xs text-grey-text">Credit: $12.35</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-07-19&quot;:27.86},{&quot;2026-07-20&quot;:27.78},{&quot;2026-07-21&quot;:27.59},{&quot;2026-07-22&quot;:26.89},{&quot;2026-07-23&quot;:26.45},{&quot;2026-07-24&quot;:26.06},{&quot;2026-07-25&quot;:24.85},{&quot;2026-07-26&quot;:23.69},{&quot;2026-07-27&quot;:23.38},{&quot;2026-07-28&quot;:20.91},{&quot;2026-07-29&quot;:19.53},{&quot;2026-07-30&quot;:18.46},{&quot;2026-07-31&quot;:17.8},{&quot;2026-08-01&quot;:17.36},{&quot;2026-08-02&quot;:16.08},{&quot;2026-08-03&quot;:15.44},{&quot;2026-08-04&quot;:15.67},{&quot;2026-08-05&quot;:15.71},{&quot;2026-08-07&quot;:15.49},{&quot;2026-08-08&quot;:15.72},{&quot;2026-08-09&quot;:16.68},{&quot;2026-08-10&quot;:16.95},{&quot;2026-08-11&quot;:17.29},{&quot;2026-08-12&quot;:17.25},{&quot;2026-08-13&quot;:17.21},{&quot;2026-08-14&quot;:16.29},{&quot;2026-08-15&quot;:16.2},{&quot;2026-08-16&quot;:16.21},{&quot;2026-08-17&quot;:16.26},{&quot;2026-08-18&quot;:16.43},{&quot;2026-08-19&quot;:16.44},{&quot;2026-08-20&quot;:16.75},{&quot;2026-08-21&quot;:16.62},{&quot;2026-08-22&quot;:16.32},{&quot;2026-08-23&quot;:16.26},{&quot;2026-08-24&quot;:16.11},{&quot;2026-08-25&quot;:15.8},{&quot;2026-08-26&quot;:15.79},{&quot;2026-08-27&quot;:15.74},{&quot;2026-08-28&quot;:15.0},{&quot;2026-08-29&quot;:15.0},{&quot;2026-08-30&quot;:14.46},{&quot;2026-08-31&quot;:14.0},{&quot;2026-09-01&quot;:14.12},{&quot;2026-09-02&quot;:14.33},{&quot;2026-09-03&quot;:14.37},{&quot;2026-09-04&quot;:14.41},{&quot;2026-09-05&quot;:14.66},{&quot;2026-09-06&quot;:14.8},{&quot;2026-09-07&quot;:15.05},{&quot;2026-09-08&quot;:15.19},{&quot;2026-09-09&quot;:15.17},{&quot;2026-09-10&quot;:15.38},{&quot;2026-09-11&quot;:15.34}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        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="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">
            $15.05
          </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="Bothersome Quasit" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/e/6e9a0a23-cd62-4762-b751-ac0159a1b3c5.jpg?1783922501" />

        <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">
            Bothersome Quasit
        </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 — 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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bothersome Quasit" src="https://cards.scryfall.io/large/front/6/e/6e9a0a23-cd62-4762-b751-ac0159a1b3c5.jpg?1783922501" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $15.05
              </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">$9.50</span>
              <span class="text-xs text-grey-text">Credit: $12.35</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;:15.38},{&quot;2026-06-14&quot;:15.38},{&quot;2026-06-15&quot;:15.38},{&quot;2026-06-16&quot;:15.66},{&quot;2026-06-17&quot;:15.64},{&quot;2026-06-18&quot;:15.88},{&quot;2026-06-19&quot;:15.69},{&quot;2026-06-20&quot;:15.69},{&quot;2026-06-21&quot;:15.69},{&quot;2026-06-22&quot;:15.58},{&quot;2026-06-23&quot;:15.0},{&quot;2026-06-24&quot;:14.79},{&quot;2026-06-25&quot;:14.79},{&quot;2026-06-26&quot;:14.23},{&quot;2026-06-27&quot;:13.8},{&quot;2026-06-28&quot;:14.1},{&quot;2026-06-29&quot;:14.5},{&quot;2026-06-30&quot;:14.71},{&quot;2026-07-01&quot;:14.57},{&quot;2026-07-02&quot;:15.01},{&quot;2026-07-03&quot;:14.56},{&quot;2026-07-04&quot;:14.51},{&quot;2026-07-05&quot;:14.46},{&quot;2026-07-06&quot;:14.35},{&quot;2026-07-07&quot;:14.25},{&quot;2026-07-08&quot;:14.14},{&quot;2026-07-09&quot;:14.28},{&quot;2026-07-10&quot;:14.3},{&quot;2026-07-11&quot;:14.18},{&quot;2026-07-12&quot;:14.18},{&quot;2026-07-13&quot;:13.98},{&quot;2026-07-14&quot;:13.98},{&quot;2026-07-15&quot;:13.98},{&quot;2026-07-16&quot;:14.04},{&quot;2026-07-17&quot;:14.02},{&quot;2026-07-18&quot;:14.08},{&quot;2026-07-19&quot;:14.04},{&quot;2026-07-20&quot;:14.04},{&quot;2026-07-21&quot;:14.04},{&quot;2026-07-22&quot;:14.12},{&quot;2026-07-23&quot;:13.97},{&quot;2026-07-24&quot;:13.92},{&quot;2026-07-25&quot;:14.13},{&quot;2026-07-26&quot;:14.13},{&quot;2026-07-27&quot;:14.48},{&quot;2026-07-28&quot;:14.48},{&quot;2026-07-29&quot;:14.48},{&quot;2026-07-30&quot;:14.54},{&quot;2026-07-31&quot;:14.54},{&quot;2026-08-01&quot;:14.54},{&quot;2026-08-02&quot;:14.54},{&quot;2026-08-03&quot;:14.61},{&quot;2026-08-04&quot;:14.68},{&quot;2026-08-05&quot;:14.76},{&quot;2026-08-07&quot;:14.96},{&quot;2026-08-08&quot;:14.98},{&quot;2026-08-09&quot;:15.35},{&quot;2026-08-10&quot;:15.49},{&quot;2026-08-11&quot;:15.5},{&quot;2026-08-12&quot;:15.5},{&quot;2026-08-13&quot;:15.5},{&quot;2026-08-14&quot;:15.4},{&quot;2026-08-15&quot;:15.4},{&quot;2026-08-16&quot;:15.27},{&quot;2026-08-17&quot;:14.93},{&quot;2026-08-18&quot;:14.99},{&quot;2026-08-19&quot;:15.0},{&quot;2026-08-20&quot;:15.11},{&quot;2026-08-21&quot;:15.04},{&quot;2026-08-22&quot;:14.87},{&quot;2026-08-23&quot;:14.95},{&quot;2026-08-24&quot;:14.82},{&quot;2026-08-25&quot;:14.74},{&quot;2026-08-26&quot;:14.76},{&quot;2026-08-27&quot;:14.71},{&quot;2026-08-28&quot;:14.75},{&quot;2026-08-29&quot;:14.75},{&quot;2026-08-30&quot;:14.91},{&quot;2026-08-31&quot;:14.91},{&quot;2026-09-01&quot;:14.87},{&quot;2026-09-02&quot;:14.83},{&quot;2026-09-03&quot;:14.76},{&quot;2026-09-04&quot;:14.86},{&quot;2026-09-05&quot;:14.93},{&quot;2026-09-06&quot;:15.06},{&quot;2026-09-07&quot;:15.11},{&quot;2026-09-08&quot;:15.01},{&quot;2026-09-09&quot;:15.16},{&quot;2026-09-10&quot;:15.26},{&quot;2026-09-11&quot;:15.05}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bear Umbra" src="https://cards.scryfall.io/large/front/5/a/5a195fb1-f2e9-4e05-8a04-c335e1afbef6.jpg?1783923955" />
    </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">
                $14.88
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$8.00</span>
              <span class="text-xs text-grey-text">Credit: $10.40</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;:10.65},{&quot;2026-06-14&quot;:10.5},{&quot;2026-06-15&quot;:10.56},{&quot;2026-06-16&quot;:10.61},{&quot;2026-06-17&quot;:10.56},{&quot;2026-06-18&quot;:10.39},{&quot;2026-06-19&quot;:9.45},{&quot;2026-06-20&quot;:9.84},{&quot;2026-06-21&quot;:9.66},{&quot;2026-06-22&quot;:9.81},{&quot;2026-06-23&quot;:9.37},{&quot;2026-06-24&quot;:9.92},{&quot;2026-06-25&quot;:10.79},{&quot;2026-06-26&quot;:10.56},{&quot;2026-06-27&quot;:10.53},{&quot;2026-06-28&quot;:10.46},{&quot;2026-06-29&quot;:10.43},{&quot;2026-06-30&quot;:10.68},{&quot;2026-07-01&quot;:10.9},{&quot;2026-07-02&quot;:10.61},{&quot;2026-07-03&quot;:10.41},{&quot;2026-07-04&quot;:10.91},{&quot;2026-07-05&quot;:11.12},{&quot;2026-07-06&quot;:11.48},{&quot;2026-07-07&quot;:11.12},{&quot;2026-07-08&quot;:11.47},{&quot;2026-07-09&quot;:11.05},{&quot;2026-07-10&quot;:10.73},{&quot;2026-07-11&quot;:10.82},{&quot;2026-07-12&quot;:10.92},{&quot;2026-07-13&quot;:10.79},{&quot;2026-07-14&quot;:11.04},{&quot;2026-07-15&quot;:10.91},{&quot;2026-07-16&quot;:11.18},{&quot;2026-07-17&quot;:11.12},{&quot;2026-07-18&quot;:11.26},{&quot;2026-07-19&quot;:11.42},{&quot;2026-07-20&quot;:11.44},{&quot;2026-07-21&quot;:11.83},{&quot;2026-07-22&quot;:11.78},{&quot;2026-07-23&quot;:11.78},{&quot;2026-07-24&quot;:11.91},{&quot;2026-07-25&quot;:11.93},{&quot;2026-07-26&quot;:12.09},{&quot;2026-07-27&quot;:12.23},{&quot;2026-07-28&quot;:12.11},{&quot;2026-07-29&quot;:12.08},{&quot;2026-07-30&quot;:11.88},{&quot;2026-07-31&quot;:11.75},{&quot;2026-08-01&quot;:11.91},{&quot;2026-08-02&quot;:11.82},{&quot;2026-08-03&quot;:11.77},{&quot;2026-08-04&quot;:11.68},{&quot;2026-08-05&quot;:11.59},{&quot;2026-08-07&quot;:11.66},{&quot;2026-08-08&quot;:11.77},{&quot;2026-08-09&quot;:11.65},{&quot;2026-08-10&quot;:12.2},{&quot;2026-08-11&quot;:12.36},{&quot;2026-08-12&quot;:12.26},{&quot;2026-08-13&quot;:12.26},{&quot;2026-08-14&quot;:12.17},{&quot;2026-08-15&quot;:12.53},{&quot;2026-08-16&quot;:12.57},{&quot;2026-08-17&quot;:12.43},{&quot;2026-08-18&quot;:12.17},{&quot;2026-08-19&quot;:12.49},{&quot;2026-08-20&quot;:12.52},{&quot;2026-08-21&quot;:12.52},{&quot;2026-08-22&quot;:12.52},{&quot;2026-08-23&quot;:13.07},{&quot;2026-08-24&quot;:13.61},{&quot;2026-08-25&quot;:13.58},{&quot;2026-08-26&quot;:13.41},{&quot;2026-08-27&quot;:13.88},{&quot;2026-08-28&quot;:14.0},{&quot;2026-08-29&quot;:14.0},{&quot;2026-08-30&quot;:14.64},{&quot;2026-08-31&quot;:14.86},{&quot;2026-09-01&quot;:15.33},{&quot;2026-09-02&quot;:15.12},{&quot;2026-09-03&quot;:16.57},{&quot;2026-09-04&quot;:16.33},{&quot;2026-09-05&quot;:16.02},{&quot;2026-09-06&quot;:15.64},{&quot;2026-09-07&quot;:15.4},{&quot;2026-09-08&quot;:15.1},{&quot;2026-09-09&quot;:14.93},{&quot;2026-09-10&quot;:15.0},{&quot;2026-09-11&quot;:14.88}]}"
        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 2632 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=4&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=53">53</a><a href="/load_collection?collection_id=4&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=4&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=4&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=4&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=4&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=4&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=4&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=4&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=4&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=4&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="80015"
          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">
              25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-bot ss-mythic ss-fw ss-2x mr-4"></i>
              Goldbug, Humanity&#39;s Ally // Goldbug, Scrappy Scout


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-rare ss-fw ss-2x mr-4"></i>
              Lulu, Stern Guardian


            </td>

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

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

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

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

                </div>
            </td>

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

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

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97947"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97947" src="/boxset_card/97947?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97919"
          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">
              569
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              Choco, Seeker of Paradise


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Bird
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $96.16

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $44.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97919"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97919" src="/boxset_card/97919?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20168"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              31
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Smothering Tithe


            </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $55.71

                    <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">
                $42.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20168"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20168" src="/boxset_card/20168?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20224"
          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">
              50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Force of Negation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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">
                  $52.98

                    <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">
                $36.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.91
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20224"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20224" src="/boxset_card/20224?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97938"
          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">
              458
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-rare ss-fw ss-2x mr-4"></i>
              Vivi&#39;s Persistence


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $52.86

                    <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">
                $48.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97938"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97938" src="/boxset_card/97938?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95676"
          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">
              528
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              Vincent Valentine // Galian Beast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Assassin
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $50.44

                    <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">
                $20.00
            </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="95676"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95676" src="/boxset_card/95676?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98744"
          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">
              305
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tle ss-rare ss-fw ss-2x mr-4"></i>
              Enlightened Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $41.64

                    <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">
                $24.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98744"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98744" src="/boxset_card/98744?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14223"
          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">
              799
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Jeska&#39;s Will


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $40.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $30.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14223"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14223" src="/boxset_card/14223?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11938"
          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">
              187
            </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>
              Jeska&#39;s Will


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $39.70

                    <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">
                $33.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11938"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11938" src="/boxset_card/11938?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79648"
          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">
              320
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Trinket Mage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.89

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $37.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">
                $0.38
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $25.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79648"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79648" src="/boxset_card/79648?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="61923"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              428
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-rvr ss-rare ss-fw ss-2x mr-4"></i>
              Hellkite Tyrant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $36.85

                    <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">
                $22.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="61923"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_61923" src="/boxset_card/61923?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="17972"
          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">
              6
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Enlightened Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $36.31

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $25.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="17972"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_17972" src="/boxset_card/17972?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20515"
          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">
              150
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Green Sun&#39;s Zenith


            </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $34.93

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $26.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.97
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20515"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20515" src="/boxset_card/20515?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80254"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              CHK-124
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Marrow-Gnawer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Rat Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $33.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $14.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80254"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80254" src="/boxset_card/80254?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98753"
          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-tle ss-rare ss-fw ss-2x mr-4"></i>
              Worldly Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $32.16

                    <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">
                $20.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98753"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98753" src="/boxset_card/98753?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18505"
          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">
              185
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Worldly Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $32.03

                    <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">
                $19.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18505"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18505" src="/boxset_card/18505?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20058"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              31
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              Stoneforge Mystic


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Kor Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $31.45

                    <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">
                $17.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.78
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20058"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20058" src="/boxset_card/20058?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74110"
          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">
              158
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x mr-4"></i>
              Delighted Halfling


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Halfling Citizen
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $30.61

                    <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">
                $21.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.59
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74110"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74110" src="/boxset_card/74110?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="38138"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-jou ss-rare ss-fw ss-2x mr-4"></i>
              Dictate of Erebos


            </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.74

                    <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">
                <div class="flex items-center gap-2">
                  $30.02

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $13.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $17.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.88
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="38138"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_38138" src="/boxset_card/38138?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79698"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              336
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Yawgmoth, Thran Physician


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $29.22

                    <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">
                $15.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79698"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79698" src="/boxset_card/79698?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75228"
          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-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Charismatic Conqueror


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Soldier
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $28.55

                    <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">
                $20.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.80
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75228"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75228" src="/boxset_card/75228?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19605"
          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-dmc ss-rare ss-fw ss-2x mr-4"></i>
              The Reaver Cleaver


            </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $28.29

                    <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">
                $25.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19605"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19605" src="/boxset_card/19605?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46564"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              298
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-rare ss-fw ss-2x mr-4"></i>
              Etali, Primal Conqueror // Etali, Primal Sickness


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elder Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $26.06

                    <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">
                $16.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.65
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="46564"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46564" src="/boxset_card/46564?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29358"
          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">
              24
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-j25 ss-rare ss-fw ss-2x mr-4"></i>
              Scythecat Cub


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Cat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $25.50

                    <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">
                $22.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.66
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29358"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29358" src="/boxset_card/29358?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97952"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              472
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-rare ss-fw ss-2x mr-4"></i>
              Barret, Avalanche Leader


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Rebel
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $24.80

                    <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">
                $15.00
            </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="97952"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97952" src="/boxset_card/97952?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="99307"
          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">
              145
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ecl ss-rare ss-fw ss-2x mr-4"></i>
              Hexing Squelcher


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Goblin Sorcerer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $22.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $24.20

                    <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">
                $19.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $17.50
            </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="99307"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_99307" src="/boxset_card/99307?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79987"
          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-bot ss-mythic ss-fw ss-2x mr-4"></i>
              Starscream, Power Hungry // Starscream, Seeker Leader


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact Creature — Robot
            </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">
                  $22.41

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $11.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.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79987"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79987" src="/boxset_card/79987?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29424"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              45
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-j25 ss-rare ss-fw ss-2x mr-4"></i>
              Rev, Tithe Extractor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $21.82

                    <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">
                $17.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29424"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29424" src="/boxset_card/29424?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20288"
          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">
              73
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Damnation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $21.36

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $12.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.57
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20288"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20288" src="/boxset_card/20288?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79223"
          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">
              182
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Reiterate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $19.65

                    <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">
                $13.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.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79223"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79223" src="/boxset_card/79223?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20726"
          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-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Grand Arbiter Augustin IV


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Advisor
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $19.50

                    <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.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20726"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20726" src="/boxset_card/20726?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92979"
          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">
              33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm ss-rare ss-fw ss-2x mr-4"></i>
              Voice of Victory


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Bard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.77

                    <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">
                $20.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.95
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="92979"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_92979" src="/boxset_card/92979?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97389"
          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">
              343
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tla ss-rare ss-fw ss-2x mr-4"></i>
              Redirect Lightning


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant — Lesson
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.56

                    <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">
                $15.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97389"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97389" src="/boxset_card/97389?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18137"
          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-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Mystical Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.52

                    <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">
                $12.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18137"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18137" src="/boxset_card/18137?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="24095"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              176
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dsk ss-rare ss-fw ss-2x mr-4"></i>
              Enduring Vitality


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment Creature — Elk Glimmer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.40

                    <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">
                $10.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="24095"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_24095" src="/boxset_card/24095?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53185"
          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-mb2 ss-rare ss-fw ss-2x mr-4"></i>
              Pact of Negation


            </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-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.23

                    <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">
                $14.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53185"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53185" src="/boxset_card/53185?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19240"
          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">
              421
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Mystical Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.22

                    <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">
                $13.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19240"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19240" src="/boxset_card/19240?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78900"
          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">
              77
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Pact of Negation


            </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-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $17.90

                    <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">
                $13.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78900"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78900" src="/boxset_card/78900?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79059"
          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">
              127
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Nether Traitor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Spirit
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $3.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $17.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79059"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79059" src="/boxset_card/79059?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="72497"
          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">
              89
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-bro ss-rare ss-fw ss-2x mr-4"></i>
              Diabolic Intent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $17.41

                    <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">
                <div class="flex items-center gap-2">
                  $17.33

                    <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">
                $11.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $11.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.74
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="72497"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_72497" src="/boxset_card/72497?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97963"
          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">
              483
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-rare ss-fw ss-2x mr-4"></i>
              Birds of Paradise


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Bird
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $17.29

                    <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">
                $13.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97963"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97963" src="/boxset_card/97963?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13804"
          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">
              663
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Artificer Class


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Class
            </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">
                  $16.76

                    <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">
                $11.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13804"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13804" src="/boxset_card/13804?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74795"
          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">
              E02-1
            </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>
              Beacon of Immortality


            </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-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.71

                    <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">
                $8.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74795"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74795" src="/boxset_card/74795?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79727"
          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">
              346
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Kiki-Jiki, Mirror Breaker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Goblin Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.12

                    <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">
                $8.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79727"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79727" src="/boxset_card/79727?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80325"
          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-uma ss-rare ss-fw ss-2x mr-4"></i>
              Goryo&#39;s Vengeance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant — Arcane
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.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">
                $12.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.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80325"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80325" src="/boxset_card/80325?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="57337"
          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">
              55
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-onc ss-rare ss-fw ss-2x mr-4"></i>
              Contaminant Grafter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Phyrexian Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $10.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="57337"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_57337" src="/boxset_card/57337?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="112372"
          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">
              2660
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare ss-fw ss-2x mr-4"></i>
              Six


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Treefolk
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.34

                    <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">
                $9.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="112372"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_112372" src="/boxset_card/112372?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13836"
          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">
              674
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Bothersome Quasit


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.05

                    <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">
                $9.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.54
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13836"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13836" src="/boxset_card/13836?collection_id=4&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53642"
          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">
              113
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-nec ss-rare ss-fw ss-2x mr-4"></i>
              Bear Umbra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.88

                    <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">
                $8.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.61
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53642"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53642" src="/boxset_card/53642?collection_id=4&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 2632 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=4&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=53">53</a><a href="/load_collection?collection_id=4&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>