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

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


      </div>

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

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

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

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

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

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

        <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">
            Arid Mesa
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arid Mesa" src="https://cards.scryfall.io/large/front/2/5/25ac5405-df7b-4097-914a-022cb18e20d4.jpg?1783926797" />
    </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.68
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $36.71
              </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;2026-06-08&quot;:36.87},{&quot;2026-06-10&quot;:36.67},{&quot;2026-06-11&quot;:36.84},{&quot;2026-06-12&quot;:36.84},{&quot;2026-06-13&quot;:36.71},{&quot;2026-06-14&quot;:36.71},{&quot;2026-06-15&quot;:36.71},{&quot;2026-06-16&quot;:36.71},{&quot;2026-06-17&quot;:36.71},{&quot;2026-06-18&quot;:36.71},{&quot;2026-06-19&quot;:36.79},{&quot;2026-06-20&quot;:36.74},{&quot;2026-06-21&quot;:36.74},{&quot;2026-06-22&quot;:36.74},{&quot;2026-06-24&quot;:37.16},{&quot;2026-06-25&quot;:37.29},{&quot;2026-06-26&quot;:37.29},{&quot;2026-06-27&quot;:37.29},{&quot;2026-06-28&quot;:37.29},{&quot;2026-06-29&quot;:37.29},{&quot;2026-06-30&quot;:37.29},{&quot;2026-07-01&quot;:37.86},{&quot;2026-07-02&quot;:37.86},{&quot;2026-07-03&quot;:37.37},{&quot;2026-07-04&quot;:37.37},{&quot;2026-07-05&quot;:37.53},{&quot;2026-07-06&quot;:37.53},{&quot;2026-07-07&quot;:37.53},{&quot;2026-07-08&quot;:37.53},{&quot;2026-07-09&quot;:37.53},{&quot;2026-07-10&quot;:37.53},{&quot;2026-07-11&quot;:37.53},{&quot;2026-07-12&quot;:37.53},{&quot;2026-07-13&quot;:37.53},{&quot;2026-07-14&quot;:37.54},{&quot;2026-07-15&quot;:37.54},{&quot;2026-07-16&quot;:37.54},{&quot;2026-07-17&quot;:37.54},{&quot;2026-07-18&quot;:37.54},{&quot;2026-07-19&quot;:37.54},{&quot;2026-07-20&quot;:37.54},{&quot;2026-07-21&quot;:37.54},{&quot;2026-07-23&quot;:37.88},{&quot;2026-07-25&quot;:37.88},{&quot;2026-07-26&quot;:37.88},{&quot;2026-07-27&quot;:37.88},{&quot;2026-07-29&quot;:37.88},{&quot;2026-07-30&quot;:37.88},{&quot;2026-07-31&quot;:37.84},{&quot;2026-08-01&quot;:37.45},{&quot;2026-08-02&quot;:37.45},{&quot;2026-08-03&quot;:37.45},{&quot;2026-08-04&quot;:37.45},{&quot;2026-08-05&quot;:37.45},{&quot;2026-08-07&quot;:37.45},{&quot;2026-08-08&quot;:37.45},{&quot;2026-08-09&quot;:37.45},{&quot;2026-08-10&quot;:37.45},{&quot;2026-08-11&quot;:37.41},{&quot;2026-08-12&quot;:37.41},{&quot;2026-08-13&quot;:37.41},{&quot;2026-08-14&quot;:37.41},{&quot;2026-08-15&quot;:37.41},{&quot;2026-08-16&quot;:37.41},{&quot;2026-08-17&quot;:37.41},{&quot;2026-08-18&quot;:37.41},{&quot;2026-08-19&quot;:37.41},{&quot;2026-08-20&quot;:37.41},{&quot;2026-08-21&quot;:37.41},{&quot;2026-08-22&quot;:37.41},{&quot;2026-08-23&quot;:36.87},{&quot;2026-08-24&quot;:36.87},{&quot;2026-08-25&quot;:36.87},{&quot;2026-08-26&quot;:36.87},{&quot;2026-08-27&quot;:36.87},{&quot;2026-08-28&quot;:36.88},{&quot;2026-08-29&quot;:36.88},{&quot;2026-08-30&quot;:36.88},{&quot;2026-08-31&quot;:36.88},{&quot;2026-09-01&quot;:36.88},{&quot;2026-09-02&quot;:36.88},{&quot;2026-09-03&quot;:36.88},{&quot;2026-09-04&quot;:36.76},{&quot;2026-09-05&quot;:36.71},{&quot;2026-09-06&quot;:36.71},{&quot;2026-09-07&quot;:36.71},{&quot;2026-09-08&quot;:36.71},{&quot;2026-09-09&quot;:36.71},{&quot;2026-09-10&quot;:36.71},{&quot;2026-09-11&quot;:36.71}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:32.67},{&quot;2026-06-10&quot;:30.56},{&quot;2026-06-11&quot;:29.9},{&quot;2026-06-12&quot;:28.43},{&quot;2026-06-13&quot;:30.79},{&quot;2026-06-14&quot;:31.35},{&quot;2026-06-15&quot;:31.71},{&quot;2026-06-16&quot;:32.91},{&quot;2026-06-17&quot;:32.87},{&quot;2026-06-18&quot;:32.81},{&quot;2026-06-19&quot;:31.44},{&quot;2026-06-20&quot;:33.3},{&quot;2026-06-21&quot;:33.3},{&quot;2026-06-22&quot;:33.68},{&quot;2026-06-24&quot;:33.4},{&quot;2026-06-25&quot;:32.0},{&quot;2026-06-26&quot;:31.37},{&quot;2026-06-27&quot;:30.06},{&quot;2026-06-28&quot;:30.57},{&quot;2026-06-29&quot;:30.93},{&quot;2026-06-30&quot;:29.52},{&quot;2026-07-01&quot;:29.83},{&quot;2026-07-02&quot;:29.35},{&quot;2026-07-03&quot;:27.94},{&quot;2026-07-04&quot;:27.24},{&quot;2026-07-05&quot;:27.59},{&quot;2026-07-06&quot;:29.58},{&quot;2026-07-07&quot;:30.31},{&quot;2026-07-08&quot;:30.67},{&quot;2026-07-09&quot;:30.6},{&quot;2026-07-10&quot;:29.94},{&quot;2026-07-11&quot;:29.3},{&quot;2026-07-12&quot;:30.11},{&quot;2026-07-13&quot;:30.22},{&quot;2026-07-14&quot;:29.8},{&quot;2026-07-15&quot;:31.07},{&quot;2026-07-16&quot;:29.98},{&quot;2026-07-17&quot;:29.57},{&quot;2026-07-18&quot;:29.67},{&quot;2026-07-19&quot;:29.02},{&quot;2026-07-20&quot;:28.7},{&quot;2026-07-21&quot;:28.74},{&quot;2026-07-23&quot;:27.22},{&quot;2026-07-25&quot;:27.75},{&quot;2026-07-26&quot;:27.81},{&quot;2026-07-27&quot;:27.15},{&quot;2026-07-29&quot;:27.75},{&quot;2026-07-30&quot;:29.3},{&quot;2026-07-31&quot;:30.01},{&quot;2026-08-01&quot;:30.15},{&quot;2026-08-02&quot;:30.2},{&quot;2026-08-03&quot;:29.6},{&quot;2026-08-04&quot;:28.48},{&quot;2026-08-05&quot;:27.71},{&quot;2026-08-07&quot;:28.46},{&quot;2026-08-08&quot;:28.61},{&quot;2026-08-09&quot;:28.01},{&quot;2026-08-10&quot;:27.91},{&quot;2026-08-11&quot;:27.96},{&quot;2026-08-12&quot;:29.97},{&quot;2026-08-13&quot;:30.08},{&quot;2026-08-14&quot;:30.84},{&quot;2026-08-15&quot;:30.74},{&quot;2026-08-16&quot;:30.53},{&quot;2026-08-17&quot;:30.61},{&quot;2026-08-18&quot;:29.83},{&quot;2026-08-19&quot;:29.21},{&quot;2026-08-20&quot;:29.21},{&quot;2026-08-21&quot;:29.67},{&quot;2026-08-22&quot;:29.33},{&quot;2026-08-23&quot;:29.55},{&quot;2026-08-24&quot;:29.58},{&quot;2026-08-25&quot;:29.58},{&quot;2026-08-26&quot;:29.25},{&quot;2026-08-27&quot;:31.07},{&quot;2026-08-28&quot;:31.92},{&quot;2026-08-29&quot;:31.92},{&quot;2026-08-30&quot;:32.84},{&quot;2026-08-31&quot;:32.49},{&quot;2026-09-01&quot;:32.49},{&quot;2026-09-02&quot;:32.61},{&quot;2026-09-03&quot;:32.44},{&quot;2026-09-04&quot;:32.85},{&quot;2026-09-05&quot;:33.04},{&quot;2026-09-06&quot;:33.01},{&quot;2026-09-07&quot;:33.16},{&quot;2026-09-08&quot;:34.03},{&quot;2026-09-09&quot;:32.9},{&quot;2026-09-10&quot;:30.55},{&quot;2026-09-11&quot;:29.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $14.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="Thousand-Year Elixir" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95c2d832-5244-4236-81d5-2920aa2e281e.jpg?1783927502" />

        <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">
            Thousand-Year Elixir
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thousand-Year Elixir" src="https://cards.scryfall.io/large/front/9/5/95c2d832-5244-4236-81d5-2920aa2e281e.jpg?1783927502" />
    </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.74
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-10&quot;:15.68},{&quot;2026-06-11&quot;:15.51},{&quot;2026-06-12&quot;:15.41},{&quot;2026-06-13&quot;:15.17},{&quot;2026-06-14&quot;:14.78},{&quot;2026-06-15&quot;:14.81},{&quot;2026-06-16&quot;:14.85},{&quot;2026-06-17&quot;:14.77},{&quot;2026-06-18&quot;:14.77},{&quot;2026-06-19&quot;:14.65},{&quot;2026-06-20&quot;:14.59},{&quot;2026-06-21&quot;:14.59},{&quot;2026-06-22&quot;:14.44},{&quot;2026-06-23&quot;:14.26},{&quot;2026-06-24&quot;:14.24},{&quot;2026-06-25&quot;:14.04},{&quot;2026-06-26&quot;:14.17},{&quot;2026-06-27&quot;:14.35},{&quot;2026-06-28&quot;:14.46},{&quot;2026-06-29&quot;:14.45},{&quot;2026-06-30&quot;:14.26},{&quot;2026-07-01&quot;:14.24},{&quot;2026-07-02&quot;:14.35},{&quot;2026-07-03&quot;:14.33},{&quot;2026-07-04&quot;:14.32},{&quot;2026-07-05&quot;:14.28},{&quot;2026-07-06&quot;:14.4},{&quot;2026-07-07&quot;:14.38},{&quot;2026-07-08&quot;:14.36},{&quot;2026-07-09&quot;:14.43},{&quot;2026-07-10&quot;:14.43},{&quot;2026-07-11&quot;:14.66},{&quot;2026-07-12&quot;:14.68},{&quot;2026-07-13&quot;:14.63},{&quot;2026-07-14&quot;:14.58},{&quot;2026-07-15&quot;:14.72},{&quot;2026-07-16&quot;:14.57},{&quot;2026-07-17&quot;:14.46},{&quot;2026-07-18&quot;:14.41},{&quot;2026-07-19&quot;:14.41},{&quot;2026-07-20&quot;:14.34},{&quot;2026-07-21&quot;:14.3},{&quot;2026-07-23&quot;:14.23},{&quot;2026-07-25&quot;:14.68},{&quot;2026-07-26&quot;:14.73},{&quot;2026-07-27&quot;:14.8},{&quot;2026-07-29&quot;:14.56},{&quot;2026-07-30&quot;:14.6},{&quot;2026-07-31&quot;:14.64},{&quot;2026-08-01&quot;:14.64},{&quot;2026-08-02&quot;:14.59},{&quot;2026-08-03&quot;:14.56},{&quot;2026-08-04&quot;:14.49},{&quot;2026-08-05&quot;:14.42},{&quot;2026-08-07&quot;:14.44},{&quot;2026-08-08&quot;:14.37},{&quot;2026-08-09&quot;:14.51},{&quot;2026-08-10&quot;:14.61},{&quot;2026-08-11&quot;:14.59},{&quot;2026-08-12&quot;:14.51},{&quot;2026-08-13&quot;:14.53},{&quot;2026-08-14&quot;:14.54},{&quot;2026-08-15&quot;:14.58},{&quot;2026-08-16&quot;:14.77},{&quot;2026-08-17&quot;:14.66},{&quot;2026-08-18&quot;:14.65},{&quot;2026-08-19&quot;:14.59},{&quot;2026-08-20&quot;:14.59},{&quot;2026-08-21&quot;:14.44},{&quot;2026-08-22&quot;:14.56},{&quot;2026-08-23&quot;:14.53},{&quot;2026-08-24&quot;:14.61},{&quot;2026-08-25&quot;:14.61},{&quot;2026-08-26&quot;:14.66},{&quot;2026-08-27&quot;:14.61},{&quot;2026-08-28&quot;:14.55},{&quot;2026-08-29&quot;:14.55},{&quot;2026-08-30&quot;:14.53},{&quot;2026-08-31&quot;:14.61},{&quot;2026-09-01&quot;:14.61},{&quot;2026-09-02&quot;:14.77},{&quot;2026-09-03&quot;:14.78},{&quot;2026-09-04&quot;:14.81},{&quot;2026-09-05&quot;:14.82},{&quot;2026-09-06&quot;:14.82},{&quot;2026-09-07&quot;:14.82},{&quot;2026-09-08&quot;:14.79},{&quot;2026-09-09&quot;:14.75},{&quot;2026-09-10&quot;:14.8},{&quot;2026-09-11&quot;:14.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="49072"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-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">
            Goblin Engineer
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $9.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="Goblin Engineer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a55c4d47-5252-40af-961d-c08bc688028a.jpg?1783933112" />

        <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">
            Goblin Engineer
        </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 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-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="Goblin Engineer" src="https://cards.scryfall.io/large/front/a/5/a55c4d47-5252-40af-961d-c08bc688028a.jpg?1783933112" />
    </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">
                $9.80
              </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">
                $11.39
              </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">$5.00</span>
              <span class="text-xs text-grey-text">Credit: $6.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-12&quot;:11.0},{&quot;2026-06-13&quot;:11.0},{&quot;2026-06-14&quot;:11.0},{&quot;2026-06-15&quot;:11.11},{&quot;2026-06-16&quot;:11.11},{&quot;2026-06-17&quot;:11.11},{&quot;2026-06-18&quot;:11.11},{&quot;2026-06-19&quot;:11.11},{&quot;2026-06-20&quot;:11.11},{&quot;2026-06-21&quot;:11.16},{&quot;2026-06-22&quot;:11.11},{&quot;2026-06-23&quot;:11.11},{&quot;2026-06-24&quot;:11.11},{&quot;2026-06-25&quot;:11.11},{&quot;2026-06-26&quot;:11.11},{&quot;2026-06-27&quot;:11.11},{&quot;2026-06-28&quot;:11.09},{&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.09},{&quot;2026-07-05&quot;:11.09},{&quot;2026-07-06&quot;:11.09},{&quot;2026-07-07&quot;:11.09},{&quot;2026-07-08&quot;:11.09},{&quot;2026-07-09&quot;:11.12},{&quot;2026-07-10&quot;:11.12},{&quot;2026-07-11&quot;:11.12},{&quot;2026-07-12&quot;:11.12},{&quot;2026-07-13&quot;:11.17},{&quot;2026-07-14&quot;:11.22},{&quot;2026-07-15&quot;:11.22},{&quot;2026-07-16&quot;:11.22},{&quot;2026-07-17&quot;:11.19},{&quot;2026-07-18&quot;:11.19},{&quot;2026-07-19&quot;:11.19},{&quot;2026-07-20&quot;:11.19},{&quot;2026-07-21&quot;:11.19},{&quot;2026-07-23&quot;:11.19},{&quot;2026-07-24&quot;:11.19},{&quot;2026-07-25&quot;:11.22},{&quot;2026-07-26&quot;:11.22},{&quot;2026-07-27&quot;:11.22},{&quot;2026-07-28&quot;:11.22},{&quot;2026-07-29&quot;:11.22},{&quot;2026-07-30&quot;:11.22},{&quot;2026-07-31&quot;:11.22},{&quot;2026-08-01&quot;:11.62},{&quot;2026-08-02&quot;:11.62},{&quot;2026-08-03&quot;:11.62},{&quot;2026-08-04&quot;:11.62},{&quot;2026-08-05&quot;:11.62},{&quot;2026-08-07&quot;:11.62},{&quot;2026-08-08&quot;:11.5},{&quot;2026-08-09&quot;:11.5},{&quot;2026-08-10&quot;:11.5},{&quot;2026-08-11&quot;:11.5},{&quot;2026-08-12&quot;:11.52},{&quot;2026-08-13&quot;:11.52},{&quot;2026-08-14&quot;:11.52},{&quot;2026-08-15&quot;:11.52},{&quot;2026-08-16&quot;:11.52},{&quot;2026-08-17&quot;:11.52},{&quot;2026-08-18&quot;:11.52},{&quot;2026-08-19&quot;:11.45},{&quot;2026-08-20&quot;:11.45},{&quot;2026-08-21&quot;:11.45},{&quot;2026-08-22&quot;:11.45},{&quot;2026-08-23&quot;:11.45},{&quot;2026-08-24&quot;:11.45},{&quot;2026-08-25&quot;:11.45},{&quot;2026-08-26&quot;:11.45},{&quot;2026-08-27&quot;:11.28},{&quot;2026-08-28&quot;:11.28},{&quot;2026-08-29&quot;:11.28},{&quot;2026-08-30&quot;:11.28},{&quot;2026-08-31&quot;:11.28},{&quot;2026-09-01&quot;:11.28},{&quot;2026-09-02&quot;:11.28},{&quot;2026-09-03&quot;:11.28},{&quot;2026-09-04&quot;:11.28},{&quot;2026-09-05&quot;:11.28},{&quot;2026-09-06&quot;:11.23},{&quot;2026-09-07&quot;:11.23},{&quot;2026-09-08&quot;:11.23},{&quot;2026-09-09&quot;:11.39},{&quot;2026-09-10&quot;:11.39},{&quot;2026-09-11&quot;:11.39}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:9.72},{&quot;2026-06-13&quot;:9.83},{&quot;2026-06-14&quot;:9.82},{&quot;2026-06-15&quot;:9.98},{&quot;2026-06-16&quot;:9.96},{&quot;2026-06-17&quot;:9.84},{&quot;2026-06-18&quot;:9.85},{&quot;2026-06-19&quot;:9.8},{&quot;2026-06-20&quot;:9.83},{&quot;2026-06-21&quot;:9.78},{&quot;2026-06-22&quot;:10.2},{&quot;2026-06-23&quot;:10.1},{&quot;2026-06-24&quot;:10.3},{&quot;2026-06-25&quot;:10.32},{&quot;2026-06-26&quot;:10.32},{&quot;2026-06-27&quot;:10.42},{&quot;2026-06-28&quot;:10.45},{&quot;2026-06-29&quot;:10.35},{&quot;2026-06-30&quot;:10.11},{&quot;2026-07-01&quot;:9.84},{&quot;2026-07-02&quot;:9.9},{&quot;2026-07-03&quot;:9.87},{&quot;2026-07-04&quot;:9.91},{&quot;2026-07-05&quot;:9.74},{&quot;2026-07-06&quot;:9.89},{&quot;2026-07-07&quot;:9.89},{&quot;2026-07-08&quot;:9.96},{&quot;2026-07-09&quot;:10.31},{&quot;2026-07-10&quot;:10.32},{&quot;2026-07-11&quot;:10.32},{&quot;2026-07-12&quot;:10.25},{&quot;2026-07-13&quot;:10.17},{&quot;2026-07-14&quot;:10.36},{&quot;2026-07-15&quot;:10.16},{&quot;2026-07-16&quot;:10.04},{&quot;2026-07-17&quot;:10.04},{&quot;2026-07-18&quot;:10.04},{&quot;2026-07-19&quot;:10.02},{&quot;2026-07-20&quot;:9.94},{&quot;2026-07-21&quot;:9.94},{&quot;2026-07-23&quot;:9.93},{&quot;2026-07-24&quot;:9.93},{&quot;2026-07-25&quot;:9.89},{&quot;2026-07-26&quot;:9.82},{&quot;2026-07-27&quot;:9.78},{&quot;2026-07-28&quot;:9.68},{&quot;2026-07-29&quot;:9.96},{&quot;2026-07-30&quot;:9.9},{&quot;2026-07-31&quot;:10.03},{&quot;2026-08-01&quot;:9.95},{&quot;2026-08-02&quot;:10.06},{&quot;2026-08-03&quot;:10.03},{&quot;2026-08-04&quot;:9.77},{&quot;2026-08-05&quot;:9.7},{&quot;2026-08-07&quot;:9.8},{&quot;2026-08-08&quot;:9.86},{&quot;2026-08-09&quot;:9.77},{&quot;2026-08-10&quot;:9.79},{&quot;2026-08-11&quot;:9.48},{&quot;2026-08-12&quot;:9.48},{&quot;2026-08-13&quot;:9.43},{&quot;2026-08-14&quot;:9.66},{&quot;2026-08-15&quot;:9.69},{&quot;2026-08-16&quot;:9.64},{&quot;2026-08-17&quot;:9.65},{&quot;2026-08-18&quot;:9.81},{&quot;2026-08-19&quot;:9.81},{&quot;2026-08-20&quot;:9.81},{&quot;2026-08-21&quot;:9.87},{&quot;2026-08-22&quot;:9.71},{&quot;2026-08-23&quot;:9.95},{&quot;2026-08-24&quot;:9.95},{&quot;2026-08-25&quot;:9.63},{&quot;2026-08-26&quot;:9.63},{&quot;2026-08-27&quot;:9.62},{&quot;2026-08-28&quot;:9.52},{&quot;2026-08-29&quot;:9.52},{&quot;2026-08-30&quot;:9.06},{&quot;2026-08-31&quot;:9.24},{&quot;2026-09-01&quot;:9.26},{&quot;2026-09-02&quot;:9.14},{&quot;2026-09-03&quot;:9.21},{&quot;2026-09-04&quot;:9.3},{&quot;2026-09-05&quot;:9.48},{&quot;2026-09-06&quot;:9.62},{&quot;2026-09-07&quot;:9.7},{&quot;2026-09-08&quot;:9.8},{&quot;2026-09-09&quot;:9.87},{&quot;2026-09-10&quot;:9.8},{&quot;2026-09-11&quot;:9.8}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Rebuff the Wicked
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Rebuff the Wicked" src="https://cards.scryfall.io/large/front/a/6/a6ea5111-5a5c-4c40-8686-8123c822843a.jpg?1783927866" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:20.67},{&quot;2026-06-10&quot;:20.67},{&quot;2026-06-11&quot;:20.67},{&quot;2026-06-12&quot;:20.67},{&quot;2026-06-13&quot;:20.67},{&quot;2026-06-14&quot;:20.67},{&quot;2026-06-15&quot;:20.67},{&quot;2026-06-16&quot;:20.67},{&quot;2026-06-17&quot;:20.67},{&quot;2026-06-18&quot;:20.79},{&quot;2026-06-19&quot;:20.96},{&quot;2026-06-20&quot;:20.96},{&quot;2026-06-21&quot;:20.96},{&quot;2026-06-22&quot;:20.96},{&quot;2026-06-24&quot;:21.17},{&quot;2026-06-25&quot;:21.17},{&quot;2026-06-26&quot;:21.17},{&quot;2026-06-27&quot;:21.17},{&quot;2026-06-28&quot;:21.17},{&quot;2026-06-29&quot;:21.17},{&quot;2026-06-30&quot;:21.17},{&quot;2026-07-01&quot;:21.17},{&quot;2026-07-02&quot;:21.17},{&quot;2026-07-03&quot;:21.17},{&quot;2026-07-04&quot;:21.17},{&quot;2026-07-05&quot;:21.17},{&quot;2026-07-06&quot;:21.17},{&quot;2026-07-07&quot;:21.17},{&quot;2026-07-08&quot;:21.17},{&quot;2026-07-09&quot;:21.17},{&quot;2026-07-10&quot;:21.17},{&quot;2026-07-11&quot;:21.17},{&quot;2026-07-12&quot;:21.17},{&quot;2026-07-13&quot;:21.17},{&quot;2026-07-14&quot;:21.17},{&quot;2026-07-15&quot;:21.17},{&quot;2026-07-16&quot;:21.17},{&quot;2026-07-17&quot;:21.17},{&quot;2026-07-18&quot;:21.31},{&quot;2026-07-19&quot;:21.31},{&quot;2026-07-20&quot;:21.31},{&quot;2026-07-21&quot;:21.31},{&quot;2026-07-23&quot;:21.31},{&quot;2026-07-25&quot;:21.31},{&quot;2026-07-26&quot;:21.31},{&quot;2026-07-27&quot;:21.31},{&quot;2026-07-29&quot;:21.31},{&quot;2026-07-30&quot;:21.5},{&quot;2026-07-31&quot;:21.5},{&quot;2026-08-01&quot;:21.5},{&quot;2026-08-02&quot;:21.5},{&quot;2026-08-03&quot;:21.71},{&quot;2026-08-04&quot;:21.71},{&quot;2026-08-05&quot;:21.71},{&quot;2026-08-07&quot;:21.94},{&quot;2026-08-08&quot;:21.94},{&quot;2026-08-09&quot;:21.94},{&quot;2026-08-10&quot;:21.94},{&quot;2026-08-11&quot;:21.94},{&quot;2026-08-12&quot;:21.94},{&quot;2026-08-13&quot;:21.94},{&quot;2026-08-14&quot;:21.94},{&quot;2026-08-15&quot;:21.94},{&quot;2026-08-16&quot;:22.29},{&quot;2026-08-17&quot;:22.29},{&quot;2026-08-18&quot;:22.65},{&quot;2026-08-19&quot;:23.03},{&quot;2026-08-20&quot;:23.03},{&quot;2026-08-21&quot;:22.67},{&quot;2026-08-22&quot;:22.67},{&quot;2026-08-23&quot;:22.67},{&quot;2026-08-24&quot;:23.11},{&quot;2026-08-25&quot;:23.11},{&quot;2026-08-26&quot;:23.11},{&quot;2026-08-27&quot;:23.11},{&quot;2026-08-28&quot;:23.11},{&quot;2026-08-29&quot;:23.11},{&quot;2026-08-30&quot;:23.11},{&quot;2026-08-31&quot;:22.92},{&quot;2026-09-01&quot;:22.92},{&quot;2026-09-02&quot;:22.92},{&quot;2026-09-03&quot;:22.92},{&quot;2026-09-04&quot;:22.93},{&quot;2026-09-05&quot;:22.93},{&quot;2026-09-06&quot;:22.93},{&quot;2026-09-07&quot;:22.93},{&quot;2026-09-08&quot;:22.93},{&quot;2026-09-09&quot;:22.93},{&quot;2026-09-10&quot;:23.25},{&quot;2026-09-11&quot;:23.25}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:7.62},{&quot;2026-06-10&quot;:7.52},{&quot;2026-06-11&quot;:7.52},{&quot;2026-06-12&quot;:7.55},{&quot;2026-06-13&quot;:7.72},{&quot;2026-06-14&quot;:7.57},{&quot;2026-06-15&quot;:7.35},{&quot;2026-06-16&quot;:7.39},{&quot;2026-06-17&quot;:7.33},{&quot;2026-06-18&quot;:7.21},{&quot;2026-06-19&quot;:7.21},{&quot;2026-06-20&quot;:7.21},{&quot;2026-06-21&quot;:7.14},{&quot;2026-06-22&quot;:7.01},{&quot;2026-06-24&quot;:6.62},{&quot;2026-06-25&quot;:6.68},{&quot;2026-06-26&quot;:6.85},{&quot;2026-06-27&quot;:7.13},{&quot;2026-06-28&quot;:7.37},{&quot;2026-06-29&quot;:7.46},{&quot;2026-06-30&quot;:7.48},{&quot;2026-07-01&quot;:7.44},{&quot;2026-07-02&quot;:7.28},{&quot;2026-07-03&quot;:7.13},{&quot;2026-07-04&quot;:7.22},{&quot;2026-07-05&quot;:7.61},{&quot;2026-07-06&quot;:7.8},{&quot;2026-07-07&quot;:7.7},{&quot;2026-07-08&quot;:7.57},{&quot;2026-07-09&quot;:7.51},{&quot;2026-07-10&quot;:7.42},{&quot;2026-07-11&quot;:7.4},{&quot;2026-07-12&quot;:6.97},{&quot;2026-07-13&quot;:7.16},{&quot;2026-07-14&quot;:7.1},{&quot;2026-07-15&quot;:7.19},{&quot;2026-07-16&quot;:7.07},{&quot;2026-07-17&quot;:7.26},{&quot;2026-07-18&quot;:7.33},{&quot;2026-07-19&quot;:7.41},{&quot;2026-07-20&quot;:7.45},{&quot;2026-07-21&quot;:7.55},{&quot;2026-07-23&quot;:7.52},{&quot;2026-07-25&quot;:7.76},{&quot;2026-07-26&quot;:7.93},{&quot;2026-07-27&quot;:7.88},{&quot;2026-07-29&quot;:7.94},{&quot;2026-07-30&quot;:7.94},{&quot;2026-07-31&quot;:8.17},{&quot;2026-08-01&quot;:8.17},{&quot;2026-08-02&quot;:7.95},{&quot;2026-08-03&quot;:8.08},{&quot;2026-08-04&quot;:8.25},{&quot;2026-08-05&quot;:8.25},{&quot;2026-08-07&quot;:8.06},{&quot;2026-08-08&quot;:8.21},{&quot;2026-08-09&quot;:8.09},{&quot;2026-08-10&quot;:8.09},{&quot;2026-08-11&quot;:8.03},{&quot;2026-08-12&quot;:7.98},{&quot;2026-08-13&quot;:7.91},{&quot;2026-08-14&quot;:7.97},{&quot;2026-08-15&quot;:8.09},{&quot;2026-08-16&quot;:8.02},{&quot;2026-08-17&quot;:7.76},{&quot;2026-08-18&quot;:7.73},{&quot;2026-08-19&quot;:7.6},{&quot;2026-08-20&quot;:7.6},{&quot;2026-08-21&quot;:7.58},{&quot;2026-08-22&quot;:7.52},{&quot;2026-08-23&quot;:7.29},{&quot;2026-08-24&quot;:7.04},{&quot;2026-08-25&quot;:7.04},{&quot;2026-08-26&quot;:7.09},{&quot;2026-08-27&quot;:7.19},{&quot;2026-08-28&quot;:7.35},{&quot;2026-08-29&quot;:7.35},{&quot;2026-08-30&quot;:7.64},{&quot;2026-08-31&quot;:7.64},{&quot;2026-09-01&quot;:7.64},{&quot;2026-09-02&quot;:7.39},{&quot;2026-09-03&quot;:7.45},{&quot;2026-09-04&quot;:7.63},{&quot;2026-09-05&quot;:7.36},{&quot;2026-09-06&quot;:6.89},{&quot;2026-09-07&quot;:7.09},{&quot;2026-09-08&quot;:7.09},{&quot;2026-09-09&quot;:7.17},{&quot;2026-09-10&quot;:7.11},{&quot;2026-09-11&quot;:7.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.91
          </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="Farewell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1783923923" />

        <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">
            Farewell
        </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-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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="Farewell" src="https://cards.scryfall.io/large/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1783923923" />
    </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">
                $5.91
              </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">
                $6.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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$4.50</span>
              <span class="text-xs text-grey-text">Credit: $5.85</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:6.68},{&quot;2026-06-11&quot;:6.68},{&quot;2026-06-12&quot;:6.68},{&quot;2026-06-13&quot;:6.68},{&quot;2026-06-14&quot;:6.68},{&quot;2026-06-15&quot;:6.68},{&quot;2026-06-16&quot;:6.77},{&quot;2026-06-17&quot;:6.77},{&quot;2026-06-18&quot;:6.82},{&quot;2026-06-19&quot;:6.82},{&quot;2026-06-20&quot;:6.82},{&quot;2026-06-21&quot;:6.82},{&quot;2026-06-22&quot;:6.87},{&quot;2026-06-23&quot;:6.87},{&quot;2026-06-24&quot;:6.87},{&quot;2026-06-25&quot;:6.87},{&quot;2026-06-26&quot;:6.87},{&quot;2026-06-27&quot;:6.79},{&quot;2026-06-28&quot;:6.79},{&quot;2026-06-29&quot;:6.79},{&quot;2026-06-30&quot;:6.79},{&quot;2026-07-01&quot;:6.79},{&quot;2026-07-02&quot;:6.79},{&quot;2026-07-03&quot;:6.79},{&quot;2026-07-04&quot;:6.79},{&quot;2026-07-05&quot;:6.79},{&quot;2026-07-06&quot;:6.83},{&quot;2026-07-07&quot;:6.83},{&quot;2026-07-08&quot;:6.83},{&quot;2026-07-09&quot;:6.83},{&quot;2026-07-10&quot;:6.9},{&quot;2026-07-11&quot;:6.89},{&quot;2026-07-12&quot;:6.89},{&quot;2026-07-13&quot;:6.89},{&quot;2026-07-14&quot;:7.06},{&quot;2026-07-15&quot;:7.06},{&quot;2026-07-16&quot;:7.06},{&quot;2026-07-17&quot;:7.06},{&quot;2026-07-18&quot;:7.05},{&quot;2026-07-19&quot;:7.05},{&quot;2026-07-20&quot;:7.05},{&quot;2026-07-21&quot;:6.68},{&quot;2026-07-23&quot;:6.7},{&quot;2026-07-25&quot;:6.7},{&quot;2026-07-26&quot;:6.7},{&quot;2026-07-27&quot;:6.7},{&quot;2026-07-29&quot;:6.7},{&quot;2026-07-30&quot;:6.7},{&quot;2026-07-31&quot;:6.71},{&quot;2026-08-01&quot;:6.71},{&quot;2026-08-02&quot;:6.71},{&quot;2026-08-03&quot;:6.86},{&quot;2026-08-04&quot;:6.86},{&quot;2026-08-05&quot;:6.86},{&quot;2026-08-07&quot;:6.99},{&quot;2026-08-08&quot;:7.08},{&quot;2026-08-09&quot;:7.03},{&quot;2026-08-10&quot;:6.85},{&quot;2026-08-11&quot;:6.85},{&quot;2026-08-12&quot;:6.85},{&quot;2026-08-13&quot;:6.85},{&quot;2026-08-14&quot;:6.95},{&quot;2026-08-15&quot;:6.95},{&quot;2026-08-16&quot;:6.95},{&quot;2026-08-17&quot;:6.92},{&quot;2026-08-18&quot;:6.92},{&quot;2026-08-19&quot;:6.92},{&quot;2026-08-20&quot;:6.92},{&quot;2026-08-21&quot;:6.92},{&quot;2026-08-22&quot;:6.92},{&quot;2026-08-23&quot;:6.88},{&quot;2026-08-24&quot;:6.88},{&quot;2026-08-25&quot;:6.88},{&quot;2026-08-26&quot;:6.77},{&quot;2026-08-27&quot;:6.77},{&quot;2026-08-28&quot;:6.73},{&quot;2026-08-29&quot;:6.73},{&quot;2026-08-30&quot;:6.89},{&quot;2026-08-31&quot;:6.89},{&quot;2026-09-01&quot;:6.89},{&quot;2026-09-02&quot;:6.89},{&quot;2026-09-03&quot;:6.89},{&quot;2026-09-04&quot;:6.89},{&quot;2026-09-05&quot;:6.95},{&quot;2026-09-06&quot;:6.95},{&quot;2026-09-07&quot;:6.91},{&quot;2026-09-08&quot;:6.91},{&quot;2026-09-09&quot;:6.91},{&quot;2026-09-10&quot;:6.91},{&quot;2026-09-11&quot;:6.91}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.73},{&quot;2026-06-11&quot;:5.83},{&quot;2026-06-12&quot;:5.76},{&quot;2026-06-13&quot;:6.06},{&quot;2026-06-14&quot;:5.93},{&quot;2026-06-15&quot;:5.95},{&quot;2026-06-16&quot;:5.82},{&quot;2026-06-17&quot;:5.79},{&quot;2026-06-18&quot;:5.86},{&quot;2026-06-19&quot;:5.87},{&quot;2026-06-20&quot;:5.92},{&quot;2026-06-21&quot;:5.91},{&quot;2026-06-22&quot;:5.96},{&quot;2026-06-23&quot;:5.99},{&quot;2026-06-24&quot;:5.99},{&quot;2026-06-25&quot;:5.93},{&quot;2026-06-26&quot;:5.92},{&quot;2026-06-27&quot;:5.89},{&quot;2026-06-28&quot;:5.86},{&quot;2026-06-29&quot;:5.86},{&quot;2026-06-30&quot;:5.86},{&quot;2026-07-01&quot;:5.81},{&quot;2026-07-02&quot;:5.73},{&quot;2026-07-03&quot;:5.9},{&quot;2026-07-04&quot;:5.98},{&quot;2026-07-05&quot;:6.02},{&quot;2026-07-06&quot;:5.81},{&quot;2026-07-07&quot;:5.85},{&quot;2026-07-08&quot;:5.96},{&quot;2026-07-09&quot;:6.01},{&quot;2026-07-10&quot;:6.08},{&quot;2026-07-11&quot;:5.98},{&quot;2026-07-12&quot;:5.86},{&quot;2026-07-13&quot;:5.82},{&quot;2026-07-14&quot;:5.81},{&quot;2026-07-15&quot;:5.76},{&quot;2026-07-16&quot;:5.81},{&quot;2026-07-17&quot;:5.88},{&quot;2026-07-18&quot;:5.7},{&quot;2026-07-19&quot;:5.59},{&quot;2026-07-20&quot;:5.69},{&quot;2026-07-21&quot;:5.62},{&quot;2026-07-23&quot;:5.81},{&quot;2026-07-25&quot;:5.63},{&quot;2026-07-26&quot;:5.59},{&quot;2026-07-27&quot;:5.53},{&quot;2026-07-29&quot;:5.52},{&quot;2026-07-30&quot;:5.46},{&quot;2026-07-31&quot;:5.38},{&quot;2026-08-01&quot;:5.34},{&quot;2026-08-02&quot;:5.21},{&quot;2026-08-03&quot;:5.3},{&quot;2026-08-04&quot;:5.25},{&quot;2026-08-05&quot;:5.29},{&quot;2026-08-07&quot;:5.27},{&quot;2026-08-08&quot;:5.25},{&quot;2026-08-09&quot;:5.29},{&quot;2026-08-10&quot;:5.43},{&quot;2026-08-11&quot;:5.39},{&quot;2026-08-12&quot;:5.33},{&quot;2026-08-13&quot;:5.28},{&quot;2026-08-14&quot;:5.31},{&quot;2026-08-15&quot;:5.42},{&quot;2026-08-16&quot;:5.46},{&quot;2026-08-17&quot;:5.65},{&quot;2026-08-18&quot;:5.9},{&quot;2026-08-19&quot;:5.77},{&quot;2026-08-20&quot;:5.77},{&quot;2026-08-21&quot;:5.74},{&quot;2026-08-22&quot;:5.68},{&quot;2026-08-23&quot;:5.63},{&quot;2026-08-24&quot;:5.59},{&quot;2026-08-25&quot;:5.59},{&quot;2026-08-26&quot;:5.44},{&quot;2026-08-27&quot;:5.44},{&quot;2026-08-28&quot;:5.66},{&quot;2026-08-29&quot;:5.66},{&quot;2026-08-30&quot;:5.8},{&quot;2026-08-31&quot;:5.97},{&quot;2026-09-01&quot;:5.97},{&quot;2026-09-02&quot;:6.17},{&quot;2026-09-03&quot;:6.13},{&quot;2026-09-04&quot;:5.93},{&quot;2026-09-05&quot;:6.01},{&quot;2026-09-06&quot;:5.94},{&quot;2026-09-07&quot;:6.02},{&quot;2026-09-08&quot;:5.79},{&quot;2026-09-09&quot;:5.85},{&quot;2026-09-10&quot;:5.89},{&quot;2026-09-11&quot;:5.91}]}"
        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="10636"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-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">
            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-100 text-badge-text">
              ↓
              3%
            </span>

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

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

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

        <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">
            mythic
          </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/6/7/67d15ee6-916f-4ac9-a4d2-4a9bd389d451.jpg?1783927542" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:5.19},{&quot;2026-06-13&quot;:5.06},{&quot;2026-06-14&quot;:4.97},{&quot;2026-06-15&quot;:4.97},{&quot;2026-06-16&quot;:4.97},{&quot;2026-06-17&quot;:5.26},{&quot;2026-06-18&quot;:5.26},{&quot;2026-06-19&quot;:5.34},{&quot;2026-06-20&quot;:5.2},{&quot;2026-06-21&quot;:5.35},{&quot;2026-06-22&quot;:5.35},{&quot;2026-06-23&quot;:5.35},{&quot;2026-06-24&quot;:5.35},{&quot;2026-06-25&quot;:5.35},{&quot;2026-06-26&quot;:5.35},{&quot;2026-06-27&quot;:5.35},{&quot;2026-06-28&quot;:5.27},{&quot;2026-06-29&quot;:5.27},{&quot;2026-06-30&quot;:5.27},{&quot;2026-07-01&quot;:5.27},{&quot;2026-07-02&quot;:5.27},{&quot;2026-07-03&quot;:5.13},{&quot;2026-07-04&quot;:4.97},{&quot;2026-07-05&quot;:5.05},{&quot;2026-07-06&quot;:5.05},{&quot;2026-07-07&quot;:5.05},{&quot;2026-07-08&quot;:4.98},{&quot;2026-07-09&quot;:5.11},{&quot;2026-07-10&quot;:5.04},{&quot;2026-07-11&quot;:4.8},{&quot;2026-07-12&quot;:4.8},{&quot;2026-07-13&quot;:4.89},{&quot;2026-07-14&quot;:4.82},{&quot;2026-07-15&quot;:4.76},{&quot;2026-07-16&quot;:4.76},{&quot;2026-07-17&quot;:4.41},{&quot;2026-07-18&quot;:4.31},{&quot;2026-07-19&quot;:4.33},{&quot;2026-07-20&quot;:4.39},{&quot;2026-07-21&quot;:4.39},{&quot;2026-07-23&quot;:4.09},{&quot;2026-07-24&quot;:4.01},{&quot;2026-07-25&quot;:4.0},{&quot;2026-07-26&quot;:4.0},{&quot;2026-07-27&quot;:4.0},{&quot;2026-07-28&quot;:4.0},{&quot;2026-07-29&quot;:4.0},{&quot;2026-07-30&quot;:4.01},{&quot;2026-07-31&quot;:4.01},{&quot;2026-08-01&quot;:3.9},{&quot;2026-08-02&quot;:3.87},{&quot;2026-08-03&quot;:3.87},{&quot;2026-08-04&quot;:4.02},{&quot;2026-08-05&quot;:4.02},{&quot;2026-08-07&quot;:4.02},{&quot;2026-08-08&quot;:3.99},{&quot;2026-08-09&quot;:3.9},{&quot;2026-08-10&quot;:4.02},{&quot;2026-08-11&quot;:4.03},{&quot;2026-08-12&quot;:4.17},{&quot;2026-08-13&quot;:4.43},{&quot;2026-08-14&quot;:4.5},{&quot;2026-08-15&quot;:4.5},{&quot;2026-08-16&quot;:4.44},{&quot;2026-08-17&quot;:4.98},{&quot;2026-08-18&quot;:5.06},{&quot;2026-08-19&quot;:5.26},{&quot;2026-08-20&quot;:5.26},{&quot;2026-08-21&quot;:6.09},{&quot;2026-08-22&quot;:6.09},{&quot;2026-08-23&quot;:6.09},{&quot;2026-08-24&quot;:6.09},{&quot;2026-08-25&quot;:5.96},{&quot;2026-08-26&quot;:5.96},{&quot;2026-08-27&quot;:5.98},{&quot;2026-08-28&quot;:6.02},{&quot;2026-08-29&quot;:6.02},{&quot;2026-08-30&quot;:6.13},{&quot;2026-08-31&quot;:6.13},{&quot;2026-09-01&quot;:6.24},{&quot;2026-09-02&quot;:6.43},{&quot;2026-09-03&quot;:6.33},{&quot;2026-09-04&quot;:5.94},{&quot;2026-09-05&quot;:5.99},{&quot;2026-09-06&quot;:6.01},{&quot;2026-09-07&quot;:5.92},{&quot;2026-09-08&quot;:5.9},{&quot;2026-09-09&quot;:5.87},{&quot;2026-09-10&quot;:5.76},{&quot;2026-09-11&quot;:5.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Herald&#39;s Horn" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/6/d6fa81d5-2ae1-433a-812b-9cf8ecb89a09.jpg?1783928090" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Herald&#39;s Horn" src="https://cards.scryfall.io/large/front/d/6/d6fa81d5-2ae1-433a-812b-9cf8ecb89a09.jpg?1783928090" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.16},{&quot;2026-06-14&quot;:5.14},{&quot;2026-06-15&quot;:5.14},{&quot;2026-06-16&quot;:5.16},{&quot;2026-06-17&quot;:5.24},{&quot;2026-06-18&quot;:5.25},{&quot;2026-06-19&quot;:5.25},{&quot;2026-06-20&quot;:5.26},{&quot;2026-06-21&quot;:5.22},{&quot;2026-06-22&quot;:5.21},{&quot;2026-06-23&quot;:5.12},{&quot;2026-06-24&quot;:5.06},{&quot;2026-06-25&quot;:5.08},{&quot;2026-06-26&quot;:5.08},{&quot;2026-06-27&quot;:5.04},{&quot;2026-06-28&quot;:5.05},{&quot;2026-06-29&quot;:4.97},{&quot;2026-06-30&quot;:4.83},{&quot;2026-07-01&quot;:4.76},{&quot;2026-07-02&quot;:4.72},{&quot;2026-07-03&quot;:4.67},{&quot;2026-07-04&quot;:4.75},{&quot;2026-07-05&quot;:4.81},{&quot;2026-07-06&quot;:4.75},{&quot;2026-07-07&quot;:4.86},{&quot;2026-07-08&quot;:4.86},{&quot;2026-07-09&quot;:4.88},{&quot;2026-07-10&quot;:4.89},{&quot;2026-07-11&quot;:4.89},{&quot;2026-07-12&quot;:5.01},{&quot;2026-07-13&quot;:4.94},{&quot;2026-07-14&quot;:4.95},{&quot;2026-07-15&quot;:4.91},{&quot;2026-07-16&quot;:4.91},{&quot;2026-07-17&quot;:4.89},{&quot;2026-07-18&quot;:4.83},{&quot;2026-07-19&quot;:4.84},{&quot;2026-07-20&quot;:4.92},{&quot;2026-07-21&quot;:4.93},{&quot;2026-07-22&quot;:4.87},{&quot;2026-07-23&quot;:4.87},{&quot;2026-07-24&quot;:4.88},{&quot;2026-07-25&quot;:4.88},{&quot;2026-07-26&quot;:4.93},{&quot;2026-07-27&quot;:4.86},{&quot;2026-07-28&quot;:4.88},{&quot;2026-07-29&quot;:4.83},{&quot;2026-07-30&quot;:4.83},{&quot;2026-07-31&quot;:4.82},{&quot;2026-08-01&quot;:4.82},{&quot;2026-08-02&quot;:4.82},{&quot;2026-08-03&quot;:4.82},{&quot;2026-08-04&quot;:4.82},{&quot;2026-08-05&quot;:4.8},{&quot;2026-08-07&quot;:4.74},{&quot;2026-08-08&quot;:4.74},{&quot;2026-08-09&quot;:4.71},{&quot;2026-08-10&quot;:4.45},{&quot;2026-08-11&quot;:4.58},{&quot;2026-08-12&quot;:4.54},{&quot;2026-08-13&quot;:4.61},{&quot;2026-08-14&quot;:4.69},{&quot;2026-08-15&quot;:5.07},{&quot;2026-08-16&quot;:5.09},{&quot;2026-08-17&quot;:5.14},{&quot;2026-08-18&quot;:5.21},{&quot;2026-08-19&quot;:5.21},{&quot;2026-08-20&quot;:5.27},{&quot;2026-08-21&quot;:5.25},{&quot;2026-08-22&quot;:5.29},{&quot;2026-08-23&quot;:5.29},{&quot;2026-08-24&quot;:5.26},{&quot;2026-08-25&quot;:5.26},{&quot;2026-08-26&quot;:5.3},{&quot;2026-08-27&quot;:5.25},{&quot;2026-08-28&quot;:5.32},{&quot;2026-08-29&quot;:5.32},{&quot;2026-08-30&quot;:5.44},{&quot;2026-08-31&quot;:5.44},{&quot;2026-09-01&quot;:5.43},{&quot;2026-09-02&quot;:5.42},{&quot;2026-09-03&quot;:5.42},{&quot;2026-09-04&quot;:5.42},{&quot;2026-09-05&quot;:5.44},{&quot;2026-09-06&quot;:5.49},{&quot;2026-09-07&quot;:5.48},{&quot;2026-09-08&quot;:5.53},{&quot;2026-09-09&quot;:5.57},{&quot;2026-09-10&quot;:5.59},{&quot;2026-09-11&quot;:5.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="10744"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.99
          </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="Boros Charm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/22dc1c3a-0110-4925-a745-e51b20553027.jpg?1783927527" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Boros Charm" src="https://cards.scryfall.io/large/front/2/2/22dc1c3a-0110-4925-a745-e51b20553027.jpg?1783927527" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.99
              </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">$5.00</span>
              <span class="text-xs text-grey-text">Credit: $6.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;:5.23},{&quot;2026-06-14&quot;:5.19},{&quot;2026-06-15&quot;:5.04},{&quot;2026-06-16&quot;:5.0},{&quot;2026-06-17&quot;:5.0},{&quot;2026-06-18&quot;:5.0},{&quot;2026-06-19&quot;:5.0},{&quot;2026-06-20&quot;:5.0},{&quot;2026-06-21&quot;:5.0},{&quot;2026-06-22&quot;:4.91},{&quot;2026-06-23&quot;:4.94},{&quot;2026-06-24&quot;:4.9},{&quot;2026-06-25&quot;:4.9},{&quot;2026-06-26&quot;:4.86},{&quot;2026-06-27&quot;:4.86},{&quot;2026-06-28&quot;:4.86},{&quot;2026-06-29&quot;:4.86},{&quot;2026-06-30&quot;:4.84},{&quot;2026-07-01&quot;:4.84},{&quot;2026-07-02&quot;:4.84},{&quot;2026-07-03&quot;:4.84},{&quot;2026-07-04&quot;:4.86},{&quot;2026-07-05&quot;:4.86},{&quot;2026-07-06&quot;:4.95},{&quot;2026-07-07&quot;:4.95},{&quot;2026-07-08&quot;:4.95},{&quot;2026-07-09&quot;:4.95},{&quot;2026-07-10&quot;:4.95},{&quot;2026-07-11&quot;:4.99},{&quot;2026-07-12&quot;:4.99},{&quot;2026-07-13&quot;:4.99},{&quot;2026-07-14&quot;:4.99},{&quot;2026-07-15&quot;:5.01},{&quot;2026-07-16&quot;:4.99},{&quot;2026-07-17&quot;:5.0},{&quot;2026-07-18&quot;:4.99},{&quot;2026-07-19&quot;:4.93},{&quot;2026-07-20&quot;:4.93},{&quot;2026-07-21&quot;:4.93},{&quot;2026-07-22&quot;:4.93},{&quot;2026-07-23&quot;:4.93},{&quot;2026-07-24&quot;:4.93},{&quot;2026-07-25&quot;:4.93},{&quot;2026-07-26&quot;:4.93},{&quot;2026-07-27&quot;:4.93},{&quot;2026-07-28&quot;:4.93},{&quot;2026-07-29&quot;:4.81},{&quot;2026-07-30&quot;:4.63},{&quot;2026-07-31&quot;:4.61},{&quot;2026-08-01&quot;:4.61},{&quot;2026-08-02&quot;:4.6},{&quot;2026-08-03&quot;:4.58},{&quot;2026-08-04&quot;:4.57},{&quot;2026-08-05&quot;:4.56},{&quot;2026-08-07&quot;:4.66},{&quot;2026-08-08&quot;:4.66},{&quot;2026-08-09&quot;:4.72},{&quot;2026-08-10&quot;:4.84},{&quot;2026-08-11&quot;:4.71},{&quot;2026-08-12&quot;:4.75},{&quot;2026-08-13&quot;:4.75},{&quot;2026-08-14&quot;:4.73},{&quot;2026-08-15&quot;:4.7},{&quot;2026-08-16&quot;:4.71},{&quot;2026-08-17&quot;:4.78},{&quot;2026-08-18&quot;:4.86},{&quot;2026-08-19&quot;:4.92},{&quot;2026-08-20&quot;:4.98},{&quot;2026-08-21&quot;:4.98},{&quot;2026-08-22&quot;:4.99},{&quot;2026-08-23&quot;:4.94},{&quot;2026-08-24&quot;:4.94},{&quot;2026-08-25&quot;:4.94},{&quot;2026-08-26&quot;:4.94},{&quot;2026-08-27&quot;:4.92},{&quot;2026-08-28&quot;:4.92},{&quot;2026-08-29&quot;:4.92},{&quot;2026-08-30&quot;:4.93},{&quot;2026-08-31&quot;:4.93},{&quot;2026-09-01&quot;:4.93},{&quot;2026-09-02&quot;:4.92},{&quot;2026-09-03&quot;:4.97},{&quot;2026-09-04&quot;:4.96},{&quot;2026-09-05&quot;:5.02},{&quot;2026-09-06&quot;:5.03},{&quot;2026-09-07&quot;:4.99},{&quot;2026-09-08&quot;:4.99},{&quot;2026-09-09&quot;:4.99},{&quot;2026-09-10&quot;:4.99},{&quot;2026-09-11&quot;:4.99}]}"
        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="42005"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/0/3/03cd5953-37fc-4a8a-89f8-0b5dd8412dc9.jpg?1783923807" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.01},{&quot;2026-06-11&quot;:4.0},{&quot;2026-06-12&quot;:4.02},{&quot;2026-06-13&quot;:4.02},{&quot;2026-06-14&quot;:4.02},{&quot;2026-06-15&quot;:4.02},{&quot;2026-06-16&quot;:4.02},{&quot;2026-06-17&quot;:4.04},{&quot;2026-06-18&quot;:4.04},{&quot;2026-06-19&quot;:4.0},{&quot;2026-06-20&quot;:4.0},{&quot;2026-06-21&quot;:4.0},{&quot;2026-06-22&quot;:3.98},{&quot;2026-06-23&quot;:3.97},{&quot;2026-06-24&quot;:3.94},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:4.06},{&quot;2026-06-27&quot;:4.1},{&quot;2026-06-28&quot;:4.11},{&quot;2026-06-29&quot;:4.11},{&quot;2026-06-30&quot;:4.22},{&quot;2026-07-01&quot;:4.22},{&quot;2026-07-02&quot;:4.22},{&quot;2026-07-03&quot;:4.21},{&quot;2026-07-04&quot;:4.22},{&quot;2026-07-05&quot;:4.22},{&quot;2026-07-06&quot;:4.22},{&quot;2026-07-07&quot;:4.23},{&quot;2026-07-08&quot;:4.28},{&quot;2026-07-09&quot;:4.28},{&quot;2026-07-10&quot;:4.41},{&quot;2026-07-11&quot;:4.63},{&quot;2026-07-12&quot;:4.63},{&quot;2026-07-13&quot;:4.57},{&quot;2026-07-14&quot;:4.64},{&quot;2026-07-15&quot;:4.64},{&quot;2026-07-16&quot;:4.64},{&quot;2026-07-17&quot;:4.65},{&quot;2026-07-18&quot;:4.69},{&quot;2026-07-19&quot;:4.69},{&quot;2026-07-20&quot;:4.73},{&quot;2026-07-21&quot;:4.23},{&quot;2026-07-23&quot;:4.3},{&quot;2026-07-25&quot;:4.38},{&quot;2026-07-26&quot;:4.45},{&quot;2026-07-27&quot;:4.52},{&quot;2026-07-29&quot;:4.65},{&quot;2026-07-30&quot;:4.84},{&quot;2026-07-31&quot;:4.89},{&quot;2026-08-01&quot;:4.89},{&quot;2026-08-02&quot;:4.94},{&quot;2026-08-03&quot;:4.94},{&quot;2026-08-04&quot;:5.03},{&quot;2026-08-05&quot;:5.04},{&quot;2026-08-07&quot;:5.06},{&quot;2026-08-08&quot;:5.06},{&quot;2026-08-09&quot;:5.0},{&quot;2026-08-10&quot;:5.0},{&quot;2026-08-11&quot;:5.0},{&quot;2026-08-12&quot;:4.97},{&quot;2026-08-13&quot;:4.95},{&quot;2026-08-14&quot;:4.95},{&quot;2026-08-15&quot;:5.15},{&quot;2026-08-16&quot;:5.06},{&quot;2026-08-17&quot;:4.98},{&quot;2026-08-18&quot;:4.84},{&quot;2026-08-19&quot;:4.81},{&quot;2026-08-20&quot;:4.81},{&quot;2026-08-21&quot;:4.73},{&quot;2026-08-22&quot;:4.73},{&quot;2026-08-23&quot;:5.0},{&quot;2026-08-24&quot;:5.01},{&quot;2026-08-25&quot;:5.01},{&quot;2026-08-26&quot;:5.23},{&quot;2026-08-27&quot;:5.23},{&quot;2026-08-28&quot;:5.22},{&quot;2026-08-29&quot;:5.22},{&quot;2026-08-30&quot;:6.19},{&quot;2026-08-31&quot;:6.09},{&quot;2026-09-01&quot;:6.09},{&quot;2026-09-02&quot;:5.99},{&quot;2026-09-03&quot;:5.99},{&quot;2026-09-04&quot;:5.98},{&quot;2026-09-05&quot;:5.37},{&quot;2026-09-06&quot;:5.16},{&quot;2026-09-07&quot;:5.17},{&quot;2026-09-08&quot;:5.06},{&quot;2026-09-09&quot;:5.06},{&quot;2026-09-10&quot;:4.86},{&quot;2026-09-11&quot;:4.93}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.79},{&quot;2026-06-11&quot;:2.81},{&quot;2026-06-12&quot;:2.87},{&quot;2026-06-13&quot;:2.88},{&quot;2026-06-14&quot;:2.91},{&quot;2026-06-15&quot;:2.93},{&quot;2026-06-16&quot;:2.92},{&quot;2026-06-17&quot;:2.92},{&quot;2026-06-18&quot;:2.92},{&quot;2026-06-19&quot;:2.9},{&quot;2026-06-20&quot;:2.91},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-23&quot;:3.11},{&quot;2026-06-24&quot;:3.11},{&quot;2026-06-25&quot;:3.11},{&quot;2026-06-26&quot;:3.12},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.13},{&quot;2026-06-30&quot;:3.13},{&quot;2026-07-01&quot;:3.0},{&quot;2026-07-02&quot;:2.93},{&quot;2026-07-03&quot;:2.82},{&quot;2026-07-04&quot;:2.78},{&quot;2026-07-05&quot;:2.8},{&quot;2026-07-06&quot;:2.77},{&quot;2026-07-07&quot;:2.71},{&quot;2026-07-08&quot;:2.63},{&quot;2026-07-09&quot;:2.6},{&quot;2026-07-10&quot;:2.83},{&quot;2026-07-11&quot;:2.85},{&quot;2026-07-12&quot;:2.89},{&quot;2026-07-13&quot;:3.03},{&quot;2026-07-14&quot;:3.02},{&quot;2026-07-15&quot;:3.06},{&quot;2026-07-16&quot;:3.06},{&quot;2026-07-17&quot;:3.07},{&quot;2026-07-18&quot;:3.09},{&quot;2026-07-19&quot;:3.2},{&quot;2026-07-20&quot;:3.07},{&quot;2026-07-21&quot;:3.04},{&quot;2026-07-23&quot;:2.86},{&quot;2026-07-25&quot;:2.81},{&quot;2026-07-26&quot;:2.83},{&quot;2026-07-27&quot;:2.75},{&quot;2026-07-29&quot;:2.63},{&quot;2026-07-30&quot;:2.6},{&quot;2026-07-31&quot;:2.6},{&quot;2026-08-01&quot;:2.55},{&quot;2026-08-02&quot;:2.5},{&quot;2026-08-03&quot;:2.51},{&quot;2026-08-04&quot;:2.56},{&quot;2026-08-05&quot;:2.72},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:2.85},{&quot;2026-08-09&quot;:2.86},{&quot;2026-08-10&quot;:2.75},{&quot;2026-08-11&quot;:2.72},{&quot;2026-08-12&quot;:2.72},{&quot;2026-08-13&quot;:2.72},{&quot;2026-08-14&quot;:2.72},{&quot;2026-08-15&quot;:2.72},{&quot;2026-08-16&quot;:2.66},{&quot;2026-08-17&quot;:2.64},{&quot;2026-08-18&quot;:2.64},{&quot;2026-08-19&quot;:2.73},{&quot;2026-08-20&quot;:2.73},{&quot;2026-08-21&quot;:3.13},{&quot;2026-08-22&quot;:3.21},{&quot;2026-08-23&quot;:3.35},{&quot;2026-08-24&quot;:3.62},{&quot;2026-08-25&quot;:3.62},{&quot;2026-08-26&quot;:3.55},{&quot;2026-08-27&quot;:3.58},{&quot;2026-08-28&quot;:3.26},{&quot;2026-08-29&quot;:3.26},{&quot;2026-08-30&quot;:3.06},{&quot;2026-08-31&quot;:2.8},{&quot;2026-09-01&quot;:2.8},{&quot;2026-09-02&quot;:2.72},{&quot;2026-09-03&quot;:2.89},{&quot;2026-09-04&quot;:2.91},{&quot;2026-09-05&quot;:3.0},{&quot;2026-09-06&quot;:2.9},{&quot;2026-09-07&quot;:2.9},{&quot;2026-09-08&quot;:2.98},{&quot;2026-09-09&quot;:3.11},{&quot;2026-09-10&quot;:3.11},{&quot;2026-09-11&quot;:3.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Lightning Greaves" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/6/e6cec97f-0a2b-4543-a02e-d5e42d337790.jpg?1783930105" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Greaves" src="https://cards.scryfall.io/large/front/e/6/e6cec97f-0a2b-4543-a02e-d5e42d337790.jpg?1783930105" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.34},{&quot;2026-06-11&quot;:5.34},{&quot;2026-06-12&quot;:5.34},{&quot;2026-06-13&quot;:5.34},{&quot;2026-06-14&quot;:5.34},{&quot;2026-06-15&quot;:5.34},{&quot;2026-06-16&quot;:5.34},{&quot;2026-06-17&quot;:5.34},{&quot;2026-06-18&quot;:5.34},{&quot;2026-06-19&quot;:5.34},{&quot;2026-06-20&quot;:5.34},{&quot;2026-06-21&quot;:5.34},{&quot;2026-06-22&quot;:5.47},{&quot;2026-06-23&quot;:5.42},{&quot;2026-06-24&quot;:5.42},{&quot;2026-06-25&quot;:5.42},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.55},{&quot;2026-06-28&quot;:5.51},{&quot;2026-06-29&quot;:5.53},{&quot;2026-06-30&quot;:5.53},{&quot;2026-07-01&quot;:5.5},{&quot;2026-07-02&quot;:5.5},{&quot;2026-07-03&quot;:5.52},{&quot;2026-07-04&quot;:5.52},{&quot;2026-07-05&quot;:5.52},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.65},{&quot;2026-07-08&quot;:5.65},{&quot;2026-07-09&quot;:5.65},{&quot;2026-07-10&quot;:5.65},{&quot;2026-07-11&quot;:5.65},{&quot;2026-07-12&quot;:5.65},{&quot;2026-07-13&quot;:5.53},{&quot;2026-07-14&quot;:5.53},{&quot;2026-07-15&quot;:5.53},{&quot;2026-07-16&quot;:5.64},{&quot;2026-07-17&quot;:5.72},{&quot;2026-07-18&quot;:5.72},{&quot;2026-07-19&quot;:5.72},{&quot;2026-07-20&quot;:5.85},{&quot;2026-07-21&quot;:5.92},{&quot;2026-07-23&quot;:5.92},{&quot;2026-07-25&quot;:5.9},{&quot;2026-07-26&quot;:5.9},{&quot;2026-07-27&quot;:5.9},{&quot;2026-07-29&quot;:5.9},{&quot;2026-07-30&quot;:5.9},{&quot;2026-07-31&quot;:5.9},{&quot;2026-08-01&quot;:5.9},{&quot;2026-08-02&quot;:5.9},{&quot;2026-08-03&quot;:5.9},{&quot;2026-08-04&quot;:5.85},{&quot;2026-08-05&quot;:5.85},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:5.85},{&quot;2026-08-09&quot;:5.87},{&quot;2026-08-10&quot;:5.87},{&quot;2026-08-11&quot;:5.91},{&quot;2026-08-12&quot;:6.01},{&quot;2026-08-13&quot;:6.01},{&quot;2026-08-14&quot;:5.99},{&quot;2026-08-15&quot;:5.99},{&quot;2026-08-16&quot;:5.99},{&quot;2026-08-17&quot;:5.99},{&quot;2026-08-18&quot;:5.99},{&quot;2026-08-19&quot;:5.99},{&quot;2026-08-20&quot;:5.99},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:5.99},{&quot;2026-08-23&quot;:5.99},{&quot;2026-08-24&quot;:5.99},{&quot;2026-08-25&quot;:5.99},{&quot;2026-08-26&quot;:5.99},{&quot;2026-08-27&quot;:5.99},{&quot;2026-08-28&quot;:5.99},{&quot;2026-08-29&quot;:5.99},{&quot;2026-08-30&quot;:5.99},{&quot;2026-08-31&quot;:5.99},{&quot;2026-09-01&quot;:5.99},{&quot;2026-09-02&quot;:5.99},{&quot;2026-09-03&quot;:5.99},{&quot;2026-09-04&quot;:6.01},{&quot;2026-09-05&quot;:5.9},{&quot;2026-09-06&quot;:5.9},{&quot;2026-09-07&quot;:5.9},{&quot;2026-09-08&quot;:5.9},{&quot;2026-09-09&quot;:5.86},{&quot;2026-09-10&quot;:5.44},{&quot;2026-09-11&quot;:5.44}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.83},{&quot;2026-06-11&quot;:4.81},{&quot;2026-06-12&quot;:4.81},{&quot;2026-06-13&quot;:4.81},{&quot;2026-06-14&quot;:4.81},{&quot;2026-06-15&quot;:4.81},{&quot;2026-06-16&quot;:4.81},{&quot;2026-06-17&quot;:4.81},{&quot;2026-06-18&quot;:4.8},{&quot;2026-06-19&quot;:4.8},{&quot;2026-06-20&quot;:4.8},{&quot;2026-06-21&quot;:4.77},{&quot;2026-06-22&quot;:4.77},{&quot;2026-06-23&quot;:4.77},{&quot;2026-06-24&quot;:4.79},{&quot;2026-06-25&quot;:4.76},{&quot;2026-06-26&quot;:4.8},{&quot;2026-06-27&quot;:4.8},{&quot;2026-06-28&quot;:4.8},{&quot;2026-06-29&quot;:4.8},{&quot;2026-06-30&quot;:4.8},{&quot;2026-07-01&quot;:4.8},{&quot;2026-07-02&quot;:4.79},{&quot;2026-07-03&quot;:4.7},{&quot;2026-07-04&quot;:4.7},{&quot;2026-07-05&quot;:4.71},{&quot;2026-07-06&quot;:4.76},{&quot;2026-07-07&quot;:4.75},{&quot;2026-07-08&quot;:4.75},{&quot;2026-07-09&quot;:4.76},{&quot;2026-07-10&quot;:4.76},{&quot;2026-07-11&quot;:4.75},{&quot;2026-07-12&quot;:4.69},{&quot;2026-07-13&quot;:4.61},{&quot;2026-07-14&quot;:4.57},{&quot;2026-07-15&quot;:4.72},{&quot;2026-07-16&quot;:4.72},{&quot;2026-07-17&quot;:4.79},{&quot;2026-07-18&quot;:4.83},{&quot;2026-07-19&quot;:4.83},{&quot;2026-07-20&quot;:4.77},{&quot;2026-07-21&quot;:4.69},{&quot;2026-07-23&quot;:4.69},{&quot;2026-07-25&quot;:4.55},{&quot;2026-07-26&quot;:4.66},{&quot;2026-07-27&quot;:4.66},{&quot;2026-07-29&quot;:4.66},{&quot;2026-07-30&quot;:4.7},{&quot;2026-07-31&quot;:4.72},{&quot;2026-08-01&quot;:4.72},{&quot;2026-08-02&quot;:4.81},{&quot;2026-08-03&quot;:4.81},{&quot;2026-08-04&quot;:4.89},{&quot;2026-08-05&quot;:4.89},{&quot;2026-08-07&quot;:4.89},{&quot;2026-08-08&quot;:4.89},{&quot;2026-08-09&quot;:4.89},{&quot;2026-08-10&quot;:4.89},{&quot;2026-08-11&quot;:4.86},{&quot;2026-08-12&quot;:4.85},{&quot;2026-08-13&quot;:4.76},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.76},{&quot;2026-08-16&quot;:4.82},{&quot;2026-08-17&quot;:4.81},{&quot;2026-08-18&quot;:4.81},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.94},{&quot;2026-08-22&quot;:4.94},{&quot;2026-08-23&quot;:4.93},{&quot;2026-08-24&quot;:4.93},{&quot;2026-08-25&quot;:4.93},{&quot;2026-08-26&quot;:4.92},{&quot;2026-08-27&quot;:4.96},{&quot;2026-08-28&quot;:4.97},{&quot;2026-08-29&quot;:4.97},{&quot;2026-08-30&quot;:4.74},{&quot;2026-08-31&quot;:4.77},{&quot;2026-09-01&quot;:4.77},{&quot;2026-09-02&quot;:4.78},{&quot;2026-09-03&quot;:4.78},{&quot;2026-09-04&quot;:4.76},{&quot;2026-09-05&quot;:4.74},{&quot;2026-09-06&quot;:4.74},{&quot;2026-09-07&quot;:4.69},{&quot;2026-09-08&quot;:4.69},{&quot;2026-09-09&quot;:4.73},{&quot;2026-09-10&quot;:4.72},{&quot;2026-09-11&quot;:4.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="41987"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/a/ca8fb179-7e81-4b20-8b81-ea1aa97afe58.jpg?1783923808" />

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/c/a/ca8fb179-7e81-4b20-8b81-ea1aa97afe58.jpg?1783923808" />
    </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">
            3
          </span>
        </div>

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.78
              </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">
                $4.69
              </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">$2.25</span>
              <span class="text-xs text-grey-text">Credit: $2.93</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$2.80</span>
              <span class="text-xs text-grey-text">Credit: $3.64</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:4.46},{&quot;2026-06-13&quot;:4.51},{&quot;2026-06-14&quot;:4.5},{&quot;2026-06-15&quot;:4.5},{&quot;2026-06-16&quot;:4.4},{&quot;2026-06-17&quot;:4.4},{&quot;2026-06-18&quot;:4.4},{&quot;2026-06-19&quot;:4.26},{&quot;2026-06-20&quot;:4.26},{&quot;2026-06-21&quot;:4.26},{&quot;2026-06-22&quot;:4.26},{&quot;2026-06-23&quot;:4.26},{&quot;2026-06-24&quot;:4.22},{&quot;2026-06-25&quot;:4.2},{&quot;2026-06-26&quot;:4.07},{&quot;2026-06-27&quot;:4.12},{&quot;2026-06-28&quot;:4.27},{&quot;2026-06-29&quot;:4.27},{&quot;2026-06-30&quot;:4.34},{&quot;2026-07-01&quot;:4.25},{&quot;2026-07-02&quot;:4.37},{&quot;2026-07-03&quot;:4.45},{&quot;2026-07-04&quot;:4.5},{&quot;2026-07-05&quot;:4.5},{&quot;2026-07-06&quot;:4.54},{&quot;2026-07-07&quot;:4.54},{&quot;2026-07-08&quot;:4.51},{&quot;2026-07-09&quot;:4.51},{&quot;2026-07-10&quot;:4.77},{&quot;2026-07-11&quot;:4.75},{&quot;2026-07-12&quot;:4.74},{&quot;2026-07-13&quot;:4.75},{&quot;2026-07-14&quot;:4.74},{&quot;2026-07-15&quot;:4.78},{&quot;2026-07-16&quot;:4.92},{&quot;2026-07-17&quot;:4.63},{&quot;2026-07-18&quot;:4.55},{&quot;2026-07-19&quot;:4.55},{&quot;2026-07-20&quot;:4.44},{&quot;2026-07-21&quot;:4.44},{&quot;2026-07-23&quot;:4.49},{&quot;2026-07-24&quot;:4.51},{&quot;2026-07-25&quot;:4.49},{&quot;2026-07-26&quot;:4.49},{&quot;2026-07-27&quot;:4.49},{&quot;2026-07-28&quot;:4.39},{&quot;2026-07-29&quot;:4.36},{&quot;2026-07-30&quot;:4.52},{&quot;2026-07-31&quot;:4.32},{&quot;2026-08-01&quot;:4.32},{&quot;2026-08-02&quot;:4.36},{&quot;2026-08-03&quot;:4.36},{&quot;2026-08-04&quot;:4.48},{&quot;2026-08-05&quot;:4.48},{&quot;2026-08-07&quot;:4.44},{&quot;2026-08-08&quot;:4.44},{&quot;2026-08-09&quot;:4.52},{&quot;2026-08-10&quot;:4.55},{&quot;2026-08-11&quot;:4.55},{&quot;2026-08-12&quot;:4.6},{&quot;2026-08-13&quot;:4.67},{&quot;2026-08-14&quot;:4.62},{&quot;2026-08-15&quot;:4.74},{&quot;2026-08-16&quot;:4.8},{&quot;2026-08-17&quot;:4.85},{&quot;2026-08-18&quot;:4.95},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.97},{&quot;2026-08-22&quot;:5.0},{&quot;2026-08-23&quot;:4.98},{&quot;2026-08-24&quot;:5.03},{&quot;2026-08-25&quot;:4.99},{&quot;2026-08-26&quot;:5.0},{&quot;2026-08-27&quot;:5.01},{&quot;2026-08-28&quot;:5.01},{&quot;2026-08-29&quot;:5.01},{&quot;2026-08-30&quot;:5.0},{&quot;2026-08-31&quot;:4.99},{&quot;2026-09-01&quot;:4.96},{&quot;2026-09-02&quot;:4.99},{&quot;2026-09-03&quot;:4.93},{&quot;2026-09-04&quot;:4.93},{&quot;2026-09-05&quot;:4.87},{&quot;2026-09-06&quot;:4.87},{&quot;2026-09-07&quot;:4.7},{&quot;2026-09-08&quot;:4.73},{&quot;2026-09-09&quot;:4.73},{&quot;2026-09-10&quot;:4.69},{&quot;2026-09-11&quot;:4.69}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.18},{&quot;2026-06-13&quot;:3.21},{&quot;2026-06-14&quot;:3.28},{&quot;2026-06-15&quot;:3.41},{&quot;2026-06-16&quot;:3.39},{&quot;2026-06-17&quot;:3.37},{&quot;2026-06-18&quot;:3.4},{&quot;2026-06-19&quot;:3.4},{&quot;2026-06-20&quot;:3.37},{&quot;2026-06-21&quot;:3.37},{&quot;2026-06-22&quot;:3.52},{&quot;2026-06-23&quot;:3.62},{&quot;2026-06-24&quot;:3.66},{&quot;2026-06-25&quot;:3.64},{&quot;2026-06-26&quot;:3.56},{&quot;2026-06-27&quot;:3.56},{&quot;2026-06-28&quot;:3.39},{&quot;2026-06-29&quot;:3.36},{&quot;2026-06-30&quot;:3.46},{&quot;2026-07-01&quot;:3.37},{&quot;2026-07-02&quot;:3.23},{&quot;2026-07-03&quot;:3.21},{&quot;2026-07-04&quot;:3.05},{&quot;2026-07-05&quot;:2.98},{&quot;2026-07-06&quot;:3.0},{&quot;2026-07-07&quot;:3.11},{&quot;2026-07-08&quot;:3.05},{&quot;2026-07-09&quot;:2.97},{&quot;2026-07-10&quot;:2.99},{&quot;2026-07-11&quot;:2.94},{&quot;2026-07-12&quot;:2.94},{&quot;2026-07-13&quot;:2.89},{&quot;2026-07-14&quot;:2.83},{&quot;2026-07-15&quot;:2.83},{&quot;2026-07-16&quot;:2.86},{&quot;2026-07-17&quot;:3.13},{&quot;2026-07-18&quot;:3.18},{&quot;2026-07-19&quot;:3.22},{&quot;2026-07-20&quot;:3.29},{&quot;2026-07-21&quot;:3.27},{&quot;2026-07-23&quot;:3.06},{&quot;2026-07-24&quot;:3.03},{&quot;2026-07-25&quot;:3.17},{&quot;2026-07-26&quot;:3.2},{&quot;2026-07-27&quot;:3.2},{&quot;2026-07-28&quot;:3.07},{&quot;2026-07-29&quot;:3.11},{&quot;2026-07-30&quot;:3.3},{&quot;2026-07-31&quot;:3.43},{&quot;2026-08-01&quot;:3.47},{&quot;2026-08-02&quot;:3.51},{&quot;2026-08-03&quot;:3.66},{&quot;2026-08-04&quot;:3.66},{&quot;2026-08-05&quot;:3.56},{&quot;2026-08-07&quot;:3.53},{&quot;2026-08-08&quot;:3.31},{&quot;2026-08-09&quot;:3.29},{&quot;2026-08-10&quot;:3.27},{&quot;2026-08-11&quot;:3.11},{&quot;2026-08-12&quot;:3.11},{&quot;2026-08-13&quot;:3.12},{&quot;2026-08-14&quot;:3.12},{&quot;2026-08-15&quot;:3.0},{&quot;2026-08-16&quot;:3.07},{&quot;2026-08-17&quot;:2.95},{&quot;2026-08-18&quot;:2.91},{&quot;2026-08-19&quot;:2.91},{&quot;2026-08-20&quot;:2.91},{&quot;2026-08-21&quot;:2.91},{&quot;2026-08-22&quot;:2.86},{&quot;2026-08-23&quot;:2.9},{&quot;2026-08-24&quot;:2.88},{&quot;2026-08-25&quot;:2.93},{&quot;2026-08-26&quot;:2.92},{&quot;2026-08-27&quot;:2.86},{&quot;2026-08-28&quot;:2.87},{&quot;2026-08-29&quot;:2.87},{&quot;2026-08-30&quot;:2.84},{&quot;2026-08-31&quot;:2.87},{&quot;2026-09-01&quot;:2.87},{&quot;2026-09-02&quot;:2.88},{&quot;2026-09-03&quot;:2.81},{&quot;2026-09-04&quot;:2.84},{&quot;2026-09-05&quot;:2.75},{&quot;2026-09-06&quot;:2.79},{&quot;2026-09-07&quot;:2.78},{&quot;2026-09-08&quot;:2.74},{&quot;2026-09-09&quot;:2.62},{&quot;2026-09-10&quot;:2.71},{&quot;2026-09-11&quot;:2.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="10265"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Battlemage&#39;s Bracers" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/a/1a14aad2-47f0-4d21-9fcf-5ca171faffaf.jpg?1783927595" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Battlemage&#39;s Bracers" src="https://cards.scryfall.io/large/front/1/a/1a14aad2-47f0-4d21-9fcf-5ca171faffaf.jpg?1783927595" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.67},{&quot;2026-06-14&quot;:3.68},{&quot;2026-06-15&quot;:3.65},{&quot;2026-06-16&quot;:3.69},{&quot;2026-06-17&quot;:3.69},{&quot;2026-06-18&quot;:3.64},{&quot;2026-06-19&quot;:3.68},{&quot;2026-06-20&quot;:3.6},{&quot;2026-06-21&quot;:3.58},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.66},{&quot;2026-06-24&quot;:3.64},{&quot;2026-06-25&quot;:3.59},{&quot;2026-06-26&quot;:3.59},{&quot;2026-06-27&quot;:3.62},{&quot;2026-06-28&quot;:3.6},{&quot;2026-06-29&quot;:3.56},{&quot;2026-06-30&quot;:3.56},{&quot;2026-07-01&quot;:3.67},{&quot;2026-07-02&quot;:3.65},{&quot;2026-07-03&quot;:3.72},{&quot;2026-07-04&quot;:3.67},{&quot;2026-07-05&quot;:3.61},{&quot;2026-07-06&quot;:3.61},{&quot;2026-07-07&quot;:3.55},{&quot;2026-07-08&quot;:3.62},{&quot;2026-07-09&quot;:3.52},{&quot;2026-07-10&quot;:3.52},{&quot;2026-07-11&quot;:3.53},{&quot;2026-07-12&quot;:3.53},{&quot;2026-07-13&quot;:3.56},{&quot;2026-07-14&quot;:3.56},{&quot;2026-07-15&quot;:3.56},{&quot;2026-07-16&quot;:3.59},{&quot;2026-07-17&quot;:3.59},{&quot;2026-07-18&quot;:3.59},{&quot;2026-07-19&quot;:3.54},{&quot;2026-07-20&quot;:3.54},{&quot;2026-07-21&quot;:3.54},{&quot;2026-07-22&quot;:3.54},{&quot;2026-07-23&quot;:3.54},{&quot;2026-07-24&quot;:3.54},{&quot;2026-07-25&quot;:3.54},{&quot;2026-07-26&quot;:3.54},{&quot;2026-07-27&quot;:3.54},{&quot;2026-07-28&quot;:3.55},{&quot;2026-07-29&quot;:3.43},{&quot;2026-07-30&quot;:3.38},{&quot;2026-07-31&quot;:3.42},{&quot;2026-08-01&quot;:3.45},{&quot;2026-08-02&quot;:3.53},{&quot;2026-08-03&quot;:3.57},{&quot;2026-08-04&quot;:3.57},{&quot;2026-08-05&quot;:3.58},{&quot;2026-08-07&quot;:3.58},{&quot;2026-08-08&quot;:3.6},{&quot;2026-08-09&quot;:3.65},{&quot;2026-08-10&quot;:3.67},{&quot;2026-08-11&quot;:3.6},{&quot;2026-08-12&quot;:3.6},{&quot;2026-08-13&quot;:3.6},{&quot;2026-08-14&quot;:3.56},{&quot;2026-08-15&quot;:3.61},{&quot;2026-08-16&quot;:3.75},{&quot;2026-08-17&quot;:3.76},{&quot;2026-08-18&quot;:3.76},{&quot;2026-08-19&quot;:3.63},{&quot;2026-08-20&quot;:3.64},{&quot;2026-08-21&quot;:3.64},{&quot;2026-08-22&quot;:3.64},{&quot;2026-08-23&quot;:3.65},{&quot;2026-08-24&quot;:3.74},{&quot;2026-08-25&quot;:3.68},{&quot;2026-08-26&quot;:3.68},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.72},{&quot;2026-08-29&quot;:3.72},{&quot;2026-08-30&quot;:3.67},{&quot;2026-08-31&quot;:3.66},{&quot;2026-09-01&quot;:3.63},{&quot;2026-09-02&quot;:3.61},{&quot;2026-09-03&quot;:3.54},{&quot;2026-09-04&quot;:3.43},{&quot;2026-09-05&quot;:3.5},{&quot;2026-09-06&quot;:3.45},{&quot;2026-09-07&quot;:3.42},{&quot;2026-09-08&quot;:3.39},{&quot;2026-09-09&quot;:3.29},{&quot;2026-09-10&quot;:3.29},{&quot;2026-09-11&quot;:3.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79887"
  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">
            Ancient Den
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Ancient Den
        </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">Artifact Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ancient Den" src="https://cards.scryfall.io/large/front/c/d/cddf6c54-d928-42f7-b2b6-7ee58be58148.jpg?1783927702" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:16.61},{&quot;2026-06-11&quot;:16.61},{&quot;2026-06-12&quot;:16.61},{&quot;2026-06-13&quot;:16.61},{&quot;2026-06-14&quot;:16.62},{&quot;2026-06-15&quot;:16.62},{&quot;2026-06-16&quot;:16.62},{&quot;2026-06-17&quot;:16.62},{&quot;2026-06-18&quot;:16.62},{&quot;2026-06-19&quot;:16.62},{&quot;2026-06-20&quot;:16.62},{&quot;2026-06-21&quot;:16.62},{&quot;2026-06-22&quot;:17.65},{&quot;2026-06-23&quot;:17.65},{&quot;2026-06-24&quot;:16.62},{&quot;2026-06-25&quot;:16.62},{&quot;2026-06-26&quot;:16.62},{&quot;2026-06-27&quot;:16.62},{&quot;2026-06-28&quot;:16.62},{&quot;2026-06-29&quot;:16.62},{&quot;2026-06-30&quot;:16.62},{&quot;2026-07-01&quot;:17.31},{&quot;2026-07-02&quot;:17.31},{&quot;2026-07-03&quot;:17.31},{&quot;2026-07-04&quot;:17.31},{&quot;2026-07-05&quot;:17.31},{&quot;2026-07-06&quot;:17.31},{&quot;2026-07-07&quot;:17.31},{&quot;2026-07-08&quot;:17.31},{&quot;2026-07-09&quot;:17.31},{&quot;2026-07-10&quot;:17.31},{&quot;2026-07-11&quot;:17.31},{&quot;2026-07-12&quot;:17.31},{&quot;2026-07-13&quot;:17.31},{&quot;2026-07-14&quot;:17.31},{&quot;2026-07-15&quot;:17.31},{&quot;2026-07-16&quot;:19.36},{&quot;2026-07-17&quot;:19.36},{&quot;2026-07-18&quot;:19.36},{&quot;2026-07-19&quot;:19.79},{&quot;2026-07-20&quot;:20.55},{&quot;2026-07-21&quot;:20.55},{&quot;2026-07-23&quot;:20.55},{&quot;2026-07-25&quot;:22.54},{&quot;2026-07-26&quot;:22.54},{&quot;2026-07-27&quot;:22.54},{&quot;2026-07-29&quot;:22.54},{&quot;2026-07-30&quot;:22.54},{&quot;2026-07-31&quot;:22.54},{&quot;2026-08-01&quot;:22.54},{&quot;2026-08-02&quot;:22.54},{&quot;2026-08-03&quot;:22.54},{&quot;2026-08-04&quot;:22.54},{&quot;2026-08-05&quot;:22.54},{&quot;2026-08-07&quot;:22.89},{&quot;2026-08-08&quot;:23.59},{&quot;2026-08-09&quot;:23.59},{&quot;2026-08-10&quot;:23.59},{&quot;2026-08-11&quot;:23.59},{&quot;2026-08-12&quot;:23.59},{&quot;2026-08-13&quot;:23.59},{&quot;2026-08-14&quot;:23.59},{&quot;2026-08-15&quot;:24.14},{&quot;2026-08-16&quot;:24.14},{&quot;2026-08-17&quot;:24.95},{&quot;2026-08-18&quot;:24.95},{&quot;2026-08-19&quot;:25.85},{&quot;2026-08-20&quot;:25.85},{&quot;2026-08-21&quot;:25.85},{&quot;2026-08-22&quot;:25.85},{&quot;2026-08-23&quot;:25.85},{&quot;2026-08-24&quot;:25.85},{&quot;2026-08-25&quot;:25.85},{&quot;2026-08-26&quot;:25.85},{&quot;2026-08-27&quot;:25.85},{&quot;2026-08-28&quot;:25.85},{&quot;2026-08-29&quot;:25.85},{&quot;2026-08-30&quot;:25.85},{&quot;2026-08-31&quot;:25.85},{&quot;2026-09-01&quot;:25.85},{&quot;2026-09-02&quot;:25.85},{&quot;2026-09-03&quot;:26.76},{&quot;2026-09-04&quot;:26.76},{&quot;2026-09-05&quot;:26.76},{&quot;2026-09-06&quot;:29.16},{&quot;2026-09-07&quot;:29.16},{&quot;2026-09-08&quot;:29.16},{&quot;2026-09-09&quot;:29.16},{&quot;2026-09-10&quot;:29.16},{&quot;2026-09-11&quot;:29.16}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.36},{&quot;2026-06-11&quot;:3.36},{&quot;2026-06-12&quot;:3.23},{&quot;2026-06-13&quot;:3.21},{&quot;2026-06-14&quot;:3.36},{&quot;2026-06-15&quot;:3.36},{&quot;2026-06-16&quot;:3.36},{&quot;2026-06-17&quot;:3.56},{&quot;2026-06-18&quot;:3.56},{&quot;2026-06-19&quot;:3.56},{&quot;2026-06-20&quot;:3.56},{&quot;2026-06-21&quot;:3.56},{&quot;2026-06-22&quot;:3.56},{&quot;2026-06-23&quot;:3.66},{&quot;2026-06-24&quot;:3.66},{&quot;2026-06-25&quot;:3.66},{&quot;2026-06-26&quot;:3.78},{&quot;2026-06-27&quot;:4.52},{&quot;2026-06-28&quot;:4.52},{&quot;2026-06-29&quot;:4.52},{&quot;2026-06-30&quot;:4.52},{&quot;2026-07-01&quot;:4.41},{&quot;2026-07-02&quot;:4.18},{&quot;2026-07-03&quot;:4.25},{&quot;2026-07-04&quot;:4.25},{&quot;2026-07-05&quot;:4.04},{&quot;2026-07-06&quot;:4.04},{&quot;2026-07-07&quot;:4.04},{&quot;2026-07-08&quot;:4.04},{&quot;2026-07-09&quot;:4.03},{&quot;2026-07-10&quot;:4.13},{&quot;2026-07-11&quot;:4.13},{&quot;2026-07-12&quot;:4.13},{&quot;2026-07-13&quot;:4.13},{&quot;2026-07-14&quot;:4.13},{&quot;2026-07-15&quot;:4.13},{&quot;2026-07-16&quot;:4.13},{&quot;2026-07-17&quot;:4.13},{&quot;2026-07-18&quot;:4.08},{&quot;2026-07-19&quot;:4.18},{&quot;2026-07-20&quot;:4.18},{&quot;2026-07-21&quot;:4.18},{&quot;2026-07-23&quot;:4.07},{&quot;2026-07-25&quot;:4.07},{&quot;2026-07-26&quot;:4.07},{&quot;2026-07-27&quot;:3.97},{&quot;2026-07-29&quot;:3.9},{&quot;2026-07-30&quot;:3.9},{&quot;2026-07-31&quot;:3.92},{&quot;2026-08-01&quot;:3.92},{&quot;2026-08-02&quot;:4.02},{&quot;2026-08-03&quot;:4.06},{&quot;2026-08-04&quot;:4.06},{&quot;2026-08-05&quot;:3.97},{&quot;2026-08-07&quot;:3.56},{&quot;2026-08-08&quot;:3.42},{&quot;2026-08-09&quot;:3.42},{&quot;2026-08-10&quot;:3.42},{&quot;2026-08-11&quot;:3.19},{&quot;2026-08-12&quot;:3.19},{&quot;2026-08-13&quot;:3.19},{&quot;2026-08-14&quot;:3.19},{&quot;2026-08-15&quot;:3.19},{&quot;2026-08-16&quot;:3.19},{&quot;2026-08-17&quot;:3.19},{&quot;2026-08-18&quot;:3.19},{&quot;2026-08-19&quot;:3.19},{&quot;2026-08-20&quot;:3.19},{&quot;2026-08-21&quot;:3.26},{&quot;2026-08-22&quot;:3.25},{&quot;2026-08-23&quot;:3.25},{&quot;2026-08-24&quot;:3.25},{&quot;2026-08-25&quot;:3.25},{&quot;2026-08-26&quot;:3.25},{&quot;2026-08-27&quot;:3.28},{&quot;2026-08-28&quot;:3.28},{&quot;2026-08-29&quot;:3.28},{&quot;2026-08-30&quot;:3.36},{&quot;2026-08-31&quot;:3.37},{&quot;2026-09-01&quot;:3.37},{&quot;2026-09-02&quot;:3.42},{&quot;2026-09-03&quot;:3.42},{&quot;2026-09-04&quot;:3.38},{&quot;2026-09-05&quot;:3.34},{&quot;2026-09-06&quot;:3.34},{&quot;2026-09-07&quot;:3.31},{&quot;2026-09-08&quot;:3.31},{&quot;2026-09-09&quot;:3.38},{&quot;2026-09-10&quot;:3.38},{&quot;2026-09-11&quot;:3.43}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/7/a/7a76d8ee-28fc-49ac-951c-a4d29822f91e.jpg?1783923807" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:3.54},{&quot;2026-06-10&quot;:3.63},{&quot;2026-06-11&quot;:3.63},{&quot;2026-06-12&quot;:3.63},{&quot;2026-06-13&quot;:3.75},{&quot;2026-06-14&quot;:3.73},{&quot;2026-06-15&quot;:3.73},{&quot;2026-06-16&quot;:3.43},{&quot;2026-06-17&quot;:3.44},{&quot;2026-06-18&quot;:3.44},{&quot;2026-06-19&quot;:3.41},{&quot;2026-06-20&quot;:3.41},{&quot;2026-06-21&quot;:3.23},{&quot;2026-06-22&quot;:3.21},{&quot;2026-06-24&quot;:3.11},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.14},{&quot;2026-06-27&quot;:3.01},{&quot;2026-06-28&quot;:3.09},{&quot;2026-06-29&quot;:3.09},{&quot;2026-06-30&quot;:3.17},{&quot;2026-07-01&quot;:3.05},{&quot;2026-07-02&quot;:3.05},{&quot;2026-07-03&quot;:3.0},{&quot;2026-07-04&quot;:3.01},{&quot;2026-07-05&quot;:3.01},{&quot;2026-07-06&quot;:3.01},{&quot;2026-07-07&quot;:3.07},{&quot;2026-07-08&quot;:3.0},{&quot;2026-07-09&quot;:2.96},{&quot;2026-07-10&quot;:2.93},{&quot;2026-07-11&quot;:2.95},{&quot;2026-07-12&quot;:2.9},{&quot;2026-07-13&quot;:2.9},{&quot;2026-07-14&quot;:2.86},{&quot;2026-07-15&quot;:2.88},{&quot;2026-07-16&quot;:2.92},{&quot;2026-07-17&quot;:3.38},{&quot;2026-07-18&quot;:3.37},{&quot;2026-07-19&quot;:3.44},{&quot;2026-07-20&quot;:3.37},{&quot;2026-07-21&quot;:3.38},{&quot;2026-07-23&quot;:3.46},{&quot;2026-07-25&quot;:3.6},{&quot;2026-07-26&quot;:3.64},{&quot;2026-07-27&quot;:3.64},{&quot;2026-07-29&quot;:3.75},{&quot;2026-07-30&quot;:3.98},{&quot;2026-07-31&quot;:3.95},{&quot;2026-08-01&quot;:3.95},{&quot;2026-08-02&quot;:3.95},{&quot;2026-08-03&quot;:3.95},{&quot;2026-08-04&quot;:4.02},{&quot;2026-08-05&quot;:4.2},{&quot;2026-08-07&quot;:4.05},{&quot;2026-08-08&quot;:4.05},{&quot;2026-08-09&quot;:4.12},{&quot;2026-08-10&quot;:3.34},{&quot;2026-08-11&quot;:3.34},{&quot;2026-08-12&quot;:3.34},{&quot;2026-08-13&quot;:3.42},{&quot;2026-08-14&quot;:3.42},{&quot;2026-08-15&quot;:3.52},{&quot;2026-08-16&quot;:3.52},{&quot;2026-08-17&quot;:3.51},{&quot;2026-08-18&quot;:3.51},{&quot;2026-08-19&quot;:3.63},{&quot;2026-08-20&quot;:3.63},{&quot;2026-08-21&quot;:3.77},{&quot;2026-08-22&quot;:3.85},{&quot;2026-08-23&quot;:3.83},{&quot;2026-08-24&quot;:3.96},{&quot;2026-08-25&quot;:3.96},{&quot;2026-08-26&quot;:3.92},{&quot;2026-08-27&quot;:3.84},{&quot;2026-08-28&quot;:3.84},{&quot;2026-08-29&quot;:3.84},{&quot;2026-08-30&quot;:3.62},{&quot;2026-08-31&quot;:3.63},{&quot;2026-09-01&quot;:3.63},{&quot;2026-09-02&quot;:3.58},{&quot;2026-09-03&quot;:3.59},{&quot;2026-09-04&quot;:3.59},{&quot;2026-09-05&quot;:3.59},{&quot;2026-09-06&quot;:3.54},{&quot;2026-09-07&quot;:3.51},{&quot;2026-09-08&quot;:3.51},{&quot;2026-09-09&quot;:3.46},{&quot;2026-09-10&quot;:3.45},{&quot;2026-09-11&quot;:3.42}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.73},{&quot;2026-06-10&quot;:1.73},{&quot;2026-06-11&quot;:1.82},{&quot;2026-06-12&quot;:1.83},{&quot;2026-06-13&quot;:1.83},{&quot;2026-06-14&quot;:1.84},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.81},{&quot;2026-06-17&quot;:1.81},{&quot;2026-06-18&quot;:1.81},{&quot;2026-06-19&quot;:1.81},{&quot;2026-06-20&quot;:1.81},{&quot;2026-06-21&quot;:1.81},{&quot;2026-06-22&quot;:1.79},{&quot;2026-06-24&quot;:1.73},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.72},{&quot;2026-06-27&quot;:1.75},{&quot;2026-06-28&quot;:1.82},{&quot;2026-06-29&quot;:1.88},{&quot;2026-06-30&quot;:1.86},{&quot;2026-07-01&quot;:1.83},{&quot;2026-07-02&quot;:1.84},{&quot;2026-07-03&quot;:1.82},{&quot;2026-07-04&quot;:1.83},{&quot;2026-07-05&quot;:1.82},{&quot;2026-07-06&quot;:1.78},{&quot;2026-07-07&quot;:1.8},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.73},{&quot;2026-07-10&quot;:1.76},{&quot;2026-07-11&quot;:1.81},{&quot;2026-07-12&quot;:1.81},{&quot;2026-07-13&quot;:1.93},{&quot;2026-07-14&quot;:1.9},{&quot;2026-07-15&quot;:1.85},{&quot;2026-07-16&quot;:1.95},{&quot;2026-07-17&quot;:1.96},{&quot;2026-07-18&quot;:1.95},{&quot;2026-07-19&quot;:1.91},{&quot;2026-07-20&quot;:1.9},{&quot;2026-07-21&quot;:1.87},{&quot;2026-07-23&quot;:1.91},{&quot;2026-07-25&quot;:1.84},{&quot;2026-07-26&quot;:1.84},{&quot;2026-07-27&quot;:1.84},{&quot;2026-07-29&quot;:1.81},{&quot;2026-07-30&quot;:1.68},{&quot;2026-07-31&quot;:1.65},{&quot;2026-08-01&quot;:1.65},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.66},{&quot;2026-08-04&quot;:1.66},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.72},{&quot;2026-08-08&quot;:1.69},{&quot;2026-08-09&quot;:1.72},{&quot;2026-08-10&quot;:1.69},{&quot;2026-08-11&quot;:1.75},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.75},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.76},{&quot;2026-08-16&quot;:1.78},{&quot;2026-08-17&quot;:1.84},{&quot;2026-08-18&quot;:1.87},{&quot;2026-08-19&quot;:1.94},{&quot;2026-08-20&quot;:1.94},{&quot;2026-08-21&quot;:2.02},{&quot;2026-08-22&quot;:2.08},{&quot;2026-08-23&quot;:2.13},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.13},{&quot;2026-08-26&quot;:2.1},{&quot;2026-08-27&quot;:2.04},{&quot;2026-08-28&quot;:1.99},{&quot;2026-08-29&quot;:1.99},{&quot;2026-08-30&quot;:1.99},{&quot;2026-08-31&quot;:1.95},{&quot;2026-09-01&quot;:1.95},{&quot;2026-09-02&quot;:2.03},{&quot;2026-09-03&quot;:2.02},{&quot;2026-09-04&quot;:2.01},{&quot;2026-09-05&quot;:2.1},{&quot;2026-09-06&quot;:2.1},{&quot;2026-09-07&quot;:2.1},{&quot;2026-09-08&quot;:2.06},{&quot;2026-09-09&quot;:2.02},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.1}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Myr Retriever" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7f0149d4-0731-474a-a1c3-28c25e486c14.jpg?1783930101" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Myr Retriever" src="https://cards.scryfall.io/large/front/7/f/7f0149d4-0731-474a-a1c3-28c25e486c14.jpg?1783930101" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.34},{&quot;2026-06-14&quot;:3.45},{&quot;2026-06-15&quot;:3.45},{&quot;2026-06-16&quot;:3.5},{&quot;2026-06-17&quot;:3.56},{&quot;2026-06-18&quot;:3.44},{&quot;2026-06-19&quot;:3.56},{&quot;2026-06-20&quot;:3.57},{&quot;2026-06-21&quot;:3.57},{&quot;2026-06-22&quot;:3.47},{&quot;2026-06-23&quot;:3.46},{&quot;2026-06-24&quot;:3.46},{&quot;2026-06-25&quot;:3.58},{&quot;2026-06-26&quot;:3.59},{&quot;2026-06-27&quot;:3.59},{&quot;2026-06-28&quot;:3.6},{&quot;2026-06-29&quot;:3.55},{&quot;2026-06-30&quot;:3.55},{&quot;2026-07-01&quot;:3.55},{&quot;2026-07-02&quot;:3.31},{&quot;2026-07-03&quot;:3.31},{&quot;2026-07-04&quot;:3.31},{&quot;2026-07-05&quot;:3.16},{&quot;2026-07-06&quot;:3.16},{&quot;2026-07-07&quot;:3.19},{&quot;2026-07-08&quot;:3.23},{&quot;2026-07-09&quot;:3.19},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.36},{&quot;2026-07-12&quot;:3.36},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.29},{&quot;2026-07-15&quot;:3.29},{&quot;2026-07-16&quot;:3.29},{&quot;2026-07-17&quot;:3.29},{&quot;2026-07-18&quot;:3.39},{&quot;2026-07-19&quot;:3.39},{&quot;2026-07-20&quot;:3.37},{&quot;2026-07-21&quot;:3.5},{&quot;2026-07-22&quot;:3.5},{&quot;2026-07-23&quot;:3.54},{&quot;2026-07-24&quot;:3.55},{&quot;2026-07-25&quot;:3.55},{&quot;2026-07-26&quot;:3.62},{&quot;2026-07-27&quot;:3.62},{&quot;2026-07-28&quot;:3.62},{&quot;2026-07-29&quot;:3.55},{&quot;2026-07-30&quot;:3.55},{&quot;2026-07-31&quot;:3.52},{&quot;2026-08-01&quot;:3.55},{&quot;2026-08-02&quot;:3.48},{&quot;2026-08-03&quot;:3.4},{&quot;2026-08-04&quot;:3.4},{&quot;2026-08-05&quot;:3.4},{&quot;2026-08-07&quot;:3.38},{&quot;2026-08-08&quot;:3.38},{&quot;2026-08-09&quot;:3.38},{&quot;2026-08-10&quot;:3.57},{&quot;2026-08-11&quot;:3.57},{&quot;2026-08-12&quot;:3.68},{&quot;2026-08-13&quot;:3.57},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.43},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.46},{&quot;2026-08-19&quot;:3.46},{&quot;2026-08-20&quot;:3.46},{&quot;2026-08-21&quot;:3.46},{&quot;2026-08-22&quot;:3.3},{&quot;2026-08-23&quot;:3.27},{&quot;2026-08-24&quot;:3.36},{&quot;2026-08-25&quot;:3.36},{&quot;2026-08-26&quot;:3.36},{&quot;2026-08-27&quot;:3.36},{&quot;2026-08-28&quot;:3.46},{&quot;2026-08-29&quot;:3.46},{&quot;2026-08-30&quot;:3.51},{&quot;2026-08-31&quot;:3.51},{&quot;2026-09-01&quot;:3.51},{&quot;2026-09-02&quot;:3.28},{&quot;2026-09-03&quot;:3.28},{&quot;2026-09-04&quot;:3.39},{&quot;2026-09-05&quot;:3.43},{&quot;2026-09-06&quot;:3.46},{&quot;2026-09-07&quot;:3.46},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.4},{&quot;2026-09-10&quot;:3.4},{&quot;2026-09-11&quot;:3.35}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.32},{&quot;2026-06-14&quot;:3.26},{&quot;2026-06-15&quot;:3.41},{&quot;2026-06-16&quot;:3.41},{&quot;2026-06-17&quot;:3.32},{&quot;2026-06-18&quot;:3.09},{&quot;2026-06-19&quot;:3.25},{&quot;2026-06-20&quot;:3.05},{&quot;2026-06-21&quot;:3.45},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.81},{&quot;2026-06-24&quot;:3.93},{&quot;2026-06-25&quot;:3.89},{&quot;2026-06-26&quot;:4.25},{&quot;2026-06-27&quot;:4.24},{&quot;2026-06-28&quot;:4.05},{&quot;2026-06-29&quot;:3.98},{&quot;2026-06-30&quot;:3.9},{&quot;2026-07-01&quot;:3.63},{&quot;2026-07-02&quot;:3.53},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.54},{&quot;2026-07-05&quot;:3.67},{&quot;2026-07-06&quot;:3.76},{&quot;2026-07-07&quot;:3.77},{&quot;2026-07-08&quot;:3.8},{&quot;2026-07-09&quot;:3.53},{&quot;2026-07-10&quot;:3.61},{&quot;2026-07-11&quot;:3.42},{&quot;2026-07-12&quot;:3.37},{&quot;2026-07-13&quot;:3.03},{&quot;2026-07-14&quot;:3.42},{&quot;2026-07-15&quot;:3.34},{&quot;2026-07-16&quot;:3.42},{&quot;2026-07-17&quot;:3.59},{&quot;2026-07-18&quot;:3.66},{&quot;2026-07-19&quot;:3.91},{&quot;2026-07-20&quot;:4.24},{&quot;2026-07-21&quot;:4.44},{&quot;2026-07-22&quot;:4.12},{&quot;2026-07-23&quot;:4.0},{&quot;2026-07-24&quot;:3.92},{&quot;2026-07-25&quot;:3.78},{&quot;2026-07-26&quot;:3.76},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-28&quot;:3.41},{&quot;2026-07-29&quot;:3.04},{&quot;2026-07-30&quot;:3.05},{&quot;2026-07-31&quot;:2.92},{&quot;2026-08-01&quot;:2.92},{&quot;2026-08-02&quot;:2.92},{&quot;2026-08-03&quot;:2.8},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.97},{&quot;2026-08-07&quot;:2.92},{&quot;2026-08-08&quot;:3.02},{&quot;2026-08-09&quot;:3.88},{&quot;2026-08-10&quot;:4.16},{&quot;2026-08-11&quot;:4.2},{&quot;2026-08-12&quot;:4.15},{&quot;2026-08-13&quot;:4.15},{&quot;2026-08-14&quot;:4.2},{&quot;2026-08-15&quot;:4.21},{&quot;2026-08-16&quot;:4.15},{&quot;2026-08-17&quot;:4.28},{&quot;2026-08-18&quot;:4.28},{&quot;2026-08-19&quot;:4.0},{&quot;2026-08-20&quot;:3.8},{&quot;2026-08-21&quot;:3.57},{&quot;2026-08-22&quot;:3.57},{&quot;2026-08-23&quot;:3.47},{&quot;2026-08-24&quot;:3.43},{&quot;2026-08-25&quot;:3.32},{&quot;2026-08-26&quot;:3.62},{&quot;2026-08-27&quot;:3.62},{&quot;2026-08-28&quot;:3.73},{&quot;2026-08-29&quot;:3.73},{&quot;2026-08-30&quot;:3.55},{&quot;2026-08-31&quot;:3.68},{&quot;2026-09-01&quot;:3.7},{&quot;2026-09-02&quot;:3.64},{&quot;2026-09-03&quot;:3.66},{&quot;2026-09-04&quot;:3.66},{&quot;2026-09-05&quot;:3.53},{&quot;2026-09-06&quot;:3.58},{&quot;2026-09-07&quot;:3.59},{&quot;2026-09-08&quot;:4.0},{&quot;2026-09-09&quot;:3.95},{&quot;2026-09-10&quot;:3.95},{&quot;2026-09-11&quot;:3.95}]}"
        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="12411"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thought Vessel" src="https://cards.scryfall.io/large/front/f/5/f58ab310-cbee-4f0c-9819-a2e2121932ff.jpg?1783928744" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.66},{&quot;2026-06-14&quot;:2.66},{&quot;2026-06-15&quot;:2.66},{&quot;2026-06-16&quot;:2.74},{&quot;2026-06-17&quot;:2.74},{&quot;2026-06-18&quot;:2.74},{&quot;2026-06-19&quot;:2.74},{&quot;2026-06-20&quot;:2.72},{&quot;2026-06-21&quot;:2.73},{&quot;2026-06-22&quot;:2.74},{&quot;2026-06-23&quot;:2.75},{&quot;2026-06-24&quot;:2.75},{&quot;2026-06-25&quot;:2.74},{&quot;2026-06-26&quot;:2.74},{&quot;2026-06-27&quot;:2.74},{&quot;2026-06-28&quot;:2.74},{&quot;2026-06-29&quot;:2.75},{&quot;2026-06-30&quot;:2.75},{&quot;2026-07-01&quot;:2.75},{&quot;2026-07-02&quot;:2.75},{&quot;2026-07-03&quot;:2.75},{&quot;2026-07-04&quot;:2.75},{&quot;2026-07-05&quot;:2.75},{&quot;2026-07-06&quot;:2.75},{&quot;2026-07-07&quot;:2.81},{&quot;2026-07-08&quot;:2.81},{&quot;2026-07-09&quot;:2.81},{&quot;2026-07-10&quot;:2.8},{&quot;2026-07-11&quot;:2.87},{&quot;2026-07-12&quot;:2.87},{&quot;2026-07-13&quot;:2.87},{&quot;2026-07-14&quot;:2.87},{&quot;2026-07-15&quot;:2.87},{&quot;2026-07-16&quot;:2.87},{&quot;2026-07-17&quot;:2.87},{&quot;2026-07-18&quot;:2.87},{&quot;2026-07-19&quot;:2.84},{&quot;2026-07-20&quot;:2.84},{&quot;2026-07-21&quot;:2.84},{&quot;2026-07-22&quot;:2.84},{&quot;2026-07-23&quot;:2.85},{&quot;2026-07-24&quot;:2.96},{&quot;2026-07-25&quot;:2.96},{&quot;2026-07-26&quot;:2.96},{&quot;2026-07-27&quot;:2.96},{&quot;2026-07-28&quot;:2.98},{&quot;2026-07-29&quot;:2.98},{&quot;2026-07-30&quot;:2.96},{&quot;2026-07-31&quot;:2.96},{&quot;2026-08-01&quot;:2.96},{&quot;2026-08-02&quot;:2.96},{&quot;2026-08-03&quot;:2.96},{&quot;2026-08-04&quot;:2.95},{&quot;2026-08-05&quot;:3.0},{&quot;2026-08-07&quot;:3.0},{&quot;2026-08-08&quot;:2.94},{&quot;2026-08-09&quot;:2.94},{&quot;2026-08-10&quot;:2.92},{&quot;2026-08-11&quot;:2.92},{&quot;2026-08-12&quot;:2.92},{&quot;2026-08-13&quot;:2.92},{&quot;2026-08-14&quot;:2.96},{&quot;2026-08-15&quot;:3.05},{&quot;2026-08-16&quot;:3.05},{&quot;2026-08-17&quot;:3.05},{&quot;2026-08-18&quot;:3.05},{&quot;2026-08-19&quot;:3.11},{&quot;2026-08-20&quot;:3.11},{&quot;2026-08-21&quot;:3.11},{&quot;2026-08-22&quot;:3.11},{&quot;2026-08-23&quot;:3.0},{&quot;2026-08-24&quot;:3.0},{&quot;2026-08-25&quot;:3.0},{&quot;2026-08-26&quot;:3.0},{&quot;2026-08-27&quot;:3.0},{&quot;2026-08-28&quot;:3.0},{&quot;2026-08-29&quot;:3.0},{&quot;2026-08-30&quot;:3.0},{&quot;2026-08-31&quot;:3.05},{&quot;2026-09-01&quot;:3.05},{&quot;2026-09-02&quot;:3.05},{&quot;2026-09-03&quot;:3.05},{&quot;2026-09-04&quot;:3.05},{&quot;2026-09-05&quot;:3.05},{&quot;2026-09-06&quot;:3.05},{&quot;2026-09-07&quot;:3.05},{&quot;2026-09-08&quot;:3.05},{&quot;2026-09-09&quot;:3.05},{&quot;2026-09-10&quot;:3.07},{&quot;2026-09-11&quot;:3.07}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.08},{&quot;2026-06-14&quot;:2.93},{&quot;2026-06-15&quot;:2.9},{&quot;2026-06-16&quot;:2.81},{&quot;2026-06-17&quot;:2.93},{&quot;2026-06-18&quot;:2.94},{&quot;2026-06-19&quot;:2.95},{&quot;2026-06-20&quot;:2.98},{&quot;2026-06-21&quot;:2.98},{&quot;2026-06-22&quot;:3.08},{&quot;2026-06-23&quot;:3.08},{&quot;2026-06-24&quot;:3.11},{&quot;2026-06-25&quot;:2.95},{&quot;2026-06-26&quot;:2.88},{&quot;2026-06-27&quot;:2.9},{&quot;2026-06-28&quot;:2.9},{&quot;2026-06-29&quot;:2.92},{&quot;2026-06-30&quot;:2.96},{&quot;2026-07-01&quot;:2.96},{&quot;2026-07-02&quot;:2.88},{&quot;2026-07-03&quot;:2.72},{&quot;2026-07-04&quot;:2.6},{&quot;2026-07-05&quot;:2.46},{&quot;2026-07-06&quot;:2.47},{&quot;2026-07-07&quot;:2.57},{&quot;2026-07-08&quot;:2.56},{&quot;2026-07-09&quot;:2.57},{&quot;2026-07-10&quot;:2.64},{&quot;2026-07-11&quot;:2.63},{&quot;2026-07-12&quot;:2.71},{&quot;2026-07-13&quot;:2.83},{&quot;2026-07-14&quot;:3.08},{&quot;2026-07-15&quot;:3.08},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.17},{&quot;2026-07-18&quot;:3.12},{&quot;2026-07-19&quot;:3.09},{&quot;2026-07-20&quot;:3.05},{&quot;2026-07-21&quot;:2.93},{&quot;2026-07-22&quot;:2.7},{&quot;2026-07-23&quot;:2.7},{&quot;2026-07-24&quot;:2.69},{&quot;2026-07-25&quot;:2.76},{&quot;2026-07-26&quot;:2.89},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-28&quot;:3.09},{&quot;2026-07-29&quot;:3.11},{&quot;2026-07-30&quot;:3.21},{&quot;2026-07-31&quot;:3.25},{&quot;2026-08-01&quot;:3.3},{&quot;2026-08-02&quot;:3.26},{&quot;2026-08-03&quot;:3.22},{&quot;2026-08-04&quot;:3.13},{&quot;2026-08-05&quot;:3.13},{&quot;2026-08-07&quot;:3.01},{&quot;2026-08-08&quot;:2.99},{&quot;2026-08-09&quot;:2.8},{&quot;2026-08-10&quot;:2.86},{&quot;2026-08-11&quot;:2.89},{&quot;2026-08-12&quot;:3.05},{&quot;2026-08-13&quot;:3.14},{&quot;2026-08-14&quot;:3.36},{&quot;2026-08-15&quot;:3.25},{&quot;2026-08-16&quot;:3.19},{&quot;2026-08-17&quot;:3.22},{&quot;2026-08-18&quot;:3.07},{&quot;2026-08-19&quot;:2.99},{&quot;2026-08-20&quot;:2.99},{&quot;2026-08-21&quot;:3.02},{&quot;2026-08-22&quot;:2.99},{&quot;2026-08-23&quot;:3.0},{&quot;2026-08-24&quot;:3.12},{&quot;2026-08-25&quot;:3.29},{&quot;2026-08-26&quot;:3.3},{&quot;2026-08-27&quot;:3.3},{&quot;2026-08-28&quot;:3.27},{&quot;2026-08-29&quot;:3.27},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.25},{&quot;2026-09-01&quot;:3.25},{&quot;2026-09-02&quot;:3.27},{&quot;2026-09-03&quot;:3.24},{&quot;2026-09-04&quot;:3.21},{&quot;2026-09-05&quot;:3.16},{&quot;2026-09-06&quot;:3.07},{&quot;2026-09-07&quot;:3.12},{&quot;2026-09-08&quot;:3.17},{&quot;2026-09-09&quot;:3.17},{&quot;2026-09-10&quot;:3.19},{&quot;2026-09-11&quot;:3.24}]}"
        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="10988"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Great Furnace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/0/f0ac295e-93e4-490b-b8a3-a9794c7f56e4.jpg?1783927492" />

        <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">
            Great Furnace
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Great Furnace" src="https://cards.scryfall.io/large/front/f/0/f0ac295e-93e4-490b-b8a3-a9794c7f56e4.jpg?1783927492" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.15},{&quot;2026-06-14&quot;:6.15},{&quot;2026-06-15&quot;:6.15},{&quot;2026-06-16&quot;:6.15},{&quot;2026-06-17&quot;:6.15},{&quot;2026-06-18&quot;:5.94},{&quot;2026-06-19&quot;:5.94},{&quot;2026-06-20&quot;:5.14},{&quot;2026-06-21&quot;:4.56},{&quot;2026-06-22&quot;:4.07},{&quot;2026-06-23&quot;:3.54},{&quot;2026-06-24&quot;:3.48},{&quot;2026-06-25&quot;:3.48},{&quot;2026-06-26&quot;:3.48},{&quot;2026-06-27&quot;:3.54},{&quot;2026-06-28&quot;:3.48},{&quot;2026-06-29&quot;:3.48},{&quot;2026-06-30&quot;:3.47},{&quot;2026-07-01&quot;:3.41},{&quot;2026-07-02&quot;:3.41},{&quot;2026-07-03&quot;:3.32},{&quot;2026-07-04&quot;:3.16},{&quot;2026-07-05&quot;:3.16},{&quot;2026-07-06&quot;:3.08},{&quot;2026-07-07&quot;:3.08},{&quot;2026-07-08&quot;:3.06},{&quot;2026-07-09&quot;:3.17},{&quot;2026-07-10&quot;:3.17},{&quot;2026-07-11&quot;:3.17},{&quot;2026-07-12&quot;:3.25},{&quot;2026-07-13&quot;:3.4},{&quot;2026-07-14&quot;:3.48},{&quot;2026-07-15&quot;:3.49},{&quot;2026-07-16&quot;:3.54},{&quot;2026-07-17&quot;:3.54},{&quot;2026-07-18&quot;:3.54},{&quot;2026-07-19&quot;:3.54},{&quot;2026-07-20&quot;:3.54},{&quot;2026-07-21&quot;:3.54},{&quot;2026-07-22&quot;:3.4},{&quot;2026-07-23&quot;:3.35},{&quot;2026-07-24&quot;:3.39},{&quot;2026-07-25&quot;:3.38},{&quot;2026-07-26&quot;:3.38},{&quot;2026-07-27&quot;:3.38},{&quot;2026-07-28&quot;:3.43},{&quot;2026-07-29&quot;:3.49},{&quot;2026-07-30&quot;:3.36},{&quot;2026-07-31&quot;:3.32},{&quot;2026-08-01&quot;:3.32},{&quot;2026-08-02&quot;:3.32},{&quot;2026-08-03&quot;:3.36},{&quot;2026-08-04&quot;:3.44},{&quot;2026-08-05&quot;:3.43},{&quot;2026-08-07&quot;:3.43},{&quot;2026-08-08&quot;:3.49},{&quot;2026-08-09&quot;:3.5},{&quot;2026-08-10&quot;:3.5},{&quot;2026-08-11&quot;:3.49},{&quot;2026-08-12&quot;:3.49},{&quot;2026-08-13&quot;:3.49},{&quot;2026-08-14&quot;:3.49},{&quot;2026-08-15&quot;:3.47},{&quot;2026-08-16&quot;:3.48},{&quot;2026-08-17&quot;:3.42},{&quot;2026-08-18&quot;:3.36},{&quot;2026-08-19&quot;:3.37},{&quot;2026-08-20&quot;:3.3},{&quot;2026-08-21&quot;:3.29},{&quot;2026-08-22&quot;:3.29},{&quot;2026-08-23&quot;:3.29},{&quot;2026-08-24&quot;:3.26},{&quot;2026-08-25&quot;:3.26},{&quot;2026-08-26&quot;:3.22},{&quot;2026-08-27&quot;:3.15},{&quot;2026-08-28&quot;:3.15},{&quot;2026-08-29&quot;:3.15},{&quot;2026-08-30&quot;:3.1},{&quot;2026-08-31&quot;:3.1},{&quot;2026-09-01&quot;:3.1},{&quot;2026-09-02&quot;:3.08},{&quot;2026-09-03&quot;:3.12},{&quot;2026-09-04&quot;:3.12},{&quot;2026-09-05&quot;:3.03},{&quot;2026-09-06&quot;:3.01},{&quot;2026-09-07&quot;:3.0},{&quot;2026-09-08&quot;:3.08},{&quot;2026-09-09&quot;:3.12},{&quot;2026-09-10&quot;:3.12},{&quot;2026-09-11&quot;:3.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="10969"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Darksteel Citadel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/b/2ba7597d-6d76-45b8-b172-342999e401bd.jpg?1783927495" />

        <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">
            Darksteel Citadel
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Darksteel Citadel" src="https://cards.scryfall.io/large/front/2/b/2ba7597d-6d76-45b8-b172-342999e401bd.jpg?1783927495" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.93},{&quot;2026-06-10&quot;:3.94},{&quot;2026-06-11&quot;:3.94},{&quot;2026-06-12&quot;:3.94},{&quot;2026-06-13&quot;:3.94},{&quot;2026-06-14&quot;:3.94},{&quot;2026-06-15&quot;:3.86},{&quot;2026-06-16&quot;:3.86},{&quot;2026-06-17&quot;:3.86},{&quot;2026-06-18&quot;:3.86},{&quot;2026-06-19&quot;:3.86},{&quot;2026-06-20&quot;:3.69},{&quot;2026-06-21&quot;:3.69},{&quot;2026-06-22&quot;:3.75},{&quot;2026-06-24&quot;:3.66},{&quot;2026-06-25&quot;:3.91},{&quot;2026-06-26&quot;:3.91},{&quot;2026-06-27&quot;:3.94},{&quot;2026-06-28&quot;:3.94},{&quot;2026-06-29&quot;:4.04},{&quot;2026-06-30&quot;:3.94},{&quot;2026-07-01&quot;:3.9},{&quot;2026-07-02&quot;:3.9},{&quot;2026-07-03&quot;:3.73},{&quot;2026-07-04&quot;:3.66},{&quot;2026-07-05&quot;:3.55},{&quot;2026-07-06&quot;:3.55},{&quot;2026-07-07&quot;:3.57},{&quot;2026-07-08&quot;:3.51},{&quot;2026-07-09&quot;:3.55},{&quot;2026-07-10&quot;:3.55},{&quot;2026-07-11&quot;:3.61},{&quot;2026-07-12&quot;:3.57},{&quot;2026-07-13&quot;:3.65},{&quot;2026-07-14&quot;:3.65},{&quot;2026-07-15&quot;:3.65},{&quot;2026-07-16&quot;:3.58},{&quot;2026-07-17&quot;:3.66},{&quot;2026-07-18&quot;:3.66},{&quot;2026-07-19&quot;:3.68},{&quot;2026-07-20&quot;:3.68},{&quot;2026-07-21&quot;:3.55},{&quot;2026-07-23&quot;:3.49},{&quot;2026-07-25&quot;:3.49},{&quot;2026-07-26&quot;:3.49},{&quot;2026-07-27&quot;:3.49},{&quot;2026-07-29&quot;:3.6},{&quot;2026-07-30&quot;:3.6},{&quot;2026-07-31&quot;:3.59},{&quot;2026-08-01&quot;:3.54},{&quot;2026-08-02&quot;:3.53},{&quot;2026-08-03&quot;:3.59},{&quot;2026-08-04&quot;:3.86},{&quot;2026-08-05&quot;:3.9},{&quot;2026-08-07&quot;:3.84},{&quot;2026-08-08&quot;:3.84},{&quot;2026-08-09&quot;:3.84},{&quot;2026-08-10&quot;:3.84},{&quot;2026-08-11&quot;:3.84},{&quot;2026-08-12&quot;:3.68},{&quot;2026-08-13&quot;:3.68},{&quot;2026-08-14&quot;:3.68},{&quot;2026-08-15&quot;:3.77},{&quot;2026-08-16&quot;:3.77},{&quot;2026-08-17&quot;:3.62},{&quot;2026-08-18&quot;:3.62},{&quot;2026-08-19&quot;:3.62},{&quot;2026-08-20&quot;:3.62},{&quot;2026-08-21&quot;:3.6},{&quot;2026-08-22&quot;:3.6},{&quot;2026-08-23&quot;:3.6},{&quot;2026-08-24&quot;:3.6},{&quot;2026-08-25&quot;:3.6},{&quot;2026-08-26&quot;:3.6},{&quot;2026-08-27&quot;:3.6},{&quot;2026-08-28&quot;:3.6},{&quot;2026-08-29&quot;:3.6},{&quot;2026-08-30&quot;:3.5},{&quot;2026-08-31&quot;:3.38},{&quot;2026-09-01&quot;:3.38},{&quot;2026-09-02&quot;:3.38},{&quot;2026-09-03&quot;:3.38},{&quot;2026-09-04&quot;:3.24},{&quot;2026-09-05&quot;:3.2},{&quot;2026-09-06&quot;:3.16},{&quot;2026-09-07&quot;:3.13},{&quot;2026-09-08&quot;:3.13},{&quot;2026-09-09&quot;:3.05},{&quot;2026-09-10&quot;:3.02},{&quot;2026-09-11&quot;:3.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $2.99
          </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="Lion Sash" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/84f8ce4c-c6fc-408c-a216-33374bbfb08d.jpg?1783923752" />

        <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">
            Lion Sash
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Equipment 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-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="Lion Sash" src="https://cards.scryfall.io/large/front/8/4/84f8ce4c-c6fc-408c-a216-33374bbfb08d.jpg?1783923752" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.13},{&quot;2026-06-14&quot;:3.13},{&quot;2026-06-15&quot;:3.13},{&quot;2026-06-16&quot;:3.12},{&quot;2026-06-17&quot;:3.12},{&quot;2026-06-18&quot;:3.12},{&quot;2026-06-19&quot;:3.12},{&quot;2026-06-20&quot;:3.12},{&quot;2026-06-21&quot;:3.12},{&quot;2026-06-22&quot;:3.12},{&quot;2026-06-23&quot;:3.12},{&quot;2026-06-24&quot;:3.12},{&quot;2026-06-25&quot;:3.12},{&quot;2026-06-26&quot;:3.12},{&quot;2026-06-27&quot;:3.12},{&quot;2026-06-28&quot;:3.16},{&quot;2026-06-29&quot;:3.16},{&quot;2026-06-30&quot;:3.16},{&quot;2026-07-01&quot;:3.16},{&quot;2026-07-02&quot;:3.22},{&quot;2026-07-03&quot;:3.24},{&quot;2026-07-04&quot;:3.24},{&quot;2026-07-05&quot;:3.24},{&quot;2026-07-06&quot;:3.24},{&quot;2026-07-07&quot;:3.25},{&quot;2026-07-08&quot;:3.25},{&quot;2026-07-09&quot;:3.25},{&quot;2026-07-10&quot;:3.25},{&quot;2026-07-11&quot;:3.25},{&quot;2026-07-12&quot;:3.25},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.25},{&quot;2026-07-15&quot;:3.2},{&quot;2026-07-16&quot;:3.2},{&quot;2026-07-17&quot;:3.22},{&quot;2026-07-18&quot;:3.18},{&quot;2026-07-19&quot;:3.18},{&quot;2026-07-20&quot;:3.18},{&quot;2026-07-21&quot;:3.18},{&quot;2026-07-22&quot;:3.18},{&quot;2026-07-23&quot;:3.18},{&quot;2026-07-24&quot;:3.18},{&quot;2026-07-25&quot;:3.18},{&quot;2026-07-26&quot;:3.17},{&quot;2026-07-27&quot;:3.17},{&quot;2026-07-28&quot;:3.17},{&quot;2026-07-29&quot;:3.12},{&quot;2026-07-30&quot;:3.12},{&quot;2026-07-31&quot;:3.16},{&quot;2026-08-01&quot;:3.16},{&quot;2026-08-02&quot;:3.13},{&quot;2026-08-03&quot;:3.13},{&quot;2026-08-04&quot;:3.13},{&quot;2026-08-05&quot;:3.13},{&quot;2026-08-07&quot;:3.13},{&quot;2026-08-08&quot;:3.13},{&quot;2026-08-09&quot;:3.13},{&quot;2026-08-10&quot;:3.13},{&quot;2026-08-11&quot;:3.13},{&quot;2026-08-12&quot;:3.13},{&quot;2026-08-13&quot;:3.13},{&quot;2026-08-14&quot;:3.13},{&quot;2026-08-15&quot;:3.13},{&quot;2026-08-16&quot;:3.13},{&quot;2026-08-17&quot;:3.13},{&quot;2026-08-18&quot;:3.13},{&quot;2026-08-19&quot;:3.13},{&quot;2026-08-20&quot;:3.08},{&quot;2026-08-21&quot;:2.88},{&quot;2026-08-22&quot;:2.88},{&quot;2026-08-23&quot;:2.88},{&quot;2026-08-24&quot;:2.88},{&quot;2026-08-25&quot;:2.88},{&quot;2026-08-26&quot;:2.88},{&quot;2026-08-27&quot;:2.88},{&quot;2026-08-28&quot;:2.88},{&quot;2026-08-29&quot;:2.88},{&quot;2026-08-30&quot;:2.88},{&quot;2026-08-31&quot;:2.88},{&quot;2026-09-01&quot;:2.88},{&quot;2026-09-02&quot;:2.88},{&quot;2026-09-03&quot;:2.88},{&quot;2026-09-04&quot;:2.94},{&quot;2026-09-05&quot;:2.94},{&quot;2026-09-06&quot;:2.96},{&quot;2026-09-07&quot;:2.99},{&quot;2026-09-08&quot;:2.99},{&quot;2026-09-09&quot;:2.99},{&quot;2026-09-10&quot;:2.99},{&quot;2026-09-11&quot;:2.99}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.21},{&quot;2026-06-14&quot;:3.27},{&quot;2026-06-15&quot;:3.18},{&quot;2026-06-16&quot;:3.18},{&quot;2026-06-17&quot;:3.07},{&quot;2026-06-18&quot;:3.07},{&quot;2026-06-19&quot;:3.07},{&quot;2026-06-20&quot;:3.02},{&quot;2026-06-21&quot;:3.02},{&quot;2026-06-22&quot;:3.05},{&quot;2026-06-23&quot;:3.05},{&quot;2026-06-24&quot;:3.03},{&quot;2026-06-25&quot;:3.03},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.09},{&quot;2026-06-29&quot;:3.09},{&quot;2026-06-30&quot;:3.16},{&quot;2026-07-01&quot;:3.16},{&quot;2026-07-02&quot;:3.16},{&quot;2026-07-03&quot;:3.16},{&quot;2026-07-04&quot;:3.16},{&quot;2026-07-05&quot;:3.18},{&quot;2026-07-06&quot;:3.18},{&quot;2026-07-07&quot;:3.18},{&quot;2026-07-08&quot;:3.18},{&quot;2026-07-09&quot;:3.18},{&quot;2026-07-10&quot;:3.2},{&quot;2026-07-11&quot;:3.2},{&quot;2026-07-12&quot;:3.2},{&quot;2026-07-13&quot;:3.2},{&quot;2026-07-14&quot;:3.2},{&quot;2026-07-15&quot;:3.2},{&quot;2026-07-16&quot;:3.2},{&quot;2026-07-17&quot;:3.2},{&quot;2026-07-18&quot;:3.21},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.24},{&quot;2026-07-21&quot;:3.26},{&quot;2026-07-22&quot;:3.26},{&quot;2026-07-23&quot;:3.31},{&quot;2026-07-24&quot;:3.31},{&quot;2026-07-25&quot;:3.31},{&quot;2026-07-26&quot;:3.31},{&quot;2026-07-27&quot;:3.31},{&quot;2026-07-28&quot;:3.31},{&quot;2026-07-29&quot;:3.31},{&quot;2026-07-30&quot;:3.33},{&quot;2026-07-31&quot;:3.33},{&quot;2026-08-01&quot;:3.33},{&quot;2026-08-02&quot;:3.33},{&quot;2026-08-03&quot;:3.39},{&quot;2026-08-04&quot;:2.91},{&quot;2026-08-05&quot;:2.91},{&quot;2026-08-07&quot;:2.94},{&quot;2026-08-08&quot;:2.94},{&quot;2026-08-09&quot;:2.94},{&quot;2026-08-10&quot;:2.94},{&quot;2026-08-11&quot;:2.94},{&quot;2026-08-12&quot;:2.94},{&quot;2026-08-13&quot;:2.94},{&quot;2026-08-14&quot;:2.94},{&quot;2026-08-15&quot;:2.94},{&quot;2026-08-16&quot;:2.93},{&quot;2026-08-17&quot;:2.93},{&quot;2026-08-18&quot;:2.93},{&quot;2026-08-19&quot;:2.93},{&quot;2026-08-20&quot;:2.99},{&quot;2026-08-21&quot;:2.99},{&quot;2026-08-22&quot;:3.01},{&quot;2026-08-23&quot;:3.01},{&quot;2026-08-24&quot;:3.01},{&quot;2026-08-25&quot;:3.01},{&quot;2026-08-26&quot;:3.01},{&quot;2026-08-27&quot;:3.01},{&quot;2026-08-28&quot;:3.01},{&quot;2026-08-29&quot;:3.01},{&quot;2026-08-30&quot;:2.95},{&quot;2026-08-31&quot;:2.95},{&quot;2026-09-01&quot;:2.95},{&quot;2026-09-02&quot;:2.95},{&quot;2026-09-03&quot;:2.99},{&quot;2026-09-04&quot;:2.99},{&quot;2026-09-05&quot;:2.93},{&quot;2026-09-06&quot;:2.93},{&quot;2026-09-07&quot;:2.93},{&quot;2026-09-08&quot;:2.93},{&quot;2026-09-09&quot;:2.93},{&quot;2026-09-10&quot;:2.93},{&quot;2026-09-11&quot;:2.93}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mishra&#39;s Bauble" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/45bbbf9b-8fee-4c32-a513-02dac6ac8a39.jpg?1783930102" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mishra&#39;s Bauble" src="https://cards.scryfall.io/large/front/4/5/45bbbf9b-8fee-4c32-a513-02dac6ac8a39.jpg?1783930102" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.42},{&quot;2026-06-14&quot;:2.42},{&quot;2026-06-15&quot;:2.42},{&quot;2026-06-16&quot;:2.42},{&quot;2026-06-17&quot;:2.51},{&quot;2026-06-18&quot;:2.51},{&quot;2026-06-19&quot;:2.51},{&quot;2026-06-20&quot;:2.53},{&quot;2026-06-21&quot;:2.53},{&quot;2026-06-22&quot;:2.56},{&quot;2026-06-23&quot;:2.56},{&quot;2026-06-24&quot;:2.56},{&quot;2026-06-25&quot;:2.56},{&quot;2026-06-26&quot;:2.56},{&quot;2026-06-27&quot;:2.57},{&quot;2026-06-28&quot;:2.65},{&quot;2026-06-29&quot;:2.65},{&quot;2026-06-30&quot;:2.66},{&quot;2026-07-01&quot;:2.69},{&quot;2026-07-02&quot;:2.69},{&quot;2026-07-03&quot;:2.69},{&quot;2026-07-04&quot;:2.7},{&quot;2026-07-05&quot;:2.7},{&quot;2026-07-06&quot;:2.7},{&quot;2026-07-07&quot;:2.7},{&quot;2026-07-08&quot;:2.82},{&quot;2026-07-09&quot;:2.82},{&quot;2026-07-10&quot;:2.85},{&quot;2026-07-11&quot;:2.85},{&quot;2026-07-12&quot;:2.85},{&quot;2026-07-13&quot;:2.85},{&quot;2026-07-14&quot;:2.84},{&quot;2026-07-15&quot;:2.84},{&quot;2026-07-16&quot;:2.84},{&quot;2026-07-17&quot;:2.84},{&quot;2026-07-18&quot;:2.84},{&quot;2026-07-19&quot;:2.84},{&quot;2026-07-20&quot;:2.88},{&quot;2026-07-21&quot;:2.88},{&quot;2026-07-22&quot;:2.88},{&quot;2026-07-23&quot;:2.88},{&quot;2026-07-24&quot;:2.88},{&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;:2.97},{&quot;2026-07-29&quot;:2.93},{&quot;2026-07-30&quot;:2.93},{&quot;2026-07-31&quot;:2.93},{&quot;2026-08-01&quot;:3.03},{&quot;2026-08-02&quot;:3.03},{&quot;2026-08-03&quot;:3.03},{&quot;2026-08-04&quot;:3.03},{&quot;2026-08-05&quot;:3.03},{&quot;2026-08-07&quot;:2.98},{&quot;2026-08-08&quot;:3.02},{&quot;2026-08-09&quot;:3.02},{&quot;2026-08-10&quot;:3.02},{&quot;2026-08-11&quot;:3.02},{&quot;2026-08-12&quot;:3.0},{&quot;2026-08-13&quot;:3.0},{&quot;2026-08-14&quot;:3.0},{&quot;2026-08-15&quot;:3.01},{&quot;2026-08-16&quot;:3.01},{&quot;2026-08-17&quot;:3.01},{&quot;2026-08-18&quot;:3.01},{&quot;2026-08-19&quot;:3.01},{&quot;2026-08-20&quot;:3.01},{&quot;2026-08-21&quot;:3.01},{&quot;2026-08-22&quot;:3.01},{&quot;2026-08-23&quot;:3.01},{&quot;2026-08-24&quot;:3.02},{&quot;2026-08-25&quot;:3.02},{&quot;2026-08-26&quot;:3.02},{&quot;2026-08-27&quot;:3.02},{&quot;2026-08-28&quot;:3.02},{&quot;2026-08-29&quot;:3.02},{&quot;2026-08-30&quot;:3.02},{&quot;2026-08-31&quot;:3.02},{&quot;2026-09-01&quot;:3.02},{&quot;2026-09-02&quot;:3.03},{&quot;2026-09-03&quot;:3.03},{&quot;2026-09-04&quot;:3.02},{&quot;2026-09-05&quot;:3.02},{&quot;2026-09-06&quot;:3.0},{&quot;2026-09-07&quot;:3.02},{&quot;2026-09-08&quot;:3.02},{&quot;2026-09-09&quot;:3.02},{&quot;2026-09-10&quot;:3.02},{&quot;2026-09-11&quot;:3.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.27},{&quot;2026-06-14&quot;:2.29},{&quot;2026-06-15&quot;:2.35},{&quot;2026-06-16&quot;:2.35},{&quot;2026-06-17&quot;:2.33},{&quot;2026-06-18&quot;:2.33},{&quot;2026-06-19&quot;:2.38},{&quot;2026-06-20&quot;:2.38},{&quot;2026-06-21&quot;:2.37},{&quot;2026-06-22&quot;:2.37},{&quot;2026-06-23&quot;:2.39},{&quot;2026-06-24&quot;:2.41},{&quot;2026-06-25&quot;:2.39},{&quot;2026-06-26&quot;:2.46},{&quot;2026-06-27&quot;:2.42},{&quot;2026-06-28&quot;:2.44},{&quot;2026-06-29&quot;:2.45},{&quot;2026-06-30&quot;:2.49},{&quot;2026-07-01&quot;:2.5},{&quot;2026-07-02&quot;:2.45},{&quot;2026-07-03&quot;:2.34},{&quot;2026-07-04&quot;:2.37},{&quot;2026-07-05&quot;:2.37},{&quot;2026-07-06&quot;:2.44},{&quot;2026-07-07&quot;:2.44},{&quot;2026-07-08&quot;:2.44},{&quot;2026-07-09&quot;:2.37},{&quot;2026-07-10&quot;:2.37},{&quot;2026-07-11&quot;:2.37},{&quot;2026-07-12&quot;:2.37},{&quot;2026-07-13&quot;:2.37},{&quot;2026-07-14&quot;:2.4},{&quot;2026-07-15&quot;:2.4},{&quot;2026-07-16&quot;:2.43},{&quot;2026-07-17&quot;:2.43},{&quot;2026-07-18&quot;:2.41},{&quot;2026-07-19&quot;:2.39},{&quot;2026-07-20&quot;:2.43},{&quot;2026-07-21&quot;:2.56},{&quot;2026-07-22&quot;:2.59},{&quot;2026-07-23&quot;:2.58},{&quot;2026-07-24&quot;:2.6},{&quot;2026-07-25&quot;:2.62},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.76},{&quot;2026-07-28&quot;:2.77},{&quot;2026-07-29&quot;:2.77},{&quot;2026-07-30&quot;:2.77},{&quot;2026-07-31&quot;:2.71},{&quot;2026-08-01&quot;:2.71},{&quot;2026-08-02&quot;:2.76},{&quot;2026-08-03&quot;:2.74},{&quot;2026-08-04&quot;:2.74},{&quot;2026-08-05&quot;:2.66},{&quot;2026-08-07&quot;:2.76},{&quot;2026-08-08&quot;:2.73},{&quot;2026-08-09&quot;:2.73},{&quot;2026-08-10&quot;:2.73},{&quot;2026-08-11&quot;:2.73},{&quot;2026-08-12&quot;:2.69},{&quot;2026-08-13&quot;:2.69},{&quot;2026-08-14&quot;:2.62},{&quot;2026-08-15&quot;:2.5},{&quot;2026-08-16&quot;:2.48},{&quot;2026-08-17&quot;:2.47},{&quot;2026-08-18&quot;:2.47},{&quot;2026-08-19&quot;:2.47},{&quot;2026-08-20&quot;:2.44},{&quot;2026-08-21&quot;:2.44},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.47},{&quot;2026-08-24&quot;:2.44},{&quot;2026-08-25&quot;:2.41},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.41},{&quot;2026-08-28&quot;:2.42},{&quot;2026-08-29&quot;:2.42},{&quot;2026-08-30&quot;:2.61},{&quot;2026-08-31&quot;:2.67},{&quot;2026-09-01&quot;:2.65},{&quot;2026-09-02&quot;:2.73},{&quot;2026-09-03&quot;:2.76},{&quot;2026-09-04&quot;:2.76},{&quot;2026-09-05&quot;:2.83},{&quot;2026-09-06&quot;:2.8},{&quot;2026-09-07&quot;:2.75},{&quot;2026-09-08&quot;:2.75},{&quot;2026-09-09&quot;:2.75},{&quot;2026-09-10&quot;:2.8},{&quot;2026-09-11&quot;:2.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20771"
  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">
            Masterwork of Ingenuity
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Masterwork of Ingenuity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/af244fed-ea12-4d8c-b090-91c5de62edb8.jpg?1783930103" />

        <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">
            Masterwork of Ingenuity
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
          </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="Masterwork of Ingenuity" src="https://cards.scryfall.io/large/front/a/f/af244fed-ea12-4d8c-b090-91c5de62edb8.jpg?1783930103" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.23},{&quot;2026-06-14&quot;:4.23},{&quot;2026-06-15&quot;:4.23},{&quot;2026-06-16&quot;:4.23},{&quot;2026-06-17&quot;:4.23},{&quot;2026-06-18&quot;:4.23},{&quot;2026-06-19&quot;:4.23},{&quot;2026-06-20&quot;:4.23},{&quot;2026-06-21&quot;:4.23},{&quot;2026-06-22&quot;:4.23},{&quot;2026-06-23&quot;:4.23},{&quot;2026-06-24&quot;:4.23},{&quot;2026-06-25&quot;:4.23},{&quot;2026-06-26&quot;:4.23},{&quot;2026-06-27&quot;:4.23},{&quot;2026-06-28&quot;:4.23},{&quot;2026-06-29&quot;:4.23},{&quot;2026-06-30&quot;:4.23},{&quot;2026-07-01&quot;:4.23},{&quot;2026-07-02&quot;:4.23},{&quot;2026-07-03&quot;:4.23},{&quot;2026-07-04&quot;:4.29},{&quot;2026-07-05&quot;:4.23},{&quot;2026-07-06&quot;:4.23},{&quot;2026-07-07&quot;:4.23},{&quot;2026-07-08&quot;:4.23},{&quot;2026-07-09&quot;:4.23},{&quot;2026-07-10&quot;:4.29},{&quot;2026-07-11&quot;:4.29},{&quot;2026-07-12&quot;:4.29},{&quot;2026-07-13&quot;:4.29},{&quot;2026-07-14&quot;:4.29},{&quot;2026-07-15&quot;:4.29},{&quot;2026-07-16&quot;:4.29},{&quot;2026-07-17&quot;:4.29},{&quot;2026-07-18&quot;:4.29},{&quot;2026-07-19&quot;:4.29},{&quot;2026-07-20&quot;:4.29},{&quot;2026-07-21&quot;:4.23},{&quot;2026-07-22&quot;:4.23},{&quot;2026-07-23&quot;:4.23},{&quot;2026-07-24&quot;:4.23},{&quot;2026-07-25&quot;:4.23},{&quot;2026-07-26&quot;:4.23},{&quot;2026-07-27&quot;:4.23},{&quot;2026-07-28&quot;:4.23},{&quot;2026-07-29&quot;:4.27},{&quot;2026-07-30&quot;:4.27},{&quot;2026-07-31&quot;:4.32},{&quot;2026-08-01&quot;:4.32},{&quot;2026-08-02&quot;:4.32},{&quot;2026-08-03&quot;:4.32},{&quot;2026-08-04&quot;:4.32},{&quot;2026-08-05&quot;:4.32},{&quot;2026-08-07&quot;:4.39},{&quot;2026-08-08&quot;:4.39},{&quot;2026-08-09&quot;:4.39},{&quot;2026-08-10&quot;:4.39},{&quot;2026-08-11&quot;:4.39},{&quot;2026-08-12&quot;:4.39},{&quot;2026-08-13&quot;:4.39},{&quot;2026-08-14&quot;:4.39},{&quot;2026-08-15&quot;:4.39},{&quot;2026-08-16&quot;:4.39},{&quot;2026-08-17&quot;:4.45},{&quot;2026-08-18&quot;:4.45},{&quot;2026-08-19&quot;:4.45},{&quot;2026-08-20&quot;:4.49},{&quot;2026-08-21&quot;:4.49},{&quot;2026-08-22&quot;:4.5},{&quot;2026-08-23&quot;:4.56},{&quot;2026-08-24&quot;:4.56},{&quot;2026-08-25&quot;:4.56},{&quot;2026-08-26&quot;:4.56},{&quot;2026-08-27&quot;:4.56},{&quot;2026-08-28&quot;:4.56},{&quot;2026-08-29&quot;:4.56},{&quot;2026-08-30&quot;:4.56},{&quot;2026-08-31&quot;:4.56},{&quot;2026-09-01&quot;:4.57},{&quot;2026-09-02&quot;:4.57},{&quot;2026-09-03&quot;:4.57},{&quot;2026-09-04&quot;:4.57},{&quot;2026-09-05&quot;:4.57},{&quot;2026-09-06&quot;:4.57},{&quot;2026-09-07&quot;:4.57},{&quot;2026-09-08&quot;:4.57},{&quot;2026-09-09&quot;:4.57},{&quot;2026-09-10&quot;:4.57},{&quot;2026-09-11&quot;:4.57}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.51},{&quot;2026-06-14&quot;:2.56},{&quot;2026-06-15&quot;:2.46},{&quot;2026-06-16&quot;:2.43},{&quot;2026-06-17&quot;:2.43},{&quot;2026-06-18&quot;:2.43},{&quot;2026-06-19&quot;:2.43},{&quot;2026-06-20&quot;:2.51},{&quot;2026-06-21&quot;:2.51},{&quot;2026-06-22&quot;:2.51},{&quot;2026-06-23&quot;:2.45},{&quot;2026-06-24&quot;:2.51},{&quot;2026-06-25&quot;:2.53},{&quot;2026-06-26&quot;:2.53},{&quot;2026-06-27&quot;:2.53},{&quot;2026-06-28&quot;:2.48},{&quot;2026-06-29&quot;:2.48},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.46},{&quot;2026-07-02&quot;:2.46},{&quot;2026-07-03&quot;:2.35},{&quot;2026-07-04&quot;:2.31},{&quot;2026-07-05&quot;:2.2},{&quot;2026-07-06&quot;:2.2},{&quot;2026-07-07&quot;:2.25},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.24},{&quot;2026-07-10&quot;:2.22},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.25},{&quot;2026-07-13&quot;:2.25},{&quot;2026-07-14&quot;:2.24},{&quot;2026-07-15&quot;:2.31},{&quot;2026-07-16&quot;:2.23},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.29},{&quot;2026-07-19&quot;:2.33},{&quot;2026-07-20&quot;:2.33},{&quot;2026-07-21&quot;:2.28},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.29},{&quot;2026-07-24&quot;:2.34},{&quot;2026-07-25&quot;:2.35},{&quot;2026-07-26&quot;:2.4},{&quot;2026-07-27&quot;:2.58},{&quot;2026-07-28&quot;:2.61},{&quot;2026-07-29&quot;:2.68},{&quot;2026-07-30&quot;:2.61},{&quot;2026-07-31&quot;:2.61},{&quot;2026-08-01&quot;:2.52},{&quot;2026-08-02&quot;:2.52},{&quot;2026-08-03&quot;:2.53},{&quot;2026-08-04&quot;:2.53},{&quot;2026-08-05&quot;:2.53},{&quot;2026-08-07&quot;:2.54},{&quot;2026-08-08&quot;:2.54},{&quot;2026-08-09&quot;:2.64},{&quot;2026-08-10&quot;:2.65},{&quot;2026-08-11&quot;:2.66},{&quot;2026-08-12&quot;:2.67},{&quot;2026-08-13&quot;:2.69},{&quot;2026-08-14&quot;:2.69},{&quot;2026-08-15&quot;:2.69},{&quot;2026-08-16&quot;:2.7},{&quot;2026-08-17&quot;:2.7},{&quot;2026-08-18&quot;:2.7},{&quot;2026-08-19&quot;:2.7},{&quot;2026-08-20&quot;:2.65},{&quot;2026-08-21&quot;:2.65},{&quot;2026-08-22&quot;:2.71},{&quot;2026-08-23&quot;:2.71},{&quot;2026-08-24&quot;:2.71},{&quot;2026-08-25&quot;:2.6},{&quot;2026-08-26&quot;:2.53},{&quot;2026-08-27&quot;:2.7},{&quot;2026-08-28&quot;:2.69},{&quot;2026-08-29&quot;:2.69},{&quot;2026-08-30&quot;:2.54},{&quot;2026-08-31&quot;:2.67},{&quot;2026-09-01&quot;:2.64},{&quot;2026-09-02&quot;:2.61},{&quot;2026-09-03&quot;:2.74},{&quot;2026-09-04&quot;:2.78},{&quot;2026-09-05&quot;:2.78},{&quot;2026-09-06&quot;:2.77},{&quot;2026-09-07&quot;:2.77},{&quot;2026-09-08&quot;:2.77},{&quot;2026-09-09&quot;:2.82},{&quot;2026-09-10&quot;:2.82},{&quot;2026-09-11&quot;:2.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="42008"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/d/7d75969d-c932-4b4e-8135-61968228bc32.jpg?1783923806" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/7/d/7d75969d-c932-4b4e-8135-61968228bc32.jpg?1783923806" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.55},{&quot;2026-06-14&quot;:2.51},{&quot;2026-06-15&quot;:2.47},{&quot;2026-06-16&quot;:2.49},{&quot;2026-06-17&quot;:2.51},{&quot;2026-06-18&quot;:2.51},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.64},{&quot;2026-06-21&quot;:2.61},{&quot;2026-06-22&quot;:2.67},{&quot;2026-06-23&quot;:2.57},{&quot;2026-06-24&quot;:2.56},{&quot;2026-06-25&quot;:2.56},{&quot;2026-06-26&quot;:2.56},{&quot;2026-06-27&quot;:2.56},{&quot;2026-06-28&quot;:2.49},{&quot;2026-06-29&quot;:2.51},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.49},{&quot;2026-07-02&quot;:2.44},{&quot;2026-07-03&quot;:2.27},{&quot;2026-07-04&quot;:2.26},{&quot;2026-07-05&quot;:2.26},{&quot;2026-07-06&quot;:2.27},{&quot;2026-07-07&quot;:2.28},{&quot;2026-07-08&quot;:2.26},{&quot;2026-07-09&quot;:2.26},{&quot;2026-07-10&quot;:2.49},{&quot;2026-07-11&quot;:2.49},{&quot;2026-07-12&quot;:2.43},{&quot;2026-07-13&quot;:2.39},{&quot;2026-07-14&quot;:2.33},{&quot;2026-07-15&quot;:2.33},{&quot;2026-07-16&quot;:2.33},{&quot;2026-07-17&quot;:2.26},{&quot;2026-07-18&quot;:2.3},{&quot;2026-07-19&quot;:2.32},{&quot;2026-07-20&quot;:2.4},{&quot;2026-07-21&quot;:2.4},{&quot;2026-07-22&quot;:2.42},{&quot;2026-07-23&quot;:2.54},{&quot;2026-07-24&quot;:2.5},{&quot;2026-07-25&quot;:2.83},{&quot;2026-07-26&quot;:2.85},{&quot;2026-07-27&quot;:3.01},{&quot;2026-07-28&quot;:3.01},{&quot;2026-07-29&quot;:3.01},{&quot;2026-07-30&quot;:3.38},{&quot;2026-07-31&quot;:3.36},{&quot;2026-08-01&quot;:3.36},{&quot;2026-08-02&quot;:3.36},{&quot;2026-08-03&quot;:3.19},{&quot;2026-08-04&quot;:3.2},{&quot;2026-08-05&quot;:3.17},{&quot;2026-08-07&quot;:2.84},{&quot;2026-08-08&quot;:2.85},{&quot;2026-08-09&quot;:2.82},{&quot;2026-08-10&quot;:2.88},{&quot;2026-08-11&quot;:2.88},{&quot;2026-08-12&quot;:3.13},{&quot;2026-08-13&quot;:3.21},{&quot;2026-08-14&quot;:3.24},{&quot;2026-08-15&quot;:3.31},{&quot;2026-08-16&quot;:3.24},{&quot;2026-08-17&quot;:3.09},{&quot;2026-08-18&quot;:3.15},{&quot;2026-08-19&quot;:3.14},{&quot;2026-08-20&quot;:3.13},{&quot;2026-08-21&quot;:3.04},{&quot;2026-08-22&quot;:3.04},{&quot;2026-08-23&quot;:2.95},{&quot;2026-08-24&quot;:2.95},{&quot;2026-08-25&quot;:2.7},{&quot;2026-08-26&quot;:2.5},{&quot;2026-08-27&quot;:2.5},{&quot;2026-08-28&quot;:2.5},{&quot;2026-08-29&quot;:2.5},{&quot;2026-08-30&quot;:2.5},{&quot;2026-08-31&quot;:2.48},{&quot;2026-09-01&quot;:2.55},{&quot;2026-09-02&quot;:2.46},{&quot;2026-09-03&quot;:2.47},{&quot;2026-09-04&quot;:2.48},{&quot;2026-09-05&quot;:2.54},{&quot;2026-09-06&quot;:2.54},{&quot;2026-09-07&quot;:2.6},{&quot;2026-09-08&quot;:2.61},{&quot;2026-09-09&quot;:2.59},{&quot;2026-09-10&quot;:2.51},{&quot;2026-09-11&quot;:2.55}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.85},{&quot;2026-06-14&quot;:1.92},{&quot;2026-06-15&quot;:1.98},{&quot;2026-06-16&quot;:1.91},{&quot;2026-06-17&quot;:1.96},{&quot;2026-06-18&quot;:1.96},{&quot;2026-06-19&quot;:1.94},{&quot;2026-06-20&quot;:1.95},{&quot;2026-06-21&quot;:1.95},{&quot;2026-06-22&quot;:1.87},{&quot;2026-06-23&quot;:1.84},{&quot;2026-06-24&quot;:1.84},{&quot;2026-06-25&quot;:1.84},{&quot;2026-06-26&quot;:1.79},{&quot;2026-06-27&quot;:1.82},{&quot;2026-06-28&quot;:1.84},{&quot;2026-06-29&quot;:1.87},{&quot;2026-06-30&quot;:1.87},{&quot;2026-07-01&quot;:1.87},{&quot;2026-07-02&quot;:1.85},{&quot;2026-07-03&quot;:1.81},{&quot;2026-07-04&quot;:1.83},{&quot;2026-07-05&quot;:1.83},{&quot;2026-07-06&quot;:1.83},{&quot;2026-07-07&quot;:1.85},{&quot;2026-07-08&quot;:1.85},{&quot;2026-07-09&quot;:1.84},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.98},{&quot;2026-07-12&quot;:1.99},{&quot;2026-07-13&quot;:1.97},{&quot;2026-07-14&quot;:1.99},{&quot;2026-07-15&quot;:1.95},{&quot;2026-07-16&quot;:1.98},{&quot;2026-07-17&quot;:1.95},{&quot;2026-07-18&quot;:1.84},{&quot;2026-07-19&quot;:1.87},{&quot;2026-07-20&quot;:1.91},{&quot;2026-07-21&quot;:1.89},{&quot;2026-07-22&quot;:1.9},{&quot;2026-07-23&quot;:1.88},{&quot;2026-07-24&quot;:1.85},{&quot;2026-07-25&quot;:1.94},{&quot;2026-07-26&quot;:2.14},{&quot;2026-07-27&quot;:2.13},{&quot;2026-07-28&quot;:2.21},{&quot;2026-07-29&quot;:2.22},{&quot;2026-07-30&quot;:2.18},{&quot;2026-07-31&quot;:2.3},{&quot;2026-08-01&quot;:2.25},{&quot;2026-08-02&quot;:2.25},{&quot;2026-08-03&quot;:2.26},{&quot;2026-08-04&quot;:2.26},{&quot;2026-08-05&quot;:2.17},{&quot;2026-08-07&quot;:2.18},{&quot;2026-08-08&quot;:2.21},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.09},{&quot;2026-08-11&quot;:2.15},{&quot;2026-08-12&quot;:2.12},{&quot;2026-08-13&quot;:2.14},{&quot;2026-08-14&quot;:2.15},{&quot;2026-08-15&quot;:2.21},{&quot;2026-08-16&quot;:2.21},{&quot;2026-08-17&quot;:2.2},{&quot;2026-08-18&quot;:2.23},{&quot;2026-08-19&quot;:2.19},{&quot;2026-08-20&quot;:2.15},{&quot;2026-08-21&quot;:2.19},{&quot;2026-08-22&quot;:2.15},{&quot;2026-08-23&quot;:2.18},{&quot;2026-08-24&quot;:2.25},{&quot;2026-08-25&quot;:2.21},{&quot;2026-08-26&quot;:2.21},{&quot;2026-08-27&quot;:2.1},{&quot;2026-08-28&quot;:2.07},{&quot;2026-08-29&quot;:2.07},{&quot;2026-08-30&quot;:1.99},{&quot;2026-08-31&quot;:1.94},{&quot;2026-09-01&quot;:1.89},{&quot;2026-09-02&quot;:1.84},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.74},{&quot;2026-09-06&quot;:1.77},{&quot;2026-09-07&quot;:1.87},{&quot;2026-09-08&quot;:1.92},{&quot;2026-09-09&quot;:1.9},{&quot;2026-09-10&quot;:1.99},{&quot;2026-09-11&quot;:2.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="10172"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Losheel, Clockwork Scholar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/b/db1d67fe-bffe-45ad-af6a-cb131ddb1a12.jpg?1783927608" />

        <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">
            Losheel, Clockwork Scholar
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </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="Losheel, Clockwork Scholar" src="https://cards.scryfall.io/large/front/d/b/db1d67fe-bffe-45ad-af6a-cb131ddb1a12.jpg?1783927608" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.8},{&quot;2026-06-14&quot;:2.72},{&quot;2026-06-15&quot;:2.72},{&quot;2026-06-16&quot;:2.81},{&quot;2026-06-17&quot;:2.81},{&quot;2026-06-18&quot;:2.79},{&quot;2026-06-19&quot;:2.82},{&quot;2026-06-20&quot;:2.82},{&quot;2026-06-21&quot;:2.77},{&quot;2026-06-22&quot;:2.77},{&quot;2026-06-23&quot;:2.78},{&quot;2026-06-24&quot;:2.77},{&quot;2026-06-25&quot;:2.72},{&quot;2026-06-26&quot;:2.75},{&quot;2026-06-27&quot;:2.84},{&quot;2026-06-28&quot;:2.85},{&quot;2026-06-29&quot;:2.86},{&quot;2026-06-30&quot;:2.86},{&quot;2026-07-01&quot;:2.85},{&quot;2026-07-02&quot;:2.8},{&quot;2026-07-03&quot;:2.72},{&quot;2026-07-04&quot;:2.77},{&quot;2026-07-05&quot;:2.72},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.76},{&quot;2026-07-08&quot;:2.84},{&quot;2026-07-09&quot;:2.84},{&quot;2026-07-10&quot;:2.84},{&quot;2026-07-11&quot;:2.84},{&quot;2026-07-12&quot;:2.87},{&quot;2026-07-13&quot;:2.85},{&quot;2026-07-14&quot;:2.84},{&quot;2026-07-15&quot;:2.82},{&quot;2026-07-16&quot;:2.81},{&quot;2026-07-17&quot;:2.8},{&quot;2026-07-18&quot;:2.76},{&quot;2026-07-19&quot;:2.76},{&quot;2026-07-20&quot;:2.76},{&quot;2026-07-21&quot;:2.77},{&quot;2026-07-22&quot;:2.77},{&quot;2026-07-23&quot;:2.77},{&quot;2026-07-24&quot;:2.72},{&quot;2026-07-25&quot;:2.72},{&quot;2026-07-26&quot;:2.78},{&quot;2026-07-27&quot;:2.78},{&quot;2026-07-28&quot;:2.73},{&quot;2026-07-29&quot;:2.57},{&quot;2026-07-30&quot;:2.51},{&quot;2026-07-31&quot;:2.47},{&quot;2026-08-01&quot;:2.38},{&quot;2026-08-02&quot;:2.41},{&quot;2026-08-03&quot;:2.58},{&quot;2026-08-04&quot;:2.6},{&quot;2026-08-05&quot;:2.66},{&quot;2026-08-07&quot;:2.77},{&quot;2026-08-08&quot;:2.71},{&quot;2026-08-09&quot;:2.77},{&quot;2026-08-10&quot;:2.82},{&quot;2026-08-11&quot;:2.82},{&quot;2026-08-12&quot;:2.82},{&quot;2026-08-13&quot;:2.75},{&quot;2026-08-14&quot;:2.69},{&quot;2026-08-15&quot;:2.63},{&quot;2026-08-16&quot;:2.69},{&quot;2026-08-17&quot;:2.79},{&quot;2026-08-18&quot;:2.74},{&quot;2026-08-19&quot;:2.71},{&quot;2026-08-20&quot;:2.66},{&quot;2026-08-21&quot;:2.58},{&quot;2026-08-22&quot;:2.58},{&quot;2026-08-23&quot;:2.58},{&quot;2026-08-24&quot;:2.57},{&quot;2026-08-25&quot;:2.44},{&quot;2026-08-26&quot;:2.57},{&quot;2026-08-27&quot;:2.57},{&quot;2026-08-28&quot;:2.66},{&quot;2026-08-29&quot;:2.66},{&quot;2026-08-30&quot;:2.7},{&quot;2026-08-31&quot;:2.64},{&quot;2026-09-01&quot;:2.57},{&quot;2026-09-02&quot;:2.61},{&quot;2026-09-03&quot;:2.65},{&quot;2026-09-04&quot;:2.66},{&quot;2026-09-05&quot;:2.63},{&quot;2026-09-06&quot;:2.58},{&quot;2026-09-07&quot;:2.47},{&quot;2026-09-08&quot;:2.46},{&quot;2026-09-09&quot;:2.4},{&quot;2026-09-10&quot;:2.46},{&quot;2026-09-11&quot;:2.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20713"
  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">
            Endless Atlas
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Endless Atlas
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Endless Atlas" src="https://cards.scryfall.io/large/front/2/a/2a39fc25-f9f0-44ab-a94c-9720f8722620.jpg?1783930112" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:3.29},{&quot;2026-06-12&quot;:3.29},{&quot;2026-06-13&quot;:3.29},{&quot;2026-06-14&quot;:3.29},{&quot;2026-06-15&quot;:3.29},{&quot;2026-06-16&quot;:3.29},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.29},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.29},{&quot;2026-06-26&quot;:3.29},{&quot;2026-06-27&quot;:3.29},{&quot;2026-06-28&quot;:3.29},{&quot;2026-06-29&quot;:3.29},{&quot;2026-06-30&quot;:3.29},{&quot;2026-07-01&quot;:3.29},{&quot;2026-07-02&quot;:3.29},{&quot;2026-07-03&quot;:3.29},{&quot;2026-07-04&quot;:3.29},{&quot;2026-07-05&quot;:3.29},{&quot;2026-07-06&quot;:3.33},{&quot;2026-07-07&quot;:3.33},{&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.33},{&quot;2026-07-13&quot;:3.36},{&quot;2026-07-14&quot;:3.36},{&quot;2026-07-15&quot;:3.36},{&quot;2026-07-16&quot;:3.36},{&quot;2026-07-17&quot;:3.38},{&quot;2026-07-18&quot;:3.38},{&quot;2026-07-19&quot;:3.38},{&quot;2026-07-20&quot;:3.43},{&quot;2026-07-21&quot;:3.43},{&quot;2026-07-23&quot;:3.43},{&quot;2026-07-25&quot;:3.48},{&quot;2026-07-26&quot;:3.48},{&quot;2026-07-27&quot;:3.48},{&quot;2026-07-28&quot;:3.52},{&quot;2026-07-29&quot;:3.52},{&quot;2026-07-30&quot;:3.52},{&quot;2026-07-31&quot;:3.52},{&quot;2026-08-01&quot;:3.52},{&quot;2026-08-02&quot;:3.52},{&quot;2026-08-03&quot;:3.26},{&quot;2026-08-04&quot;:3.21},{&quot;2026-08-05&quot;:3.21},{&quot;2026-08-07&quot;:3.21},{&quot;2026-08-08&quot;:3.21},{&quot;2026-08-09&quot;:3.21},{&quot;2026-08-10&quot;:3.21},{&quot;2026-08-11&quot;:3.21},{&quot;2026-08-12&quot;:3.21},{&quot;2026-08-13&quot;:3.21},{&quot;2026-08-14&quot;:3.21},{&quot;2026-08-15&quot;:3.21},{&quot;2026-08-16&quot;:3.21},{&quot;2026-08-17&quot;:3.21},{&quot;2026-08-18&quot;:3.21},{&quot;2026-08-19&quot;:3.25},{&quot;2026-08-20&quot;:3.25},{&quot;2026-08-21&quot;:3.25},{&quot;2026-08-22&quot;:3.3},{&quot;2026-08-23&quot;:3.3},{&quot;2026-08-24&quot;:3.35},{&quot;2026-08-25&quot;:3.35},{&quot;2026-08-26&quot;:3.35},{&quot;2026-08-27&quot;:3.35},{&quot;2026-08-28&quot;:3.35},{&quot;2026-08-29&quot;:3.35},{&quot;2026-08-30&quot;:3.35},{&quot;2026-08-31&quot;:3.35},{&quot;2026-09-01&quot;:3.35},{&quot;2026-09-02&quot;:3.35},{&quot;2026-09-03&quot;:3.41},{&quot;2026-09-04&quot;:3.41},{&quot;2026-09-05&quot;:3.48},{&quot;2026-09-06&quot;:3.48},{&quot;2026-09-07&quot;:3.48},{&quot;2026-09-08&quot;:3.48},{&quot;2026-09-09&quot;:3.48},{&quot;2026-09-10&quot;:3.48},{&quot;2026-09-11&quot;:3.48}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.68},{&quot;2026-06-12&quot;:2.68},{&quot;2026-06-13&quot;:2.68},{&quot;2026-06-14&quot;:2.68},{&quot;2026-06-15&quot;:2.68},{&quot;2026-06-16&quot;:2.68},{&quot;2026-06-17&quot;:2.73},{&quot;2026-06-18&quot;:2.73},{&quot;2026-06-19&quot;:2.8},{&quot;2026-06-20&quot;:2.8},{&quot;2026-06-21&quot;:2.8},{&quot;2026-06-22&quot;:2.8},{&quot;2026-06-23&quot;:2.8},{&quot;2026-06-24&quot;:2.8},{&quot;2026-06-25&quot;:2.71},{&quot;2026-06-26&quot;:2.62},{&quot;2026-06-27&quot;:2.71},{&quot;2026-06-28&quot;:2.72},{&quot;2026-06-29&quot;:2.77},{&quot;2026-06-30&quot;:2.77},{&quot;2026-07-01&quot;:2.81},{&quot;2026-07-02&quot;:2.81},{&quot;2026-07-03&quot;:2.77},{&quot;2026-07-04&quot;:2.77},{&quot;2026-07-05&quot;:2.77},{&quot;2026-07-06&quot;:2.78},{&quot;2026-07-07&quot;:2.75},{&quot;2026-07-08&quot;:2.74},{&quot;2026-07-09&quot;:2.74},{&quot;2026-07-10&quot;:2.74},{&quot;2026-07-11&quot;:2.74},{&quot;2026-07-12&quot;:2.74},{&quot;2026-07-13&quot;:2.65},{&quot;2026-07-14&quot;:2.65},{&quot;2026-07-15&quot;:2.62},{&quot;2026-07-16&quot;:2.68},{&quot;2026-07-17&quot;:2.68},{&quot;2026-07-18&quot;:2.68},{&quot;2026-07-19&quot;:2.67},{&quot;2026-07-20&quot;:2.67},{&quot;2026-07-21&quot;:2.68},{&quot;2026-07-23&quot;:2.68},{&quot;2026-07-25&quot;:2.68},{&quot;2026-07-26&quot;:2.64},{&quot;2026-07-27&quot;:2.64},{&quot;2026-07-28&quot;:2.59},{&quot;2026-07-29&quot;:2.56},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.58},{&quot;2026-08-01&quot;:2.58},{&quot;2026-08-02&quot;:2.57},{&quot;2026-08-03&quot;:2.57},{&quot;2026-08-04&quot;:2.62},{&quot;2026-08-05&quot;:2.62},{&quot;2026-08-07&quot;:2.58},{&quot;2026-08-08&quot;:2.55},{&quot;2026-08-09&quot;:2.55},{&quot;2026-08-10&quot;:2.55},{&quot;2026-08-11&quot;:2.56},{&quot;2026-08-12&quot;:2.54},{&quot;2026-08-13&quot;:2.54},{&quot;2026-08-14&quot;:2.54},{&quot;2026-08-15&quot;:2.54},{&quot;2026-08-16&quot;:2.5},{&quot;2026-08-17&quot;:2.5},{&quot;2026-08-18&quot;:2.5},{&quot;2026-08-19&quot;:2.49},{&quot;2026-08-20&quot;:2.49},{&quot;2026-08-21&quot;:2.49},{&quot;2026-08-22&quot;:2.49},{&quot;2026-08-23&quot;:2.49},{&quot;2026-08-24&quot;:2.49},{&quot;2026-08-25&quot;:2.49},{&quot;2026-08-26&quot;:2.47},{&quot;2026-08-27&quot;:2.47},{&quot;2026-08-28&quot;:2.49},{&quot;2026-08-29&quot;:2.49},{&quot;2026-08-30&quot;:2.46},{&quot;2026-08-31&quot;:2.46},{&quot;2026-09-01&quot;:2.46},{&quot;2026-09-02&quot;:2.41},{&quot;2026-09-03&quot;:2.37},{&quot;2026-09-04&quot;:2.34},{&quot;2026-09-05&quot;:2.34},{&quot;2026-09-06&quot;:2.34},{&quot;2026-09-07&quot;:2.34},{&quot;2026-09-08&quot;:2.31},{&quot;2026-09-09&quot;:2.31},{&quot;2026-09-10&quot;:2.28},{&quot;2026-09-11&quot;:2.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Archaeomancer&#39;s Map" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/0/703d0bdc-01a0-4ba8-8536-e7425dfb3b1f.jpg?1783927609" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></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="Archaeomancer&#39;s Map" src="https://cards.scryfall.io/large/front/7/0/703d0bdc-01a0-4ba8-8536-e7425dfb3b1f.jpg?1783927609" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.1},{&quot;2026-06-14&quot;:4.1},{&quot;2026-06-15&quot;:3.88},{&quot;2026-06-16&quot;:3.48},{&quot;2026-06-17&quot;:3.48},{&quot;2026-06-18&quot;:3.39},{&quot;2026-06-19&quot;:3.25},{&quot;2026-06-20&quot;:3.1},{&quot;2026-06-21&quot;:2.91},{&quot;2026-06-22&quot;:2.92},{&quot;2026-06-23&quot;:2.92},{&quot;2026-06-24&quot;:2.92},{&quot;2026-06-25&quot;:2.92},{&quot;2026-06-26&quot;:2.87},{&quot;2026-06-27&quot;:2.87},{&quot;2026-06-28&quot;:2.86},{&quot;2026-06-29&quot;:2.87},{&quot;2026-06-30&quot;:2.86},{&quot;2026-07-01&quot;:2.86},{&quot;2026-07-02&quot;:2.86},{&quot;2026-07-03&quot;:2.84},{&quot;2026-07-04&quot;:2.79},{&quot;2026-07-05&quot;:2.74},{&quot;2026-07-06&quot;:2.69},{&quot;2026-07-07&quot;:2.72},{&quot;2026-07-08&quot;:2.63},{&quot;2026-07-09&quot;:2.59},{&quot;2026-07-10&quot;:2.58},{&quot;2026-07-11&quot;:2.6},{&quot;2026-07-12&quot;:2.6},{&quot;2026-07-13&quot;:2.59},{&quot;2026-07-14&quot;:2.59},{&quot;2026-07-15&quot;:2.54},{&quot;2026-07-16&quot;:2.52},{&quot;2026-07-17&quot;:2.5},{&quot;2026-07-18&quot;:2.54},{&quot;2026-07-19&quot;:2.54},{&quot;2026-07-20&quot;:2.54},{&quot;2026-07-21&quot;:2.49},{&quot;2026-07-22&quot;:2.49},{&quot;2026-07-23&quot;:2.49},{&quot;2026-07-24&quot;:2.47},{&quot;2026-07-25&quot;:2.4},{&quot;2026-07-26&quot;:2.39},{&quot;2026-07-27&quot;:2.39},{&quot;2026-07-28&quot;:2.32},{&quot;2026-07-29&quot;:2.3},{&quot;2026-07-30&quot;:2.29},{&quot;2026-07-31&quot;:2.34},{&quot;2026-08-01&quot;:2.45},{&quot;2026-08-02&quot;:2.49},{&quot;2026-08-03&quot;:2.56},{&quot;2026-08-04&quot;:2.64},{&quot;2026-08-05&quot;:2.67},{&quot;2026-08-07&quot;:2.65},{&quot;2026-08-08&quot;:2.65},{&quot;2026-08-09&quot;:2.63},{&quot;2026-08-10&quot;:2.6},{&quot;2026-08-11&quot;:2.6},{&quot;2026-08-12&quot;:2.6},{&quot;2026-08-13&quot;:2.54},{&quot;2026-08-14&quot;:2.51},{&quot;2026-08-15&quot;:2.47},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.41},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.55},{&quot;2026-08-20&quot;:2.55},{&quot;2026-08-21&quot;:2.52},{&quot;2026-08-22&quot;:2.52},{&quot;2026-08-23&quot;:2.58},{&quot;2026-08-24&quot;:2.53},{&quot;2026-08-25&quot;:2.53},{&quot;2026-08-26&quot;:2.53},{&quot;2026-08-27&quot;:2.53},{&quot;2026-08-28&quot;:2.51},{&quot;2026-08-29&quot;:2.51},{&quot;2026-08-30&quot;:2.56},{&quot;2026-08-31&quot;:2.57},{&quot;2026-09-01&quot;:2.54},{&quot;2026-09-02&quot;:2.45},{&quot;2026-09-03&quot;:2.38},{&quot;2026-09-04&quot;:2.36},{&quot;2026-09-05&quot;:2.36},{&quot;2026-09-06&quot;:2.36},{&quot;2026-09-07&quot;:2.11},{&quot;2026-09-08&quot;:2.25},{&quot;2026-09-09&quot;:2.27},{&quot;2026-09-10&quot;:2.18},{&quot;2026-09-11&quot;:2.18}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.09
          </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="Sculpting Steel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/7/7752f944-9e03-4604-b330-0c0aeee2d627.jpg?1783927507" />

        <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">
            Sculpting Steel
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sculpting Steel" src="https://cards.scryfall.io/large/front/7/7/7752f944-9e03-4604-b330-0c0aeee2d627.jpg?1783927507" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.95},{&quot;2026-06-11&quot;:1.94},{&quot;2026-06-12&quot;:1.92},{&quot;2026-06-13&quot;:2.09},{&quot;2026-06-14&quot;:2.17},{&quot;2026-06-15&quot;:2.17},{&quot;2026-06-16&quot;:2.17},{&quot;2026-06-17&quot;:2.17},{&quot;2026-06-18&quot;:2.17},{&quot;2026-06-19&quot;:2.15},{&quot;2026-06-20&quot;:2.16},{&quot;2026-06-21&quot;:2.19},{&quot;2026-06-22&quot;:2.32},{&quot;2026-06-23&quot;:2.32},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.27},{&quot;2026-06-26&quot;:2.27},{&quot;2026-06-27&quot;:2.29},{&quot;2026-06-28&quot;:2.32},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.32},{&quot;2026-07-01&quot;:2.35},{&quot;2026-07-02&quot;:2.23},{&quot;2026-07-03&quot;:2.23},{&quot;2026-07-04&quot;:2.23},{&quot;2026-07-05&quot;:2.23},{&quot;2026-07-06&quot;:2.23},{&quot;2026-07-07&quot;:2.24},{&quot;2026-07-08&quot;:2.13},{&quot;2026-07-09&quot;:2.13},{&quot;2026-07-10&quot;:2.13},{&quot;2026-07-11&quot;:2.02},{&quot;2026-07-12&quot;:1.95},{&quot;2026-07-13&quot;:1.94},{&quot;2026-07-14&quot;:1.94},{&quot;2026-07-15&quot;:2.0},{&quot;2026-07-16&quot;:1.92},{&quot;2026-07-17&quot;:1.9},{&quot;2026-07-18&quot;:1.89},{&quot;2026-07-19&quot;:1.95},{&quot;2026-07-20&quot;:1.95},{&quot;2026-07-21&quot;:1.96},{&quot;2026-07-23&quot;:1.95},{&quot;2026-07-25&quot;:1.93},{&quot;2026-07-26&quot;:1.95},{&quot;2026-07-27&quot;:1.94},{&quot;2026-07-29&quot;:1.96},{&quot;2026-07-30&quot;:1.95},{&quot;2026-07-31&quot;:1.97},{&quot;2026-08-01&quot;:1.97},{&quot;2026-08-02&quot;:1.98},{&quot;2026-08-03&quot;:1.98},{&quot;2026-08-04&quot;:1.99},{&quot;2026-08-05&quot;:2.0},{&quot;2026-08-07&quot;:2.01},{&quot;2026-08-08&quot;:2.07},{&quot;2026-08-09&quot;:2.07},{&quot;2026-08-10&quot;:2.06},{&quot;2026-08-11&quot;:2.06},{&quot;2026-08-12&quot;:2.09},{&quot;2026-08-13&quot;:2.09},{&quot;2026-08-14&quot;:2.09},{&quot;2026-08-15&quot;:2.08},{&quot;2026-08-16&quot;:2.09},{&quot;2026-08-17&quot;:2.04},{&quot;2026-08-18&quot;:2.04},{&quot;2026-08-19&quot;:2.05},{&quot;2026-08-20&quot;:2.05},{&quot;2026-08-21&quot;:2.0},{&quot;2026-08-22&quot;:2.0},{&quot;2026-08-23&quot;:1.97},{&quot;2026-08-24&quot;:1.97},{&quot;2026-08-25&quot;:1.97},{&quot;2026-08-26&quot;:1.99},{&quot;2026-08-27&quot;:2.02},{&quot;2026-08-28&quot;:2.08},{&quot;2026-08-29&quot;:2.08},{&quot;2026-08-30&quot;:2.12},{&quot;2026-08-31&quot;:2.13},{&quot;2026-09-01&quot;:2.13},{&quot;2026-09-02&quot;:2.12},{&quot;2026-09-03&quot;:2.12},{&quot;2026-09-04&quot;:2.14},{&quot;2026-09-05&quot;:2.14},{&quot;2026-09-06&quot;:2.13},{&quot;2026-09-07&quot;:2.13},{&quot;2026-09-08&quot;:2.13},{&quot;2026-09-09&quot;:2.12},{&quot;2026-09-10&quot;:2.08},{&quot;2026-09-11&quot;:2.09}]}"
        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="10905"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/c/4cbc6901-6a4a-4d0a-83ea-7eefa3b35021.jpg?1783927506" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/4/c/4cbc6901-6a4a-4d0a-83ea-7eefa3b35021.jpg?1783927506" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Expedition Map" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/5/551c0a45-9515-4e51-84e5-79703832a661.jpg?1783930109" />

        <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">
            Expedition Map
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Expedition Map" src="https://cards.scryfall.io/large/front/5/5/551c0a45-9515-4e51-84e5-79703832a661.jpg?1783930109" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.72},{&quot;2026-06-12&quot;:1.75},{&quot;2026-06-13&quot;:1.75},{&quot;2026-06-14&quot;:1.75},{&quot;2026-06-15&quot;:1.76},{&quot;2026-06-16&quot;:1.76},{&quot;2026-06-17&quot;:1.74},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.81},{&quot;2026-06-22&quot;:1.81},{&quot;2026-06-23&quot;:1.93},{&quot;2026-06-24&quot;:1.91},{&quot;2026-06-25&quot;:1.91},{&quot;2026-06-26&quot;:1.96},{&quot;2026-06-27&quot;:1.96},{&quot;2026-06-28&quot;:1.96},{&quot;2026-06-29&quot;:1.96},{&quot;2026-06-30&quot;:1.96},{&quot;2026-07-01&quot;:1.96},{&quot;2026-07-02&quot;:1.96},{&quot;2026-07-03&quot;:1.96},{&quot;2026-07-04&quot;:1.94},{&quot;2026-07-05&quot;:1.93},{&quot;2026-07-06&quot;:2.04},{&quot;2026-07-07&quot;:2.04},{&quot;2026-07-08&quot;:2.04},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.36},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.52},{&quot;2026-07-13&quot;:2.52},{&quot;2026-07-14&quot;:2.52},{&quot;2026-07-15&quot;:2.54},{&quot;2026-07-16&quot;:2.54},{&quot;2026-07-17&quot;:2.54},{&quot;2026-07-18&quot;:2.59},{&quot;2026-07-19&quot;:2.59},{&quot;2026-07-20&quot;:2.59},{&quot;2026-07-21&quot;:2.53},{&quot;2026-07-23&quot;:2.58},{&quot;2026-07-25&quot;:2.54},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.82},{&quot;2026-07-28&quot;:2.81},{&quot;2026-07-29&quot;:2.8},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.68},{&quot;2026-08-01&quot;:2.68},{&quot;2026-08-02&quot;:2.64},{&quot;2026-08-03&quot;:2.89},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.8},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:2.8},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.74},{&quot;2026-08-11&quot;:2.61},{&quot;2026-08-12&quot;:2.47},{&quot;2026-08-13&quot;:2.58},{&quot;2026-08-14&quot;:2.86},{&quot;2026-08-15&quot;:2.86},{&quot;2026-08-16&quot;:2.79},{&quot;2026-08-17&quot;:2.79},{&quot;2026-08-18&quot;:2.79},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.16},{&quot;2026-08-23&quot;:3.16},{&quot;2026-08-24&quot;:3.16},{&quot;2026-08-25&quot;:3.13},{&quot;2026-08-26&quot;:3.13},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:3.13},{&quot;2026-08-29&quot;:3.13},{&quot;2026-08-30&quot;:3.13},{&quot;2026-08-31&quot;:3.13},{&quot;2026-09-01&quot;:3.13},{&quot;2026-09-02&quot;:3.13},{&quot;2026-09-03&quot;:2.86},{&quot;2026-09-04&quot;:3.04},{&quot;2026-09-05&quot;:3.15},{&quot;2026-09-06&quot;:3.28},{&quot;2026-09-07&quot;:3.16},{&quot;2026-09-08&quot;:3.16},{&quot;2026-09-09&quot;:3.16},{&quot;2026-09-10&quot;:3.13},{&quot;2026-09-11&quot;:3.13}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.4},{&quot;2026-06-12&quot;:1.28},{&quot;2026-06-13&quot;:1.24},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.23},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.22},{&quot;2026-06-18&quot;:1.15},{&quot;2026-06-19&quot;:1.24},{&quot;2026-06-20&quot;:1.22},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.3},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.36},{&quot;2026-06-27&quot;:1.37},{&quot;2026-06-28&quot;:1.37},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.38},{&quot;2026-07-02&quot;:1.65},{&quot;2026-07-03&quot;:1.69},{&quot;2026-07-04&quot;:1.69},{&quot;2026-07-05&quot;:1.69},{&quot;2026-07-06&quot;:1.71},{&quot;2026-07-07&quot;:1.72},{&quot;2026-07-08&quot;:1.85},{&quot;2026-07-09&quot;:1.93},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.8},{&quot;2026-07-13&quot;:1.81},{&quot;2026-07-14&quot;:1.8},{&quot;2026-07-15&quot;:1.91},{&quot;2026-07-16&quot;:1.92},{&quot;2026-07-17&quot;:1.86},{&quot;2026-07-18&quot;:1.92},{&quot;2026-07-19&quot;:1.88},{&quot;2026-07-20&quot;:1.82},{&quot;2026-07-21&quot;:1.82},{&quot;2026-07-23&quot;:1.85},{&quot;2026-07-25&quot;:1.76},{&quot;2026-07-26&quot;:1.76},{&quot;2026-07-27&quot;:1.7},{&quot;2026-07-28&quot;:1.7},{&quot;2026-07-29&quot;:1.62},{&quot;2026-07-30&quot;:1.59},{&quot;2026-07-31&quot;:1.64},{&quot;2026-08-01&quot;:1.64},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.61},{&quot;2026-08-04&quot;:1.61},{&quot;2026-08-05&quot;:1.61},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.75},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.71},{&quot;2026-08-11&quot;:1.74},{&quot;2026-08-12&quot;:1.73},{&quot;2026-08-13&quot;:1.68},{&quot;2026-08-14&quot;:1.89},{&quot;2026-08-15&quot;:1.89},{&quot;2026-08-16&quot;:1.75},{&quot;2026-08-17&quot;:1.7},{&quot;2026-08-18&quot;:1.75},{&quot;2026-08-19&quot;:1.71},{&quot;2026-08-20&quot;:1.71},{&quot;2026-08-21&quot;:1.71},{&quot;2026-08-22&quot;:1.86},{&quot;2026-08-23&quot;:1.77},{&quot;2026-08-24&quot;:1.78},{&quot;2026-08-25&quot;:1.76},{&quot;2026-08-26&quot;:1.76},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.92},{&quot;2026-08-29&quot;:1.92},{&quot;2026-08-30&quot;:1.89},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.76},{&quot;2026-09-02&quot;:1.71},{&quot;2026-09-03&quot;:1.68},{&quot;2026-09-04&quot;:1.61},{&quot;2026-09-05&quot;:1.76},{&quot;2026-09-06&quot;:1.84},{&quot;2026-09-07&quot;:1.82},{&quot;2026-09-08&quot;:1.89},{&quot;2026-09-09&quot;:1.89},{&quot;2026-09-10&quot;:1.77},{&quot;2026-09-11&quot;:1.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Buried Ruin" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/a/da65afdc-a994-44cb-83f9-6e7f0f3ab2f1.jpg?1783930087" />

        <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">
            Buried Ruin
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Buried Ruin" src="https://cards.scryfall.io/large/front/d/a/da65afdc-a994-44cb-83f9-6e7f0f3ab2f1.jpg?1783930087" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.63},{&quot;2026-06-14&quot;:2.63},{&quot;2026-06-15&quot;:2.68},{&quot;2026-06-16&quot;:2.68},{&quot;2026-06-17&quot;:2.71},{&quot;2026-06-18&quot;:2.78},{&quot;2026-06-19&quot;:2.78},{&quot;2026-06-20&quot;:2.78},{&quot;2026-06-21&quot;:2.77},{&quot;2026-06-22&quot;:2.77},{&quot;2026-06-23&quot;:2.81},{&quot;2026-06-24&quot;:2.9},{&quot;2026-06-25&quot;:2.99},{&quot;2026-06-26&quot;:2.99},{&quot;2026-06-27&quot;:3.01},{&quot;2026-06-28&quot;:3.02},{&quot;2026-06-29&quot;:3.02},{&quot;2026-06-30&quot;:3.04},{&quot;2026-07-01&quot;:3.0},{&quot;2026-07-02&quot;:3.0},{&quot;2026-07-03&quot;:3.06},{&quot;2026-07-04&quot;:3.06},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.09},{&quot;2026-07-07&quot;:3.09},{&quot;2026-07-08&quot;:3.08},{&quot;2026-07-09&quot;:3.08},{&quot;2026-07-10&quot;:3.09},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.11},{&quot;2026-07-14&quot;:3.16},{&quot;2026-07-15&quot;:3.16},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.19},{&quot;2026-07-18&quot;:3.31},{&quot;2026-07-19&quot;:3.31},{&quot;2026-07-20&quot;:3.31},{&quot;2026-07-21&quot;:3.26},{&quot;2026-07-22&quot;:3.31},{&quot;2026-07-23&quot;:3.31},{&quot;2026-07-24&quot;:3.31},{&quot;2026-07-25&quot;:3.31},{&quot;2026-07-26&quot;:3.32},{&quot;2026-07-27&quot;:3.24},{&quot;2026-07-28&quot;:3.33},{&quot;2026-07-29&quot;:3.41},{&quot;2026-07-30&quot;:3.41},{&quot;2026-07-31&quot;:3.41},{&quot;2026-08-01&quot;:3.41},{&quot;2026-08-02&quot;:3.46},{&quot;2026-08-03&quot;:3.46},{&quot;2026-08-04&quot;:3.46},{&quot;2026-08-05&quot;:3.46},{&quot;2026-08-07&quot;:3.53},{&quot;2026-08-08&quot;:3.59},{&quot;2026-08-09&quot;:3.59},{&quot;2026-08-10&quot;:3.59},{&quot;2026-08-11&quot;:3.63},{&quot;2026-08-12&quot;:3.63},{&quot;2026-08-13&quot;:3.63},{&quot;2026-08-14&quot;:3.63},{&quot;2026-08-15&quot;:3.63},{&quot;2026-08-16&quot;:3.63},{&quot;2026-08-17&quot;:3.66},{&quot;2026-08-18&quot;:3.64},{&quot;2026-08-19&quot;:3.66},{&quot;2026-08-20&quot;:3.66},{&quot;2026-08-21&quot;:3.66},{&quot;2026-08-22&quot;:3.66},{&quot;2026-08-23&quot;:3.63},{&quot;2026-08-24&quot;:3.63},{&quot;2026-08-25&quot;:3.59},{&quot;2026-08-26&quot;:3.65},{&quot;2026-08-27&quot;:3.65},{&quot;2026-08-28&quot;:3.65},{&quot;2026-08-29&quot;:3.65},{&quot;2026-08-30&quot;:3.65},{&quot;2026-08-31&quot;:3.65},{&quot;2026-09-01&quot;:3.68},{&quot;2026-09-02&quot;:3.68},{&quot;2026-09-03&quot;:3.63},{&quot;2026-09-04&quot;:3.64},{&quot;2026-09-05&quot;:3.55},{&quot;2026-09-06&quot;:3.55},{&quot;2026-09-07&quot;:3.55},{&quot;2026-09-08&quot;:3.48},{&quot;2026-09-09&quot;:3.59},{&quot;2026-09-10&quot;:3.59},{&quot;2026-09-11&quot;:3.51}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.65},{&quot;2026-06-14&quot;:1.79},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.7},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.67},{&quot;2026-06-19&quot;:1.67},{&quot;2026-06-20&quot;:1.67},{&quot;2026-06-21&quot;:1.67},{&quot;2026-06-22&quot;:1.69},{&quot;2026-06-23&quot;:1.75},{&quot;2026-06-24&quot;:1.8},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.78},{&quot;2026-06-28&quot;:1.72},{&quot;2026-06-29&quot;:1.65},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.74},{&quot;2026-07-02&quot;:1.74},{&quot;2026-07-03&quot;:1.66},{&quot;2026-07-04&quot;:1.64},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.57},{&quot;2026-07-07&quot;:1.54},{&quot;2026-07-08&quot;:1.54},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.49},{&quot;2026-07-11&quot;:1.49},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.55},{&quot;2026-07-14&quot;:1.48},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.41},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.46},{&quot;2026-07-22&quot;:1.48},{&quot;2026-07-23&quot;:1.49},{&quot;2026-07-24&quot;:1.49},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.76},{&quot;2026-07-28&quot;:1.76},{&quot;2026-07-29&quot;:1.79},{&quot;2026-07-30&quot;:1.83},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.8},{&quot;2026-08-02&quot;:1.83},{&quot;2026-08-03&quot;:1.82},{&quot;2026-08-04&quot;:1.82},{&quot;2026-08-05&quot;:1.85},{&quot;2026-08-07&quot;:1.9},{&quot;2026-08-08&quot;:1.89},{&quot;2026-08-09&quot;:1.89},{&quot;2026-08-10&quot;:1.92},{&quot;2026-08-11&quot;:1.92},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.7},{&quot;2026-08-14&quot;:1.7},{&quot;2026-08-15&quot;:1.7},{&quot;2026-08-16&quot;:1.7},{&quot;2026-08-17&quot;:1.78},{&quot;2026-08-18&quot;:1.89},{&quot;2026-08-19&quot;:1.89},{&quot;2026-08-20&quot;:1.89},{&quot;2026-08-21&quot;:1.85},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.95},{&quot;2026-08-24&quot;:1.86},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.79},{&quot;2026-08-27&quot;:1.81},{&quot;2026-08-28&quot;:1.78},{&quot;2026-08-29&quot;:1.78},{&quot;2026-08-30&quot;:1.8},{&quot;2026-08-31&quot;:1.74},{&quot;2026-09-01&quot;:1.74},{&quot;2026-09-02&quot;:1.75},{&quot;2026-09-03&quot;:1.78},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.7},{&quot;2026-09-06&quot;:1.69},{&quot;2026-09-07&quot;:1.77},{&quot;2026-09-08&quot;:1.72},{&quot;2026-09-09&quot;:1.79},{&quot;2026-09-10&quot;:1.74},{&quot;2026-09-11&quot;:1.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53434"
  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">
            Organic Extinction
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Organic Extinction
        </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-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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="Organic Extinction" src="https://cards.scryfall.io/large/front/1/f/1f8761b6-784f-4b64-bbb2-6062f289cf6c.jpg?1783923982" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.67
          </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="Scrap Trawler" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/f/bf1e1b54-2f97-4d33-807a-99ca38f21777.jpg?1783927507" />

        <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">
            Scrap Trawler
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scrap Trawler" src="https://cards.scryfall.io/large/front/b/f/bf1e1b54-2f97-4d33-807a-99ca38f21777.jpg?1783927507" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.73},{&quot;2026-06-13&quot;:1.76},{&quot;2026-06-14&quot;:1.74},{&quot;2026-06-15&quot;:1.75},{&quot;2026-06-16&quot;:1.73},{&quot;2026-06-17&quot;:1.75},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.73},{&quot;2026-06-21&quot;:1.78},{&quot;2026-06-22&quot;:1.78},{&quot;2026-06-23&quot;:1.78},{&quot;2026-06-24&quot;:1.77},{&quot;2026-06-25&quot;:1.77},{&quot;2026-06-26&quot;:1.78},{&quot;2026-06-27&quot;:1.83},{&quot;2026-06-28&quot;:1.83},{&quot;2026-06-29&quot;:1.79},{&quot;2026-06-30&quot;:1.79},{&quot;2026-07-01&quot;:1.77},{&quot;2026-07-02&quot;:1.81},{&quot;2026-07-03&quot;:1.83},{&quot;2026-07-04&quot;:1.83},{&quot;2026-07-05&quot;:1.84},{&quot;2026-07-06&quot;:1.77},{&quot;2026-07-07&quot;:1.78},{&quot;2026-07-08&quot;:1.69},{&quot;2026-07-09&quot;:1.73},{&quot;2026-07-10&quot;:1.75},{&quot;2026-07-11&quot;:1.71},{&quot;2026-07-12&quot;:1.74},{&quot;2026-07-13&quot;:1.73},{&quot;2026-07-14&quot;:1.75},{&quot;2026-07-15&quot;:1.75},{&quot;2026-07-16&quot;:1.75},{&quot;2026-07-17&quot;:1.75},{&quot;2026-07-18&quot;:1.75},{&quot;2026-07-19&quot;:1.69},{&quot;2026-07-20&quot;:1.65},{&quot;2026-07-21&quot;:1.69},{&quot;2026-07-23&quot;:1.69},{&quot;2026-07-24&quot;:1.7},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.71},{&quot;2026-07-27&quot;:1.72},{&quot;2026-07-28&quot;:1.72},{&quot;2026-07-29&quot;:1.72},{&quot;2026-07-30&quot;:1.7},{&quot;2026-07-31&quot;:1.72},{&quot;2026-08-01&quot;:1.72},{&quot;2026-08-02&quot;:1.73},{&quot;2026-08-03&quot;:1.73},{&quot;2026-08-04&quot;:1.73},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.68},{&quot;2026-08-08&quot;:1.68},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.67},{&quot;2026-08-11&quot;:1.66},{&quot;2026-08-12&quot;:1.66},{&quot;2026-08-13&quot;:1.73},{&quot;2026-08-14&quot;:1.73},{&quot;2026-08-15&quot;:1.71},{&quot;2026-08-16&quot;:1.71},{&quot;2026-08-17&quot;:1.72},{&quot;2026-08-18&quot;:1.72},{&quot;2026-08-19&quot;:1.71},{&quot;2026-08-20&quot;:1.71},{&quot;2026-08-21&quot;:1.7},{&quot;2026-08-22&quot;:1.71},{&quot;2026-08-23&quot;:1.7},{&quot;2026-08-24&quot;:1.66},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.67},{&quot;2026-08-27&quot;:1.67},{&quot;2026-08-28&quot;:1.68},{&quot;2026-08-29&quot;:1.68},{&quot;2026-08-30&quot;:1.7},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.68},{&quot;2026-09-02&quot;:1.65},{&quot;2026-09-03&quot;:1.66},{&quot;2026-09-04&quot;:1.61},{&quot;2026-09-05&quot;:1.62},{&quot;2026-09-06&quot;:1.66},{&quot;2026-09-07&quot;:1.69},{&quot;2026-09-08&quot;:1.68},{&quot;2026-09-09&quot;:1.69},{&quot;2026-09-10&quot;:1.69},{&quot;2026-09-11&quot;:1.67}]}"
        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="48722"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Generous Gift" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/8/983f4711-20a8-4023-8201-9a74deab10be.jpg?1783933163" />

        <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">
            Generous Gift
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Generous Gift" src="https://cards.scryfall.io/large/front/9/8/983f4711-20a8-4023-8201-9a74deab10be.jpg?1783933163" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.02},{&quot;2026-06-14&quot;:2.02},{&quot;2026-06-15&quot;:2.02},{&quot;2026-06-16&quot;:1.98},{&quot;2026-06-17&quot;:1.98},{&quot;2026-06-18&quot;:1.98},{&quot;2026-06-19&quot;:1.98},{&quot;2026-06-20&quot;:1.98},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.94},{&quot;2026-06-24&quot;:1.94},{&quot;2026-06-25&quot;:1.94},{&quot;2026-06-26&quot;:1.94},{&quot;2026-06-27&quot;:1.94},{&quot;2026-06-28&quot;:1.94},{&quot;2026-06-29&quot;:1.95},{&quot;2026-06-30&quot;:1.95},{&quot;2026-07-01&quot;:1.95},{&quot;2026-07-02&quot;:1.95},{&quot;2026-07-03&quot;:2.0},{&quot;2026-07-04&quot;:2.0},{&quot;2026-07-05&quot;:2.0},{&quot;2026-07-06&quot;:2.0},{&quot;2026-07-07&quot;:2.0},{&quot;2026-07-08&quot;:2.0},{&quot;2026-07-09&quot;:2.0},{&quot;2026-07-10&quot;:2.0},{&quot;2026-07-11&quot;:2.0},{&quot;2026-07-12&quot;:2.0},{&quot;2026-07-13&quot;:2.0},{&quot;2026-07-14&quot;:2.0},{&quot;2026-07-15&quot;:2.0},{&quot;2026-07-16&quot;:2.0},{&quot;2026-07-17&quot;:2.0},{&quot;2026-07-18&quot;:2.0},{&quot;2026-07-19&quot;:2.0},{&quot;2026-07-20&quot;:2.0},{&quot;2026-07-21&quot;:2.0},{&quot;2026-07-22&quot;:2.0},{&quot;2026-07-23&quot;:2.0},{&quot;2026-07-24&quot;:2.0},{&quot;2026-07-25&quot;:2.0},{&quot;2026-07-26&quot;:2.0},{&quot;2026-07-27&quot;:2.0},{&quot;2026-07-28&quot;:2.0},{&quot;2026-07-29&quot;:2.0},{&quot;2026-07-30&quot;:2.0},{&quot;2026-07-31&quot;:2.0},{&quot;2026-08-01&quot;:2.0},{&quot;2026-08-02&quot;:2.0},{&quot;2026-08-03&quot;:2.0},{&quot;2026-08-04&quot;:2.0},{&quot;2026-08-05&quot;:2.0},{&quot;2026-08-07&quot;:2.0},{&quot;2026-08-08&quot;:2.0},{&quot;2026-08-09&quot;:2.05},{&quot;2026-08-10&quot;:2.05},{&quot;2026-08-11&quot;:2.05},{&quot;2026-08-12&quot;:2.05},{&quot;2026-08-13&quot;:2.05},{&quot;2026-08-14&quot;:2.05},{&quot;2026-08-15&quot;:2.05},{&quot;2026-08-16&quot;:2.05},{&quot;2026-08-17&quot;:2.05},{&quot;2026-08-18&quot;:2.05},{&quot;2026-08-19&quot;:2.05},{&quot;2026-08-20&quot;:2.05},{&quot;2026-08-21&quot;:2.05},{&quot;2026-08-22&quot;:2.05},{&quot;2026-08-23&quot;:2.05},{&quot;2026-08-24&quot;:2.05},{&quot;2026-08-25&quot;:2.05},{&quot;2026-08-26&quot;:2.05},{&quot;2026-08-27&quot;:2.05},{&quot;2026-08-28&quot;:2.05},{&quot;2026-08-29&quot;:2.05},{&quot;2026-08-30&quot;:2.05},{&quot;2026-08-31&quot;:2.05},{&quot;2026-09-01&quot;:2.05},{&quot;2026-09-02&quot;:2.05},{&quot;2026-09-03&quot;:2.05},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.05},{&quot;2026-09-06&quot;:2.05},{&quot;2026-09-07&quot;:2.05},{&quot;2026-09-08&quot;:2.05},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.05},{&quot;2026-09-11&quot;:2.05}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.78},{&quot;2026-06-14&quot;:1.78},{&quot;2026-06-15&quot;:1.81},{&quot;2026-06-16&quot;:1.81},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.65},{&quot;2026-06-19&quot;:1.66},{&quot;2026-06-20&quot;:1.63},{&quot;2026-06-21&quot;:1.56},{&quot;2026-06-22&quot;:1.51},{&quot;2026-06-23&quot;:1.45},{&quot;2026-06-24&quot;:1.43},{&quot;2026-06-25&quot;:1.46},{&quot;2026-06-26&quot;:1.4},{&quot;2026-06-27&quot;:1.45},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.53},{&quot;2026-06-30&quot;:1.59},{&quot;2026-07-01&quot;:1.65},{&quot;2026-07-02&quot;:1.63},{&quot;2026-07-03&quot;:1.71},{&quot;2026-07-04&quot;:1.67},{&quot;2026-07-05&quot;:1.71},{&quot;2026-07-06&quot;:1.71},{&quot;2026-07-07&quot;:1.74},{&quot;2026-07-08&quot;:1.74},{&quot;2026-07-09&quot;:1.8},{&quot;2026-07-10&quot;:1.8},{&quot;2026-07-11&quot;:1.81},{&quot;2026-07-12&quot;:1.81},{&quot;2026-07-13&quot;:1.83},{&quot;2026-07-14&quot;:1.83},{&quot;2026-07-15&quot;:1.81},{&quot;2026-07-16&quot;:1.82},{&quot;2026-07-17&quot;:1.79},{&quot;2026-07-18&quot;:1.81},{&quot;2026-07-19&quot;:1.77},{&quot;2026-07-20&quot;:1.77},{&quot;2026-07-21&quot;:1.75},{&quot;2026-07-22&quot;:1.67},{&quot;2026-07-23&quot;:1.58},{&quot;2026-07-24&quot;:1.58},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.56},{&quot;2026-07-27&quot;:1.53},{&quot;2026-07-28&quot;:1.55},{&quot;2026-07-29&quot;:1.66},{&quot;2026-07-30&quot;:1.68},{&quot;2026-07-31&quot;:1.72},{&quot;2026-08-01&quot;:1.73},{&quot;2026-08-02&quot;:1.71},{&quot;2026-08-03&quot;:1.71},{&quot;2026-08-04&quot;:1.61},{&quot;2026-08-05&quot;:1.55},{&quot;2026-08-07&quot;:1.48},{&quot;2026-08-08&quot;:1.53},{&quot;2026-08-09&quot;:1.51},{&quot;2026-08-10&quot;:1.53},{&quot;2026-08-11&quot;:1.5},{&quot;2026-08-12&quot;:1.47},{&quot;2026-08-13&quot;:1.46},{&quot;2026-08-14&quot;:1.44},{&quot;2026-08-15&quot;:1.44},{&quot;2026-08-16&quot;:1.38},{&quot;2026-08-17&quot;:1.4},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.24},{&quot;2026-08-21&quot;:1.53},{&quot;2026-08-22&quot;:1.57},{&quot;2026-08-23&quot;:1.49},{&quot;2026-08-24&quot;:1.53},{&quot;2026-08-25&quot;:1.53},{&quot;2026-08-26&quot;:1.51},{&quot;2026-08-27&quot;:1.6},{&quot;2026-08-28&quot;:1.58},{&quot;2026-08-29&quot;:1.58},{&quot;2026-08-30&quot;:1.33},{&quot;2026-08-31&quot;:1.42},{&quot;2026-09-01&quot;:1.49},{&quot;2026-09-02&quot;:1.57},{&quot;2026-09-03&quot;:1.52},{&quot;2026-09-04&quot;:1.52},{&quot;2026-09-05&quot;:1.57},{&quot;2026-09-06&quot;:1.8},{&quot;2026-09-07&quot;:1.82},{&quot;2026-09-08&quot;:1.82},{&quot;2026-09-09&quot;:1.84},{&quot;2026-09-10&quot;:1.65},{&quot;2026-09-11&quot;:1.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="10272"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cursed Mirror" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/458a01ea-f161-43a4-a6db-88f6418b9c6d.jpg?1783927594" />

        <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">
            Cursed Mirror
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><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="Cursed Mirror" src="https://cards.scryfall.io/large/front/4/5/458a01ea-f161-43a4-a6db-88f6418b9c6d.jpg?1783927594" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.7},{&quot;2026-06-14&quot;:1.7},{&quot;2026-06-15&quot;:1.7},{&quot;2026-06-16&quot;:1.7},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.7},{&quot;2026-06-19&quot;:1.7},{&quot;2026-06-20&quot;:1.7},{&quot;2026-06-21&quot;:1.7},{&quot;2026-06-22&quot;:1.7},{&quot;2026-06-23&quot;:1.7},{&quot;2026-06-24&quot;:1.7},{&quot;2026-06-25&quot;:1.7},{&quot;2026-06-26&quot;:1.7},{&quot;2026-06-27&quot;:1.69},{&quot;2026-06-28&quot;:1.69},{&quot;2026-06-29&quot;:1.69},{&quot;2026-06-30&quot;:1.65},{&quot;2026-07-01&quot;:1.65},{&quot;2026-07-02&quot;:1.65},{&quot;2026-07-03&quot;:1.65},{&quot;2026-07-04&quot;:1.65},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.64},{&quot;2026-07-07&quot;:1.64},{&quot;2026-07-08&quot;:1.64},{&quot;2026-07-09&quot;:1.64},{&quot;2026-07-10&quot;:1.65},{&quot;2026-07-11&quot;:1.65},{&quot;2026-07-12&quot;:1.65},{&quot;2026-07-13&quot;:1.61},{&quot;2026-07-14&quot;:1.61},{&quot;2026-07-15&quot;:1.61},{&quot;2026-07-16&quot;:1.61},{&quot;2026-07-17&quot;:1.61},{&quot;2026-07-18&quot;:1.61},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.58},{&quot;2026-07-21&quot;:1.58},{&quot;2026-07-22&quot;:1.57},{&quot;2026-07-23&quot;:1.58},{&quot;2026-07-24&quot;:1.58},{&quot;2026-07-25&quot;:1.58},{&quot;2026-07-26&quot;:1.58},{&quot;2026-07-27&quot;:1.57},{&quot;2026-07-28&quot;:1.57},{&quot;2026-07-29&quot;:1.57},{&quot;2026-07-30&quot;:1.57},{&quot;2026-07-31&quot;:1.56},{&quot;2026-08-01&quot;:1.56},{&quot;2026-08-02&quot;:1.55},{&quot;2026-08-03&quot;:1.55},{&quot;2026-08-04&quot;:1.55},{&quot;2026-08-05&quot;:1.55},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.52},{&quot;2026-08-09&quot;:1.52},{&quot;2026-08-10&quot;:1.51},{&quot;2026-08-11&quot;:1.48},{&quot;2026-08-12&quot;:1.43},{&quot;2026-08-13&quot;:1.4},{&quot;2026-08-14&quot;:1.4},{&quot;2026-08-15&quot;:1.4},{&quot;2026-08-16&quot;:1.4},{&quot;2026-08-17&quot;:1.4},{&quot;2026-08-18&quot;:1.41},{&quot;2026-08-19&quot;:1.4},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.39},{&quot;2026-08-22&quot;:1.39},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.38},{&quot;2026-08-25&quot;:1.41},{&quot;2026-08-26&quot;:1.48},{&quot;2026-08-27&quot;:1.49},{&quot;2026-08-28&quot;:1.49},{&quot;2026-08-29&quot;:1.49},{&quot;2026-08-30&quot;:1.49},{&quot;2026-08-31&quot;:1.49},{&quot;2026-09-01&quot;:1.57},{&quot;2026-09-02&quot;:1.58},{&quot;2026-09-03&quot;:1.6},{&quot;2026-09-04&quot;:1.58},{&quot;2026-09-05&quot;:1.55},{&quot;2026-09-06&quot;:1.53},{&quot;2026-09-07&quot;:1.53},{&quot;2026-09-08&quot;:1.53},{&quot;2026-09-09&quot;:1.54},{&quot;2026-09-10&quot;:1.61},{&quot;2026-09-11&quot;:1.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="10850"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Ichor Wellspring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1ccdb407-ac8f-4736-89d3-ab0d086096ea.jpg?1783927513" />

        <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">
            Ichor Wellspring
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ichor Wellspring" src="https://cards.scryfall.io/large/front/1/c/1ccdb407-ac8f-4736-89d3-ab0d086096ea.jpg?1783927513" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.79},{&quot;2026-06-12&quot;:1.79},{&quot;2026-06-13&quot;:1.79},{&quot;2026-06-14&quot;:1.79},{&quot;2026-06-15&quot;:1.67},{&quot;2026-06-16&quot;:1.67},{&quot;2026-06-17&quot;:1.67},{&quot;2026-06-18&quot;:1.31},{&quot;2026-06-19&quot;:1.3},{&quot;2026-06-20&quot;:1.3},{&quot;2026-06-21&quot;:1.29},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-23&quot;:1.32},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.32},{&quot;2026-06-27&quot;:1.32},{&quot;2026-06-28&quot;:1.32},{&quot;2026-06-29&quot;:1.32},{&quot;2026-06-30&quot;:1.29},{&quot;2026-07-01&quot;:1.3},{&quot;2026-07-02&quot;:1.27},{&quot;2026-07-03&quot;:1.26},{&quot;2026-07-04&quot;:1.24},{&quot;2026-07-05&quot;:1.19},{&quot;2026-07-06&quot;:1.14},{&quot;2026-07-07&quot;:1.2},{&quot;2026-07-08&quot;:1.2},{&quot;2026-07-09&quot;:1.18},{&quot;2026-07-10&quot;:1.14},{&quot;2026-07-11&quot;:1.14},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.14},{&quot;2026-07-15&quot;:1.15},{&quot;2026-07-16&quot;:1.18},{&quot;2026-07-17&quot;:1.22},{&quot;2026-07-18&quot;:1.22},{&quot;2026-07-19&quot;:1.21},{&quot;2026-07-20&quot;:1.19},{&quot;2026-07-21&quot;:1.19},{&quot;2026-07-23&quot;:1.16},{&quot;2026-07-25&quot;:1.13},{&quot;2026-07-26&quot;:1.13},{&quot;2026-07-27&quot;:1.13},{&quot;2026-07-28&quot;:1.1},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.1},{&quot;2026-07-31&quot;:1.13},{&quot;2026-08-01&quot;:1.14},{&quot;2026-08-02&quot;:1.15},{&quot;2026-08-03&quot;:1.15},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.16},{&quot;2026-08-07&quot;:1.19},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.19},{&quot;2026-08-10&quot;:1.23},{&quot;2026-08-11&quot;:1.23},{&quot;2026-08-12&quot;:1.23},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.33},{&quot;2026-08-15&quot;:1.33},{&quot;2026-08-16&quot;:1.36},{&quot;2026-08-17&quot;:1.36},{&quot;2026-08-18&quot;:1.35},{&quot;2026-08-19&quot;:1.35},{&quot;2026-08-20&quot;:1.35},{&quot;2026-08-21&quot;:1.4},{&quot;2026-08-22&quot;:1.4},{&quot;2026-08-23&quot;:1.4},{&quot;2026-08-24&quot;:1.45},{&quot;2026-08-25&quot;:1.45},{&quot;2026-08-26&quot;:1.45},{&quot;2026-08-27&quot;:1.45},{&quot;2026-08-28&quot;:1.45},{&quot;2026-08-29&quot;:1.45},{&quot;2026-08-30&quot;:1.51},{&quot;2026-08-31&quot;:1.51},{&quot;2026-09-01&quot;:1.51},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.51},{&quot;2026-09-04&quot;:1.51},{&quot;2026-09-05&quot;:1.51},{&quot;2026-09-06&quot;:1.51},{&quot;2026-09-07&quot;:1.51},{&quot;2026-09-08&quot;:1.51},{&quot;2026-09-09&quot;:1.51},{&quot;2026-09-10&quot;:1.51},{&quot;2026-09-11&quot;:1.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="10613"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-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">
            Daretti, Scrap Savant
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Daretti, Scrap Savant
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Daretti</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-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="Daretti, Scrap Savant" src="https://cards.scryfall.io/large/front/f/a/fa393eeb-bccc-453c-b783-6b0ff445c3a6.jpg?1783927546" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Triplicate Titan" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/6/568dd5a6-86f4-4039-87d7-812120c8ab94.jpg?1783927584" />

        <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">
            Triplicate Titan
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-9'></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="Triplicate Titan" src="https://cards.scryfall.io/large/front/5/6/568dd5a6-86f4-4039-87d7-812120c8ab94.jpg?1783927584" />
    </div>

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

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

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

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

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

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

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

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.35
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  12%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.17</span>
              <span class="text-xs text-grey-text">Credit: $0.22</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.03},{&quot;2026-06-14&quot;:1.04},{&quot;2026-06-15&quot;:1.03},{&quot;2026-06-16&quot;:1.03},{&quot;2026-06-17&quot;:1.03},{&quot;2026-06-18&quot;:1.03},{&quot;2026-06-19&quot;:1.03},{&quot;2026-06-20&quot;:1.03},{&quot;2026-06-21&quot;:1.15},{&quot;2026-06-22&quot;:1.2},{&quot;2026-06-23&quot;:1.2},{&quot;2026-06-24&quot;:1.2},{&quot;2026-06-25&quot;:1.2},{&quot;2026-06-26&quot;:1.2},{&quot;2026-06-27&quot;:1.23},{&quot;2026-06-28&quot;:1.24},{&quot;2026-06-29&quot;:1.37},{&quot;2026-06-30&quot;:1.37},{&quot;2026-07-01&quot;:1.4},{&quot;2026-07-02&quot;:1.42},{&quot;2026-07-03&quot;:1.45},{&quot;2026-07-04&quot;:1.43},{&quot;2026-07-05&quot;:1.43},{&quot;2026-07-06&quot;:1.4},{&quot;2026-07-07&quot;:1.39},{&quot;2026-07-08&quot;:1.39},{&quot;2026-07-09&quot;:1.38},{&quot;2026-07-10&quot;:1.4},{&quot;2026-07-11&quot;:1.41},{&quot;2026-07-12&quot;:1.44},{&quot;2026-07-13&quot;:1.43},{&quot;2026-07-14&quot;:1.41},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.49},{&quot;2026-07-17&quot;:1.54},{&quot;2026-07-18&quot;:1.41},{&quot;2026-07-19&quot;:1.38},{&quot;2026-07-20&quot;:1.38},{&quot;2026-07-21&quot;:1.35},{&quot;2026-07-22&quot;:1.38},{&quot;2026-07-23&quot;:1.38},{&quot;2026-07-24&quot;:1.38},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.38},{&quot;2026-07-27&quot;:1.39},{&quot;2026-07-28&quot;:1.36},{&quot;2026-07-29&quot;:1.34},{&quot;2026-07-30&quot;:1.34},{&quot;2026-07-31&quot;:1.34},{&quot;2026-08-01&quot;:1.34},{&quot;2026-08-02&quot;:1.36},{&quot;2026-08-03&quot;:1.36},{&quot;2026-08-04&quot;:1.36},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.35},{&quot;2026-08-08&quot;:1.35},{&quot;2026-08-09&quot;:1.33},{&quot;2026-08-10&quot;:1.35},{&quot;2026-08-11&quot;:1.35},{&quot;2026-08-12&quot;:1.36},{&quot;2026-08-13&quot;:1.37},{&quot;2026-08-14&quot;:1.37},{&quot;2026-08-15&quot;:1.37},{&quot;2026-08-16&quot;:1.28},{&quot;2026-08-17&quot;:1.2},{&quot;2026-08-18&quot;:1.2},{&quot;2026-08-19&quot;:1.2},{&quot;2026-08-20&quot;:1.26},{&quot;2026-08-21&quot;:1.27},{&quot;2026-08-22&quot;:1.26},{&quot;2026-08-23&quot;:1.23},{&quot;2026-08-24&quot;:1.23},{&quot;2026-08-25&quot;:1.23},{&quot;2026-08-26&quot;:1.23},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.22},{&quot;2026-08-29&quot;:1.22},{&quot;2026-08-30&quot;:1.22},{&quot;2026-08-31&quot;:1.22},{&quot;2026-09-01&quot;:1.2},{&quot;2026-09-02&quot;:1.2},{&quot;2026-09-03&quot;:1.2},{&quot;2026-09-04&quot;:1.22},{&quot;2026-09-05&quot;:1.21},{&quot;2026-09-06&quot;:1.21},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.21},{&quot;2026-09-10&quot;:1.29},{&quot;2026-09-11&quot;:1.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="10629"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-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">
            Feldon of the Third Path
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Artificer
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Feldon of the Third Path" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/7/97879ddb-b00b-4f24-b901-af19c436b9f1.jpg?1783927546" />

        <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">
            Feldon of the Third Path
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            mythic
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Artificer</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Feldon of the Third Path" src="https://cards.scryfall.io/large/front/9/7/97879ddb-b00b-4f24-b901-af19c436b9f1.jpg?1783927546" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.31
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.40</span>
              <span class="text-xs text-grey-text">Credit: $0.52</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.11},{&quot;2026-06-11&quot;:1.11},{&quot;2026-06-12&quot;:1.13},{&quot;2026-06-13&quot;:1.11},{&quot;2026-06-14&quot;:1.11},{&quot;2026-06-15&quot;:1.1},{&quot;2026-06-16&quot;:1.08},{&quot;2026-06-17&quot;:1.09},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.04},{&quot;2026-06-20&quot;:1.04},{&quot;2026-06-21&quot;:1.07},{&quot;2026-06-22&quot;:1.1},{&quot;2026-06-23&quot;:1.12},{&quot;2026-06-24&quot;:1.12},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.19},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.24},{&quot;2026-06-29&quot;:1.24},{&quot;2026-06-30&quot;:1.25},{&quot;2026-07-01&quot;:1.25},{&quot;2026-07-02&quot;:1.25},{&quot;2026-07-03&quot;:1.21},{&quot;2026-07-04&quot;:1.19},{&quot;2026-07-05&quot;:1.19},{&quot;2026-07-06&quot;:1.16},{&quot;2026-07-07&quot;:1.2},{&quot;2026-07-08&quot;:1.19},{&quot;2026-07-09&quot;:1.18},{&quot;2026-07-10&quot;:1.15},{&quot;2026-07-11&quot;:1.12},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:1.09},{&quot;2026-07-14&quot;:1.09},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.02},{&quot;2026-07-18&quot;:1.01},{&quot;2026-07-19&quot;:1.01},{&quot;2026-07-20&quot;:1.02},{&quot;2026-07-21&quot;:1.02},{&quot;2026-07-23&quot;:1.02},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:1.02},{&quot;2026-07-27&quot;:1.02},{&quot;2026-07-29&quot;:1.07},{&quot;2026-07-30&quot;:1.12},{&quot;2026-07-31&quot;:1.12},{&quot;2026-08-01&quot;:1.18},{&quot;2026-08-02&quot;:1.19},{&quot;2026-08-03&quot;:1.19},{&quot;2026-08-04&quot;:1.19},{&quot;2026-08-05&quot;:1.19},{&quot;2026-08-07&quot;:1.21},{&quot;2026-08-08&quot;:1.27},{&quot;2026-08-09&quot;:1.27},{&quot;2026-08-10&quot;:1.26},{&quot;2026-08-11&quot;:1.24},{&quot;2026-08-12&quot;:1.24},{&quot;2026-08-13&quot;:1.24},{&quot;2026-08-14&quot;:1.28},{&quot;2026-08-15&quot;:1.34},{&quot;2026-08-16&quot;:1.35},{&quot;2026-08-17&quot;:1.51},{&quot;2026-08-18&quot;:1.49},{&quot;2026-08-19&quot;:1.49},{&quot;2026-08-20&quot;:1.49},{&quot;2026-08-21&quot;:1.48},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.48},{&quot;2026-08-24&quot;:1.48},{&quot;2026-08-25&quot;:1.48},{&quot;2026-08-26&quot;:1.46},{&quot;2026-08-27&quot;:1.46},{&quot;2026-08-28&quot;:1.46},{&quot;2026-08-29&quot;:1.46},{&quot;2026-08-30&quot;:1.42},{&quot;2026-08-31&quot;:1.3},{&quot;2026-09-01&quot;:1.3},{&quot;2026-09-02&quot;:1.31},{&quot;2026-09-03&quot;:1.33},{&quot;2026-09-04&quot;:1.33},{&quot;2026-09-05&quot;:1.32},{&quot;2026-09-06&quot;:1.32},{&quot;2026-09-07&quot;:1.32},{&quot;2026-09-08&quot;:1.32},{&quot;2026-09-09&quot;:1.31},{&quot;2026-09-10&quot;:1.31},{&quot;2026-09-11&quot;:1.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10158"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Bronze Guardian
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Golem
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.27
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Bronze Guardian" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8cd5cc66-2ade-4142-9269-7d9905b029e5.jpg?1783927610" />

        <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">
            Bronze 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">Artifact Creature — Golem</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-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="Bronze Guardian" src="https://cards.scryfall.io/large/front/8/c/8cd5cc66-2ade-4142-9269-7d9905b029e5.jpg?1783927610" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.27
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  9%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.26</span>
              <span class="text-xs text-grey-text">Credit: $0.34</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.17},{&quot;2026-06-14&quot;:1.15},{&quot;2026-06-15&quot;:1.15},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.22},{&quot;2026-06-18&quot;:1.23},{&quot;2026-06-19&quot;:1.23},{&quot;2026-06-20&quot;:1.23},{&quot;2026-06-21&quot;:1.31},{&quot;2026-06-22&quot;:1.35},{&quot;2026-06-23&quot;:1.35},{&quot;2026-06-24&quot;:1.35},{&quot;2026-06-25&quot;:1.35},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.35},{&quot;2026-06-28&quot;:1.34},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.32},{&quot;2026-07-01&quot;:1.33},{&quot;2026-07-02&quot;:1.37},{&quot;2026-07-03&quot;:1.34},{&quot;2026-07-04&quot;:1.35},{&quot;2026-07-05&quot;:1.32},{&quot;2026-07-06&quot;:1.29},{&quot;2026-07-07&quot;:1.22},{&quot;2026-07-08&quot;:1.17},{&quot;2026-07-09&quot;:1.17},{&quot;2026-07-10&quot;:1.17},{&quot;2026-07-11&quot;:1.18},{&quot;2026-07-12&quot;:1.22},{&quot;2026-07-13&quot;:1.22},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.21},{&quot;2026-07-16&quot;:1.21},{&quot;2026-07-17&quot;:1.21},{&quot;2026-07-18&quot;:1.17},{&quot;2026-07-19&quot;:1.18},{&quot;2026-07-20&quot;:1.21},{&quot;2026-07-21&quot;:1.26},{&quot;2026-07-22&quot;:1.25},{&quot;2026-07-23&quot;:1.25},{&quot;2026-07-24&quot;:1.25},{&quot;2026-07-25&quot;:1.27},{&quot;2026-07-26&quot;:1.27},{&quot;2026-07-27&quot;:1.27},{&quot;2026-07-28&quot;:1.29},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.42},{&quot;2026-07-31&quot;:1.46},{&quot;2026-08-01&quot;:1.48},{&quot;2026-08-02&quot;:1.48},{&quot;2026-08-03&quot;:1.51},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.5},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.54},{&quot;2026-08-09&quot;:1.54},{&quot;2026-08-10&quot;:1.54},{&quot;2026-08-11&quot;:1.57},{&quot;2026-08-12&quot;:1.57},{&quot;2026-08-13&quot;:1.57},{&quot;2026-08-14&quot;:1.59},{&quot;2026-08-15&quot;:1.53},{&quot;2026-08-16&quot;:1.54},{&quot;2026-08-17&quot;:1.55},{&quot;2026-08-18&quot;:1.48},{&quot;2026-08-19&quot;:1.48},{&quot;2026-08-20&quot;:1.46},{&quot;2026-08-21&quot;:1.44},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.48},{&quot;2026-08-24&quot;:1.48},{&quot;2026-08-25&quot;:1.45},{&quot;2026-08-26&quot;:1.45},{&quot;2026-08-27&quot;:1.45},{&quot;2026-08-28&quot;:1.42},{&quot;2026-08-29&quot;:1.42},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.33},{&quot;2026-09-01&quot;:1.28},{&quot;2026-09-02&quot;:1.28},{&quot;2026-09-03&quot;:1.23},{&quot;2026-09-04&quot;:1.17},{&quot;2026-09-05&quot;:1.17},{&quot;2026-09-06&quot;:1.2},{&quot;2026-09-07&quot;:1.18},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.29},{&quot;2026-09-10&quot;:1.3},{&quot;2026-09-11&quot;:1.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="11862"
  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">
            Blasphemous Act
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.02
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Blasphemous Act" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/0/40e1ef14-cb26-486e-9b54-0b532f5b7435.jpg?1783928821" />

        <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">
            Blasphemous Act
        </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-8'></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="Blasphemous Act" src="https://cards.scryfall.io/large/front/4/0/40e1ef14-cb26-486e-9b54-0b532f5b7435.jpg?1783928821" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.02
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $3.40
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.50</span>
              <span class="text-xs text-grey-text">Credit: $0.65</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.29},{&quot;2026-06-14&quot;:3.29},{&quot;2026-06-15&quot;:3.29},{&quot;2026-06-16&quot;:3.29},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.29},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.28},{&quot;2026-06-26&quot;:3.28},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.28},{&quot;2026-06-29&quot;:3.28},{&quot;2026-06-30&quot;:3.28},{&quot;2026-07-01&quot;:3.28},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.28},{&quot;2026-07-05&quot;:3.29},{&quot;2026-07-06&quot;:3.29},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.29},{&quot;2026-07-09&quot;:3.29},{&quot;2026-07-10&quot;:3.29},{&quot;2026-07-11&quot;:3.29},{&quot;2026-07-12&quot;:3.29},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.29},{&quot;2026-07-15&quot;:3.33},{&quot;2026-07-16&quot;:3.33},{&quot;2026-07-17&quot;:3.3},{&quot;2026-07-18&quot;:3.3},{&quot;2026-07-19&quot;:3.3},{&quot;2026-07-20&quot;:3.3},{&quot;2026-07-21&quot;:3.3},{&quot;2026-07-22&quot;:3.3},{&quot;2026-07-23&quot;:3.3},{&quot;2026-07-24&quot;:3.3},{&quot;2026-07-25&quot;:3.3},{&quot;2026-07-26&quot;:3.3},{&quot;2026-07-27&quot;:3.3},{&quot;2026-07-28&quot;:3.39},{&quot;2026-07-29&quot;:3.39},{&quot;2026-07-30&quot;:3.3},{&quot;2026-07-31&quot;:3.28},{&quot;2026-08-01&quot;:3.32},{&quot;2026-08-02&quot;:3.32},{&quot;2026-08-03&quot;:3.38},{&quot;2026-08-04&quot;:3.38},{&quot;2026-08-05&quot;:3.63},{&quot;2026-08-07&quot;:3.63},{&quot;2026-08-08&quot;:3.63},{&quot;2026-08-09&quot;:3.63},{&quot;2026-08-10&quot;:3.63},{&quot;2026-08-11&quot;:3.62},{&quot;2026-08-12&quot;:3.62},{&quot;2026-08-13&quot;:3.62},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.61},{&quot;2026-08-17&quot;:3.6},{&quot;2026-08-18&quot;:3.6},{&quot;2026-08-19&quot;:3.62},{&quot;2026-08-20&quot;:3.62},{&quot;2026-08-21&quot;:3.62},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.62},{&quot;2026-08-24&quot;:3.41},{&quot;2026-08-25&quot;:3.4},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.4},{&quot;2026-08-29&quot;:3.4},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.4},{&quot;2026-09-01&quot;:3.4},{&quot;2026-09-02&quot;:3.4},{&quot;2026-09-03&quot;:3.4},{&quot;2026-09-04&quot;:3.4},{&quot;2026-09-05&quot;:3.4},{&quot;2026-09-06&quot;:3.4},{&quot;2026-09-07&quot;:3.4},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.4},{&quot;2026-09-10&quot;:3.4},{&quot;2026-09-11&quot;:3.4}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.13},{&quot;2026-06-14&quot;:1.09},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.13},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.08},{&quot;2026-06-21&quot;:1.08},{&quot;2026-06-22&quot;:1.07},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.07},{&quot;2026-06-26&quot;:1.07},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.06},{&quot;2026-06-29&quot;:1.06},{&quot;2026-06-30&quot;:1.06},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.07},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.06},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.07},{&quot;2026-07-08&quot;:1.07},{&quot;2026-07-09&quot;:1.07},{&quot;2026-07-10&quot;:1.07},{&quot;2026-07-11&quot;:1.07},{&quot;2026-07-12&quot;:1.07},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.09},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-22&quot;:1.07},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-24&quot;:1.08},{&quot;2026-07-25&quot;:1.06},{&quot;2026-07-26&quot;:1.08},{&quot;2026-07-27&quot;:1.08},{&quot;2026-07-28&quot;:1.06},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.09},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.02},{&quot;2026-08-07&quot;:1.04},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.03},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:1.03},{&quot;2026-08-14&quot;:1.03},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.01},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:1.03},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.06},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.06},{&quot;2026-08-24&quot;:1.06},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.03},{&quot;2026-08-28&quot;:1.03},{&quot;2026-08-29&quot;:1.03},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.06},{&quot;2026-09-02&quot;:1.06},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.96},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:1.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10163"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Digsite Engineer
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dwarf 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">
              ↓
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.95
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Digsite Engineer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/7/d79b8974-796c-4f88-a0cb-5afbaf26fd24.jpg?1783927609" />

        <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">
            Digsite Engineer
        </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 — Dwarf Artificer</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </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="Digsite Engineer" src="https://cards.scryfall.io/large/front/d/7/d79b8974-796c-4f88-a0cb-5afbaf26fd24.jpg?1783927609" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.95
              </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">$0.72</span>
              <span class="text-xs text-grey-text">Credit: $0.94</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.71},{&quot;2026-06-14&quot;:0.71},{&quot;2026-06-15&quot;:0.73},{&quot;2026-06-16&quot;:0.73},{&quot;2026-06-17&quot;:0.74},{&quot;2026-06-18&quot;:0.74},{&quot;2026-06-19&quot;:0.74},{&quot;2026-06-20&quot;:0.74},{&quot;2026-06-21&quot;:0.74},{&quot;2026-06-22&quot;:0.74},{&quot;2026-06-23&quot;:0.74},{&quot;2026-06-24&quot;:0.74},{&quot;2026-06-25&quot;:0.74},{&quot;2026-06-26&quot;:0.74},{&quot;2026-06-27&quot;:0.74},{&quot;2026-06-28&quot;:0.74},{&quot;2026-06-29&quot;:0.75},{&quot;2026-06-30&quot;:0.75},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.77},{&quot;2026-07-03&quot;:0.78},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.77},{&quot;2026-07-06&quot;:0.77},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.78},{&quot;2026-07-09&quot;:0.78},{&quot;2026-07-10&quot;:0.78},{&quot;2026-07-11&quot;:0.78},{&quot;2026-07-12&quot;:0.78},{&quot;2026-07-13&quot;:0.78},{&quot;2026-07-14&quot;:0.79},{&quot;2026-07-15&quot;:0.79},{&quot;2026-07-16&quot;:0.78},{&quot;2026-07-17&quot;:0.8},{&quot;2026-07-18&quot;:0.82},{&quot;2026-07-19&quot;:0.82},{&quot;2026-07-20&quot;:0.84},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-22&quot;:0.85},{&quot;2026-07-23&quot;:0.84},{&quot;2026-07-24&quot;:0.84},{&quot;2026-07-25&quot;:0.85},{&quot;2026-07-26&quot;:0.85},{&quot;2026-07-27&quot;:0.86},{&quot;2026-07-28&quot;:0.87},{&quot;2026-07-29&quot;:0.87},{&quot;2026-07-30&quot;:0.87},{&quot;2026-07-31&quot;:0.89},{&quot;2026-08-01&quot;:0.87},{&quot;2026-08-02&quot;:0.89},{&quot;2026-08-03&quot;:0.88},{&quot;2026-08-04&quot;:0.83},{&quot;2026-08-05&quot;:0.84},{&quot;2026-08-07&quot;:0.86},{&quot;2026-08-08&quot;:0.89},{&quot;2026-08-09&quot;:0.92},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.96},{&quot;2026-08-12&quot;:0.95},{&quot;2026-08-13&quot;:0.94},{&quot;2026-08-14&quot;:0.95},{&quot;2026-08-15&quot;:0.95},{&quot;2026-08-16&quot;:0.96},{&quot;2026-08-17&quot;:0.94},{&quot;2026-08-18&quot;:0.92},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.87},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.91},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.97},{&quot;2026-08-25&quot;:0.97},{&quot;2026-08-26&quot;:0.98},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.04},{&quot;2026-08-29&quot;:1.04},{&quot;2026-08-30&quot;:1.05},{&quot;2026-08-31&quot;:1.0},{&quot;2026-09-01&quot;:1.0},{&quot;2026-09-02&quot;:0.98},{&quot;2026-09-03&quot;:0.98},{&quot;2026-09-04&quot;:0.99},{&quot;2026-09-05&quot;:0.99},{&quot;2026-09-06&quot;:0.98},{&quot;2026-09-07&quot;:0.98},{&quot;2026-09-08&quot;:0.95},{&quot;2026-09-09&quot;:0.93},{&quot;2026-09-10&quot;:0.97},{&quot;2026-09-11&quot;:0.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="36403"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Moonsilver Key
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.91
          </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="Moonsilver Key" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/7/87778e37-af92-402e-b037-5fbd6112b682.jpg?1783925547" />

        <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">
            Moonsilver Key
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Moonsilver Key" src="https://cards.scryfall.io/large/front/8/7/87778e37-af92-402e-b037-5fbd6112b682.jpg?1783925547" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.91
              </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">
                $5.79
              </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">$0.45</span>
              <span class="text-xs text-grey-text">Credit: $0.59</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.07},{&quot;2026-06-11&quot;:5.07},{&quot;2026-06-12&quot;:5.07},{&quot;2026-06-13&quot;:5.13},{&quot;2026-06-14&quot;:5.15},{&quot;2026-06-15&quot;:5.14},{&quot;2026-06-16&quot;:5.12},{&quot;2026-06-17&quot;:5.31},{&quot;2026-06-18&quot;:5.54},{&quot;2026-06-19&quot;:5.54},{&quot;2026-06-20&quot;:5.54},{&quot;2026-06-21&quot;:5.64},{&quot;2026-06-22&quot;:5.64},{&quot;2026-06-23&quot;:5.74},{&quot;2026-06-24&quot;:5.56},{&quot;2026-06-25&quot;:5.24},{&quot;2026-06-26&quot;:5.45},{&quot;2026-06-27&quot;:5.45},{&quot;2026-06-28&quot;:5.45},{&quot;2026-06-29&quot;:5.45},{&quot;2026-06-30&quot;:5.25},{&quot;2026-07-01&quot;:5.2},{&quot;2026-07-02&quot;:5.38},{&quot;2026-07-03&quot;:5.38},{&quot;2026-07-04&quot;:5.29},{&quot;2026-07-05&quot;:5.23},{&quot;2026-07-06&quot;:5.44},{&quot;2026-07-07&quot;:5.66},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:6.18},{&quot;2026-07-10&quot;:5.85},{&quot;2026-07-11&quot;:5.85},{&quot;2026-07-12&quot;:5.85},{&quot;2026-07-13&quot;:5.84},{&quot;2026-07-14&quot;:5.84},{&quot;2026-07-15&quot;:5.64},{&quot;2026-07-16&quot;:5.73},{&quot;2026-07-17&quot;:5.54},{&quot;2026-07-18&quot;:5.3},{&quot;2026-07-19&quot;:5.3},{&quot;2026-07-20&quot;:5.18},{&quot;2026-07-21&quot;:4.96},{&quot;2026-07-23&quot;:4.71},{&quot;2026-07-25&quot;:4.22},{&quot;2026-07-26&quot;:4.22},{&quot;2026-07-27&quot;:4.22},{&quot;2026-07-29&quot;:4.53},{&quot;2026-07-30&quot;:4.53},{&quot;2026-07-31&quot;:4.46},{&quot;2026-08-01&quot;:4.46},{&quot;2026-08-02&quot;:4.46},{&quot;2026-08-03&quot;:4.77},{&quot;2026-08-04&quot;:4.77},{&quot;2026-08-05&quot;:4.77},{&quot;2026-08-07&quot;:4.88},{&quot;2026-08-08&quot;:5.11},{&quot;2026-08-09&quot;:5.81},{&quot;2026-08-10&quot;:5.81},{&quot;2026-08-11&quot;:5.81},{&quot;2026-08-12&quot;:5.81},{&quot;2026-08-13&quot;:5.81},{&quot;2026-08-14&quot;:5.81},{&quot;2026-08-15&quot;:5.81},{&quot;2026-08-16&quot;:5.81},{&quot;2026-08-17&quot;:5.81},{&quot;2026-08-18&quot;:5.81},{&quot;2026-08-19&quot;:5.82},{&quot;2026-08-20&quot;:5.82},{&quot;2026-08-21&quot;:5.96},{&quot;2026-08-22&quot;:5.96},{&quot;2026-08-23&quot;:5.92},{&quot;2026-08-24&quot;:5.92},{&quot;2026-08-25&quot;:5.92},{&quot;2026-08-26&quot;:6.12},{&quot;2026-08-27&quot;:6.29},{&quot;2026-08-28&quot;:6.29},{&quot;2026-08-29&quot;:6.29},{&quot;2026-08-30&quot;:6.55},{&quot;2026-08-31&quot;:6.55},{&quot;2026-09-01&quot;:6.55},{&quot;2026-09-02&quot;:6.28},{&quot;2026-09-03&quot;:6.28},{&quot;2026-09-04&quot;:6.25},{&quot;2026-09-05&quot;:6.25},{&quot;2026-09-06&quot;:6.25},{&quot;2026-09-07&quot;:6.13},{&quot;2026-09-08&quot;:6.23},{&quot;2026-09-09&quot;:6.08},{&quot;2026-09-10&quot;:5.79},{&quot;2026-09-11&quot;:5.79}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.87},{&quot;2026-06-11&quot;:0.95},{&quot;2026-06-12&quot;:0.95},{&quot;2026-06-13&quot;:0.94},{&quot;2026-06-14&quot;:1.01},{&quot;2026-06-15&quot;:1.09},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:0.95},{&quot;2026-06-20&quot;:0.96},{&quot;2026-06-21&quot;:0.98},{&quot;2026-06-22&quot;:0.96},{&quot;2026-06-23&quot;:0.96},{&quot;2026-06-24&quot;:0.93},{&quot;2026-06-25&quot;:0.87},{&quot;2026-06-26&quot;:0.9},{&quot;2026-06-27&quot;:0.79},{&quot;2026-06-28&quot;:0.79},{&quot;2026-06-29&quot;:0.82},{&quot;2026-06-30&quot;:0.77},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.8},{&quot;2026-07-03&quot;:0.89},{&quot;2026-07-04&quot;:0.92},{&quot;2026-07-05&quot;:0.92},{&quot;2026-07-06&quot;:0.85},{&quot;2026-07-07&quot;:0.87},{&quot;2026-07-08&quot;:0.91},{&quot;2026-07-09&quot;:0.96},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.16},{&quot;2026-07-12&quot;:1.26},{&quot;2026-07-13&quot;:1.25},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.09},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.94},{&quot;2026-07-18&quot;:0.9},{&quot;2026-07-19&quot;:0.88},{&quot;2026-07-20&quot;:0.88},{&quot;2026-07-21&quot;:0.92},{&quot;2026-07-23&quot;:0.99},{&quot;2026-07-25&quot;:1.01},{&quot;2026-07-26&quot;:0.97},{&quot;2026-07-27&quot;:0.92},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.83},{&quot;2026-07-31&quot;:0.82},{&quot;2026-08-01&quot;:0.8},{&quot;2026-08-02&quot;:0.79},{&quot;2026-08-03&quot;:0.81},{&quot;2026-08-04&quot;:0.79},{&quot;2026-08-05&quot;:0.79},{&quot;2026-08-07&quot;:0.79},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.85},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.9},{&quot;2026-08-13&quot;:0.91},{&quot;2026-08-14&quot;:0.93},{&quot;2026-08-15&quot;:0.94},{&quot;2026-08-16&quot;:0.94},{&quot;2026-08-17&quot;:0.97},{&quot;2026-08-18&quot;:0.95},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.95},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.92},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.89},{&quot;2026-08-26&quot;:0.88},{&quot;2026-08-27&quot;:0.9},{&quot;2026-08-28&quot;:0.91},{&quot;2026-08-29&quot;:0.91},{&quot;2026-08-30&quot;:0.91},{&quot;2026-08-31&quot;:0.88},{&quot;2026-09-01&quot;:0.88},{&quot;2026-09-02&quot;:0.88},{&quot;2026-09-03&quot;:0.9},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.95},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.95},{&quot;2026-09-08&quot;:0.96},{&quot;2026-09-09&quot;:0.96},{&quot;2026-09-10&quot;:0.96},{&quot;2026-09-11&quot;:0.91}]}"
        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="10141"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-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">
            Osgir, the Reconstructor
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Giant 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="text-sm font-medium text-nine-white">
            $0.79
          </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="Osgir, the Reconstructor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/8/5815fe6e-e26b-4918-a090-55d6442722c1.jpg?1783927612" />

        <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">
            Osgir, the Reconstructor
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            mythic
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Giant Artificer</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Osgir, the Reconstructor" src="https://cards.scryfall.io/large/front/5/8/5815fe6e-e26b-4918-a090-55d6442722c1.jpg?1783927612" />
    </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">
                $0.79
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.15</span>
              <span class="text-xs text-grey-text">Credit: $0.20</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:0.8},{&quot;2026-06-11&quot;:0.83},{&quot;2026-06-12&quot;:0.84},{&quot;2026-06-13&quot;:0.85},{&quot;2026-06-14&quot;:0.85},{&quot;2026-06-15&quot;:0.86},{&quot;2026-06-16&quot;:0.86},{&quot;2026-06-17&quot;:0.86},{&quot;2026-06-18&quot;:0.86},{&quot;2026-06-19&quot;:0.87},{&quot;2026-06-20&quot;:0.83},{&quot;2026-06-21&quot;:0.83},{&quot;2026-06-22&quot;:0.83},{&quot;2026-06-23&quot;:0.85},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.83},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.83},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.83},{&quot;2026-06-30&quot;:0.81},{&quot;2026-07-01&quot;:0.81},{&quot;2026-07-02&quot;:0.78},{&quot;2026-07-03&quot;:0.77},{&quot;2026-07-04&quot;:0.77},{&quot;2026-07-05&quot;:0.78},{&quot;2026-07-06&quot;:0.76},{&quot;2026-07-07&quot;:0.75},{&quot;2026-07-08&quot;:0.78},{&quot;2026-07-09&quot;:0.76},{&quot;2026-07-10&quot;:0.76},{&quot;2026-07-11&quot;:0.76},{&quot;2026-07-12&quot;:0.76},{&quot;2026-07-13&quot;:0.77},{&quot;2026-07-14&quot;:0.77},{&quot;2026-07-15&quot;:0.79},{&quot;2026-07-16&quot;:0.78},{&quot;2026-07-17&quot;:0.77},{&quot;2026-07-18&quot;:0.76},{&quot;2026-07-19&quot;:0.76},{&quot;2026-07-20&quot;:0.76},{&quot;2026-07-21&quot;:0.75},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-25&quot;:0.75},{&quot;2026-07-26&quot;:0.75},{&quot;2026-07-27&quot;:0.74},{&quot;2026-07-29&quot;:0.72},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.7},{&quot;2026-08-02&quot;:0.71},{&quot;2026-08-03&quot;:0.68},{&quot;2026-08-04&quot;:0.68},{&quot;2026-08-05&quot;:0.68},{&quot;2026-08-07&quot;:0.72},{&quot;2026-08-08&quot;:0.75},{&quot;2026-08-09&quot;:0.76},{&quot;2026-08-10&quot;:0.78},{&quot;2026-08-11&quot;:0.78},{&quot;2026-08-12&quot;:0.78},{&quot;2026-08-13&quot;:0.79},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.82},{&quot;2026-08-16&quot;:0.82},{&quot;2026-08-17&quot;:0.82},{&quot;2026-08-18&quot;:0.82},{&quot;2026-08-19&quot;:0.83},{&quot;2026-08-20&quot;:0.83},{&quot;2026-08-21&quot;:0.84},{&quot;2026-08-22&quot;:0.81},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.82},{&quot;2026-08-26&quot;:0.8},{&quot;2026-08-27&quot;:0.78},{&quot;2026-08-28&quot;:0.78},{&quot;2026-08-29&quot;:0.78},{&quot;2026-08-30&quot;:0.8},{&quot;2026-08-31&quot;:0.8},{&quot;2026-09-01&quot;:0.8},{&quot;2026-09-02&quot;:0.8},{&quot;2026-09-03&quot;:0.79},{&quot;2026-09-04&quot;:0.8},{&quot;2026-09-05&quot;:0.79},{&quot;2026-09-06&quot;:0.8},{&quot;2026-09-07&quot;:0.79},{&quot;2026-09-08&quot;:0.79},{&quot;2026-09-09&quot;:0.78},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.79}],&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="10386"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dispatch
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              7%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Dispatch" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/e/6e5caadb-9438-460a-852b-123719635550.jpg?1783927578" />

        <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">
            Dispatch
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Dispatch" src="https://cards.scryfall.io/large/front/6/e/6e5caadb-9438-460a-852b-123719635550.jpg?1783927578" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.76
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  7%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.32</span>
              <span class="text-xs text-grey-text">Credit: $0.42</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.46},{&quot;2026-06-14&quot;:0.46},{&quot;2026-06-15&quot;:0.46},{&quot;2026-06-16&quot;:0.46},{&quot;2026-06-17&quot;:0.46},{&quot;2026-06-18&quot;:0.46},{&quot;2026-06-19&quot;:0.46},{&quot;2026-06-20&quot;:0.46},{&quot;2026-06-21&quot;:0.46},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.46},{&quot;2026-06-24&quot;:0.46},{&quot;2026-06-25&quot;:0.46},{&quot;2026-06-26&quot;:0.46},{&quot;2026-06-27&quot;:0.45},{&quot;2026-06-28&quot;:0.45},{&quot;2026-06-29&quot;:0.45},{&quot;2026-06-30&quot;:0.46},{&quot;2026-07-01&quot;:0.45},{&quot;2026-07-02&quot;:0.45},{&quot;2026-07-03&quot;:0.47},{&quot;2026-07-04&quot;:0.47},{&quot;2026-07-05&quot;:0.47},{&quot;2026-07-06&quot;:0.46},{&quot;2026-07-07&quot;:0.46},{&quot;2026-07-08&quot;:0.48},{&quot;2026-07-09&quot;:0.48},{&quot;2026-07-10&quot;:0.48},{&quot;2026-07-11&quot;:0.48},{&quot;2026-07-12&quot;:0.48},{&quot;2026-07-13&quot;:0.49},{&quot;2026-07-14&quot;:0.49},{&quot;2026-07-15&quot;:0.49},{&quot;2026-07-16&quot;:0.49},{&quot;2026-07-17&quot;:0.49},{&quot;2026-07-18&quot;:0.49},{&quot;2026-07-19&quot;:0.48},{&quot;2026-07-20&quot;:0.48},{&quot;2026-07-21&quot;:0.49},{&quot;2026-07-22&quot;:0.49},{&quot;2026-07-23&quot;:0.51},{&quot;2026-07-24&quot;:0.53},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.55},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.55},{&quot;2026-07-29&quot;:0.55},{&quot;2026-07-30&quot;:0.55},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.57},{&quot;2026-08-05&quot;:0.58},{&quot;2026-08-07&quot;:0.58},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.58},{&quot;2026-08-13&quot;:0.58},{&quot;2026-08-14&quot;:0.59},{&quot;2026-08-15&quot;:0.59},{&quot;2026-08-16&quot;:0.61},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.61},{&quot;2026-08-19&quot;:0.61},{&quot;2026-08-20&quot;:0.61},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.62},{&quot;2026-08-23&quot;:0.62},{&quot;2026-08-24&quot;:0.63},{&quot;2026-08-25&quot;:0.63},{&quot;2026-08-26&quot;:0.64},{&quot;2026-08-27&quot;:0.64},{&quot;2026-08-28&quot;:0.64},{&quot;2026-08-29&quot;:0.64},{&quot;2026-08-30&quot;:0.66},{&quot;2026-08-31&quot;:0.67},{&quot;2026-09-01&quot;:0.7},{&quot;2026-09-02&quot;:0.7},{&quot;2026-09-03&quot;:0.7},{&quot;2026-09-04&quot;:0.7},{&quot;2026-09-05&quot;:0.71},{&quot;2026-09-06&quot;:0.74},{&quot;2026-09-07&quot;:0.75},{&quot;2026-09-08&quot;:0.75},{&quot;2026-09-09&quot;:0.75},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.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="10817"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Arcane Signet
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.64
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/1/01b186af-8825-4257-80fd-9c1ecdb21414.jpg?1783927516" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Arcane Signet
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Signet" src="https://cards.scryfall.io/large/front/0/1/01b186af-8825-4257-80fd-9c1ecdb21414.jpg?1783927516" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.64
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.17</span>
              <span class="text-xs text-grey-text">Credit: $0.22</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.57},{&quot;2026-06-13&quot;:0.57},{&quot;2026-06-14&quot;:0.56},{&quot;2026-06-15&quot;:0.55},{&quot;2026-06-16&quot;:0.55},{&quot;2026-06-17&quot;:0.55},{&quot;2026-06-18&quot;:0.55},{&quot;2026-06-19&quot;:0.55},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.54},{&quot;2026-06-22&quot;:0.54},{&quot;2026-06-23&quot;:0.55},{&quot;2026-06-24&quot;:0.55},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.57},{&quot;2026-06-28&quot;:0.59},{&quot;2026-06-29&quot;:0.58},{&quot;2026-06-30&quot;:0.6},{&quot;2026-07-01&quot;:0.6},{&quot;2026-07-02&quot;:0.6},{&quot;2026-07-03&quot;:0.61},{&quot;2026-07-04&quot;:0.61},{&quot;2026-07-05&quot;:0.6},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.61},{&quot;2026-07-08&quot;:0.62},{&quot;2026-07-09&quot;:0.62},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.01},{&quot;2026-07-13&quot;:1.03},{&quot;2026-07-14&quot;:1.02},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:0.68},{&quot;2026-07-18&quot;:0.6},{&quot;2026-07-19&quot;:0.55},{&quot;2026-07-20&quot;:0.56},{&quot;2026-07-21&quot;:0.56},{&quot;2026-07-23&quot;:0.57},{&quot;2026-07-24&quot;:0.57},{&quot;2026-07-25&quot;:0.57},{&quot;2026-07-26&quot;:0.57},{&quot;2026-07-27&quot;:0.57},{&quot;2026-07-28&quot;:0.57},{&quot;2026-07-29&quot;:0.58},{&quot;2026-07-30&quot;:0.6},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.61},{&quot;2026-08-03&quot;:0.6},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.59},{&quot;2026-08-09&quot;:0.59},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.56},{&quot;2026-08-12&quot;:0.55},{&quot;2026-08-13&quot;:0.55},{&quot;2026-08-14&quot;:0.54},{&quot;2026-08-15&quot;:0.56},{&quot;2026-08-16&quot;:0.56},{&quot;2026-08-17&quot;:0.57},{&quot;2026-08-18&quot;:0.56},{&quot;2026-08-19&quot;:0.58},{&quot;2026-08-20&quot;:0.58},{&quot;2026-08-21&quot;:0.59},{&quot;2026-08-22&quot;:0.59},{&quot;2026-08-23&quot;:0.6},{&quot;2026-08-24&quot;:0.6},{&quot;2026-08-25&quot;:0.6},{&quot;2026-08-26&quot;:0.61},{&quot;2026-08-27&quot;:0.61},{&quot;2026-08-28&quot;:0.64},{&quot;2026-08-29&quot;:0.64},{&quot;2026-08-30&quot;:0.61},{&quot;2026-08-31&quot;:0.62},{&quot;2026-09-01&quot;:0.62},{&quot;2026-09-02&quot;:0.62},{&quot;2026-09-03&quot;:0.59},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.65},{&quot;2026-09-06&quot;:0.65},{&quot;2026-09-07&quot;:0.65},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.65},{&quot;2026-09-10&quot;:0.62},{&quot;2026-09-11&quot;:0.64}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20800"
  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">
            Phyrexian Revoker
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Phyrexian Horror
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.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="Phyrexian Revoker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/9/6982a82c-dd32-40d2-8dd2-ec92d0fc6c2d.jpg?1783930099" />

        <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">
            Phyrexian Revoker
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Phyrexian Horror</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </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="Phyrexian Revoker" src="https://cards.scryfall.io/large/front/6/9/6982a82c-dd32-40d2-8dd2-ec92d0fc6c2d.jpg?1783930099" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.34
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.61
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.85},{&quot;2026-06-14&quot;:0.85},{&quot;2026-06-15&quot;:0.85},{&quot;2026-06-16&quot;:0.82},{&quot;2026-06-17&quot;:0.82},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.82},{&quot;2026-06-21&quot;:0.82},{&quot;2026-06-22&quot;:0.84},{&quot;2026-06-23&quot;:0.84},{&quot;2026-06-24&quot;:0.84},{&quot;2026-06-25&quot;:0.84},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.84},{&quot;2026-06-29&quot;:0.93},{&quot;2026-06-30&quot;:0.93},{&quot;2026-07-01&quot;:0.93},{&quot;2026-07-02&quot;:0.93},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.82},{&quot;2026-07-08&quot;:0.82},{&quot;2026-07-09&quot;:0.82},{&quot;2026-07-10&quot;:0.82},{&quot;2026-07-11&quot;:0.82},{&quot;2026-07-12&quot;:0.82},{&quot;2026-07-13&quot;:0.82},{&quot;2026-07-14&quot;:0.82},{&quot;2026-07-15&quot;:0.82},{&quot;2026-07-16&quot;:0.88},{&quot;2026-07-17&quot;:0.88},{&quot;2026-07-18&quot;:0.88},{&quot;2026-07-19&quot;:0.88},{&quot;2026-07-20&quot;:0.88},{&quot;2026-07-21&quot;:0.88},{&quot;2026-07-22&quot;:0.88},{&quot;2026-07-23&quot;:0.88},{&quot;2026-07-24&quot;:0.88},{&quot;2026-07-25&quot;:0.88},{&quot;2026-07-26&quot;:0.88},{&quot;2026-07-27&quot;:0.88},{&quot;2026-07-28&quot;:0.88},{&quot;2026-07-29&quot;:0.88},{&quot;2026-07-30&quot;:0.88},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.6},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.6},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.6},{&quot;2026-08-10&quot;:0.6},{&quot;2026-08-11&quot;:0.61},{&quot;2026-08-12&quot;:0.61},{&quot;2026-08-13&quot;:0.61},{&quot;2026-08-14&quot;:0.61},{&quot;2026-08-15&quot;:0.61},{&quot;2026-08-16&quot;:0.61},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.61},{&quot;2026-08-19&quot;:0.61},{&quot;2026-08-20&quot;:0.61},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.61},{&quot;2026-08-24&quot;:0.61},{&quot;2026-08-25&quot;:0.61},{&quot;2026-08-26&quot;:0.61},{&quot;2026-08-27&quot;:0.61},{&quot;2026-08-28&quot;:0.61},{&quot;2026-08-29&quot;:0.61},{&quot;2026-08-30&quot;:0.61},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.61},{&quot;2026-09-02&quot;:0.61},{&quot;2026-09-03&quot;:0.61},{&quot;2026-09-04&quot;:0.61},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.61},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.61},{&quot;2026-09-09&quot;:0.61},{&quot;2026-09-10&quot;:0.61},{&quot;2026-09-11&quot;:0.61}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.34},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.34},{&quot;2026-06-28&quot;:0.34},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.33},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-22&quot;:0.33},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-24&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.33},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.33},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.33},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.32},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.32},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20761"
  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">
            Lux Cannon
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.54
          </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="Lux Cannon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a13b7fee-100b-444e-9f13-45b36fd10295.jpg?1783930105" />

        <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">
            Lux Cannon
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lux Cannon" src="https://cards.scryfall.io/large/front/a/1/a13b7fee-100b-444e-9f13-45b36fd10295.jpg?1783930105" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.54
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $2.41
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.19},{&quot;2026-06-11&quot;:2.19},{&quot;2026-06-12&quot;:2.19},{&quot;2026-06-13&quot;:2.19},{&quot;2026-06-14&quot;:2.19},{&quot;2026-06-15&quot;:2.19},{&quot;2026-06-16&quot;:2.19},{&quot;2026-06-17&quot;:2.19},{&quot;2026-06-18&quot;:2.19},{&quot;2026-06-19&quot;:2.19},{&quot;2026-06-20&quot;:2.19},{&quot;2026-06-21&quot;:2.19},{&quot;2026-06-22&quot;:2.19},{&quot;2026-06-23&quot;:2.19},{&quot;2026-06-24&quot;:2.19},{&quot;2026-06-25&quot;:2.19},{&quot;2026-06-26&quot;:2.19},{&quot;2026-06-27&quot;:2.19},{&quot;2026-06-28&quot;:2.19},{&quot;2026-06-29&quot;:2.25},{&quot;2026-06-30&quot;:2.25},{&quot;2026-07-01&quot;:2.25},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.25},{&quot;2026-07-04&quot;:2.25},{&quot;2026-07-05&quot;:2.25},{&quot;2026-07-06&quot;:2.25},{&quot;2026-07-07&quot;:2.25},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.25},{&quot;2026-07-10&quot;:2.28},{&quot;2026-07-11&quot;:2.28},{&quot;2026-07-12&quot;:2.28},{&quot;2026-07-13&quot;:2.28},{&quot;2026-07-14&quot;:2.28},{&quot;2026-07-15&quot;:2.28},{&quot;2026-07-16&quot;:2.28},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.28},{&quot;2026-07-19&quot;:2.28},{&quot;2026-07-20&quot;:2.28},{&quot;2026-07-21&quot;:2.28},{&quot;2026-07-23&quot;:2.28},{&quot;2026-07-25&quot;:2.28},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.28},{&quot;2026-07-29&quot;:2.28},{&quot;2026-07-30&quot;:2.28},{&quot;2026-07-31&quot;:2.28},{&quot;2026-08-01&quot;:2.28},{&quot;2026-08-02&quot;:2.34},{&quot;2026-08-03&quot;:2.34},{&quot;2026-08-04&quot;:2.34},{&quot;2026-08-05&quot;:2.34},{&quot;2026-08-07&quot;:2.34},{&quot;2026-08-08&quot;:2.34},{&quot;2026-08-09&quot;:2.34},{&quot;2026-08-10&quot;:2.34},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.34},{&quot;2026-08-13&quot;:2.34},{&quot;2026-08-14&quot;:2.34},{&quot;2026-08-15&quot;:2.34},{&quot;2026-08-16&quot;:2.34},{&quot;2026-08-17&quot;:2.33},{&quot;2026-08-18&quot;:2.33},{&quot;2026-08-19&quot;:2.33},{&quot;2026-08-20&quot;:2.33},{&quot;2026-08-21&quot;:2.33},{&quot;2026-08-22&quot;:2.33},{&quot;2026-08-23&quot;:2.33},{&quot;2026-08-24&quot;:2.33},{&quot;2026-08-25&quot;:2.33},{&quot;2026-08-26&quot;:2.33},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.4},{&quot;2026-08-29&quot;:2.4},{&quot;2026-08-30&quot;:2.4},{&quot;2026-08-31&quot;:2.4},{&quot;2026-09-01&quot;:2.4},{&quot;2026-09-02&quot;:2.37},{&quot;2026-09-03&quot;:2.37},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.37},{&quot;2026-09-06&quot;:2.37},{&quot;2026-09-07&quot;:2.37},{&quot;2026-09-08&quot;:2.41},{&quot;2026-09-09&quot;:2.41},{&quot;2026-09-10&quot;:2.41},{&quot;2026-09-11&quot;:2.41}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.99},{&quot;2026-06-11&quot;:0.99},{&quot;2026-06-12&quot;:0.99},{&quot;2026-06-13&quot;:0.99},{&quot;2026-06-14&quot;:0.99},{&quot;2026-06-15&quot;:0.99},{&quot;2026-06-16&quot;:0.99},{&quot;2026-06-17&quot;:0.95},{&quot;2026-06-18&quot;:0.95},{&quot;2026-06-19&quot;:0.95},{&quot;2026-06-20&quot;:0.91},{&quot;2026-06-21&quot;:0.91},{&quot;2026-06-22&quot;:0.91},{&quot;2026-06-23&quot;:0.92},{&quot;2026-06-24&quot;:0.92},{&quot;2026-06-25&quot;:0.91},{&quot;2026-06-26&quot;:0.91},{&quot;2026-06-27&quot;:0.91},{&quot;2026-06-28&quot;:0.91},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.86},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.83},{&quot;2026-07-04&quot;:0.83},{&quot;2026-07-05&quot;:0.76},{&quot;2026-07-06&quot;:0.76},{&quot;2026-07-07&quot;:0.76},{&quot;2026-07-08&quot;:0.72},{&quot;2026-07-09&quot;:0.72},{&quot;2026-07-10&quot;:0.72},{&quot;2026-07-11&quot;:0.72},{&quot;2026-07-12&quot;:0.72},{&quot;2026-07-13&quot;:0.75},{&quot;2026-07-14&quot;:0.75},{&quot;2026-07-15&quot;:0.75},{&quot;2026-07-16&quot;:0.69},{&quot;2026-07-17&quot;:0.69},{&quot;2026-07-18&quot;:0.69},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.69},{&quot;2026-07-21&quot;:0.7},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-25&quot;:0.69},{&quot;2026-07-26&quot;:0.69},{&quot;2026-07-27&quot;:0.69},{&quot;2026-07-29&quot;:0.69},{&quot;2026-07-30&quot;:0.69},{&quot;2026-07-31&quot;:0.69},{&quot;2026-08-01&quot;:0.69},{&quot;2026-08-02&quot;:0.67},{&quot;2026-08-03&quot;:0.67},{&quot;2026-08-04&quot;:0.67},{&quot;2026-08-05&quot;:0.67},{&quot;2026-08-07&quot;:0.67},{&quot;2026-08-08&quot;:0.67},{&quot;2026-08-09&quot;:0.67},{&quot;2026-08-10&quot;:0.67},{&quot;2026-08-11&quot;:0.67},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.66},{&quot;2026-08-14&quot;:0.66},{&quot;2026-08-15&quot;:0.64},{&quot;2026-08-16&quot;:0.64},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.61},{&quot;2026-08-19&quot;:0.61},{&quot;2026-08-20&quot;:0.61},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.58},{&quot;2026-08-24&quot;:0.58},{&quot;2026-08-25&quot;:0.58},{&quot;2026-08-26&quot;:0.58},{&quot;2026-08-27&quot;:0.58},{&quot;2026-08-28&quot;:0.54},{&quot;2026-08-29&quot;:0.54},{&quot;2026-08-30&quot;:0.54},{&quot;2026-08-31&quot;:0.54},{&quot;2026-09-01&quot;:0.54},{&quot;2026-09-02&quot;:0.54},{&quot;2026-09-03&quot;:0.54},{&quot;2026-09-04&quot;:0.54},{&quot;2026-09-05&quot;:0.54},{&quot;2026-09-06&quot;:0.54},{&quot;2026-09-07&quot;:0.54},{&quot;2026-09-08&quot;:0.54},{&quot;2026-09-09&quot;:0.54},{&quot;2026-09-10&quot;:0.54},{&quot;2026-09-11&quot;:0.54}]}"
        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="10138"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-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">
            Alibou, Ancient Witness
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Artifact Creature — Golem
      </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">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.52
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Alibou, Ancient Witness" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/d/fd2fc2d4-c4fb-4dcb-93fa-aaf8c1182f15.jpg?1783927611" />

        <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">
            Alibou, Ancient Witness
        </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 — Golem</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-r'></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="Alibou, Ancient Witness" src="https://cards.scryfall.io/large/front/f/d/fd2fc2d4-c4fb-4dcb-93fa-aaf8c1182f15.jpg?1783927611" />
    </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">
                $0.52
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  5%
                </span>
            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:0.66},{&quot;2026-06-11&quot;:0.66},{&quot;2026-06-12&quot;:0.64},{&quot;2026-06-13&quot;:0.63},{&quot;2026-06-14&quot;:0.63},{&quot;2026-06-15&quot;:0.63},{&quot;2026-06-16&quot;:0.63},{&quot;2026-06-17&quot;:0.63},{&quot;2026-06-18&quot;:0.63},{&quot;2026-06-19&quot;:0.63},{&quot;2026-06-20&quot;:0.63},{&quot;2026-06-21&quot;:0.63},{&quot;2026-06-22&quot;:0.63},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.62},{&quot;2026-06-25&quot;:0.62},{&quot;2026-06-26&quot;:0.63},{&quot;2026-06-27&quot;:0.63},{&quot;2026-06-28&quot;:0.61},{&quot;2026-06-29&quot;:0.61},{&quot;2026-06-30&quot;:0.61},{&quot;2026-07-01&quot;:0.61},{&quot;2026-07-02&quot;:0.61},{&quot;2026-07-03&quot;:0.61},{&quot;2026-07-04&quot;:0.6},{&quot;2026-07-05&quot;:0.6},{&quot;2026-07-06&quot;:0.6},{&quot;2026-07-07&quot;:0.58},{&quot;2026-07-08&quot;:0.58},{&quot;2026-07-09&quot;:0.57},{&quot;2026-07-10&quot;:0.57},{&quot;2026-07-11&quot;:0.57},{&quot;2026-07-12&quot;:0.57},{&quot;2026-07-13&quot;:0.56},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.57},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-23&quot;:0.58},{&quot;2026-07-25&quot;:0.61},{&quot;2026-07-26&quot;:0.59},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-29&quot;:0.61},{&quot;2026-07-30&quot;:0.61},{&quot;2026-07-31&quot;:0.61},{&quot;2026-08-01&quot;:0.61},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.59},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.58},{&quot;2026-08-07&quot;:0.58},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.59},{&quot;2026-08-13&quot;:0.59},{&quot;2026-08-14&quot;:0.59},{&quot;2026-08-15&quot;:0.58},{&quot;2026-08-16&quot;:0.58},{&quot;2026-08-17&quot;:0.58},{&quot;2026-08-18&quot;:0.58},{&quot;2026-08-19&quot;:0.58},{&quot;2026-08-20&quot;:0.58},{&quot;2026-08-21&quot;:0.58},{&quot;2026-08-22&quot;:0.56},{&quot;2026-08-23&quot;:0.56},{&quot;2026-08-24&quot;:0.55},{&quot;2026-08-25&quot;:0.55},{&quot;2026-08-26&quot;:0.55},{&quot;2026-08-27&quot;:0.53},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.53},{&quot;2026-08-31&quot;:0.54},{&quot;2026-09-01&quot;:0.54},{&quot;2026-09-02&quot;:0.55},{&quot;2026-09-03&quot;:0.55},{&quot;2026-09-04&quot;:0.55},{&quot;2026-09-05&quot;:0.55},{&quot;2026-09-06&quot;:0.56},{&quot;2026-09-07&quot;:0.54},{&quot;2026-09-08&quot;:0.55},{&quot;2026-09-09&quot;:0.52},{&quot;2026-09-10&quot;:0.52},{&quot;2026-09-11&quot;:0.52}],&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="10379"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Cleansing Nova
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.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="Cleansing Nova" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1783927579" />

        <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">
            Cleansing Nova
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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="Cleansing Nova" src="https://cards.scryfall.io/large/front/1/1/11f1b6cd-d89a-4468-a097-7a54efe22f2c.jpg?1783927579" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.51
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.05</span>
              <span class="text-xs text-grey-text">Credit: $0.07</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.53},{&quot;2026-06-11&quot;:0.52},{&quot;2026-06-12&quot;:0.52},{&quot;2026-06-13&quot;:0.53},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.54},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.54},{&quot;2026-06-18&quot;:0.54},{&quot;2026-06-19&quot;:0.54},{&quot;2026-06-20&quot;:0.54},{&quot;2026-06-21&quot;:0.54},{&quot;2026-06-22&quot;:0.54},{&quot;2026-06-23&quot;:0.54},{&quot;2026-06-24&quot;:0.54},{&quot;2026-06-25&quot;:0.54},{&quot;2026-06-26&quot;:0.54},{&quot;2026-06-27&quot;:0.53},{&quot;2026-06-28&quot;:0.53},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.53},{&quot;2026-07-01&quot;:0.52},{&quot;2026-07-02&quot;:0.52},{&quot;2026-07-03&quot;:0.52},{&quot;2026-07-04&quot;:0.52},{&quot;2026-07-05&quot;:0.53},{&quot;2026-07-06&quot;:0.53},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.52},{&quot;2026-07-09&quot;:0.52},{&quot;2026-07-10&quot;:0.52},{&quot;2026-07-11&quot;:0.53},{&quot;2026-07-12&quot;:0.53},{&quot;2026-07-13&quot;:0.53},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.53},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.53},{&quot;2026-07-23&quot;:0.53},{&quot;2026-07-25&quot;:0.53},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.51},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.5},{&quot;2026-08-03&quot;:0.5},{&quot;2026-08-04&quot;:0.5},{&quot;2026-08-05&quot;:0.5},{&quot;2026-08-07&quot;:0.5},{&quot;2026-08-08&quot;:0.5},{&quot;2026-08-09&quot;:0.5},{&quot;2026-08-10&quot;:0.5},{&quot;2026-08-11&quot;:0.5},{&quot;2026-08-12&quot;:0.51},{&quot;2026-08-13&quot;:0.5},{&quot;2026-08-14&quot;:0.5},{&quot;2026-08-15&quot;:0.5},{&quot;2026-08-16&quot;:0.5},{&quot;2026-08-17&quot;:0.5},{&quot;2026-08-18&quot;:0.51},{&quot;2026-08-19&quot;:0.51},{&quot;2026-08-20&quot;:0.51},{&quot;2026-08-21&quot;:0.51},{&quot;2026-08-22&quot;:0.51},{&quot;2026-08-23&quot;:0.51},{&quot;2026-08-24&quot;:0.51},{&quot;2026-08-25&quot;:0.51},{&quot;2026-08-26&quot;:0.5},{&quot;2026-08-27&quot;:0.51},{&quot;2026-08-28&quot;:0.51},{&quot;2026-08-29&quot;:0.51},{&quot;2026-08-30&quot;:0.51},{&quot;2026-08-31&quot;:0.51},{&quot;2026-09-01&quot;:0.51},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.51},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.51},{&quot;2026-09-07&quot;:0.51},{&quot;2026-09-08&quot;:0.51},{&quot;2026-09-09&quot;:0.51},{&quot;2026-09-10&quot;:0.51},{&quot;2026-09-11&quot;:0.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10626"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Faithless Looting
        </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">
            $0.49
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Faithless Looting" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/d/1d6e5cc9-bd48-41b6-ac20-5a3e38aecdc5.jpg?1783927544" />

        <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">
            Faithless Looting
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Faithless Looting" src="https://cards.scryfall.io/large/front/1/d/1d6e5cc9-bd48-41b6-ac20-5a3e38aecdc5.jpg?1783927544" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.49
              </span>

                <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">$0.24</span>
              <span class="text-xs text-grey-text">Credit: $0.31</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.55},{&quot;2026-06-10&quot;:0.55},{&quot;2026-06-11&quot;:0.55},{&quot;2026-06-12&quot;:0.55},{&quot;2026-06-13&quot;:0.55},{&quot;2026-06-14&quot;:0.55},{&quot;2026-06-15&quot;:0.55},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.48},{&quot;2026-06-18&quot;:0.48},{&quot;2026-06-19&quot;:0.48},{&quot;2026-06-20&quot;:0.48},{&quot;2026-06-21&quot;:0.48},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-24&quot;:0.46},{&quot;2026-06-25&quot;:0.46},{&quot;2026-06-26&quot;:0.46},{&quot;2026-06-27&quot;:0.46},{&quot;2026-06-28&quot;:0.46},{&quot;2026-06-29&quot;:0.46},{&quot;2026-06-30&quot;:0.46},{&quot;2026-07-01&quot;:0.46},{&quot;2026-07-02&quot;:0.46},{&quot;2026-07-03&quot;:0.46},{&quot;2026-07-04&quot;:0.46},{&quot;2026-07-05&quot;:0.46},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.45},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.45},{&quot;2026-07-10&quot;:0.45},{&quot;2026-07-11&quot;:0.45},{&quot;2026-07-12&quot;:0.45},{&quot;2026-07-13&quot;:0.45},{&quot;2026-07-14&quot;:0.45},{&quot;2026-07-15&quot;:0.45},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.44},{&quot;2026-07-18&quot;:0.43},{&quot;2026-07-19&quot;:0.42},{&quot;2026-07-20&quot;:0.43},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-23&quot;:0.43},{&quot;2026-07-25&quot;:0.45},{&quot;2026-07-26&quot;:0.45},{&quot;2026-07-27&quot;:0.45},{&quot;2026-07-29&quot;:0.44},{&quot;2026-07-30&quot;:0.46},{&quot;2026-07-31&quot;:0.46},{&quot;2026-08-01&quot;:0.46},{&quot;2026-08-02&quot;:0.45},{&quot;2026-08-03&quot;:0.45},{&quot;2026-08-04&quot;:0.45},{&quot;2026-08-05&quot;:0.45},{&quot;2026-08-07&quot;:0.45},{&quot;2026-08-08&quot;:0.45},{&quot;2026-08-09&quot;:0.46},{&quot;2026-08-10&quot;:0.47},{&quot;2026-08-11&quot;:0.47},{&quot;2026-08-12&quot;:0.46},{&quot;2026-08-13&quot;:0.46},{&quot;2026-08-14&quot;:0.46},{&quot;2026-08-15&quot;:0.47},{&quot;2026-08-16&quot;:0.47},{&quot;2026-08-17&quot;:0.47},{&quot;2026-08-18&quot;:0.48},{&quot;2026-08-19&quot;:0.48},{&quot;2026-08-20&quot;:0.48},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.52},{&quot;2026-08-25&quot;:0.52},{&quot;2026-08-26&quot;:0.54},{&quot;2026-08-27&quot;:0.54},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.55},{&quot;2026-08-31&quot;:0.55},{&quot;2026-09-01&quot;:0.55},{&quot;2026-09-02&quot;:0.52},{&quot;2026-09-03&quot;:0.52},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.51},{&quot;2026-09-07&quot;:0.51},{&quot;2026-09-08&quot;:0.51},{&quot;2026-09-09&quot;:0.51},{&quot;2026-09-10&quot;:0.49},{&quot;2026-09-11&quot;:0.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="11044"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Rogue&#39;s Passage
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.46
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rogue&#39;s Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/a/ba61e204-825b-49e6-b713-c44f714b7539.jpg?1783927486" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Rogue&#39;s Passage
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rogue&#39;s Passage" src="https://cards.scryfall.io/large/front/b/a/ba61e204-825b-49e6-b713-c44f714b7539.jpg?1783927486" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.46
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.40</span>
              <span class="text-xs text-grey-text">Credit: $0.52</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.39},{&quot;2026-06-11&quot;:0.4},{&quot;2026-06-12&quot;:0.4},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.41},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.4},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.39},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.41},{&quot;2026-07-02&quot;:0.41},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.41},{&quot;2026-07-05&quot;:0.41},{&quot;2026-07-06&quot;:0.42},{&quot;2026-07-07&quot;:0.45},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.43},{&quot;2026-07-10&quot;:0.42},{&quot;2026-07-11&quot;:0.43},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.42},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.41},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.41},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.42},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.39},{&quot;2026-08-01&quot;:0.39},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.41},{&quot;2026-08-04&quot;:0.41},{&quot;2026-08-05&quot;:0.41},{&quot;2026-08-07&quot;:0.43},{&quot;2026-08-08&quot;:0.43},{&quot;2026-08-09&quot;:0.44},{&quot;2026-08-10&quot;:0.44},{&quot;2026-08-11&quot;:0.44},{&quot;2026-08-12&quot;:0.44},{&quot;2026-08-13&quot;:0.44},{&quot;2026-08-14&quot;:0.44},{&quot;2026-08-15&quot;:0.44},{&quot;2026-08-16&quot;:0.44},{&quot;2026-08-17&quot;:0.44},{&quot;2026-08-18&quot;:0.44},{&quot;2026-08-19&quot;:0.44},{&quot;2026-08-20&quot;:0.44},{&quot;2026-08-21&quot;:0.44},{&quot;2026-08-22&quot;:0.44},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.46},{&quot;2026-08-25&quot;:0.46},{&quot;2026-08-26&quot;:0.47},{&quot;2026-08-27&quot;:0.47},{&quot;2026-08-28&quot;:0.47},{&quot;2026-08-29&quot;:0.47},{&quot;2026-08-30&quot;:0.46},{&quot;2026-08-31&quot;:0.46},{&quot;2026-09-01&quot;:0.46},{&quot;2026-09-02&quot;:0.45},{&quot;2026-09-03&quot;:0.45},{&quot;2026-09-04&quot;:0.45},{&quot;2026-09-05&quot;:0.45},{&quot;2026-09-06&quot;:0.44},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.45},{&quot;2026-09-09&quot;:0.45},{&quot;2026-09-10&quot;:0.47},{&quot;2026-09-11&quot;:0.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>


    <div
      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 84 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=219&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=219&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=219&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=219&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=219&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=219&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=219&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=219&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=219&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=219&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=219&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="49460"
          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">
              244
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Arid Mesa


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $29.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49460"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49460" src="/boxset_card/49460?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10927"
          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">
              271
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Thousand-Year Elixir


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10927"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10927" src="/boxset_card/10927?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49072"
          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">
              128
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-rare ss-fw ss-2x mr-4"></i>
              Goblin Engineer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Goblin 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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $9.80

                    <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">
                $5.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="49072"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49072" src="/boxset_card/49072?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78782"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-uncommon ss-fw ss-2x mr-4"></i>
              Rebuff the Wicked


            </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">
                  $7.21

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78782"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78782" src="/boxset_card/78782?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41118"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              13
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Farewell


            </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-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.91

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41118"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41118" src="/boxset_card/41118?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10636"
          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">
              172
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-mythic 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">
                <div class="flex items-center gap-2">
                  $5.81

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10636"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10636" src="/boxset_card/10636?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86196"
          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">
              C17-53
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Herald&#39;s Horn


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.55

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86196"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86196" src="/boxset_card/86196?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10744"
          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">
              210
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Boros Charm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></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">
                  $4.99

                    <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">
                $5.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="10744"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10744" src="/boxset_card/10744?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42005"
          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">
              299
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.11

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.93

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.80
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42005"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42005" src="/boxset_card/42005?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20758"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              267
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Lightning Greaves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.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">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20758"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20758" src="/boxset_card/20758?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41987"
          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">
              293
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.69

                    <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">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.80
            </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="41987"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41987" src="/boxset_card/41987?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10265"
          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">
              48
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Battlemage&#39;s Bracers


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10265"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10265" src="/boxset_card/10265?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79887"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              403
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Ancient Den


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.43

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79887"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79887" src="/boxset_card/79887?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41990"
          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">
              294
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.10

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.42

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41990"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41990" src="/boxset_card/41990?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20787"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              277
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-common ss-fw ss-2x mr-4"></i>
              Myr Retriever


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Myr
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20787"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20787" src="/boxset_card/20787?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12411"
          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-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Thought Vessel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.24

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12411"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12411" src="/boxset_card/12411?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10988"
          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">
              292
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x mr-4"></i>
              Great Furnace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.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">
                $2.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10988"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10988" src="/boxset_card/10988?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10969"
          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">
              285
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Darksteel Citadel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10969"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10969" src="/boxset_card/10969?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42441"
          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">
              440
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Lion Sash


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Equipment 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-w'></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">
                  $2.99

                    <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">
                $1.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42441"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42441" src="/boxset_card/42441?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20778"
          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">
              274
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Mishra&#39;s Bauble


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.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">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20778"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20778" src="/boxset_card/20778?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20771"
          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">
              271
            </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>
              Masterwork of Ingenuity


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20771"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20771" src="/boxset_card/20771?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42008"
          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">
              300
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.05

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.55

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.58
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42008"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42008" src="/boxset_card/42008?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10172"
          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">
              18
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Losheel, Clockwork Scholar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elephant Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.44

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10172"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10172" src="/boxset_card/10172?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20713"
          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">
              251
            </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>
              Endless Atlas


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20713"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20713" src="/boxset_card/20713?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10155"
          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">
              12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Archaeomancer&#39;s Map


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><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">
                  $2.18

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.85
            </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.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10155"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10155" src="/boxset_card/10155?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10899"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              261
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Sculpting Steel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.09

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10899"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10899" src="/boxset_card/10899?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10905"
          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">
              263
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10905"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10905" src="/boxset_card/10905?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20724"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              255
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-common ss-fw ss-2x mr-4"></i>
              Expedition Map


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20724"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20724" src="/boxset_card/20724?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20887"
          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">
              312
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Buried Ruin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20887"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20887" src="/boxset_card/20887?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53434"
          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">
              43
            </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>
              Organic Extinction


            </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-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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">
                  $1.69

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53434"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53434" src="/boxset_card/53434?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10895"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              260
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Scrap Trawler


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Construct
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.67

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10895"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10895" src="/boxset_card/10895?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48722"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Generous Gift


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.64

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="48722"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_48722" src="/boxset_card/48722?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10272"
          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-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Cursed Mirror


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><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">
                  $1.63

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10272"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10272" src="/boxset_card/10272?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10850"
          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">
              245
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x mr-4"></i>
              Ichor Wellspring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.51

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10850"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10850" src="/boxset_card/10850?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10613"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              164
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-mythic ss-fw ss-2x mr-4"></i>
              Daretti, Scrap Savant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Daretti
            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.23
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10613"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10613" src="/boxset_card/10613?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10360"
          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">
              79
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Triplicate Titan


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Golem
            </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-9'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10360"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10360" src="/boxset_card/10360?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10629"
          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-c21 ss-mythic ss-fw ss-2x mr-4"></i>
              Feldon of the Third Path


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $1.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10629"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10629" src="/boxset_card/10629?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10158"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              13
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Bronze Guardian


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Golem
            </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-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.27

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10158"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10158" src="/boxset_card/10158?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11862"
          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">
              162
            </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>
              Blasphemous Act


            </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-8'></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">
                  $1.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11862"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11862" src="/boxset_card/11862?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10163"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Digsite Engineer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dwarf Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.95

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10163"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10163" src="/boxset_card/10163?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="36403"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              255
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-uncommon ss-fw ss-2x mr-4"></i>
              Moonsilver Key


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.91

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="36403"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_36403" src="/boxset_card/36403?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10141"
          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">
              8
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-mythic ss-fw ss-2x mr-4"></i>
              Osgir, the Reconstructor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Giant Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.79

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10141"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10141" src="/boxset_card/10141?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10386"
          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">
              88
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Dispatch


            </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">
                  $0.76

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.32
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10386"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10386" src="/boxset_card/10386?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10817"
          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">
              234
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.64

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </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="10817"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10817" src="/boxset_card/10817?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20800"
          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">
              282
            </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>
              Phyrexian Revoker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Phyrexian Horror
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.61

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20800"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20800" src="/boxset_card/20800?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20761"
          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">
              268
            </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>
              Lux Cannon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.54

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20761"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20761" src="/boxset_card/20761?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10138"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              7
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-mythic ss-fw ss-2x mr-4"></i>
              Alibou, Ancient Witness


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact Creature — Golem
            </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-r'></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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.52

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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="10138"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10138" src="/boxset_card/10138?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10379"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              86
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-rare ss-fw ss-2x mr-4"></i>
              Cleansing Nova


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></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">
                  $0.51

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10379"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10379" src="/boxset_card/10379?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10626"
          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">
              168
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-common ss-fw ss-2x mr-4"></i>
              Faithless Looting


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.24
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10626"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10626" src="/boxset_card/10626?collection_id=219&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11044"
          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">
              312
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Rogue&#39;s Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11044"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11044" src="/boxset_card/11044?collection_id=219&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 84 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=219&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=219&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>